@charset "UTF-8";
/*
Override variable defaults
==================================================
This file is used to override default SCSS variables from the Shopware Storefront or Bootstrap.

Because of the !default flags, theme variable overrides have to be declared beforehand.
https://getbootstrap.com/docs/4.0/getting-started/theming/#variable-defaults
*/
/*
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
*/
/*
CSS Custom Properties
==================================================
Exposes custom SCSS variables of the Storefront as CSS custom properties.

@sw-package framework
*/
:root {
  --search-suggest-zindex: 1000;
  --offcanvas-zindex: 1050;
  --cookie-msg-zindex: 1100;
  --scroll-up-zindex: 700;
  --menu-flyout-zindex: 1030;
  --zoom-modal-action-zindex: 1051;
  --magnifier-overlay-zindex: 1100;
  --icon-base-size: 1.375rem;
  --icon-base-color: #4a545b;
  --icon-review-color: #fedc70;
  --progress-bar-review: #fedc70;
  --element-backdrop-bg: rgba(255, 255, 255, 0.5);
  --spacer-xs: 0.25rem;
  --spacer-sm: 0.5rem;
  --spacer-md: 1rem;
  --spacer-lg: 1.5rem;
  --spacer-xl: 3rem;
  --buy-btn-bg: #0042a0;
  --buy-btn-color: #fff;
  --disabled-btn-bg: #eee;
  --disabled-btn-border-color: #eee;
  --cms-block-text-hero-hr-color: #e9edf0;
  --cms-element-text-quotes-color: #9aa7be;
  --cms-element-product-listing-gutter-width: 30px;
  --price-color: #2b3136;
  --font-weight-semibold: 600;
}
/*
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.8 (https://getbootstrap.com/)
   * Copyright 2011-2025 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: #798490;
  --bs-gray-dark: #4a545b;
  --bs-gray-100: #f9f9f9;
  --bs-gray-200: #eee;
  --bs-gray-300: #bcc1c7;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #798490;
  --bs-gray-700: #495057;
  --bs-gray-800: #4a545b;
  --bs-gray-900: #212529;
  --bs-primary: #64748b;
  --bs-secondary: #474a57;
  --bs-success: #007e4e;
  --bs-info: #005b99;
  --bs-warning: #974200;
  --bs-danger: #c20017;
  --bs-light: #f9f9f9;
  --bs-dark: #4a545b;
  --bs-primary-rgb: 100, 116, 139;
  --bs-secondary-rgb: 71, 74, 87;
  --bs-success-rgb: 0, 126, 78;
  --bs-info-rgb: 0, 91, 153;
  --bs-warning-rgb: 151, 66, 0;
  --bs-danger-rgb: 194, 0, 23;
  --bs-light-rgb: 249, 249, 249;
  --bs-dark-rgb: 74, 84, 91;
  --bs-primary-text-emphasis: #282e38;
  --bs-secondary-text-emphasis: #1c1e23;
  --bs-success-text-emphasis: #00321f;
  --bs-info-text-emphasis: #00243d;
  --bs-warning-text-emphasis: #3c1a00;
  --bs-danger-text-emphasis: #4e0009;
  --bs-light-text-emphasis: #495057;
  --bs-dark-text-emphasis: #495057;
  --bs-primary-bg-subtle: #e0e3e8;
  --bs-secondary-bg-subtle: #dadbdd;
  --bs-success-bg-subtle: #cce5dc;
  --bs-info-bg-subtle: #ccdeeb;
  --bs-warning-bg-subtle: #ead9cc;
  --bs-danger-bg-subtle: #f3ccd1;
  --bs-light-bg-subtle: #fcfcfc;
  --bs-dark-bg-subtle: #ced4da;
  --bs-primary-border-subtle: #c1c7d1;
  --bs-secondary-border-subtle: #b5b7bc;
  --bs-success-border-subtle: #99cbb8;
  --bs-info-border-subtle: #99bdd6;
  --bs-warning-border-subtle: #d5b399;
  --bs-danger-border-subtle: #e799a2;
  --bs-light-border-subtle: #eee;
  --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: "Manrope", system-ui, -apple-system, sans-serif;
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #2b3136;
  --bs-body-color-rgb: 43, 49, 54;
  --bs-body-bg: #fff;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-emphasis-color: #000;
  --bs-emphasis-color-rgb: 0, 0, 0;
  --bs-secondary-color: #2b3136;
  --bs-secondary-color-rgb: 43, 49, 54;
  --bs-secondary-bg: #eee;
  --bs-secondary-bg-rgb: 238, 238, 238;
  --bs-tertiary-color: rgba(43, 49, 54, 0.5);
  --bs-tertiary-color-rgb: 43, 49, 54;
  --bs-tertiary-bg: #f9f9f9;
  --bs-tertiary-bg-rgb: 249, 249, 249;
  --bs-heading-color: #2b3136;
  --bs-link-color: #64748b;
  --bs-link-color-rgb: 100, 116, 139;
  --bs-link-decoration: underline;
  --bs-link-hover-color: #505d6f;
  --bs-link-hover-color-rgb: 80, 93, 111;
  --bs-link-hover-decoration: underline;
  --bs-code-color: #d63384;
  --bs-highlight-color: #2b3136;
  --bs-highlight-bg: #fff3cd;
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-color: #798490;
  --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  --bs-border-radius: 0;
  --bs-border-radius-sm: 0;
  --bs-border-radius-lg: 0;
  --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: 1;
  --bs-focus-ring-color: #64748b;
  --bs-form-valid-color: #007e4e;
  --bs-form-valid-border-color: #007e4e;
  --bs-form-invalid-color: #c20017;
  --bs-form-invalid-border-color: #c20017;
}
[data-bs-theme="dark"] {
  color-scheme: dark;
  --bs-body-color: #bcc1c7;
  --bs-body-color-rgb: 188, 193, 199;
  --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(188, 193, 199, 0.75);
  --bs-secondary-color-rgb: 188, 193, 199;
  --bs-secondary-bg: #4a545b;
  --bs-secondary-bg-rgb: 74, 84, 91;
  --bs-tertiary-color: rgba(188, 193, 199, 0.5);
  --bs-tertiary-color-rgb: 188, 193, 199;
  --bs-tertiary-bg: #363d42;
  --bs-tertiary-bg-rgb: 54, 61, 66;
  --bs-primary-text-emphasis: #a2acb9;
  --bs-secondary-text-emphasis: #91929a;
  --bs-success-text-emphasis: #66b295;
  --bs-info-text-emphasis: #669dc2;
  --bs-warning-text-emphasis: #c18e66;
  --bs-danger-text-emphasis: #da6674;
  --bs-light-text-emphasis: #f9f9f9;
  --bs-dark-text-emphasis: #bcc1c7;
  --bs-primary-bg-subtle: #14171c;
  --bs-secondary-bg-subtle: #0e0f11;
  --bs-success-bg-subtle: #001910;
  --bs-info-bg-subtle: #00121f;
  --bs-warning-bg-subtle: #1e0d00;
  --bs-danger-bg-subtle: #270005;
  --bs-light-bg-subtle: #4a545b;
  --bs-dark-bg-subtle: #252a2e;
  --bs-primary-border-subtle: #3c4653;
  --bs-secondary-border-subtle: #2b2c34;
  --bs-success-border-subtle: #004c2f;
  --bs-info-border-subtle: #00375c;
  --bs-warning-border-subtle: #5b2800;
  --bs-danger-border-subtle: #74000e;
  --bs-light-border-subtle: #495057;
  --bs-dark-border-subtle: #4a545b;
  --bs-heading-color: inherit;
  --bs-link-color: #a2acb9;
  --bs-link-hover-color: #b5bdc7;
  --bs-link-color-rgb: 162, 172, 185;
  --bs-link-hover-color-rgb: 181, 189, 199;
  --bs-code-color: #e685b5;
  --bs-highlight-color: #bcc1c7;
  --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: 1rem;
  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: var(--bs-body-bg);
  background-color: var(--bs-body-color);
  border-radius: 0;
}
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 {
  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;
  line-height: inherit;
  font-size: calc(1.275rem + 0.3vw);
}
@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;
}
[type="search"]::-webkit-search-cancel-button {
  cursor: pointer;
  filter: grayscale(1);
}
/* 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-weight: 300;
  line-height: 1.2;
  font-size: calc(1.625rem + 4.5vw);
}
@media (min-width: 1200px) {
  .display-1 {
    font-size: 5rem;
  }
}
.display-2 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.575rem + 3.9vw);
}
@media (min-width: 1200px) {
  .display-2 {
    font-size: 4.5rem;
  }
}
.display-3 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.525rem + 3.3vw);
}
@media (min-width: 1200px) {
  .display-3 {
    font-size: 4rem;
  }
}
.display-4 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.475rem + 2.7vw);
}
@media (min-width: 1200px) {
  .display-4 {
    font-size: 3.5rem;
  }
}
.display-5 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.425rem + 2.1vw);
}
@media (min-width: 1200px) {
  .display-5 {
    font-size: 3rem;
  }
}
.display-6 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.375rem + 1.5vw);
}
@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: #798490;
}
.blockquote-footer::before {
  content: "— ";
}
.img-fluid {
  max-width: 100%;
  height: auto;
}
.img-thumbnail {
  padding: 0.25rem;
  background-color: var(--bs-body-bg);
  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-xs {
  --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;
}
.container, .cms-section .boxed {
  max-width: 1400px;
}
: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;
}
.row {
  --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 > * {
  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);
}
.col {
  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: 1rem;
}
.g-3, .gy-3 {
  --bs-gutter-y: 1rem;
}
.g-4, .gx-4 {
  --bs-gutter-x: 1.5rem;
}
.g-4, .gy-4 {
  --bs-gutter-y: 1.5rem;
}
.g-5, .gx-5 {
  --bs-gutter-x: 3rem;
}
.g-5, .gy-5 {
  --bs-gutter-y: 3rem;
}
@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 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    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 {
    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: 1rem;
  }
  .g-sm-3, .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-4, .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-4, .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-5, .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-5, .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@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 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    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 {
    margin-left: 50%;
  }
  .offset-md-7 {
    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: 1rem;
  }
  .g-md-3, .gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  .g-md-4, .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-4, .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-5, .gx-md-5 {
    --bs-gutter-x: 3rem;
  }
  .g-md-5, .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}
@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 {
    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 {
    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 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    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: 1rem;
  }
  .g-lg-3, .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-4, .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-4, .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-5, .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-5, .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@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 {
    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: 1rem;
  }
  .g-xl-3, .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-4, .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-4, .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-5, .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-5, .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
@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: 1rem;
  }
  .g-xxl-3, .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xxl-4, .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxl-4, .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxl-5, .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xxl-5, .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}
.table {
  --bs-table-color-type: initial;
  --bs-table-bg-type: initial;
  --bs-table-color-state: initial;
  --bs-table-bg-state: initial;
  --bs-table-color: #2b3136;
  --bs-table-bg: var(--bs-body-bg);
  --bs-table-border-color: var(--bs-border-color);
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: #2b3136;
  --bs-table-striped-bg: #f9f9f9;
  --bs-table-active-color: #2b3136;
  --bs-table-active-bg: rgba(var(--bs-emphasis-color-rgb), 0.1);
  --bs-table-hover-color: #2b3136;
  --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: #e0e3e8;
  --bs-table-border-color: #b3b6ba;
  --bs-table-striped-bg: #d5d8dc;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #caccd1;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #cfd2d7;
  --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: #dadbdd;
  --bs-table-border-color: #aeafb1;
  --bs-table-striped-bg: #cfd0d2;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #c4c5c7;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #cacbcc;
  --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: #cce5dc;
  --bs-table-border-color: #a3b7b0;
  --bs-table-striped-bg: #c2dad1;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #b8cec6;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #bdd4cc;
  --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: #ccdeeb;
  --bs-table-border-color: #a3b2bc;
  --bs-table-striped-bg: #c2d3df;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #b8c8d4;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #bdcdd9;
  --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: #ead9cc;
  --bs-table-border-color: #bbaea3;
  --bs-table-striped-bg: #decec2;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #d3c3b8;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #d8c9bd;
  --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: #f3ccd1;
  --bs-table-border-color: #c2a3a7;
  --bs-table-striped-bg: #e7c2c7;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #dbb8bc;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e1bdc1;
  --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: #f9f9f9;
  --bs-table-border-color: #c7c7c7;
  --bs-table-striped-bg: #ededed;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #e0e0e0;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e6e6e6;
  --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: #4a545b;
  --bs-table-border-color: #6e767c;
  --bs-table-striped-bg: #535d63;
  --bs-table-striped-color: #fff;
  --bs-table-active-bg: #5c656b;
  --bs-table-active-color: #fff;
  --bs-table-hover-bg: #586167;
  --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;
  }
}
.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.125rem;
}
.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: var(--bs-secondary-color);
}
.form-control {
  display: block;
  width: 100%;
  padding: 0.438rem 0.5625rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #2b3136;
  appearance: none;
  background-color: var(--bs-body-bg);
  background-clip: padding-box;
  border: var(--bs-border-width) solid #798490;
  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: #2b3136;
  background-color: var(--bs-body-bg);
  border-color: #64748b;
  outline: 0;
  box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #64748b;
}
.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: #666977;
  opacity: 1;
}
.form-control:disabled {
  background-color: var(--bs-secondary-bg);
  opacity: 1;
}
.form-control::file-selector-button {
  padding: 0.438rem 0.5625rem;
  margin: -0.438rem -0.5625rem;
  margin-inline-end: 0.5625rem;
  color: #2b3136;
  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.5em + 0.5rem + 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: -0.25rem -0.5rem;
  margin-inline-end: 0.5rem;
}
.form-control-lg {
  min-height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
  padding: 0.5rem 1rem;
  font-size: 1.125rem;
  border-radius: var(--bs-border-radius-lg);
}
.form-control-lg::file-selector-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  margin-inline-end: 1rem;
}
textarea.form-control {
  min-height: calc(1.5em + 0.876rem + calc(var(--bs-border-width) * 2));
}
textarea.form-control-sm {
  min-height: calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2));
}
textarea.form-control-lg {
  min-height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
}
.form-control-color {
  width: 3rem;
  height: calc(1.5em + 0.876rem + 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.5em + 0.5rem + calc(var(--bs-border-width) * 2));
}
.form-control-color.form-control-lg {
  height: calc(1.5em + 1rem + 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='%234a545b' 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: #2b3136;
  appearance: none;
  background-color: var(--bs-body-bg);
  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 #798490;
  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: #64748b;
  outline: 0;
  box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #64748b;
}
.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 #2b3136;
}
.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.125rem;
  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='%23bcc1c7' 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: var(--bs-body-bg);
  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 #798490;
  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: #64748b;
  outline: 0;
  box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #64748b;
}
.form-check-input:checked {
  background-color: #64748b;
  border-color: #64748b;
}
.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: #64748b;
  border-color: #64748b;
  --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='%2364748b'/%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, .btn-check:disabled + .btn {
  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 #fff, 0 0 0 0.125rem #fff, 0 0 0 0.25rem #64748b;
}
.form-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.125rem #fff, 0 0 0 0.25rem #64748b;
}
.form-range::-moz-focus-outer {
  border: 0;
}
.form-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  appearance: none;
  background-color: #64748b;
  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: #d1d5dc;
}
.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: #64748b;
  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: #d1d5dc;
}
.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;
  max-width: 100%;
  height: 100%;
  padding: 1rem 0.5625rem;
  overflow: hidden;
  color: rgba(var(--bs-body-color-rgb), 0.65);
  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;
  padding-left: 0.5625rem;
}
.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 {
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:-webkit-autofill ~ label {
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > textarea:focus ~ label::after, .form-floating > textarea:not(:placeholder-shown) ~ label::after {
  position: absolute;
  inset: 1rem 0.28125rem;
  z-index: -1;
  height: 1.5em;
  content: "";
  background-color: var(--bs-body-bg);
  border-radius: var(--bs-border-radius);
}
.form-floating > textarea:disabled ~ label::after {
  background-color: var(--bs-secondary-bg);
}
.form-floating > .form-control-plaintext ~ label {
  border-width: var(--bs-border-width) 0;
}
.form-floating > :disabled ~ label, .form-floating > .form-control:disabled ~ label {
  color: #798490;
}
.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 {
  position: relative;
  z-index: 2;
}
.input-group .btn: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: #2b3136;
  text-align: center;
  white-space: nowrap;
  background-color: var(--bs-tertiary-bg);
  border: var(--bs-border-width) solid #798490;
  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 {
  padding: 0.5rem 1rem;
  font-size: 1.125rem;
  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 {
  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(-1 * var(--bs-border-width));
  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.5em + 0.876rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23007e4e' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.219rem) center;
  background-size: calc(0.75em + 0.438rem) calc(0.75em + 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), 1);
}
.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.5em + 0.876rem);
  background-position: top calc(0.375em + 0.219rem) right calc(0.375em + 0.219rem);
}
.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 xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23007e4e' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1'/%3e%3c/svg%3e");
  padding-right: 3.09375rem;
  background-position: right 0.5625rem center, center right 1.6875rem;
  background-size: 16px 12px, calc(0.75em + 0.438rem) calc(0.75em + 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), 1);
}
.was-validated .form-control-color:valid, .form-control-color.is-valid {
  width: calc(3rem + calc(1.5em + 0.876rem));
}
.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), 1);
}
.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.5em + 0.876rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23c20017'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23c20017' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.219rem) center;
  background-size: calc(0.75em + 0.438rem) calc(0.75em + 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), 1);
}
.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 0.876rem);
  background-position: top calc(0.375em + 0.219rem) right calc(0.375em + 0.219rem);
}
.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 xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23c20017'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23c20017' stroke='none'/%3e%3c/svg%3e");
  padding-right: 3.09375rem;
  background-position: right 0.5625rem center, center right 1.6875rem;
  background-size: 16px 12px, calc(0.75em + 0.438rem) calc(0.75em + 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), 1);
}
.was-validated .form-control-color:invalid, .form-control-color.is-invalid {
  width: calc(3rem + calc(1.5em + 0.876rem));
}
.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), 1);
}
.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 {
  --bs-btn-padding-x: 12px;
  --bs-btn-padding-y: 2px;
  --bs-btn-font-family: ;
  --bs-btn-font-size: 1rem;
  --bs-btn-font-weight: 600;
  --bs-btn-line-height: 2.125rem;
  --bs-btn-color: var(--bs-body-color);
  --bs-btn-bg: transparent;
  --bs-btn-border-width: var(--bs-border-width);
  --bs-btn-border-color: transparent;
  --bs-btn-border-radius: var(--bs-border-radius);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  --bs-btn-disabled-opacity: 1;
  --bs-btn-focus-box-shadow: 0 0 0 0.25rem 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 {
    transition: none;
  }
}
.btn: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 {
  color: var(--bs-btn-color);
  background-color: var(--bs-btn-bg);
  border-color: var(--bs-btn-border-color);
}
.btn: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 {
  border-color: var(--bs-btn-hover-border-color);
  outline: 0;
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn-check:checked + .btn, :not(.btn-check) + .btn:active, .btn:first-child:active, .btn.active, .btn.show {
  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, :not(.btn-check) + .btn:active:focus-visible, .btn:first-child:active:focus-visible, .btn.active:focus-visible, .btn.show:focus-visible {
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn-check:checked:focus-visible + .btn {
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn:disabled, .btn.disabled, fieldset:disabled .btn {
  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 {
  --bs-btn-color: #fff;
  --bs-btn-bg: #64748b;
  --bs-btn-border-color: #64748b;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #556376;
  --bs-btn-hover-border-color: #505d6f;
  --bs-btn-focus-shadow-rgb: 123, 137, 156;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #505d6f;
  --bs-btn-active-border-color: #4b5768;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #64748b;
  --bs-btn-disabled-border-color: #64748b;
}
.btn-secondary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #474a57;
  --bs-btn-border-color: #474a57;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #3c3f4a;
  --bs-btn-hover-border-color: #393b46;
  --bs-btn-focus-shadow-rgb: 99, 101, 112;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #393b46;
  --bs-btn-active-border-color: #353841;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #474a57;
  --bs-btn-disabled-border-color: #474a57;
}
.btn-success {
  --bs-btn-color: #fff;
  --bs-btn-bg: #007e4e;
  --bs-btn-border-color: #007e4e;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #006b42;
  --bs-btn-hover-border-color: #00653e;
  --bs-btn-focus-shadow-rgb: 38, 145, 105;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #00653e;
  --bs-btn-active-border-color: #005f3b;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #007e4e;
  --bs-btn-disabled-border-color: #007e4e;
}
.btn-info {
  --bs-btn-color: #fff;
  --bs-btn-bg: #005b99;
  --bs-btn-border-color: #005b99;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #004d82;
  --bs-btn-hover-border-color: #00497a;
  --bs-btn-focus-shadow-rgb: 38, 116, 168;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #00497a;
  --bs-btn-active-border-color: #004473;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #005b99;
  --bs-btn-disabled-border-color: #005b99;
}
.btn-warning {
  --bs-btn-color: #fff;
  --bs-btn-bg: #974200;
  --bs-btn-border-color: #974200;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #803800;
  --bs-btn-hover-border-color: #793500;
  --bs-btn-focus-shadow-rgb: 167, 94, 38;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #793500;
  --bs-btn-active-border-color: #713200;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #974200;
  --bs-btn-disabled-border-color: #974200;
}
.btn-danger {
  --bs-btn-color: #fff;
  --bs-btn-bg: #c20017;
  --bs-btn-border-color: #c20017;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #a50014;
  --bs-btn-hover-border-color: #9b0012;
  --bs-btn-focus-shadow-rgb: 203, 38, 58;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #9b0012;
  --bs-btn-active-border-color: #920011;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #c20017;
  --bs-btn-disabled-border-color: #c20017;
}
.btn-light {
  --bs-btn-color: #000;
  --bs-btn-bg: #f9f9f9;
  --bs-btn-border-color: #f9f9f9;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #d4d4d4;
  --bs-btn-hover-border-color: #c7c7c7;
  --bs-btn-focus-shadow-rgb: 212, 212, 212;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #c7c7c7;
  --bs-btn-active-border-color: #bbb;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #f9f9f9;
  --bs-btn-disabled-border-color: #f9f9f9;
}
.btn-dark {
  --bs-btn-color: #fff;
  --bs-btn-bg: #4a545b;
  --bs-btn-border-color: #4a545b;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #656e74;
  --bs-btn-hover-border-color: #5c656b;
  --bs-btn-focus-shadow-rgb: 101, 110, 116;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #6e767c;
  --bs-btn-active-border-color: #5c656b;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #4a545b;
  --bs-btn-disabled-border-color: #4a545b;
}
.btn-outline-primary {
  --bs-btn-color: #64748b;
  --bs-btn-border-color: #64748b;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #64748b;
  --bs-btn-hover-border-color: #64748b;
  --bs-btn-focus-shadow-rgb: 100, 116, 139;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #64748b;
  --bs-btn-active-border-color: #64748b;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #64748b;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #64748b;
  --bs-gradient: none;
}
.btn-outline-secondary {
  --bs-btn-color: #474a57;
  --bs-btn-border-color: #474a57;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #474a57;
  --bs-btn-hover-border-color: #474a57;
  --bs-btn-focus-shadow-rgb: 71, 74, 87;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #474a57;
  --bs-btn-active-border-color: #474a57;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #474a57;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #474a57;
  --bs-gradient: none;
}
.btn-outline-success {
  --bs-btn-color: #007e4e;
  --bs-btn-border-color: #007e4e;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #007e4e;
  --bs-btn-hover-border-color: #007e4e;
  --bs-btn-focus-shadow-rgb: 0, 126, 78;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #007e4e;
  --bs-btn-active-border-color: #007e4e;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #007e4e;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #007e4e;
  --bs-gradient: none;
}
.btn-outline-info {
  --bs-btn-color: #005b99;
  --bs-btn-border-color: #005b99;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #005b99;
  --bs-btn-hover-border-color: #005b99;
  --bs-btn-focus-shadow-rgb: 0, 91, 153;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #005b99;
  --bs-btn-active-border-color: #005b99;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #005b99;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #005b99;
  --bs-gradient: none;
}
.btn-outline-warning {
  --bs-btn-color: #974200;
  --bs-btn-border-color: #974200;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #974200;
  --bs-btn-hover-border-color: #974200;
  --bs-btn-focus-shadow-rgb: 151, 66, 0;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #974200;
  --bs-btn-active-border-color: #974200;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #974200;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #974200;
  --bs-gradient: none;
}
.btn-outline-danger {
  --bs-btn-color: #c20017;
  --bs-btn-border-color: #c20017;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #c20017;
  --bs-btn-hover-border-color: #c20017;
  --bs-btn-focus-shadow-rgb: 194, 0, 23;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #c20017;
  --bs-btn-active-border-color: #c20017;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #c20017;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #c20017;
  --bs-gradient: none;
}
.btn-outline-light {
  --bs-btn-color: #f9f9f9;
  --bs-btn-border-color: #f9f9f9;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #f9f9f9;
  --bs-btn-hover-border-color: #f9f9f9;
  --bs-btn-focus-shadow-rgb: 249, 249, 249;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #f9f9f9;
  --bs-btn-active-border-color: #f9f9f9;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #f9f9f9;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #f9f9f9;
  --bs-gradient: none;
}
.btn-outline-dark {
  --bs-btn-color: #4a545b;
  --bs-btn-border-color: #4a545b;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #4a545b;
  --bs-btn-hover-border-color: #4a545b;
  --bs-btn-focus-shadow-rgb: 74, 84, 91;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #4a545b;
  --bs-btn-active-border-color: #4a545b;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #4a545b;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #4a545b;
  --bs-gradient: none;
}
.btn-link {
  --bs-btn-font-weight: 400;
  --bs-btn-color: var(--bs-link-color);
  --bs-btn-bg: transparent;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: var(--bs-link-hover-color);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-active-color: var(--bs-link-hover-color);
  --bs-btn-active-border-color: transparent;
  --bs-btn-disabled-color: #bcc1c7;
  --bs-btn-disabled-border-color: transparent;
  --bs-btn-box-shadow: 0 0 0 #000;
  --bs-btn-focus-shadow-rgb: 123, 137, 156;
  text-decoration: underline;
}
.btn-link:hover, .btn-link:focus-visible {
  text-decoration: underline;
}
.btn-link:focus-visible {
  color: var(--bs-btn-color);
}
.btn-link:hover {
  color: var(--bs-btn-hover-color);
}
.btn-lg, .btn-group-lg > .btn, .btn-buy {
  --bs-btn-padding-y: 2px;
  --bs-btn-padding-x: 12px;
  --bs-btn-font-size: 1rem;
  --bs-btn-border-radius: var(--bs-border-radius-lg);
}
.btn-sm, .btn-group-sm > .btn {
  --bs-btn-padding-y: 2px;
  --bs-btn-padding-x: 12px;
  --bs-btn-font-size: 0.875rem;
  --bs-btn-border-radius: var(--bs-border-radius-sm);
}
.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: var(--bs-body-color);
  --bs-dropdown-bg: var(--bs-body-bg);
  --bs-dropdown-border-color: #798490;
  --bs-dropdown-border-radius: var(--bs-border-radius);
  --bs-dropdown-border-width: var(--bs-border-width);
  --bs-dropdown-inner-border-radius: calc(var(--bs-border-radius) - var(--bs-border-width));
  --bs-dropdown-divider-bg: #798490;
  --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: var(--bs-tertiary-bg);
  --bs-dropdown-link-active-color: #fff;
  --bs-dropdown-link-active-bg: #64748b;
  --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: #798490;
  --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;
  }
}
.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: #bcc1c7;
  --bs-dropdown-bg: #4a545b;
  --bs-dropdown-border-color: #798490;
  --bs-dropdown-box-shadow: ;
  --bs-dropdown-link-color: #bcc1c7;
  --bs-dropdown-link-hover-color: #fff;
  --bs-dropdown-divider-bg: #798490;
  --bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15);
  --bs-dropdown-link-active-color: #fff;
  --bs-dropdown-link-active-bg: #64748b;
  --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, .btn-group-vertical > .btn {
  position: relative;
  flex: 1 1 auto;
}
.btn-group > .btn-check:checked + .btn, .btn-group > .btn-check:focus + .btn, .btn-group > .btn:hover, .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active, .btn-group-vertical > .btn-check:checked + .btn, .btn-group-vertical > .btn-check:focus + .btn, .btn-group-vertical > .btn:hover, .btn-group-vertical > .btn:focus, .btn-group-vertical > .btn:active, .btn-group-vertical > .btn.active {
  z-index: 1;
}
.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.btn-toolbar .input-group {
  width: auto;
}
.btn-group {
  border-radius: var(--bs-border-radius);
}
.btn-group > :not(.btn-check:first-child) + .btn, .btn-group > .btn-group:not(:first-child) {
  margin-left: calc(-1 * var(--bs-border-width));
}
.btn-group > .btn:not(:last-child):not(.dropdown-toggle), .btn-group > .btn.dropdown-toggle-split:first-child, .btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:nth-child(n + 3), .btn-group > :not(.btn-check) + .btn, .btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.dropdown-toggle-split {
  padding-right: 9px;
  padding-left: 9px;
}
.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 {
  padding-right: 9px;
  padding-left: 9px;
}
.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split, .btn-buy + .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, .btn-group-vertical > .btn-group {
  width: 100%;
}
.btn-group-vertical > .btn:not(:first-child), .btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: calc(-1 * var(--bs-border-width));
}
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), .btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:nth-child(n + 3), .btn-group-vertical > :not(.btn-check) + .btn, .btn-group-vertical > .btn-group:not(:first-child) > .btn {
  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 #fff, 0 0 0 0.25rem #64748b;
}
.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: #64748b;
}
.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-grow: 1;
  flex-basis: 0;
  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: rgba(var(--bs-emphasis-color-rgb), 0.8);
  --bs-navbar-disabled-color: rgba(var(--bs-emphasis-color-rgb), 0.3);
  --bs-navbar-active-color: #64748b;
  --bs-navbar-brand-padding-y: 0.40625rem;
  --bs-navbar-brand-margin-end: 1rem;
  --bs-navbar-brand-font-size: 1.125rem;
  --bs-navbar-brand-color: #64748b;
  --bs-navbar-brand-hover-color: #64748b;
  --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.125rem;
  --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%2843, 49, 54, 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: var(--bs-border-radius);
  --bs-navbar-toggler-focus-width: 0.25rem;
  --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-xs {
  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-grow: 1;
  flex-basis: 100%;
  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;
  }
}
.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: 0;
  --bs-card-spacer-x: 0;
  --bs-card-title-spacer-y: 0.5rem;
  --bs-card-title-color: ;
  --bs-card-subtitle-color: ;
  --bs-card-border-width: var(--bs-border-width);
  --bs-card-border-color: transparent;
  --bs-card-border-radius: var(--bs-border-radius);
  --bs-card-box-shadow: ;
  --bs-card-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
  --bs-card-cap-padding-y: 0;
  --bs-card-cap-padding-x: 0;
  --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: transparent;
  --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: var(--bs-border-color);
  --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: 1.25rem;
  --bs-accordion-btn-padding-y: 1rem;
  --bs-accordion-btn-color: var(--bs-body-color);
  --bs-accordion-btn-bg: var(--bs-accordion-bg);
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%232b3136' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  --bs-accordion-btn-icon-width: 1.25rem;
  --bs-accordion-btn-icon-transform: rotate(-180deg);
  --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23282e38' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #64748b;
  --bs-accordion-body-padding-x: 1.25rem;
  --bs-accordion-body-padding-y: 1rem;
  --bs-accordion-active-color: var(--bs-primary-text-emphasis);
  --bs-accordion-active-bg: var(--bs-primary-bg-subtle);
}
.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-collapse, .accordion-flush > .accordion-item > .accordion-header .accordion-button, .accordion-flush > .accordion-item > .accordion-header .accordion-button.collapsed {
  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='%23a2acb9'%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-.708'/%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='%23a2acb9'%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-.708'/%3e%3c/svg%3e");
}
.breadcrumb {
  --bs-breadcrumb-padding-x: 0;
  --bs-breadcrumb-padding-y: 0;
  --bs-breadcrumb-margin-bottom: 1rem;
  --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: #2b3136;
  --bs-pagination-bg: var(--bs-body-bg);
  --bs-pagination-border-width: 0;
  --bs-pagination-border-color: #798490;
  --bs-pagination-border-radius: var(--bs-border-radius);
  --bs-pagination-hover-color: #2b3136;
  --bs-pagination-hover-bg: var(--bs-tertiary-bg);
  --bs-pagination-hover-border-color: #798490;
  --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 #fff, 0 0 0 0.25rem #64748b;
  --bs-pagination-active-color: #fff;
  --bs-pagination-active-bg: #64748b;
  --bs-pagination-active-border-color: #64748b;
  --bs-pagination-disabled-color: #798490;
  --bs-pagination-disabled-bg: transparent;
  --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(-1 * 0);
}
.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.125rem;
  --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: 5px;
  --bs-badge-padding-y: 0;
  --bs-badge-font-size: 0.75rem;
  --bs-badge-font-weight: 700;
  --bs-badge-color: #fff;
  --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 {
  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);
}
@keyframes progress-bar-stripes {
  0% {
    background-position-x: var(--bs-progress-height);
  }
}
.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: #64748b;
  --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: var(--bs-body-bg);
  --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: var(--bs-body-bg);
  --bs-list-group-active-color: #fff;
  --bs-list-group-active-bg: #64748b;
  --bs-list-group-active-border-color: #64748b;
  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 {
  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-item-action {
  width: 100%;
  color: var(--bs-list-group-action-color);
  text-align: inherit;
}
.list-group-item-action:not(.active):hover, .list-group-item-action:not(.active):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:not(.active):active {
  color: var(--bs-list-group-action-active-color);
  background-color: var(--bs-list-group-action-active-bg);
}
.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);
  }
}
.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);
}
.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.414'/%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 #fff, 0 0 0 0.25rem #64748b;
  --bs-btn-close-focus-opacity: 1;
  --bs-btn-close-disabled-opacity: 0.25;
  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;
  filter: var(--bs-btn-close-filter);
  border: 0;
  border-radius: 0;
  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 {
  --bs-btn-close-filter: invert(1) grayscale(100%) brightness(200%);
}
:root, [data-bs-theme="light"] {
  --bs-btn-close-filter: ;
}
[data-bs-theme="dark"] {
  --bs-btn-close-filter: invert(1) grayscale(100%) brightness(200%);
}
.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: rgba(var(--bs-body-bg-rgb), 0.85);
  --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: rgba(var(--bs-body-bg-rgb), 0.85);
  --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: var(--bs-body-color);
  --bs-modal-bg: var(--bs-body-bg);
  --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;
  --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 {
  transform: translate(0, -50px);
  transition: opacity 0.45s cubic-bezier(0.3, 0, 0.15, 1), visibility 0.45s linear;
}
@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, .modal-dialog-scrollable .swag-custom-notifications-newsletter-popup__content .confirm-message, .swag-custom-notifications-newsletter-popup__content .modal-dialog-scrollable .confirm-message {
  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-top: calc(-.5 * var(--bs-modal-header-padding-y));
  margin-right: calc(-.5 * var(--bs-modal-header-padding-x));
  margin-bottom: calc(-.5 * var(--bs-modal-header-padding-y));
  margin-left: auto;
}
.modal-title {
  margin-bottom: 0;
  line-height: var(--bs-modal-title-line-height);
}
.modal-body, .swag-custom-notifications-newsletter-popup__content .confirm-message {
  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, .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, .modal-fullscreen .swag-custom-notifications-newsletter-popup__content .confirm-message, .swag-custom-notifications-newsletter-popup__content .modal-fullscreen .confirm-message {
  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, .modal-fullscreen-sm-down .swag-custom-notifications-newsletter-popup__content .confirm-message, .swag-custom-notifications-newsletter-popup__content .modal-fullscreen-sm-down .confirm-message {
    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, .modal-fullscreen-md-down .swag-custom-notifications-newsletter-popup__content .confirm-message, .swag-custom-notifications-newsletter-popup__content .modal-fullscreen-md-down .confirm-message {
    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, .modal-fullscreen-lg-down .swag-custom-notifications-newsletter-popup__content .confirm-message, .swag-custom-notifications-newsletter-popup__content .modal-fullscreen-lg-down .confirm-message {
    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, .modal-fullscreen-xl-down .swag-custom-notifications-newsletter-popup__content .confirm-message, .swag-custom-notifications-newsletter-popup__content .modal-fullscreen-xl-down .confirm-message {
    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, .modal-fullscreen-xxl-down .swag-custom-notifications-newsletter-popup__content .confirm-message, .swag-custom-notifications-newsletter-popup__content .modal-fullscreen-xxl-down .confirm-message {
    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: var(--bs-body-bg);
  --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: "Manrope", system-ui, -apple-system, 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: var(--bs-body-bg);
  --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: #2b3136;
  --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: "Manrope", system-ui, -apple-system, 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;
  filter: var(--bs-carousel-control-icon-filter);
  border: 0;
  opacity: 0.5;
  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: 0.9;
}
.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 0'/%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-.708'/%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-.708'/%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 0'/%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: var(--bs-carousel-indicator-active-bg);
  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: var(--bs-carousel-caption-color);
  text-align: center;
}
.carousel-dark {
  --bs-carousel-indicator-active-bg: #000;
  --bs-carousel-caption-color: #000;
  --bs-carousel-control-icon-filter: invert(1) grayscale(100);
}
:root, [data-bs-theme="light"] {
  --bs-carousel-indicator-active-bg: #fff;
  --bs-carousel-caption-color: #fff;
  --bs-carousel-control-icon-filter: ;
}
[data-bs-theme="dark"] {
  --bs-carousel-indicator-active-bg: #000;
  --bs-carousel-caption-color: #000;
  --bs-carousel-control-icon-filter: invert(1) grayscale(100);
}
.spinner-grow, .spinner-border, .loader {
  display: inline-block;
  flex-shrink: 0;
  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: 26px;
  --bs-spinner-height: 26px;
  --bs-spinner-vertical-align: -0.125em;
  --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: 26px;
  --bs-spinner-height: 26px;
  --bs-spinner-vertical-align: -0.125em;
  --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 {
  --bs-offcanvas-zindex: 1045;
  --bs-offcanvas-width: 400px;
  --bs-offcanvas-height: 30vh;
  --bs-offcanvas-padding-x: 20px;
  --bs-offcanvas-padding-y: 20px;
  --bs-offcanvas-color: var(--bs-body-color);
  --bs-offcanvas-bg: var(--bs-body-bg);
  --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;
  }
}
.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-top: calc(-.5 * var(--bs-offcanvas-padding-y));
  margin-right: calc(-.5 * var(--bs-offcanvas-padding-x));
  margin-bottom: calc(-.5 * var(--bs-offcanvas-padding-y));
  margin-left: 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 {
  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: #fff;
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity, 1));
}
.text-bg-secondary {
  color: #fff;
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity, 1));
}
.text-bg-success {
  color: #fff;
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity, 1));
}
.text-bg-info {
  color: #fff;
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity, 1));
}
.text-bg-warning {
  color: #fff;
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity, 1));
}
.text-bg-danger {
  color: #fff;
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity, 1));
}
.text-bg-light {
  color: #000;
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity, 1));
}
.text-bg-dark {
  color: #fff;
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity, 1));
}
.link-primary {
  color: rgba(var(--bs-primary-rgb), var(--bs-link-opacity, 1));
  text-decoration-color: rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity, 1));
}
.link-primary:hover, .link-primary:focus {
  color: rgba(80, 93, 111, var(--bs-link-opacity, 1));
  text-decoration-color: rgba(80, 93, 111, var(--bs-link-underline-opacity, 1));
}
.link-secondary {
  color: rgba(var(--bs-secondary-rgb), var(--bs-link-opacity, 1));
  text-decoration-color: rgba(var(--bs-secondary-rgb), var(--bs-link-underline-opacity, 1));
}
.link-secondary:hover, .link-secondary:focus {
  color: rgba(57, 59, 70, var(--bs-link-opacity, 1));
  text-decoration-color: rgba(57, 59, 70, var(--bs-link-underline-opacity, 1));
}
.link-success {
  color: rgba(var(--bs-success-rgb), var(--bs-link-opacity, 1));
  text-decoration-color: rgba(var(--bs-success-rgb), var(--bs-link-underline-opacity, 1));
}
.link-success:hover, .link-success:focus {
  color: rgba(0, 101, 62, var(--bs-link-opacity, 1));
  text-decoration-color: rgba(0, 101, 62, var(--bs-link-underline-opacity, 1));
}
.link-info {
  color: rgba(var(--bs-info-rgb), var(--bs-link-opacity, 1));
  text-decoration-color: rgba(var(--bs-info-rgb), var(--bs-link-underline-opacity, 1));
}
.link-info:hover, .link-info:focus {
  color: rgba(0, 73, 122, var(--bs-link-opacity, 1));
  text-decoration-color: rgba(0, 73, 122, var(--bs-link-underline-opacity, 1));
}
.link-warning {
  color: rgba(var(--bs-warning-rgb), var(--bs-link-opacity, 1));
  text-decoration-color: rgba(var(--bs-warning-rgb), var(--bs-link-underline-opacity, 1));
}
.link-warning:hover, .link-warning:focus {
  color: rgba(121, 53, 0, var(--bs-link-opacity, 1));
  text-decoration-color: rgba(121, 53, 0, var(--bs-link-underline-opacity, 1));
}
.link-danger {
  color: rgba(var(--bs-danger-rgb), var(--bs-link-opacity, 1));
  text-decoration-color: rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity, 1));
}
.link-danger:hover, .link-danger:focus {
  color: rgba(155, 0, 18, var(--bs-link-opacity, 1));
  text-decoration-color: rgba(155, 0, 18, var(--bs-link-underline-opacity, 1));
}
.link-light {
  color: rgba(var(--bs-light-rgb), var(--bs-link-opacity, 1));
  text-decoration-color: rgba(var(--bs-light-rgb), var(--bs-link-underline-opacity, 1));
}
.link-light:hover, .link-light:focus {
  color: rgba(250, 250, 250, var(--bs-link-opacity, 1));
  text-decoration-color: rgba(250, 250, 250, var(--bs-link-underline-opacity, 1));
}
.link-dark {
  color: rgba(var(--bs-dark-rgb), var(--bs-link-opacity, 1));
  text-decoration-color: rgba(var(--bs-dark-rgb), var(--bs-link-underline-opacity, 1));
}
.link-dark:hover, .link-dark:focus {
  color: rgba(59, 67, 73, var(--bs-link-opacity, 1));
  text-decoration-color: rgba(59, 67, 73, var(--bs-link-underline-opacity, 1));
}
.link-body-emphasis {
  color: rgba(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 1));
  text-decoration-color: rgba(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 1));
}
.link-body-emphasis:hover, .link-body-emphasis:focus {
  color: rgba(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 0.75));
  text-decoration-color: rgba(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 0.75));
}
.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 {
  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, .offcanvas .offcanvas-footer {
  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;
  }
}
.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;
}
.visually-hidden *, .visually-hidden-focusable:not(:focus):not(:focus-within) * {
  overflow: hidden !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;
}
.align-top {
  vertical-align: top;
}
.align-middle {
  vertical-align: middle;
}
.align-bottom {
  vertical-align: bottom;
}
.align-text-bottom {
  vertical-align: text-bottom;
}
.align-text-top {
  vertical-align: text-top;
}
.float-start {
  float: left;
}
.float-end {
  float: right;
}
.float-none {
  float: none;
}
.object-fit-contain {
  object-fit: contain;
}
.object-fit-cover {
  object-fit: cover;
}
.object-fit-fill {
  object-fit: fill;
}
.object-fit-scale {
  object-fit: scale-down;
}
.object-fit-none {
  object-fit: none;
}
.opacity-0 {
  opacity: 0;
}
.opacity-25 {
  opacity: 0.25;
}
.opacity-50 {
  opacity: 0.5;
}
.opacity-75 {
  opacity: 0.75;
}
.opacity-100 {
  opacity: 1;
}
.overflow-auto {
  overflow: auto;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-visible {
  overflow: visible;
}
.overflow-scroll {
  overflow: scroll;
}
.overflow-x-auto {
  overflow-x: auto;
}
.overflow-x-hidden {
  overflow-x: hidden;
}
.overflow-x-visible {
  overflow-x: visible;
}
.overflow-x-scroll {
  overflow-x: scroll;
}
.overflow-y-auto {
  overflow-y: auto;
}
.overflow-y-hidden {
  overflow-y: hidden;
}
.overflow-y-visible {
  overflow-y: visible;
}
.overflow-y-scroll {
  overflow-y: scroll;
}
.d-inline {
  display: inline;
}
.d-inline-block {
  display: inline-block;
}
.d-block {
  display: block;
}
.d-grid {
  display: grid;
}
.d-inline-grid {
  display: inline-grid;
}
.d-table {
  display: table;
}
.d-table-row {
  display: table-row;
}
.d-table-cell {
  display: table-cell;
}
.d-flex {
  display: flex;
}
.d-inline-flex {
  display: inline-flex;
}
.d-none {
  display: none;
}
.shadow {
  box-shadow: var(--bs-box-shadow);
}
.shadow-sm {
  box-shadow: var(--bs-box-shadow-sm);
}
.shadow-lg {
  box-shadow: var(--bs-box-shadow-lg);
}
.shadow-none {
  box-shadow: none;
}
.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));
}
.position-static {
  position: static;
}
.position-relative {
  position: relative;
}
.position-absolute {
  position: absolute;
}
.position-fixed {
  position: fixed;
}
.position-sticky {
  position: sticky;
}
.top-0 {
  top: 0;
}
.top-50 {
  top: 50%;
}
.top-100 {
  top: 100%;
}
.bottom-0 {
  bottom: 0;
}
.bottom-50 {
  bottom: 50%;
}
.bottom-100 {
  bottom: 100%;
}
.start-0 {
  left: 0;
}
.start-50 {
  left: 50%;
}
.start-100 {
  left: 100%;
}
.end-0 {
  right: 0;
}
.end-50 {
  right: 50%;
}
.end-100 {
  right: 100%;
}
.translate-middle {
  transform: translate(-50%, -50%);
}
.translate-middle-x {
  transform: translateX(-50%);
}
.translate-middle-y {
  transform: translateY(-50%);
}
.border {
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);
}
.border-0 {
  border: 0;
}
.border-top {
  border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);
}
.border-top-0 {
  border-top: 0;
}
.border-end {
  border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);
}
.border-end-0 {
  border-right: 0;
}
.border-bottom {
  border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);
}
.border-bottom-0 {
  border-bottom: 0;
}
.border-start {
  border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);
}
.border-start-0 {
  border-left: 0;
}
.border-primary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity));
}
.border-secondary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity));
}
.border-success {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity));
}
.border-info {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity));
}
.border-warning {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity));
}
.border-danger {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity));
}
.border-light {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity));
}
.border-dark {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity));
}
.border-black {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-black-rgb), var(--bs-border-opacity));
}
.border-white {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity));
}
.border-primary-subtle {
  border-color: var(--bs-primary-border-subtle);
}
.border-secondary-subtle {
  border-color: var(--bs-secondary-border-subtle);
}
.border-success-subtle {
  border-color: var(--bs-success-border-subtle);
}
.border-info-subtle {
  border-color: var(--bs-info-border-subtle);
}
.border-warning-subtle {
  border-color: var(--bs-warning-border-subtle);
}
.border-danger-subtle {
  border-color: var(--bs-danger-border-subtle);
}
.border-light-subtle {
  border-color: var(--bs-light-border-subtle);
}
.border-dark-subtle {
  border-color: var(--bs-dark-border-subtle);
}
.border-1 {
  border-width: 1px;
}
.border-2 {
  border-width: 2px;
}
.border-3 {
  border-width: 3px;
}
.border-4 {
  border-width: 4px;
}
.border-5 {
  border-width: 5px;
}
.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%;
}
.w-50 {
  width: 50%;
}
.w-75 {
  width: 75%;
}
.w-100 {
  width: 100%;
}
.w-auto {
  width: auto;
}
.mw-100 {
  max-width: 100%;
}
.vw-100 {
  width: 100vw;
}
.min-vw-100 {
  min-width: 100vw;
}
.h-25 {
  height: 25%;
}
.h-50 {
  height: 50%;
}
.h-75 {
  height: 75%;
}
.h-100 {
  height: 100%;
}
.h-auto {
  height: auto;
}
.mh-100 {
  max-height: 100%;
}
.vh-100 {
  height: 100vh;
}
.min-vh-100 {
  min-height: 100vh;
}
.flex-fill {
  flex: 1 1 auto;
}
.flex-row {
  flex-direction: row;
}
.flex-column {
  flex-direction: column;
}
.flex-row-reverse {
  flex-direction: row-reverse;
}
.flex-column-reverse {
  flex-direction: column-reverse;
}
.flex-grow-0 {
  flex-grow: 0;
}
.flex-grow-1 {
  flex-grow: 1;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.flex-shrink-1 {
  flex-shrink: 1;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-nowrap {
  flex-wrap: nowrap;
}
.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}
.justify-content-start {
  justify-content: flex-start;
}
.justify-content-end {
  justify-content: flex-end;
}
.justify-content-center {
  justify-content: center;
}
.justify-content-between {
  justify-content: space-between;
}
.justify-content-around {
  justify-content: space-around;
}
.justify-content-evenly {
  justify-content: space-evenly;
}
.align-items-start {
  align-items: flex-start;
}
.align-items-end {
  align-items: flex-end;
}
.align-items-center {
  align-items: center;
}
.align-items-baseline {
  align-items: baseline;
}
.align-items-stretch {
  align-items: stretch;
}
.align-content-start {
  align-content: flex-start;
}
.align-content-end {
  align-content: flex-end;
}
.align-content-center {
  align-content: center;
}
.align-content-between {
  align-content: space-between;
}
.align-content-around {
  align-content: space-around;
}
.align-content-stretch {
  align-content: stretch;
}
.align-self-auto {
  align-self: auto;
}
.align-self-start {
  align-self: flex-start;
}
.align-self-end {
  align-self: flex-end;
}
.align-self-center {
  align-self: center;
}
.align-self-baseline {
  align-self: baseline;
}
.align-self-stretch {
  align-self: stretch;
}
.order-first {
  order: -1;
}
.order-0 {
  order: 0;
}
.order-1 {
  order: 1;
}
.order-2 {
  order: 2;
}
.order-3 {
  order: 3;
}
.order-4 {
  order: 4;
}
.order-5 {
  order: 5;
}
.order-last {
  order: 6;
}
.m-0 {
  margin: 0;
}
.m-1 {
  margin: 0.25rem;
}
.m-2 {
  margin: 0.5rem;
}
.m-3 {
  margin: 1rem;
}
.m-4 {
  margin: 1.5rem;
}
.m-5 {
  margin: 3rem;
}
.m-auto {
  margin: auto;
}
.mx-0 {
  margin-right: 0;
  margin-left: 0;
}
.mx-1 {
  margin-right: 0.25rem;
  margin-left: 0.25rem;
}
.mx-2 {
  margin-right: 0.5rem;
  margin-left: 0.5rem;
}
.mx-3 {
  margin-right: 1rem;
  margin-left: 1rem;
}
.mx-4 {
  margin-right: 1.5rem;
  margin-left: 1.5rem;
}
.mx-5 {
  margin-right: 3rem;
  margin-left: 3rem;
}
.mx-auto {
  margin-right: auto;
  margin-left: auto;
}
.my-0 {
  margin-top: 0;
  margin-bottom: 0;
}
.my-1 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.my-3 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.my-4 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.my-5 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}
.mt-0 {
  margin-top: 0;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 1rem;
}
.mt-4 {
  margin-top: 1.5rem;
}
.mt-5 {
  margin-top: 3rem;
}
.mt-auto {
  margin-top: auto;
}
.me-0 {
  margin-right: 0;
}
.me-1 {
  margin-right: 0.25rem;
}
.me-2 {
  margin-right: 0.5rem;
}
.me-3 {
  margin-right: 1rem;
}
.me-4 {
  margin-right: 1.5rem;
}
.me-5 {
  margin-right: 3rem;
}
.me-auto {
  margin-right: auto;
}
.mb-0 {
  margin-bottom: 0;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 1rem;
}
.mb-4 {
  margin-bottom: 1.5rem;
}
.mb-5 {
  margin-bottom: 3rem;
}
.mb-auto {
  margin-bottom: auto;
}
.ms-0 {
  margin-left: 0;
}
.ms-1 {
  margin-left: 0.25rem;
}
.ms-2 {
  margin-left: 0.5rem;
}
.ms-3 {
  margin-left: 1rem;
}
.ms-4 {
  margin-left: 1.5rem;
}
.ms-5 {
  margin-left: 3rem;
}
.ms-auto {
  margin-left: auto;
}
.p-0 {
  padding: 0;
}
.p-1 {
  padding: 0.25rem;
}
.p-2 {
  padding: 0.5rem;
}
.p-3 {
  padding: 1rem;
}
.p-4 {
  padding: 1.5rem;
}
.p-5 {
  padding: 3rem;
}
.px-0 {
  padding-right: 0;
  padding-left: 0;
}
.px-1 {
  padding-right: 0.25rem;
  padding-left: 0.25rem;
}
.px-2 {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.px-3 {
  padding-right: 1rem;
  padding-left: 1rem;
}
.px-4 {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}
.px-5 {
  padding-right: 3rem;
  padding-left: 3rem;
}
.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-4 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.pt-0 {
  padding-top: 0;
}
.pt-1 {
  padding-top: 0.25rem;
}
.pt-2 {
  padding-top: 0.5rem;
}
.pt-3 {
  padding-top: 1rem;
}
.pt-4 {
  padding-top: 1.5rem;
}
.pt-5 {
  padding-top: 3rem;
}
.pe-0 {
  padding-right: 0;
}
.pe-1 {
  padding-right: 0.25rem;
}
.pe-2 {
  padding-right: 0.5rem;
}
.pe-3 {
  padding-right: 1rem;
}
.pe-4 {
  padding-right: 1.5rem;
}
.pe-5 {
  padding-right: 3rem;
}
.pb-0 {
  padding-bottom: 0;
}
.pb-1 {
  padding-bottom: 0.25rem;
}
.pb-2 {
  padding-bottom: 0.5rem;
}
.pb-3 {
  padding-bottom: 1rem;
}
.pb-4 {
  padding-bottom: 1.5rem;
}
.pb-5 {
  padding-bottom: 3rem;
}
.ps-0 {
  padding-left: 0;
}
.ps-1 {
  padding-left: 0.25rem;
}
.ps-2 {
  padding-left: 0.5rem;
}
.ps-3 {
  padding-left: 1rem;
}
.ps-4 {
  padding-left: 1.5rem;
}
.ps-5 {
  padding-left: 3rem;
}
.gap-0 {
  gap: 0;
}
.gap-1 {
  gap: 0.25rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-3 {
  gap: 1rem;
}
.gap-4 {
  gap: 1.5rem;
}
.gap-5 {
  gap: 3rem;
}
.row-gap-0 {
  row-gap: 0;
}
.row-gap-1 {
  row-gap: 0.25rem;
}
.row-gap-2 {
  row-gap: 0.5rem;
}
.row-gap-3 {
  row-gap: 1rem;
}
.row-gap-4 {
  row-gap: 1.5rem;
}
.row-gap-5 {
  row-gap: 3rem;
}
.column-gap-0 {
  column-gap: 0;
}
.column-gap-1 {
  column-gap: 0.25rem;
}
.column-gap-2 {
  column-gap: 0.5rem;
}
.column-gap-3 {
  column-gap: 1rem;
}
.column-gap-4 {
  column-gap: 1.5rem;
}
.column-gap-5 {
  column-gap: 3rem;
}
.font-monospace {
  font-family: var(--bs-font-monospace);
}
.fs-1 {
  font-size: calc(1.35rem + 1.2vw);
}
.fs-2 {
  font-size: calc(1.3rem + 0.6vw);
}
.fs-3 {
  font-size: calc(1.275rem + 0.3vw);
}
.fs-4 {
  font-size: 1.25rem;
}
.fs-5 {
  font-size: 1rem;
}
.fs-6 {
  font-size: 0.875rem;
}
.fst-italic {
  font-style: italic;
}
.fst-normal {
  font-style: normal;
}
.fw-lighter {
  font-weight: lighter;
}
.fw-light {
  font-weight: 300;
}
.fw-normal {
  font-weight: 400;
}
.fw-medium {
  font-weight: 500;
}
.fw-semibold {
  font-weight: 600;
}
.fw-bold {
  font-weight: 700;
}
.fw-bolder {
  font-weight: bolder;
}
.lh-1 {
  line-height: 1;
}
.lh-sm {
  line-height: 1.25;
}
.lh-base {
  line-height: 1.5;
}
.lh-lg {
  line-height: 2;
}
.text-start {
  text-align: left;
}
.text-end {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-decoration-none {
  text-decoration: none;
}
.text-decoration-underline {
  text-decoration: underline;
}
.text-decoration-line-through {
  text-decoration: line-through;
}
.text-lowercase {
  text-transform: lowercase;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-capitalize {
  text-transform: capitalize;
}
.text-wrap {
  white-space: normal;
}
.text-nowrap {
  white-space: nowrap;
}
/* rtl:begin:remove */
.text-break {
  word-wrap: break-word;
  word-break: break-word;
}
/* rtl:end:remove */
.text-primary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity));
}
.text-secondary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity));
}
.text-success {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity));
}
.text-info {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity));
}
.text-warning {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity));
}
.text-danger {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity));
}
.text-light {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity));
}
.text-dark {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity));
}
.text-black {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity));
}
.text-white {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity));
}
.text-body {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity));
}
.text-muted {
  --bs-text-opacity: 1;
  color: var(--bs-secondary-color);
}
.text-black-50 {
  --bs-text-opacity: 1;
  color: rgba(0, 0, 0, 0.5);
}
.text-white-50 {
  --bs-text-opacity: 1;
  color: rgba(255, 255, 255, 0.5);
}
.text-body-secondary {
  --bs-text-opacity: 1;
  color: var(--bs-secondary-color);
}
.text-body-tertiary {
  --bs-text-opacity: 1;
  color: var(--bs-tertiary-color);
}
.text-body-emphasis {
  --bs-text-opacity: 1;
  color: var(--bs-emphasis-color);
}
.text-reset {
  --bs-text-opacity: 1;
  color: inherit;
}
.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);
}
.text-secondary-emphasis {
  color: var(--bs-secondary-text-emphasis);
}
.text-success-emphasis {
  color: var(--bs-success-text-emphasis);
}
.text-info-emphasis {
  color: var(--bs-info-text-emphasis);
}
.text-warning-emphasis {
  color: var(--bs-warning-text-emphasis);
}
.text-danger-emphasis {
  color: var(--bs-danger-text-emphasis);
}
.text-light-emphasis {
  color: var(--bs-light-text-emphasis);
}
.text-dark-emphasis {
  color: var(--bs-dark-text-emphasis);
}
.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;
}
.link-offset-1-hover:hover {
  text-underline-offset: 0.125em;
}
.link-offset-2 {
  text-underline-offset: 0.25em;
}
.link-offset-2-hover:hover {
  text-underline-offset: 0.25em;
}
.link-offset-3 {
  text-underline-offset: 0.375em;
}
.link-offset-3-hover:hover {
  text-underline-offset: 0.375em;
}
.link-underline-primary {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity));
}
.link-underline-secondary {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-secondary-rgb), var(--bs-link-underline-opacity));
}
.link-underline-success {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-success-rgb), var(--bs-link-underline-opacity));
}
.link-underline-info {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-info-rgb), var(--bs-link-underline-opacity));
}
.link-underline-warning {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-warning-rgb), var(--bs-link-underline-opacity));
}
.link-underline-danger {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity));
}
.link-underline-light {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-light-rgb), var(--bs-link-underline-opacity));
}
.link-underline-dark {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-dark-rgb), var(--bs-link-underline-opacity));
}
.link-underline {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-underline-opacity, 1));
}
.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));
}
.bg-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity));
}
.bg-success {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity));
}
.bg-info {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity));
}
.bg-warning {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity));
}
.bg-danger {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity));
}
.bg-light {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity));
}
.bg-dark {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity));
}
.bg-black {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity));
}
.bg-white {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity));
}
.bg-body {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity));
}
.bg-transparent {
  --bs-bg-opacity: 1;
  background-color: transparent;
}
.bg-body-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-bg-rgb), var(--bs-bg-opacity));
}
.bg-body-tertiary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-tertiary-bg-rgb), var(--bs-bg-opacity));
}
.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);
}
.bg-secondary-subtle {
  background-color: var(--bs-secondary-bg-subtle);
}
.bg-success-subtle {
  background-color: var(--bs-success-bg-subtle);
}
.bg-info-subtle {
  background-color: var(--bs-info-bg-subtle);
}
.bg-warning-subtle {
  background-color: var(--bs-warning-bg-subtle);
}
.bg-danger-subtle {
  background-color: var(--bs-danger-bg-subtle);
}
.bg-light-subtle {
  background-color: var(--bs-light-bg-subtle);
}
.bg-dark-subtle {
  background-color: var(--bs-dark-bg-subtle);
}
.bg-gradient {
  background-image: var(--bs-gradient);
}
.user-select-all {
  user-select: all;
}
.user-select-auto {
  user-select: auto;
}
.user-select-none {
  user-select: none;
}
.pe-none {
  pointer-events: none;
}
.pe-auto {
  pointer-events: auto;
}
.rounded {
  border-radius: var(--bs-border-radius);
}
.rounded-0 {
  border-radius: 0;
}
.rounded-1 {
  border-radius: var(--bs-border-radius-sm);
}
.rounded-2 {
  border-radius: var(--bs-border-radius);
}
.rounded-3 {
  border-radius: var(--bs-border-radius-lg);
}
.rounded-4 {
  border-radius: var(--bs-border-radius-xl);
}
.rounded-5 {
  border-radius: var(--bs-border-radius-xxl);
}
.rounded-circle {
  border-radius: 50%;
}
.rounded-pill {
  border-radius: var(--bs-border-radius-pill);
}
.rounded-top {
  border-top-left-radius: var(--bs-border-radius);
  border-top-right-radius: var(--bs-border-radius);
}
.rounded-top-0 {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.rounded-top-1 {
  border-top-left-radius: var(--bs-border-radius-sm);
  border-top-right-radius: var(--bs-border-radius-sm);
}
.rounded-top-2 {
  border-top-left-radius: var(--bs-border-radius);
  border-top-right-radius: var(--bs-border-radius);
}
.rounded-top-3 {
  border-top-left-radius: var(--bs-border-radius-lg);
  border-top-right-radius: var(--bs-border-radius-lg);
}
.rounded-top-4 {
  border-top-left-radius: var(--bs-border-radius-xl);
  border-top-right-radius: var(--bs-border-radius-xl);
}
.rounded-top-5 {
  border-top-left-radius: var(--bs-border-radius-xxl);
  border-top-right-radius: var(--bs-border-radius-xxl);
}
.rounded-top-circle {
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
}
.rounded-top-pill {
  border-top-left-radius: var(--bs-border-radius-pill);
  border-top-right-radius: var(--bs-border-radius-pill);
}
.rounded-end {
  border-top-right-radius: var(--bs-border-radius);
  border-bottom-right-radius: var(--bs-border-radius);
}
.rounded-end-0 {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.rounded-end-1 {
  border-top-right-radius: var(--bs-border-radius-sm);
  border-bottom-right-radius: var(--bs-border-radius-sm);
}
.rounded-end-2 {
  border-top-right-radius: var(--bs-border-radius);
  border-bottom-right-radius: var(--bs-border-radius);
}
.rounded-end-3 {
  border-top-right-radius: var(--bs-border-radius-lg);
  border-bottom-right-radius: var(--bs-border-radius-lg);
}
.rounded-end-4 {
  border-top-right-radius: var(--bs-border-radius-xl);
  border-bottom-right-radius: var(--bs-border-radius-xl);
}
.rounded-end-5 {
  border-top-right-radius: var(--bs-border-radius-xxl);
  border-bottom-right-radius: var(--bs-border-radius-xxl);
}
.rounded-end-circle {
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
}
.rounded-end-pill {
  border-top-right-radius: var(--bs-border-radius-pill);
  border-bottom-right-radius: var(--bs-border-radius-pill);
}
.rounded-bottom {
  border-bottom-right-radius: var(--bs-border-radius);
  border-bottom-left-radius: var(--bs-border-radius);
}
.rounded-bottom-0 {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.rounded-bottom-1 {
  border-bottom-right-radius: var(--bs-border-radius-sm);
  border-bottom-left-radius: var(--bs-border-radius-sm);
}
.rounded-bottom-2 {
  border-bottom-right-radius: var(--bs-border-radius);
  border-bottom-left-radius: var(--bs-border-radius);
}
.rounded-bottom-3 {
  border-bottom-right-radius: var(--bs-border-radius-lg);
  border-bottom-left-radius: var(--bs-border-radius-lg);
}
.rounded-bottom-4 {
  border-bottom-right-radius: var(--bs-border-radius-xl);
  border-bottom-left-radius: var(--bs-border-radius-xl);
}
.rounded-bottom-5 {
  border-bottom-right-radius: var(--bs-border-radius-xxl);
  border-bottom-left-radius: var(--bs-border-radius-xxl);
}
.rounded-bottom-circle {
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
}
.rounded-bottom-pill {
  border-bottom-right-radius: var(--bs-border-radius-pill);
  border-bottom-left-radius: var(--bs-border-radius-pill);
}
.rounded-start {
  border-bottom-left-radius: var(--bs-border-radius);
  border-top-left-radius: var(--bs-border-radius);
}
.rounded-start-0 {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.rounded-start-1 {
  border-bottom-left-radius: var(--bs-border-radius-sm);
  border-top-left-radius: var(--bs-border-radius-sm);
}
.rounded-start-2 {
  border-bottom-left-radius: var(--bs-border-radius);
  border-top-left-radius: var(--bs-border-radius);
}
.rounded-start-3 {
  border-bottom-left-radius: var(--bs-border-radius-lg);
  border-top-left-radius: var(--bs-border-radius-lg);
}
.rounded-start-4 {
  border-bottom-left-radius: var(--bs-border-radius-xl);
  border-top-left-radius: var(--bs-border-radius-xl);
}
.rounded-start-5 {
  border-bottom-left-radius: var(--bs-border-radius-xxl);
  border-top-left-radius: var(--bs-border-radius-xxl);
}
.rounded-start-circle {
  border-bottom-left-radius: 50%;
  border-top-left-radius: 50%;
}
.rounded-start-pill {
  border-bottom-left-radius: var(--bs-border-radius-pill);
  border-top-left-radius: var(--bs-border-radius-pill);
}
.visible {
  visibility: visible;
}
.invisible {
  visibility: hidden;
}
.z-n1 {
  z-index: -1;
}
.z-0 {
  z-index: 0;
}
.z-1 {
  z-index: 1;
}
.z-2 {
  z-index: 2;
}
.z-3 {
  z-index: 3;
}
.z-4 {
  z-index: 4;
}
.z-5 {
  z-index: 5;
}
@media (min-width: 576px) {
  .float-sm-start {
    float: left;
  }
  .float-sm-end {
    float: right;
  }
  .float-sm-none {
    float: none;
  }
  .object-fit-sm-contain {
    object-fit: contain;
  }
  .object-fit-sm-cover {
    object-fit: cover;
  }
  .object-fit-sm-fill {
    object-fit: fill;
  }
  .object-fit-sm-scale {
    object-fit: scale-down;
  }
  .object-fit-sm-none {
    object-fit: none;
  }
  .d-sm-inline {
    display: inline;
  }
  .d-sm-inline-block {
    display: inline-block;
  }
  .d-sm-block {
    display: block;
  }
  .d-sm-grid {
    display: grid;
  }
  .d-sm-inline-grid {
    display: inline-grid;
  }
  .d-sm-table {
    display: table;
  }
  .d-sm-table-row {
    display: table-row;
  }
  .d-sm-table-cell {
    display: table-cell;
  }
  .d-sm-flex {
    display: flex;
  }
  .d-sm-inline-flex {
    display: inline-flex;
  }
  .d-sm-none {
    display: none;
  }
  .flex-sm-fill {
    flex: 1 1 auto;
  }
  .flex-sm-row {
    flex-direction: row;
  }
  .flex-sm-column {
    flex-direction: column;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse;
  }
  .flex-sm-grow-0 {
    flex-grow: 0;
  }
  .flex-sm-grow-1 {
    flex-grow: 1;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1;
  }
  .flex-sm-wrap {
    flex-wrap: wrap;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse;
  }
  .justify-content-sm-start {
    justify-content: flex-start;
  }
  .justify-content-sm-end {
    justify-content: flex-end;
  }
  .justify-content-sm-center {
    justify-content: center;
  }
  .justify-content-sm-between {
    justify-content: space-between;
  }
  .justify-content-sm-around {
    justify-content: space-around;
  }
  .justify-content-sm-evenly {
    justify-content: space-evenly;
  }
  .align-items-sm-start {
    align-items: flex-start;
  }
  .align-items-sm-end {
    align-items: flex-end;
  }
  .align-items-sm-center {
    align-items: center;
  }
  .align-items-sm-baseline {
    align-items: baseline;
  }
  .align-items-sm-stretch {
    align-items: stretch;
  }
  .align-content-sm-start {
    align-content: flex-start;
  }
  .align-content-sm-end {
    align-content: flex-end;
  }
  .align-content-sm-center {
    align-content: center;
  }
  .align-content-sm-between {
    align-content: space-between;
  }
  .align-content-sm-around {
    align-content: space-around;
  }
  .align-content-sm-stretch {
    align-content: stretch;
  }
  .align-self-sm-auto {
    align-self: auto;
  }
  .align-self-sm-start {
    align-self: flex-start;
  }
  .align-self-sm-end {
    align-self: flex-end;
  }
  .align-self-sm-center {
    align-self: center;
  }
  .align-self-sm-baseline {
    align-self: baseline;
  }
  .align-self-sm-stretch {
    align-self: stretch;
  }
  .order-sm-first {
    order: -1;
  }
  .order-sm-0 {
    order: 0;
  }
  .order-sm-1 {
    order: 1;
  }
  .order-sm-2 {
    order: 2;
  }
  .order-sm-3 {
    order: 3;
  }
  .order-sm-4 {
    order: 4;
  }
  .order-sm-5 {
    order: 5;
  }
  .order-sm-last {
    order: 6;
  }
  .m-sm-0 {
    margin: 0;
  }
  .m-sm-1 {
    margin: 0.25rem;
  }
  .m-sm-2 {
    margin: 0.5rem;
  }
  .m-sm-3 {
    margin: 1rem;
  }
  .m-sm-4 {
    margin: 1.5rem;
  }
  .m-sm-5 {
    margin: 3rem;
  }
  .m-sm-auto {
    margin: auto;
  }
  .mx-sm-0 {
    margin-right: 0;
    margin-left: 0;
  }
  .mx-sm-1 {
    margin-right: 0.25rem;
    margin-left: 0.25rem;
  }
  .mx-sm-2 {
    margin-right: 0.5rem;
    margin-left: 0.5rem;
  }
  .mx-sm-3 {
    margin-right: 1rem;
    margin-left: 1rem;
  }
  .mx-sm-4 {
    margin-right: 1.5rem;
    margin-left: 1.5rem;
  }
  .mx-sm-5 {
    margin-right: 3rem;
    margin-left: 3rem;
  }
  .mx-sm-auto {
    margin-right: auto;
    margin-left: auto;
  }
  .my-sm-0 {
    margin-top: 0;
    margin-bottom: 0;
  }
  .my-sm-1 {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }
  .my-sm-2 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .my-sm-3 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .my-sm-4 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .my-sm-5 {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
  .my-sm-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .mt-sm-0 {
    margin-top: 0;
  }
  .mt-sm-1 {
    margin-top: 0.25rem;
  }
  .mt-sm-2 {
    margin-top: 0.5rem;
  }
  .mt-sm-3 {
    margin-top: 1rem;
  }
  .mt-sm-4 {
    margin-top: 1.5rem;
  }
  .mt-sm-5 {
    margin-top: 3rem;
  }
  .mt-sm-auto {
    margin-top: auto;
  }
  .me-sm-0 {
    margin-right: 0;
  }
  .me-sm-1 {
    margin-right: 0.25rem;
  }
  .me-sm-2 {
    margin-right: 0.5rem;
  }
  .me-sm-3 {
    margin-right: 1rem;
  }
  .me-sm-4 {
    margin-right: 1.5rem;
  }
  .me-sm-5 {
    margin-right: 3rem;
  }
  .me-sm-auto {
    margin-right: auto;
  }
  .mb-sm-0 {
    margin-bottom: 0;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem;
  }
  .mb-sm-3 {
    margin-bottom: 1rem;
  }
  .mb-sm-4 {
    margin-bottom: 1.5rem;
  }
  .mb-sm-5 {
    margin-bottom: 3rem;
  }
  .mb-sm-auto {
    margin-bottom: auto;
  }
  .ms-sm-0 {
    margin-left: 0;
  }
  .ms-sm-1 {
    margin-left: 0.25rem;
  }
  .ms-sm-2 {
    margin-left: 0.5rem;
  }
  .ms-sm-3 {
    margin-left: 1rem;
  }
  .ms-sm-4 {
    margin-left: 1.5rem;
  }
  .ms-sm-5 {
    margin-left: 3rem;
  }
  .ms-sm-auto {
    margin-left: auto;
  }
  .p-sm-0 {
    padding: 0;
  }
  .p-sm-1 {
    padding: 0.25rem;
  }
  .p-sm-2 {
    padding: 0.5rem;
  }
  .p-sm-3 {
    padding: 1rem;
  }
  .p-sm-4 {
    padding: 1.5rem;
  }
  .p-sm-5 {
    padding: 3rem;
  }
  .px-sm-0 {
    padding-right: 0;
    padding-left: 0;
  }
  .px-sm-1 {
    padding-right: 0.25rem;
    padding-left: 0.25rem;
  }
  .px-sm-2 {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .px-sm-3 {
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .px-sm-4 {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
  .px-sm-5 {
    padding-right: 3rem;
    padding-left: 3rem;
  }
  .py-sm-0 {
    padding-top: 0;
    padding-bottom: 0;
  }
  .py-sm-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
  .py-sm-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .py-sm-3 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .py-sm-4 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .py-sm-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .pt-sm-0 {
    padding-top: 0;
  }
  .pt-sm-1 {
    padding-top: 0.25rem;
  }
  .pt-sm-2 {
    padding-top: 0.5rem;
  }
  .pt-sm-3 {
    padding-top: 1rem;
  }
  .pt-sm-4 {
    padding-top: 1.5rem;
  }
  .pt-sm-5 {
    padding-top: 3rem;
  }
  .pe-sm-0 {
    padding-right: 0;
  }
  .pe-sm-1 {
    padding-right: 0.25rem;
  }
  .pe-sm-2 {
    padding-right: 0.5rem;
  }
  .pe-sm-3 {
    padding-right: 1rem;
  }
  .pe-sm-4 {
    padding-right: 1.5rem;
  }
  .pe-sm-5 {
    padding-right: 3rem;
  }
  .pb-sm-0 {
    padding-bottom: 0;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem;
  }
  .pb-sm-3 {
    padding-bottom: 1rem;
  }
  .pb-sm-4 {
    padding-bottom: 1.5rem;
  }
  .pb-sm-5 {
    padding-bottom: 3rem;
  }
  .ps-sm-0 {
    padding-left: 0;
  }
  .ps-sm-1 {
    padding-left: 0.25rem;
  }
  .ps-sm-2 {
    padding-left: 0.5rem;
  }
  .ps-sm-3 {
    padding-left: 1rem;
  }
  .ps-sm-4 {
    padding-left: 1.5rem;
  }
  .ps-sm-5 {
    padding-left: 3rem;
  }
  .gap-sm-0 {
    gap: 0;
  }
  .gap-sm-1 {
    gap: 0.25rem;
  }
  .gap-sm-2 {
    gap: 0.5rem;
  }
  .gap-sm-3 {
    gap: 1rem;
  }
  .gap-sm-4 {
    gap: 1.5rem;
  }
  .gap-sm-5 {
    gap: 3rem;
  }
  .row-gap-sm-0 {
    row-gap: 0;
  }
  .row-gap-sm-1 {
    row-gap: 0.25rem;
  }
  .row-gap-sm-2 {
    row-gap: 0.5rem;
  }
  .row-gap-sm-3 {
    row-gap: 1rem;
  }
  .row-gap-sm-4 {
    row-gap: 1.5rem;
  }
  .row-gap-sm-5 {
    row-gap: 3rem;
  }
  .column-gap-sm-0 {
    column-gap: 0;
  }
  .column-gap-sm-1 {
    column-gap: 0.25rem;
  }
  .column-gap-sm-2 {
    column-gap: 0.5rem;
  }
  .column-gap-sm-3 {
    column-gap: 1rem;
  }
  .column-gap-sm-4 {
    column-gap: 1.5rem;
  }
  .column-gap-sm-5 {
    column-gap: 3rem;
  }
  .text-sm-start {
    text-align: left;
  }
  .text-sm-end {
    text-align: right;
  }
  .text-sm-center {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .float-md-start {
    float: left;
  }
  .float-md-end {
    float: right;
  }
  .float-md-none {
    float: none;
  }
  .object-fit-md-contain {
    object-fit: contain;
  }
  .object-fit-md-cover {
    object-fit: cover;
  }
  .object-fit-md-fill {
    object-fit: fill;
  }
  .object-fit-md-scale {
    object-fit: scale-down;
  }
  .object-fit-md-none {
    object-fit: none;
  }
  .d-md-inline {
    display: inline;
  }
  .d-md-inline-block {
    display: inline-block;
  }
  .d-md-block {
    display: block;
  }
  .d-md-grid {
    display: grid;
  }
  .d-md-inline-grid {
    display: inline-grid;
  }
  .d-md-table {
    display: table;
  }
  .d-md-table-row {
    display: table-row;
  }
  .d-md-table-cell {
    display: table-cell;
  }
  .d-md-flex {
    display: flex;
  }
  .d-md-inline-flex {
    display: inline-flex;
  }
  .d-md-none {
    display: none;
  }
  .flex-md-fill {
    flex: 1 1 auto;
  }
  .flex-md-row {
    flex-direction: row;
  }
  .flex-md-column {
    flex-direction: column;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse;
  }
  .flex-md-grow-0 {
    flex-grow: 0;
  }
  .flex-md-grow-1 {
    flex-grow: 1;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1;
  }
  .flex-md-wrap {
    flex-wrap: wrap;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse;
  }
  .justify-content-md-start {
    justify-content: flex-start;
  }
  .justify-content-md-end {
    justify-content: flex-end;
  }
  .justify-content-md-center {
    justify-content: center;
  }
  .justify-content-md-between {
    justify-content: space-between;
  }
  .justify-content-md-around {
    justify-content: space-around;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly;
  }
  .align-items-md-start {
    align-items: flex-start;
  }
  .align-items-md-end {
    align-items: flex-end;
  }
  .align-items-md-center {
    align-items: center;
  }
  .align-items-md-baseline {
    align-items: baseline;
  }
  .align-items-md-stretch {
    align-items: stretch;
  }
  .align-content-md-start {
    align-content: flex-start;
  }
  .align-content-md-end {
    align-content: flex-end;
  }
  .align-content-md-center {
    align-content: center;
  }
  .align-content-md-between {
    align-content: space-between;
  }
  .align-content-md-around {
    align-content: space-around;
  }
  .align-content-md-stretch {
    align-content: stretch;
  }
  .align-self-md-auto {
    align-self: auto;
  }
  .align-self-md-start {
    align-self: flex-start;
  }
  .align-self-md-end {
    align-self: flex-end;
  }
  .align-self-md-center {
    align-self: center;
  }
  .align-self-md-baseline {
    align-self: baseline;
  }
  .align-self-md-stretch {
    align-self: stretch;
  }
  .order-md-first {
    order: -1;
  }
  .order-md-0 {
    order: 0;
  }
  .order-md-1 {
    order: 1;
  }
  .order-md-2 {
    order: 2;
  }
  .order-md-3 {
    order: 3;
  }
  .order-md-4 {
    order: 4;
  }
  .order-md-5 {
    order: 5;
  }
  .order-md-last {
    order: 6;
  }
  .m-md-0 {
    margin: 0;
  }
  .m-md-1 {
    margin: 0.25rem;
  }
  .m-md-2 {
    margin: 0.5rem;
  }
  .m-md-3 {
    margin: 1rem;
  }
  .m-md-4 {
    margin: 1.5rem;
  }
  .m-md-5 {
    margin: 3rem;
  }
  .m-md-auto {
    margin: auto;
  }
  .mx-md-0 {
    margin-right: 0;
    margin-left: 0;
  }
  .mx-md-1 {
    margin-right: 0.25rem;
    margin-left: 0.25rem;
  }
  .mx-md-2 {
    margin-right: 0.5rem;
    margin-left: 0.5rem;
  }
  .mx-md-3 {
    margin-right: 1rem;
    margin-left: 1rem;
  }
  .mx-md-4 {
    margin-right: 1.5rem;
    margin-left: 1.5rem;
  }
  .mx-md-5 {
    margin-right: 3rem;
    margin-left: 3rem;
  }
  .mx-md-auto {
    margin-right: auto;
    margin-left: auto;
  }
  .my-md-0 {
    margin-top: 0;
    margin-bottom: 0;
  }
  .my-md-1 {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }
  .my-md-2 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .my-md-3 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .my-md-4 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .my-md-5 {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
  .my-md-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .mt-md-0 {
    margin-top: 0;
  }
  .mt-md-1 {
    margin-top: 0.25rem;
  }
  .mt-md-2 {
    margin-top: 0.5rem;
  }
  .mt-md-3 {
    margin-top: 1rem;
  }
  .mt-md-4 {
    margin-top: 1.5rem;
  }
  .mt-md-5 {
    margin-top: 3rem;
  }
  .mt-md-auto {
    margin-top: auto;
  }
  .me-md-0 {
    margin-right: 0;
  }
  .me-md-1 {
    margin-right: 0.25rem;
  }
  .me-md-2 {
    margin-right: 0.5rem;
  }
  .me-md-3 {
    margin-right: 1rem;
  }
  .me-md-4 {
    margin-right: 1.5rem;
  }
  .me-md-5 {
    margin-right: 3rem;
  }
  .me-md-auto {
    margin-right: auto;
  }
  .mb-md-0 {
    margin-bottom: 0;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem;
  }
  .mb-md-3 {
    margin-bottom: 1rem;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem;
  }
  .mb-md-5 {
    margin-bottom: 3rem;
  }
  .mb-md-auto {
    margin-bottom: auto;
  }
  .ms-md-0 {
    margin-left: 0;
  }
  .ms-md-1 {
    margin-left: 0.25rem;
  }
  .ms-md-2 {
    margin-left: 0.5rem;
  }
  .ms-md-3 {
    margin-left: 1rem;
  }
  .ms-md-4 {
    margin-left: 1.5rem;
  }
  .ms-md-5 {
    margin-left: 3rem;
  }
  .ms-md-auto {
    margin-left: auto;
  }
  .p-md-0 {
    padding: 0;
  }
  .p-md-1 {
    padding: 0.25rem;
  }
  .p-md-2 {
    padding: 0.5rem;
  }
  .p-md-3 {
    padding: 1rem;
  }
  .p-md-4 {
    padding: 1.5rem;
  }
  .p-md-5 {
    padding: 3rem;
  }
  .px-md-0 {
    padding-right: 0;
    padding-left: 0;
  }
  .px-md-1 {
    padding-right: 0.25rem;
    padding-left: 0.25rem;
  }
  .px-md-2 {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .px-md-3 {
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .px-md-4 {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
  .px-md-5 {
    padding-right: 3rem;
    padding-left: 3rem;
  }
  .py-md-0 {
    padding-top: 0;
    padding-bottom: 0;
  }
  .py-md-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
  .py-md-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .py-md-3 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .py-md-4 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .py-md-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .pt-md-0 {
    padding-top: 0;
  }
  .pt-md-1 {
    padding-top: 0.25rem;
  }
  .pt-md-2 {
    padding-top: 0.5rem;
  }
  .pt-md-3 {
    padding-top: 1rem;
  }
  .pt-md-4 {
    padding-top: 1.5rem;
  }
  .pt-md-5 {
    padding-top: 3rem;
  }
  .pe-md-0 {
    padding-right: 0;
  }
  .pe-md-1 {
    padding-right: 0.25rem;
  }
  .pe-md-2 {
    padding-right: 0.5rem;
  }
  .pe-md-3 {
    padding-right: 1rem;
  }
  .pe-md-4 {
    padding-right: 1.5rem;
  }
  .pe-md-5 {
    padding-right: 3rem;
  }
  .pb-md-0 {
    padding-bottom: 0;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem;
  }
  .pb-md-3 {
    padding-bottom: 1rem;
  }
  .pb-md-4 {
    padding-bottom: 1.5rem;
  }
  .pb-md-5 {
    padding-bottom: 3rem;
  }
  .ps-md-0 {
    padding-left: 0;
  }
  .ps-md-1 {
    padding-left: 0.25rem;
  }
  .ps-md-2 {
    padding-left: 0.5rem;
  }
  .ps-md-3 {
    padding-left: 1rem;
  }
  .ps-md-4 {
    padding-left: 1.5rem;
  }
  .ps-md-5 {
    padding-left: 3rem;
  }
  .gap-md-0 {
    gap: 0;
  }
  .gap-md-1 {
    gap: 0.25rem;
  }
  .gap-md-2 {
    gap: 0.5rem;
  }
  .gap-md-3 {
    gap: 1rem;
  }
  .gap-md-4 {
    gap: 1.5rem;
  }
  .gap-md-5 {
    gap: 3rem;
  }
  .row-gap-md-0 {
    row-gap: 0;
  }
  .row-gap-md-1 {
    row-gap: 0.25rem;
  }
  .row-gap-md-2 {
    row-gap: 0.5rem;
  }
  .row-gap-md-3 {
    row-gap: 1rem;
  }
  .row-gap-md-4 {
    row-gap: 1.5rem;
  }
  .row-gap-md-5 {
    row-gap: 3rem;
  }
  .column-gap-md-0 {
    column-gap: 0;
  }
  .column-gap-md-1 {
    column-gap: 0.25rem;
  }
  .column-gap-md-2 {
    column-gap: 0.5rem;
  }
  .column-gap-md-3 {
    column-gap: 1rem;
  }
  .column-gap-md-4 {
    column-gap: 1.5rem;
  }
  .column-gap-md-5 {
    column-gap: 3rem;
  }
  .text-md-start {
    text-align: left;
  }
  .text-md-end {
    text-align: right;
  }
  .text-md-center {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .float-lg-start {
    float: left;
  }
  .float-lg-end {
    float: right;
  }
  .float-lg-none {
    float: none;
  }
  .object-fit-lg-contain {
    object-fit: contain;
  }
  .object-fit-lg-cover {
    object-fit: cover;
  }
  .object-fit-lg-fill {
    object-fit: fill;
  }
  .object-fit-lg-scale {
    object-fit: scale-down;
  }
  .object-fit-lg-none {
    object-fit: none;
  }
  .d-lg-inline {
    display: inline;
  }
  .d-lg-inline-block {
    display: inline-block;
  }
  .d-lg-block {
    display: block;
  }
  .d-lg-grid {
    display: grid;
  }
  .d-lg-inline-grid {
    display: inline-grid;
  }
  .d-lg-table {
    display: table;
  }
  .d-lg-table-row {
    display: table-row;
  }
  .d-lg-table-cell {
    display: table-cell;
  }
  .d-lg-flex {
    display: flex;
  }
  .d-lg-inline-flex {
    display: inline-flex;
  }
  .d-lg-none {
    display: none;
  }
  .flex-lg-fill {
    flex: 1 1 auto;
  }
  .flex-lg-row {
    flex-direction: row;
  }
  .flex-lg-column {
    flex-direction: column;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse;
  }
  .flex-lg-grow-0 {
    flex-grow: 0;
  }
  .flex-lg-grow-1 {
    flex-grow: 1;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1;
  }
  .flex-lg-wrap {
    flex-wrap: wrap;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse;
  }
  .justify-content-lg-start {
    justify-content: flex-start;
  }
  .justify-content-lg-end {
    justify-content: flex-end;
  }
  .justify-content-lg-center {
    justify-content: center;
  }
  .justify-content-lg-between {
    justify-content: space-between;
  }
  .justify-content-lg-around {
    justify-content: space-around;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly;
  }
  .align-items-lg-start {
    align-items: flex-start;
  }
  .align-items-lg-end {
    align-items: flex-end;
  }
  .align-items-lg-center {
    align-items: center;
  }
  .align-items-lg-baseline {
    align-items: baseline;
  }
  .align-items-lg-stretch {
    align-items: stretch;
  }
  .align-content-lg-start {
    align-content: flex-start;
  }
  .align-content-lg-end {
    align-content: flex-end;
  }
  .align-content-lg-center {
    align-content: center;
  }
  .align-content-lg-between {
    align-content: space-between;
  }
  .align-content-lg-around {
    align-content: space-around;
  }
  .align-content-lg-stretch {
    align-content: stretch;
  }
  .align-self-lg-auto {
    align-self: auto;
  }
  .align-self-lg-start {
    align-self: flex-start;
  }
  .align-self-lg-end {
    align-self: flex-end;
  }
  .align-self-lg-center {
    align-self: center;
  }
  .align-self-lg-baseline {
    align-self: baseline;
  }
  .align-self-lg-stretch {
    align-self: stretch;
  }
  .order-lg-first {
    order: -1;
  }
  .order-lg-0 {
    order: 0;
  }
  .order-lg-1 {
    order: 1;
  }
  .order-lg-2 {
    order: 2;
  }
  .order-lg-3 {
    order: 3;
  }
  .order-lg-4 {
    order: 4;
  }
  .order-lg-5 {
    order: 5;
  }
  .order-lg-last {
    order: 6;
  }
  .m-lg-0 {
    margin: 0;
  }
  .m-lg-1 {
    margin: 0.25rem;
  }
  .m-lg-2 {
    margin: 0.5rem;
  }
  .m-lg-3 {
    margin: 1rem;
  }
  .m-lg-4 {
    margin: 1.5rem;
  }
  .m-lg-5 {
    margin: 3rem;
  }
  .m-lg-auto {
    margin: auto;
  }
  .mx-lg-0 {
    margin-right: 0;
    margin-left: 0;
  }
  .mx-lg-1 {
    margin-right: 0.25rem;
    margin-left: 0.25rem;
  }
  .mx-lg-2 {
    margin-right: 0.5rem;
    margin-left: 0.5rem;
  }
  .mx-lg-3 {
    margin-right: 1rem;
    margin-left: 1rem;
  }
  .mx-lg-4 {
    margin-right: 1.5rem;
    margin-left: 1.5rem;
  }
  .mx-lg-5 {
    margin-right: 3rem;
    margin-left: 3rem;
  }
  .mx-lg-auto {
    margin-right: auto;
    margin-left: auto;
  }
  .my-lg-0 {
    margin-top: 0;
    margin-bottom: 0;
  }
  .my-lg-1 {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }
  .my-lg-2 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .my-lg-3 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .my-lg-4 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .my-lg-5 {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
  .my-lg-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .mt-lg-0 {
    margin-top: 0;
  }
  .mt-lg-1 {
    margin-top: 0.25rem;
  }
  .mt-lg-2 {
    margin-top: 0.5rem;
  }
  .mt-lg-3 {
    margin-top: 1rem;
  }
  .mt-lg-4 {
    margin-top: 1.5rem;
  }
  .mt-lg-5 {
    margin-top: 3rem;
  }
  .mt-lg-auto {
    margin-top: auto;
  }
  .me-lg-0 {
    margin-right: 0;
  }
  .me-lg-1 {
    margin-right: 0.25rem;
  }
  .me-lg-2 {
    margin-right: 0.5rem;
  }
  .me-lg-3 {
    margin-right: 1rem;
  }
  .me-lg-4 {
    margin-right: 1.5rem;
  }
  .me-lg-5 {
    margin-right: 3rem;
  }
  .me-lg-auto {
    margin-right: auto;
  }
  .mb-lg-0 {
    margin-bottom: 0;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem;
  }
  .mb-lg-3 {
    margin-bottom: 1rem;
  }
  .mb-lg-4 {
    margin-bottom: 1.5rem;
  }
  .mb-lg-5 {
    margin-bottom: 3rem;
  }
  .mb-lg-auto {
    margin-bottom: auto;
  }
  .ms-lg-0 {
    margin-left: 0;
  }
  .ms-lg-1 {
    margin-left: 0.25rem;
  }
  .ms-lg-2 {
    margin-left: 0.5rem;
  }
  .ms-lg-3 {
    margin-left: 1rem;
  }
  .ms-lg-4 {
    margin-left: 1.5rem;
  }
  .ms-lg-5 {
    margin-left: 3rem;
  }
  .ms-lg-auto {
    margin-left: auto;
  }
  .p-lg-0 {
    padding: 0;
  }
  .p-lg-1 {
    padding: 0.25rem;
  }
  .p-lg-2 {
    padding: 0.5rem;
  }
  .p-lg-3 {
    padding: 1rem;
  }
  .p-lg-4 {
    padding: 1.5rem;
  }
  .p-lg-5 {
    padding: 3rem;
  }
  .px-lg-0 {
    padding-right: 0;
    padding-left: 0;
  }
  .px-lg-1 {
    padding-right: 0.25rem;
    padding-left: 0.25rem;
  }
  .px-lg-2 {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .px-lg-3 {
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .px-lg-4 {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
  .px-lg-5 {
    padding-right: 3rem;
    padding-left: 3rem;
  }
  .py-lg-0 {
    padding-top: 0;
    padding-bottom: 0;
  }
  .py-lg-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
  .py-lg-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .py-lg-3 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .py-lg-4 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .py-lg-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .pt-lg-0 {
    padding-top: 0;
  }
  .pt-lg-1 {
    padding-top: 0.25rem;
  }
  .pt-lg-2 {
    padding-top: 0.5rem;
  }
  .pt-lg-3 {
    padding-top: 1rem;
  }
  .pt-lg-4 {
    padding-top: 1.5rem;
  }
  .pt-lg-5 {
    padding-top: 3rem;
  }
  .pe-lg-0 {
    padding-right: 0;
  }
  .pe-lg-1 {
    padding-right: 0.25rem;
  }
  .pe-lg-2 {
    padding-right: 0.5rem;
  }
  .pe-lg-3 {
    padding-right: 1rem;
  }
  .pe-lg-4 {
    padding-right: 1.5rem;
  }
  .pe-lg-5 {
    padding-right: 3rem;
  }
  .pb-lg-0 {
    padding-bottom: 0;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem;
  }
  .pb-lg-3 {
    padding-bottom: 1rem;
  }
  .pb-lg-4 {
    padding-bottom: 1.5rem;
  }
  .pb-lg-5 {
    padding-bottom: 3rem;
  }
  .ps-lg-0 {
    padding-left: 0;
  }
  .ps-lg-1 {
    padding-left: 0.25rem;
  }
  .ps-lg-2 {
    padding-left: 0.5rem;
  }
  .ps-lg-3 {
    padding-left: 1rem;
  }
  .ps-lg-4 {
    padding-left: 1.5rem;
  }
  .ps-lg-5 {
    padding-left: 3rem;
  }
  .gap-lg-0 {
    gap: 0;
  }
  .gap-lg-1 {
    gap: 0.25rem;
  }
  .gap-lg-2 {
    gap: 0.5rem;
  }
  .gap-lg-3 {
    gap: 1rem;
  }
  .gap-lg-4 {
    gap: 1.5rem;
  }
  .gap-lg-5 {
    gap: 3rem;
  }
  .row-gap-lg-0 {
    row-gap: 0;
  }
  .row-gap-lg-1 {
    row-gap: 0.25rem;
  }
  .row-gap-lg-2 {
    row-gap: 0.5rem;
  }
  .row-gap-lg-3 {
    row-gap: 1rem;
  }
  .row-gap-lg-4 {
    row-gap: 1.5rem;
  }
  .row-gap-lg-5 {
    row-gap: 3rem;
  }
  .column-gap-lg-0 {
    column-gap: 0;
  }
  .column-gap-lg-1 {
    column-gap: 0.25rem;
  }
  .column-gap-lg-2 {
    column-gap: 0.5rem;
  }
  .column-gap-lg-3 {
    column-gap: 1rem;
  }
  .column-gap-lg-4 {
    column-gap: 1.5rem;
  }
  .column-gap-lg-5 {
    column-gap: 3rem;
  }
  .text-lg-start {
    text-align: left;
  }
  .text-lg-end {
    text-align: right;
  }
  .text-lg-center {
    text-align: center;
  }
}
@media (min-width: 1200px) {
  .float-xl-start {
    float: left;
  }
  .float-xl-end {
    float: right;
  }
  .float-xl-none {
    float: none;
  }
  .object-fit-xl-contain {
    object-fit: contain;
  }
  .object-fit-xl-cover {
    object-fit: cover;
  }
  .object-fit-xl-fill {
    object-fit: fill;
  }
  .object-fit-xl-scale {
    object-fit: scale-down;
  }
  .object-fit-xl-none {
    object-fit: none;
  }
  .d-xl-inline {
    display: inline;
  }
  .d-xl-inline-block {
    display: inline-block;
  }
  .d-xl-block {
    display: block;
  }
  .d-xl-grid {
    display: grid;
  }
  .d-xl-inline-grid {
    display: inline-grid;
  }
  .d-xl-table {
    display: table;
  }
  .d-xl-table-row {
    display: table-row;
  }
  .d-xl-table-cell {
    display: table-cell;
  }
  .d-xl-flex {
    display: flex;
  }
  .d-xl-inline-flex {
    display: inline-flex;
  }
  .d-xl-none {
    display: none;
  }
  .flex-xl-fill {
    flex: 1 1 auto;
  }
  .flex-xl-row {
    flex-direction: row;
  }
  .flex-xl-column {
    flex-direction: column;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse;
  }
  .flex-xl-grow-0 {
    flex-grow: 0;
  }
  .flex-xl-grow-1 {
    flex-grow: 1;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1;
  }
  .flex-xl-wrap {
    flex-wrap: wrap;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse;
  }
  .justify-content-xl-start {
    justify-content: flex-start;
  }
  .justify-content-xl-end {
    justify-content: flex-end;
  }
  .justify-content-xl-center {
    justify-content: center;
  }
  .justify-content-xl-between {
    justify-content: space-between;
  }
  .justify-content-xl-around {
    justify-content: space-around;
  }
  .justify-content-xl-evenly {
    justify-content: space-evenly;
  }
  .align-items-xl-start {
    align-items: flex-start;
  }
  .align-items-xl-end {
    align-items: flex-end;
  }
  .align-items-xl-center {
    align-items: center;
  }
  .align-items-xl-baseline {
    align-items: baseline;
  }
  .align-items-xl-stretch {
    align-items: stretch;
  }
  .align-content-xl-start {
    align-content: flex-start;
  }
  .align-content-xl-end {
    align-content: flex-end;
  }
  .align-content-xl-center {
    align-content: center;
  }
  .align-content-xl-between {
    align-content: space-between;
  }
  .align-content-xl-around {
    align-content: space-around;
  }
  .align-content-xl-stretch {
    align-content: stretch;
  }
  .align-self-xl-auto {
    align-self: auto;
  }
  .align-self-xl-start {
    align-self: flex-start;
  }
  .align-self-xl-end {
    align-self: flex-end;
  }
  .align-self-xl-center {
    align-self: center;
  }
  .align-self-xl-baseline {
    align-self: baseline;
  }
  .align-self-xl-stretch {
    align-self: stretch;
  }
  .order-xl-first {
    order: -1;
  }
  .order-xl-0 {
    order: 0;
  }
  .order-xl-1 {
    order: 1;
  }
  .order-xl-2 {
    order: 2;
  }
  .order-xl-3 {
    order: 3;
  }
  .order-xl-4 {
    order: 4;
  }
  .order-xl-5 {
    order: 5;
  }
  .order-xl-last {
    order: 6;
  }
  .m-xl-0 {
    margin: 0;
  }
  .m-xl-1 {
    margin: 0.25rem;
  }
  .m-xl-2 {
    margin: 0.5rem;
  }
  .m-xl-3 {
    margin: 1rem;
  }
  .m-xl-4 {
    margin: 1.5rem;
  }
  .m-xl-5 {
    margin: 3rem;
  }
  .m-xl-auto {
    margin: auto;
  }
  .mx-xl-0 {
    margin-right: 0;
    margin-left: 0;
  }
  .mx-xl-1 {
    margin-right: 0.25rem;
    margin-left: 0.25rem;
  }
  .mx-xl-2 {
    margin-right: 0.5rem;
    margin-left: 0.5rem;
  }
  .mx-xl-3 {
    margin-right: 1rem;
    margin-left: 1rem;
  }
  .mx-xl-4 {
    margin-right: 1.5rem;
    margin-left: 1.5rem;
  }
  .mx-xl-5 {
    margin-right: 3rem;
    margin-left: 3rem;
  }
  .mx-xl-auto {
    margin-right: auto;
    margin-left: auto;
  }
  .my-xl-0 {
    margin-top: 0;
    margin-bottom: 0;
  }
  .my-xl-1 {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }
  .my-xl-2 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .my-xl-3 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .my-xl-4 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .my-xl-5 {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
  .my-xl-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .mt-xl-0 {
    margin-top: 0;
  }
  .mt-xl-1 {
    margin-top: 0.25rem;
  }
  .mt-xl-2 {
    margin-top: 0.5rem;
  }
  .mt-xl-3 {
    margin-top: 1rem;
  }
  .mt-xl-4 {
    margin-top: 1.5rem;
  }
  .mt-xl-5 {
    margin-top: 3rem;
  }
  .mt-xl-auto {
    margin-top: auto;
  }
  .me-xl-0 {
    margin-right: 0;
  }
  .me-xl-1 {
    margin-right: 0.25rem;
  }
  .me-xl-2 {
    margin-right: 0.5rem;
  }
  .me-xl-3 {
    margin-right: 1rem;
  }
  .me-xl-4 {
    margin-right: 1.5rem;
  }
  .me-xl-5 {
    margin-right: 3rem;
  }
  .me-xl-auto {
    margin-right: auto;
  }
  .mb-xl-0 {
    margin-bottom: 0;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem;
  }
  .mb-xl-3 {
    margin-bottom: 1rem;
  }
  .mb-xl-4 {
    margin-bottom: 1.5rem;
  }
  .mb-xl-5 {
    margin-bottom: 3rem;
  }
  .mb-xl-auto {
    margin-bottom: auto;
  }
  .ms-xl-0 {
    margin-left: 0;
  }
  .ms-xl-1 {
    margin-left: 0.25rem;
  }
  .ms-xl-2 {
    margin-left: 0.5rem;
  }
  .ms-xl-3 {
    margin-left: 1rem;
  }
  .ms-xl-4 {
    margin-left: 1.5rem;
  }
  .ms-xl-5 {
    margin-left: 3rem;
  }
  .ms-xl-auto {
    margin-left: auto;
  }
  .p-xl-0 {
    padding: 0;
  }
  .p-xl-1 {
    padding: 0.25rem;
  }
  .p-xl-2 {
    padding: 0.5rem;
  }
  .p-xl-3 {
    padding: 1rem;
  }
  .p-xl-4 {
    padding: 1.5rem;
  }
  .p-xl-5 {
    padding: 3rem;
  }
  .px-xl-0 {
    padding-right: 0;
    padding-left: 0;
  }
  .px-xl-1 {
    padding-right: 0.25rem;
    padding-left: 0.25rem;
  }
  .px-xl-2 {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .px-xl-3 {
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .px-xl-4 {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
  .px-xl-5 {
    padding-right: 3rem;
    padding-left: 3rem;
  }
  .py-xl-0 {
    padding-top: 0;
    padding-bottom: 0;
  }
  .py-xl-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
  .py-xl-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .py-xl-3 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .py-xl-4 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .py-xl-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .pt-xl-0 {
    padding-top: 0;
  }
  .pt-xl-1 {
    padding-top: 0.25rem;
  }
  .pt-xl-2 {
    padding-top: 0.5rem;
  }
  .pt-xl-3 {
    padding-top: 1rem;
  }
  .pt-xl-4 {
    padding-top: 1.5rem;
  }
  .pt-xl-5 {
    padding-top: 3rem;
  }
  .pe-xl-0 {
    padding-right: 0;
  }
  .pe-xl-1 {
    padding-right: 0.25rem;
  }
  .pe-xl-2 {
    padding-right: 0.5rem;
  }
  .pe-xl-3 {
    padding-right: 1rem;
  }
  .pe-xl-4 {
    padding-right: 1.5rem;
  }
  .pe-xl-5 {
    padding-right: 3rem;
  }
  .pb-xl-0 {
    padding-bottom: 0;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem;
  }
  .pb-xl-3 {
    padding-bottom: 1rem;
  }
  .pb-xl-4 {
    padding-bottom: 1.5rem;
  }
  .pb-xl-5 {
    padding-bottom: 3rem;
  }
  .ps-xl-0 {
    padding-left: 0;
  }
  .ps-xl-1 {
    padding-left: 0.25rem;
  }
  .ps-xl-2 {
    padding-left: 0.5rem;
  }
  .ps-xl-3 {
    padding-left: 1rem;
  }
  .ps-xl-4 {
    padding-left: 1.5rem;
  }
  .ps-xl-5 {
    padding-left: 3rem;
  }
  .gap-xl-0 {
    gap: 0;
  }
  .gap-xl-1 {
    gap: 0.25rem;
  }
  .gap-xl-2 {
    gap: 0.5rem;
  }
  .gap-xl-3 {
    gap: 1rem;
  }
  .gap-xl-4 {
    gap: 1.5rem;
  }
  .gap-xl-5 {
    gap: 3rem;
  }
  .row-gap-xl-0 {
    row-gap: 0;
  }
  .row-gap-xl-1 {
    row-gap: 0.25rem;
  }
  .row-gap-xl-2 {
    row-gap: 0.5rem;
  }
  .row-gap-xl-3 {
    row-gap: 1rem;
  }
  .row-gap-xl-4 {
    row-gap: 1.5rem;
  }
  .row-gap-xl-5 {
    row-gap: 3rem;
  }
  .column-gap-xl-0 {
    column-gap: 0;
  }
  .column-gap-xl-1 {
    column-gap: 0.25rem;
  }
  .column-gap-xl-2 {
    column-gap: 0.5rem;
  }
  .column-gap-xl-3 {
    column-gap: 1rem;
  }
  .column-gap-xl-4 {
    column-gap: 1.5rem;
  }
  .column-gap-xl-5 {
    column-gap: 3rem;
  }
  .text-xl-start {
    text-align: left;
  }
  .text-xl-end {
    text-align: right;
  }
  .text-xl-center {
    text-align: center;
  }
}
@media (min-width: 1400px) {
  .float-xxl-start {
    float: left;
  }
  .float-xxl-end {
    float: right;
  }
  .float-xxl-none {
    float: none;
  }
  .object-fit-xxl-contain {
    object-fit: contain;
  }
  .object-fit-xxl-cover {
    object-fit: cover;
  }
  .object-fit-xxl-fill {
    object-fit: fill;
  }
  .object-fit-xxl-scale {
    object-fit: scale-down;
  }
  .object-fit-xxl-none {
    object-fit: none;
  }
  .d-xxl-inline {
    display: inline;
  }
  .d-xxl-inline-block {
    display: inline-block;
  }
  .d-xxl-block {
    display: block;
  }
  .d-xxl-grid {
    display: grid;
  }
  .d-xxl-inline-grid {
    display: inline-grid;
  }
  .d-xxl-table {
    display: table;
  }
  .d-xxl-table-row {
    display: table-row;
  }
  .d-xxl-table-cell {
    display: table-cell;
  }
  .d-xxl-flex {
    display: flex;
  }
  .d-xxl-inline-flex {
    display: inline-flex;
  }
  .d-xxl-none {
    display: none;
  }
  .flex-xxl-fill {
    flex: 1 1 auto;
  }
  .flex-xxl-row {
    flex-direction: row;
  }
  .flex-xxl-column {
    flex-direction: column;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse;
  }
  .flex-xxl-grow-0 {
    flex-grow: 0;
  }
  .flex-xxl-grow-1 {
    flex-grow: 1;
  }
  .flex-xxl-shrink-0 {
    flex-shrink: 0;
  }
  .flex-xxl-shrink-1 {
    flex-shrink: 1;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse;
  }
  .justify-content-xxl-start {
    justify-content: flex-start;
  }
  .justify-content-xxl-end {
    justify-content: flex-end;
  }
  .justify-content-xxl-center {
    justify-content: center;
  }
  .justify-content-xxl-between {
    justify-content: space-between;
  }
  .justify-content-xxl-around {
    justify-content: space-around;
  }
  .justify-content-xxl-evenly {
    justify-content: space-evenly;
  }
  .align-items-xxl-start {
    align-items: flex-start;
  }
  .align-items-xxl-end {
    align-items: flex-end;
  }
  .align-items-xxl-center {
    align-items: center;
  }
  .align-items-xxl-baseline {
    align-items: baseline;
  }
  .align-items-xxl-stretch {
    align-items: stretch;
  }
  .align-content-xxl-start {
    align-content: flex-start;
  }
  .align-content-xxl-end {
    align-content: flex-end;
  }
  .align-content-xxl-center {
    align-content: center;
  }
  .align-content-xxl-between {
    align-content: space-between;
  }
  .align-content-xxl-around {
    align-content: space-around;
  }
  .align-content-xxl-stretch {
    align-content: stretch;
  }
  .align-self-xxl-auto {
    align-self: auto;
  }
  .align-self-xxl-start {
    align-self: flex-start;
  }
  .align-self-xxl-end {
    align-self: flex-end;
  }
  .align-self-xxl-center {
    align-self: center;
  }
  .align-self-xxl-baseline {
    align-self: baseline;
  }
  .align-self-xxl-stretch {
    align-self: stretch;
  }
  .order-xxl-first {
    order: -1;
  }
  .order-xxl-0 {
    order: 0;
  }
  .order-xxl-1 {
    order: 1;
  }
  .order-xxl-2 {
    order: 2;
  }
  .order-xxl-3 {
    order: 3;
  }
  .order-xxl-4 {
    order: 4;
  }
  .order-xxl-5 {
    order: 5;
  }
  .order-xxl-last {
    order: 6;
  }
  .m-xxl-0 {
    margin: 0;
  }
  .m-xxl-1 {
    margin: 0.25rem;
  }
  .m-xxl-2 {
    margin: 0.5rem;
  }
  .m-xxl-3 {
    margin: 1rem;
  }
  .m-xxl-4 {
    margin: 1.5rem;
  }
  .m-xxl-5 {
    margin: 3rem;
  }
  .m-xxl-auto {
    margin: auto;
  }
  .mx-xxl-0 {
    margin-right: 0;
    margin-left: 0;
  }
  .mx-xxl-1 {
    margin-right: 0.25rem;
    margin-left: 0.25rem;
  }
  .mx-xxl-2 {
    margin-right: 0.5rem;
    margin-left: 0.5rem;
  }
  .mx-xxl-3 {
    margin-right: 1rem;
    margin-left: 1rem;
  }
  .mx-xxl-4 {
    margin-right: 1.5rem;
    margin-left: 1.5rem;
  }
  .mx-xxl-5 {
    margin-right: 3rem;
    margin-left: 3rem;
  }
  .mx-xxl-auto {
    margin-right: auto;
    margin-left: auto;
  }
  .my-xxl-0 {
    margin-top: 0;
    margin-bottom: 0;
  }
  .my-xxl-1 {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }
  .my-xxl-2 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .my-xxl-3 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .my-xxl-4 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .my-xxl-5 {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
  .my-xxl-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .mt-xxl-0 {
    margin-top: 0;
  }
  .mt-xxl-1 {
    margin-top: 0.25rem;
  }
  .mt-xxl-2 {
    margin-top: 0.5rem;
  }
  .mt-xxl-3 {
    margin-top: 1rem;
  }
  .mt-xxl-4 {
    margin-top: 1.5rem;
  }
  .mt-xxl-5 {
    margin-top: 3rem;
  }
  .mt-xxl-auto {
    margin-top: auto;
  }
  .me-xxl-0 {
    margin-right: 0;
  }
  .me-xxl-1 {
    margin-right: 0.25rem;
  }
  .me-xxl-2 {
    margin-right: 0.5rem;
  }
  .me-xxl-3 {
    margin-right: 1rem;
  }
  .me-xxl-4 {
    margin-right: 1.5rem;
  }
  .me-xxl-5 {
    margin-right: 3rem;
  }
  .me-xxl-auto {
    margin-right: auto;
  }
  .mb-xxl-0 {
    margin-bottom: 0;
  }
  .mb-xxl-1 {
    margin-bottom: 0.25rem;
  }
  .mb-xxl-2 {
    margin-bottom: 0.5rem;
  }
  .mb-xxl-3 {
    margin-bottom: 1rem;
  }
  .mb-xxl-4 {
    margin-bottom: 1.5rem;
  }
  .mb-xxl-5 {
    margin-bottom: 3rem;
  }
  .mb-xxl-auto {
    margin-bottom: auto;
  }
  .ms-xxl-0 {
    margin-left: 0;
  }
  .ms-xxl-1 {
    margin-left: 0.25rem;
  }
  .ms-xxl-2 {
    margin-left: 0.5rem;
  }
  .ms-xxl-3 {
    margin-left: 1rem;
  }
  .ms-xxl-4 {
    margin-left: 1.5rem;
  }
  .ms-xxl-5 {
    margin-left: 3rem;
  }
  .ms-xxl-auto {
    margin-left: auto;
  }
  .p-xxl-0 {
    padding: 0;
  }
  .p-xxl-1 {
    padding: 0.25rem;
  }
  .p-xxl-2 {
    padding: 0.5rem;
  }
  .p-xxl-3 {
    padding: 1rem;
  }
  .p-xxl-4 {
    padding: 1.5rem;
  }
  .p-xxl-5 {
    padding: 3rem;
  }
  .px-xxl-0 {
    padding-right: 0;
    padding-left: 0;
  }
  .px-xxl-1 {
    padding-right: 0.25rem;
    padding-left: 0.25rem;
  }
  .px-xxl-2 {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .px-xxl-3 {
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .px-xxl-4 {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
  .px-xxl-5 {
    padding-right: 3rem;
    padding-left: 3rem;
  }
  .py-xxl-0 {
    padding-top: 0;
    padding-bottom: 0;
  }
  .py-xxl-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
  .py-xxl-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .py-xxl-3 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .py-xxl-4 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .py-xxl-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .pt-xxl-0 {
    padding-top: 0;
  }
  .pt-xxl-1 {
    padding-top: 0.25rem;
  }
  .pt-xxl-2 {
    padding-top: 0.5rem;
  }
  .pt-xxl-3 {
    padding-top: 1rem;
  }
  .pt-xxl-4 {
    padding-top: 1.5rem;
  }
  .pt-xxl-5 {
    padding-top: 3rem;
  }
  .pe-xxl-0 {
    padding-right: 0;
  }
  .pe-xxl-1 {
    padding-right: 0.25rem;
  }
  .pe-xxl-2 {
    padding-right: 0.5rem;
  }
  .pe-xxl-3 {
    padding-right: 1rem;
  }
  .pe-xxl-4 {
    padding-right: 1.5rem;
  }
  .pe-xxl-5 {
    padding-right: 3rem;
  }
  .pb-xxl-0 {
    padding-bottom: 0;
  }
  .pb-xxl-1 {
    padding-bottom: 0.25rem;
  }
  .pb-xxl-2 {
    padding-bottom: 0.5rem;
  }
  .pb-xxl-3 {
    padding-bottom: 1rem;
  }
  .pb-xxl-4 {
    padding-bottom: 1.5rem;
  }
  .pb-xxl-5 {
    padding-bottom: 3rem;
  }
  .ps-xxl-0 {
    padding-left: 0;
  }
  .ps-xxl-1 {
    padding-left: 0.25rem;
  }
  .ps-xxl-2 {
    padding-left: 0.5rem;
  }
  .ps-xxl-3 {
    padding-left: 1rem;
  }
  .ps-xxl-4 {
    padding-left: 1.5rem;
  }
  .ps-xxl-5 {
    padding-left: 3rem;
  }
  .gap-xxl-0 {
    gap: 0;
  }
  .gap-xxl-1 {
    gap: 0.25rem;
  }
  .gap-xxl-2 {
    gap: 0.5rem;
  }
  .gap-xxl-3 {
    gap: 1rem;
  }
  .gap-xxl-4 {
    gap: 1.5rem;
  }
  .gap-xxl-5 {
    gap: 3rem;
  }
  .row-gap-xxl-0 {
    row-gap: 0;
  }
  .row-gap-xxl-1 {
    row-gap: 0.25rem;
  }
  .row-gap-xxl-2 {
    row-gap: 0.5rem;
  }
  .row-gap-xxl-3 {
    row-gap: 1rem;
  }
  .row-gap-xxl-4 {
    row-gap: 1.5rem;
  }
  .row-gap-xxl-5 {
    row-gap: 3rem;
  }
  .column-gap-xxl-0 {
    column-gap: 0;
  }
  .column-gap-xxl-1 {
    column-gap: 0.25rem;
  }
  .column-gap-xxl-2 {
    column-gap: 0.5rem;
  }
  .column-gap-xxl-3 {
    column-gap: 1rem;
  }
  .column-gap-xxl-4 {
    column-gap: 1.5rem;
  }
  .column-gap-xxl-5 {
    column-gap: 3rem;
  }
  .text-xxl-start {
    text-align: left;
  }
  .text-xxl-end {
    text-align: right;
  }
  .text-xxl-center {
    text-align: center;
  }
}
@media (min-width: 1200px) {
  .fs-1 {
    font-size: 2.25rem;
  }
  .fs-2 {
    font-size: 1.75rem;
  }
  .fs-3 {
    font-size: 1.5rem;
  }
}
@media print {
  .d-print-inline {
    display: inline;
  }
  .d-print-inline-block {
    display: inline-block;
  }
  .d-print-block {
    display: block;
  }
  .d-print-grid {
    display: grid;
  }
  .d-print-inline-grid {
    display: inline-grid;
  }
  .d-print-table {
    display: table;
  }
  .d-print-table-row {
    display: table-row;
  }
  .d-print-table-cell {
    display: table-cell;
  }
  .d-print-flex {
    display: flex;
  }
  .d-print-inline-flex {
    display: inline-flex;
  }
  .d-print-none {
    display: none;
  }
}
/*
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: #eee;
}
@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) {
  :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: #2b3136;
  font-size: 1.125rem;
  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 #798490;
}
.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: #2b3136;
  text-decoration: none;
}
.category-navigation-link:hover {
  text-decoration: none;
}
.category-navigation-link.is-active {
  color: #64748b;
  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: #4a545b;
  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: #64748b;
}
.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: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #64748b;
}
.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: #2b3136;
  background: #fff;
  border: 1px solid #fff;
}
.base-slider-controls-prev .icon, .base-slider-controls-next .icon {
  color: currentColor;
}
.base-slider-controls-prev:hover, .base-slider-controls-next:hover {
  border-color: #64748b;
  color: #64748b;
}
.base-slider-controls-prev[disabled], .base-slider-controls-next[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}
.base-slider-controls-prev {
  border-radius: 0 0 0 0;
}
.base-slider-controls-prev.is-nav-prev-outside {
  border-radius: 0 0 0 0;
}
.base-slider-controls-next {
  border-radius: 0 0 0 0;
}
.base-slider-controls-next.is-nav-next-outside {
  border-radius: 0 0 0 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.has-vertical-align {
  display: flex;
}
.image-slider-container.has-vertical-align.is-align-top {
  align-items: flex-start;
}
.image-slider-container.has-vertical-align.is-align-center {
  align-items: center;
}
.image-slider-container.has-vertical-align.is-align-bottom {
  align-items: flex-end;
}
.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 #798490;
  border-radius: 0;
  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-loading .gallery-slider-thumbnails-col.is-left .gallery-slider-thumbnails {
  max-height: 425px;
  overflow: hidden;
}
.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-container.has-vertical-align {
  display: flex;
}
.gallery-slider-container.has-vertical-align.is-align-top {
  align-items: flex-start;
}
.gallery-slider-container.has-vertical-align.is-align-center {
  align-items: center;
}
.gallery-slider-container.has-vertical-align.is-align-bottom {
  align-items: flex-end;
}
.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: #64748b;
}
.gallery-slider-thumbnails-item-inner {
  border: 1px solid #798490;
  border-radius: 0;
  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-anim-container .spatial-anim-button {
  height: 40px;
  width: 40px;
  border: none;
  outline: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
}
.spatial-anim-container .spatial-anim-button.spatial-anim-play .icon-play {
  display: none;
}
.spatial-anim-container .spatial-anim-button:not(.spatial-anim-play) .icon-pause {
  display: none;
}
.spatial-anim-container .spatial-anim-button .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--bs-white);
  width: 16px;
  height: 16px;
}
.spatial-anim-container .spatial-anim-button .icon svg {
  top: unset;
}
.spatial-anim-container .spatial-anim-button-circle {
  --stroke-width: 3px;
  --circomference: calc((50% - (var(--stroke-width) / 2)) * 3.14 * 2);
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.spatial-anim-container .spatial-anim-button-circle circle {
  fill: none;
  stroke-width: var(--stroke-width);
  stroke: var(--bs-white, #fff);
  stroke-dasharray: var(--circomference);
  stroke-dashoffset: calc(var(--circomference) * (1 - var(--progress, 0)));
  stroke-linecap: round;
  position: relative;
}
.spatial-anim-container .spatial-anim-switch-container .icon {
  position: absolute;
  right: 12px;
  width: 12px;
  height: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--bs-white);
  pointer-events: none;
}
.spatial-anim-container .spatial-anim-switch-container svg {
  top: unset;
}
.spatial-anim-container .spatial-anim-switch {
  appearance: none;
  height: 40px;
  width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  background-color: rgba(0, 0, 0, 0.7);
  color: var(--bs-white, #fff);
  border-radius: 8px;
  border: none;
  outline: none;
  padding: 0 34px 0 12px;
}
.spatial-canvas-note {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #4a545b;
  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 #bcc1c7;
  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 #bcc1c7;
}
.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 #798490;
}
.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, .modal.zoom-modal .modal-dialog .swag-custom-notifications-newsletter-popup__content .confirm-message, .swag-custom-notifications-newsletter-popup__content .modal.zoom-modal .modal-dialog .confirm-message {
  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;
  }
}
/*
OffCanvas
==============================================
Move page content like the navigation menu in a sliding OffCanvas menu.
The sliding direction can be left or right.

@see https://getbootstrap.com/docs/5.2/components/offcanvas
*/
.offcanvas {
  transition: all 0.45s cubic-bezier(0.3, 0, 0.15, 1);
}
.offcanvas.offcanvas-start .offcanvas-close {
  align-items: center;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
.offcanvas.offcanvas-bottom {
  --bs-offcanvas-height: 90%;
  border-radius: 8px 8px 0 0;
}
.offcanvas.is-fullwidth {
  width: 100%;
}
.offcanvas .offcanvas-header {
  --bs-offcanvas-padding-y: 0;
  --bs-offcanvas-padding-x: 0;
  background-color: #fff;
}
.offcanvas .offcanvas-header .offcanvas-title {
  font-size: 24px;
  font-weight: 700;
}
.offcanvas .offcanvas-footer {
  bottom: 0;
  top: auto;
}
.offcanvas .offcanvas-close {
  width: 100%;
  border-radius: 0;
  font-weight: 400;
  padding: 0.5rem 1rem;
  text-align: left;
}
.offcanvas .offcanvas-close:focus-visible {
  box-shadow: inset 0 0 0 0.125rem #64748b, inset 0 0 0 0.25rem #fff;
}
.offcanvas > .loader, .offcanvas .offcanvas-body > .loader {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -1rem;
  margin-top: -1rem;
}
.offcanvas .line-item-total-price-value, .offcanvas .offcanvas-body .line-item-total-price-value {
  text-align: left;
}
@media (max-width: 420px) {
  .offcanvas.offcanvas-end, .offcanvas.offcanvas-start {
    width: calc(100% - 20px);
  }
}
@media (max-width: 575.98px) {
  .offcanvas.offcanvas-start .offcanvas-close {
    gap: 0.5rem;
  }
  .offcanvas .offcanvas-close {
    white-space: normal;
    line-height: normal;
  }
  .offcanvas .offcanvas-close .icon {
    flex: 0 0 auto;
  }
}
/*
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: #2b3136;
  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: #2b3136;
  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: #c20017;
}
.product-price .list-price {
  color: #2b3136;
  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: #2b3136;
  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: #2b3136;
  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: #fff;
  --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-text-opacity: 1;
  --bs-spinner-border-width: 3px;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity));
}
/*
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;
  color: transparent;
  animation: skeletonShimmer 1.5s linear 0s infinite normal forwards running;
  background: linear-gradient(to right, #bcc1c7 8%, #f9f9f9 18%, #bcc1c7 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;
  color: transparent;
  animation: skeletonShimmer 1.5s linear 0s infinite normal forwards running;
  background: linear-gradient(to right, #bcc1c7 8%, #f9f9f9 18%, #bcc1c7 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 {
  --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 {
  margin-right: var(--bs-btn-padding-x);
}
.btn.is-loading-indicator-after .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 {
  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 .swag-custom-notifications-newsletter-popup__content .confirm-message, .swag-custom-notifications-newsletter-popup__content .modal.is-fullscreen .confirm-message, .modal.is-fullscreen .modal-footer {
  border-radius: 0;
}
/*
 * Temporary focusable element added via JS after a modal/offcanvas to keep the Bootstrap focus-trap
 * working when it is the last focusable element before `</body>`. Pinned inside the viewport so the
 * browser does not scroll to the bottom of the page while focus briefly bumps to it.
 *
 * @todo: Remove when upstream issue https://github.com/twbs/bootstrap/issues/42503 is resolved.
 */
.js-focus-trap-guard {
  position: fixed;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
/*
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

@deprecated tag:v6.8.0 - This file will be removed

You can use the Twig block 'layout_header_actions_languages_widget_form_items_flag_inner' and
'layout_header_actions_language_widget_content_inner' to add custom flags if desired.
*/
.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: 1.375rem;
  height: 1.375rem;
  display: inline-flex;
  align-self: center;
  font-size: inherit;
  overflow: visible;
  color: #4a545b;
}
.icon > svg {
  width: 100%;
  height: 100%;
  top: 0.25em;
  position: relative;
  fill: currentColor;
}
.icon > svg path, .icon > svg use {
  fill: currentColor;
}
.icon-primary {
  color: var(--text-color-brand-primary);
}
.icon-secondary {
  color: #474a57;
}
.icon-success {
  color: #007e4e;
}
.icon-info {
  color: #005b99;
}
.icon-warning {
  color: #974200;
}
.icon-danger {
  color: #c20017;
}
.icon-light {
  color: #eee;
}
.icon-dark {
  color: #4a545b;
}
.icon-review {
  color: #fedc70;
}
.icon-fluid {
  width: 100%;
  height: 100%;
}
.icon-lg {
  width: 1.8333333333rem;
  height: 1.8333333333rem;
}
.icon-sm {
  width: 1.203125rem;
  height: 1.203125rem;
}
.icon-xs {
  width: 1.03125rem;
  height: 1.03125rem;
}
.icon-1x {
  width: 1.375rem;
  height: 1.375rem;
}
.icon-2x {
  width: 2.75rem;
  height: 2.75rem;
}
.icon-3x {
  width: 4.125rem;
  height: 4.125rem;
}
.icon-4x {
  width: 5.5rem;
  height: 5.5rem;
}
.icon-5x {
  width: 6.875rem;
  height: 6.875rem;
}
.icon-6x {
  width: 8.25rem;
  height: 8.25rem;
}
.icon-7x {
  width: 9.625rem;
  height: 9.625rem;
}
.icon-8x {
  width: 11rem;
  height: 11rem;
}
.icon-9x {
  width: 12.375rem;
  height: 12.375rem;
}
.icon-10x {
  width: 13.75rem;
  height: 13.75rem;
}
.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: #64748b;
}
.alert-secondary .icon {
  color: #474a57;
}
.alert-success .icon {
  color: #007e4e;
}
.alert-info .icon {
  color: #005b99;
}
.alert-warning .icon {
  color: #974200;
}
.alert-danger .icon {
  color: #c20017;
}
.alert-light .icon {
  color: #f9f9f9;
}
.alert-dark .icon {
  color: #4a545b;
}
.btn-primary .icon {
  color: #fff;
}
.btn-secondary .icon {
  color: #fff;
}
.btn-success .icon {
  color: #fff;
}
.btn-info .icon {
  color: #fff;
}
.btn-warning .icon {
  color: #fff;
}
.btn-danger .icon {
  color: #fff;
}
.btn-light .icon {
  color: #000;
}
.btn-dark .icon {
  color: #fff;
}
.btn .icon > svg {
  top: 6px;
}
.pagination .icon {
  width: 13px;
  height: 13px;
}
.pagination .icon > svg {
  top: 2px;
}
.is-left .offcanvas-close svg, .offcanvas-start .offcanvas-close svg {
  top: 0;
}
.is-right .offcanvas-close svg, .offcanvas-end .offcanvas-close svg {
  top: 0.25rem;
}
.navigation-offcanvas-link-icon .icon > svg {
  top: 0;
}
/*
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 .full-width {
  --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;
  --bs-gutter-x: 0;
}
.cms-section .cms-section-sidebar > .row {
  --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 {
  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-height: 100px;
}
/*
CMS elements
==============================================
General styling for cms elements
*/
.cms-element-image, .cms-element-video {
  position: relative;
  height: 100%;
}
.cms-element-image[tabindex]:focus-visible, .cms-element-video[tabindex]:focus-visible {
  outline: 0;
}
.cms-element-image[tabindex]:focus-visible .cms-video-container, .cms-element-video[tabindex]:focus-visible .cms-video-container {
  box-shadow: 0 0 0 0.25rem #64748b;
}
.cms-element-image .cms-image, .cms-element-image .cms-video, .cms-element-video .cms-image, .cms-element-video .cms-video {
  display: block;
  max-width: 100%;
}
.cms-element-image .cms-video:not([controls]), .cms-element-video .cms-video:not([controls]) {
  cursor: pointer;
}
.cms-element-image .cms-image-container, .cms-element-image .cms-video-container, .cms-element-video .cms-image-container, .cms-element-video .cms-video-container {
  display: block;
  max-width: 100%;
  position: relative;
}
.cms-element-image .cms-image-container.is-cover, .cms-element-image .cms-video-container.is-cover, .cms-element-video .cms-image-container.is-cover, .cms-element-video .cms-video-container.is-cover {
  object-fit: contain;
  height: 100%;
}
.cms-element-image .cms-image-container.is-cover .cms-image, .cms-element-image .cms-image-container.is-cover .cms-video, .cms-element-image .cms-video-container.is-cover .cms-image, .cms-element-image .cms-video-container.is-cover .cms-video, .cms-element-video .cms-image-container.is-cover .cms-image, .cms-element-video .cms-image-container.is-cover .cms-video, .cms-element-video .cms-video-container.is-cover .cms-image, .cms-element-video .cms-video-container.is-cover .cms-video {
  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-cover .cms-video, .cms-element-image .cms-image-container.is-stretch .cms-image, .cms-element-image .cms-image-container.is-stretch .cms-video, .cms-element-image .cms-video-container.is-cover .cms-image, .cms-element-image .cms-video-container.is-cover .cms-video, .cms-element-image .cms-video-container.is-stretch .cms-image, .cms-element-image .cms-video-container.is-stretch .cms-video, .cms-element-video .cms-image-container.is-cover .cms-image, .cms-element-video .cms-image-container.is-cover .cms-video, .cms-element-video .cms-image-container.is-stretch .cms-image, .cms-element-video .cms-image-container.is-stretch .cms-video, .cms-element-video .cms-video-container.is-cover .cms-image, .cms-element-video .cms-video-container.is-cover .cms-video, .cms-element-video .cms-video-container.is-stretch .cms-image, .cms-element-video .cms-video-container.is-stretch .cms-video {
  width: 100%;
}
.cms-element-image .cms-video-play-icon, .cms-element-video .cms-video-play-icon {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center;
  width: 96px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: opacity 220ms ease-out, transform 140ms ease-in;
  will-change: transform, opacity;
}
.cms-element-image .cms-video-play-icon img, .cms-element-video .cms-video-play-icon img {
  display: block;
  width: 100%;
  height: 100%;
}
.cms-element-image.is-animating .cms-video-play-icon, .cms-element-video.is-animating .cms-video-play-icon {
  animation: cms-video-start 220ms ease-out;
}
.cms-element-image.is-playing .cms-video-play-icon, .cms-element-video.is-playing .cms-video-play-icon {
  opacity: 0;
  transform: translate(-50%, -50%) scale(1);
}
.cms-element-image.is-paused .cms-video-play-icon, .cms-element-video.is-paused .cms-video-play-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  animation: cms-video-stop 300ms linear;
}
.cms-element-image .cms-image-link, .cms-element-video .cms-image-link {
  display: block;
}
.cms-element-image.is-stretch .cms-element-alignment, .cms-element-video.is-stretch .cms-element-alignment {
  width: 100%;
}
.cms-element-image__backdrop, .cms-element-video__backdrop {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.cms-element-image__backdrop > div, .cms-element-video__backdrop > div {
  background: rgba(255, 255, 255, 0.9);
  padding: 1rem;
}
@keyframes cms-video-start {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  60% {
    transform: translate(-50%, -50%) scale(1.32);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}
@keyframes cms-video-stop {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
  40% {
    transform: translate(-50%, -50%) scale(1.32);
    opacity: 0.2;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}
.cms-element-youtube-video {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cms-element-youtube-video.is--streched {
  height: 100%;
}
.cms-element-youtube-video::before {
  padding-top: calc((9 / 16) * 100%);
}
.cms-element-youtube-video, .cms-element-vimeo-video {
  position: relative;
  width: 100%;
}
.cms-element-youtube-video::before, .cms-element-vimeo-video::before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 56.25%;
}
.cms-element-youtube-video__video, .cms-element-youtube-video__placeholder, .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-youtube-video__placeholder img, .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-youtube-video__backdrop, .cms-element-vimeo-video__backdrop {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.cms-element-youtube-video__backdrop > div, .cms-element-vimeo-video__backdrop > div {
  background: rgba(255, 255, 255, 0.9);
  padding: 1rem;
}
.cms-element-youtube-video__container:hover .js-vimeo-link, .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.125rem;
  font-weight: 700;
  color: #2b3136;
}
.cms-element-product-slider.has-vertical-alignment {
  justify-content: center;
}
.cms-element-product-slider.has-vertical-alignment .cms-element-alignment {
  width: 100%;
}
.cms-element-product-slider.has-border .cms-element-title {
  margin-top: 0.5rem;
}
.cms-element-text, .cms-element-image, .cms-element-video, .cms-element-product-box, .cms-element-buy-box, .cms-element-product-slider, .cms-element-product-description-reviews, .cms-element-image-slider, .cms-element-image-gallery {
  word-break: break-word;
}
.cms-element-text.has-vertical-alignment, .cms-element-image.has-vertical-alignment, .cms-element-video.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-product-description-reviews.has-vertical-alignment, .cms-element-image-slider.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;
  }
  .cms-element-product-listing-actions .sorting {
    width: 100%;
    margin-top: 5px;
    margin-left: 0;
  }
}
div.card-tabs .cms-card-header {
  padding-left: 0;
  padding-right: 0;
}
.cms-element-text {
  position: relative;
  overflow: auto;
}
.cms-element-text img {
  max-width: 100%;
  height: auto;
}
.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: right 0.75rem center;
}
.was-validated .form-control:invalid, .form-control.is-invalid {
  background-position: right 0.75rem center;
}
.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 #798490;
  padding: 0 36px;
  margin: 12px 0;
  height: 40px;
  border-radius: 3px;
  cursor: pointer;
}
.forms-boolean.is-active {
  border-color: #64748b;
}
.forms-boolean:hover {
  border-color: #64748b;
  color: #64748b;
}
.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, .address-manager-modal .swag-custom-notifications-newsletter-popup__content .confirm-message, .swag-custom-notifications-newsletter-popup__content .address-manager-modal .confirm-message {
  padding-top: 0;
  height: 550px;
}
.address-manager-modal .modal-footer {
  background-color: #f9f9f9;
}
.address-manager-modal .address-manager-modal-select-address:hover {
  border-color: #64748b;
  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: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #64748b;
  --bs-btn-border-color: #798490;
  --bs-btn-hover-border-color: #798490;
  --bs-btn-active-border-color: #64748b;
  --bs-btn-active-color: #64748b;
  --bs-btn-font-weight: 400;
}
.filter-panel-item-toggle.show .icon-filter-panel-item-toggle svg {
  color: #64748b;
  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 #64748b;
  background-color: #fff;
  color: #4a545b;
}
.filter-active {
  --bs-btn-focus-box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #64748b;
  --bs-btn-border-color: #798490;
  --bs-btn-hover-border-color: #64748b;
  --bs-btn-hover-color: #64748b;
  --bs-btn-hover-bg: #f9f9f9;
  --bs-btn-active-border-color: #64748b;
  --bs-btn-active-color: #64748b;
  --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 #798490;
  margin-right: 0.25rem;
  background-position: center center;
  background-size: cover;
  vertical-align: -0.125em;
}
.btn.filter-reset-all {
  --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 #64748b;
  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: #64748b;
  border-color: #64748b;
  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: #64748b;
  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 {
  --bs-btn-padding-x: 6px;
  --bs-btn-padding-y: 6px;
  --bs-btn-hover-bg: var(--bs-gray-200);
  --bs-btn-hover-color: var(--bs-primary);
  --bs-btn-active-bg: var(--bs-gray-200);
  --bs-btn-active-color: var(--bs-primary);
  display: none;
  width: 100%;
}
.btn.filter-panel-wrapper-toggle .icon {
  color: currentColor;
  margin-right: 0.5rem;
  vertical-align: text-bottom;
}
.btn.filter-panel-wrapper-toggle .icon svg {
  top: 0;
}
.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: #2b3136;
}
.filter-panel-offcanvas-close {
  margin-left: auto;
}
@media (max-width: 991.98px) {
  .btn.filter-panel-wrapper-toggle {
    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 #798490;
  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: #64748b;
  border: 0.125rem solid #fff;
  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: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #64748b;
}
.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 #798490;
  padding-left: 12px;
  padding-right: 12px;
  height: 40px;
  border-radius: 0;
  cursor: pointer;
}
.filter-boolean.is-active {
  border-color: #64748b;
}
.filter-boolean:hover {
  border-color: #64748b;
  color: #64748b;
}
.filter-boolean.disabled {
  cursor: default;
  background: #eee;
  border-color: #eee;
}
.filter-boolean.disabled .filter-boolean-label {
  color: #bcc1c7;
  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: #c20017;
}
.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;
}
.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: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #64748b;
}
.filter-rating-select-radio:focus-visible ~ .filter-rating-select-item-label .filter-rating-select-item-label-text {
  color: #64748b;
  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: #64748b;
  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: #bcc1c7;
}
.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: #2b3136;
  font-weight: 400;
}
.filter-rating-select-item-checkmark {
  width: 20px;
  height: 20px;
  background-color: #798490;
  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: #bcc1c7;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.notification-dot.notification-dot-primary {
  background-color: #64748b;
}
.notification-dot.notification-dot-secondary {
  background-color: #474a57;
}
.notification-dot.notification-dot-success {
  background-color: #007e4e;
}
.notification-dot.notification-dot-danger {
  background-color: #c20017;
}
.notification-dot.notification-dot-warning {
  background-color: #974200;
}
.notification-dot.notification-dot-info {
  background-color: #005b99;
}
.notification-dot.notification-dot-light {
  background-color: #f9f9f9;
}
.notification-dot.notification-dot-dark {
  background-color: #4a545b;
}
/*
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 {
  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: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #64748b;
  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: #798490;
}
.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: #eee;
  --bs-btn-disabled-border-color: #798490;
  --bs-btn-border-color: #798490;
  --bs-btn-active-border-color: #798490;
  --bs-btn-hover-border-color: #798490;
  --bs-btn-focus-box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #64748b;
}
.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: #bcc1c7;
}
.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 #798490;
  border-radius: 0;
  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: #798490;
}
.basic-captcha-content-refresh-icon.btn .icon > svg {
  top: 0;
}
.basic-captcha-content-refresh-icon:hover {
  cursor: pointer;
  border-color: #64748b;
  background-color: #fff;
}
.basic-captcha-content-refresh-icon:hover .icon.icon-arrow-switch {
  color: #64748b;
}
.line-item {
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid #798490;
}
.line-item.is-discount .line-item-total-price {
  color: #007e4e;
}
.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;
  font-weight: 700;
  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;
}
.is-offcanvas .line-item-unit-price-label *, .is-offcanvas .line-item-tax-price-label *, .is-offcanvas .line-item-total-price-label * {
  overflow: hidden !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: #007e4e;
}
.line-item-container .line-item-icon .icon {
  color: #474a57;
}
.line-item-nested-icon {
  background-color: #798490;
  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-img {
  width: 100%;
  height: 70px;
  object-fit: contain;
  padding: 0.25rem;
  border: 1px solid #798490;
  border-radius: 0;
}
.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 {
    text-align: right;
    justify-content: normal;
    flex-direction: column;
  }
  .is-default .line-item-tax-price, .is-order .line-item-tax-price {
    order: 4;
  }
  .is-default .line-item-total-price, .is-order .line-item-total-price {
    order: 5;
  }
}
@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-info, .is-order .line-item-info {
    margin-bottom: 0;
  }
  .is-default .line-item-quantity-label, .is-order .line-item-quantity-label {
    display: none;
  }
}
.line-item-children {
  background-color: #f9f9f9;
  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 #798490;
  margin: 1rem 0;
}
.line-item-children.nesting-level-2 {
  background-color: #f0f0f0;
}
.line-item-children.nesting-level-3 {
  background-color: #ebebeb;
}
.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: #2b3136;
  font-weight: 700;
}
a.line-item-label:hover {
  color: #64748b;
}
.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;
  }
  .line-item-unit-price-label *, .line-item-total-price-label * {
    overflow: hidden !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;
  }
  .line-item-unit-price-label *, .line-item-tax-price-label *, .line-item-total-price-label * {
    overflow: hidden !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-form {
  position: relative;
}
.header-search-form .header-close-btn {
  display: none;
}
.header-search-form:has(.search-suggest) .header-search-btn {
  display: none;
}
.header-search-form:has(.search-suggest) .header-close-btn {
  display: block;
}
.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 {
  position: static;
}
.header-minimal-row {
  justify-content: space-between;
  align-items: center;
}
.header-minimal-contact {
  display: none;
}
.header-minimal-contact a {
  color: #64748b;
}
.header-minimal-back-to-shop {
  display: flex;
  justify-content: flex-end;
}
.header-minimal-back-to-shop-button {
  color: #2b3136;
}
.header-minimal-logo {
  display: flex;
  align-items: center;
  margin-bottom: 0.25rem;
}
.header-minimal-logo .header-logo-picture {
  min-width: unset;
}
.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;
  }
}
/*
Footer
==================================================
Contains custom styles for the footer located at the bottom of the page.
*/
.footer-column-content-inner {
  padding-bottom: 1rem;
}
.footer-column-headline {
  padding: 0.5rem 0;
  display: flex;
  justify-content: space-between;
}
.footer-column-headline .icon-footer-minus {
  display: none;
}
.footer-column-headline .icon-footer-plus > svg, .footer-column-headline .icon-footer-minus > svg {
  top: 0.25em;
}
.footer-column-headline .footer-column-toggle[aria-expanded="true"] .icon-footer-plus {
  display: none;
}
.footer-column-headline .footer-column-toggle[aria-expanded="true"] .icon-footer-minus {
  display: inline-flex;
}
.footer-column-toggle {
  padding: 0;
  --bs-btn-line-height: 1.375;
}
.footer-link-item {
  padding: 0.5rem 0;
}
.footer-bottom {
  padding: 1rem;
}
.footer-bottom > .container, .cms-section .footer-bottom > .boxed {
  padding: 0;
}
.footer-vat, .footer-copyright, .footer-service-menu-list {
  text-align: center;
}
.footer-copyright .icon {
  vertical-align: middle;
}
.footer-copyright .icon > svg {
  top: -2px;
}
.footer-service-menu-list {
  padding: 1rem 0;
}
.footer-service-menu-list:empty {
  padding: 0;
  margin: 0;
}
.footer-service-menu-item {
  display: inline-block;
}
.footer-service-menu-link {
  padding: 5px 0;
  display: inline-block;
}
.footer-logos {
  padding: 1rem;
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
}
.footer-logo {
  margin-right: 1.5rem;
  margin-bottom: 0.5rem;
}
.footer-logo:last-child {
  margin-right: 0;
}
.footer-logo-image {
  max-height: 35px;
  max-width: 100px;
}
@media (min-width: 768px) {
  .footer-columns {
    padding-bottom: 20px;
  }
  .footer-column-headline {
    padding: 3rem 0 0.5rem 0;
  }
  .footer-column-toggle {
    display: none;
  }
  .footer-column-content.collapse {
    display: block;
  }
}
/*
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-icon .loader {
  width: 1.203125rem;
  height: 1.203125rem;
}
.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 #798490;
}
.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;
}
/*
Account menu
==================================================
Contains custom styles for the account menu which opens via click/touch on the avatar icon in the header section.
The menu opens on smaller viewports inside an offcanvas and on larger viewports inside a bootstrap dropdown.
*/
.account-menu-header {
  border-bottom: 1px solid #798490;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.5rem 0;
  color: #2b3136;
}
.account-menu-register {
  text-align: center;
}
.account-menu-login {
  padding: 1rem 0;
  border-bottom: 1px solid #798490;
  margin-bottom: 0.25rem;
}
.account-menu-login-button {
  width: 100%;
  margin-bottom: 0.5rem;
}
.account-menu-dropdown {
  padding: 0.5rem 1rem;
  min-width: 200px;
}
.account-menu-dropdown .offcanvas-body {
  overflow: visible;
}
.account-menu-offcanvas .account-menu-inner, .account-menu-dropdown .account-menu-inner {
  border: 0;
}
.account-menu-offcanvas .account-aside-item, .account-menu-dropdown .account-aside-item {
  padding: 0.5rem 0;
}
.account-menu-offcanvas .account-aside-footer, .account-menu-dropdown .account-aside-footer {
  background: none;
  padding: 0.25rem 0;
}
@media (min-width: 576px) {
  .account-menu .offcanvas-close {
    display: none;
  }
  .account-menu .offcanvas-body {
    padding: 0;
  }
}
/*
Search suggest
==================================================
Contains styles for the search suggest popover in the shop header.
*/
.search-suggest-container {
  position: absolute;
  top: 55px;
  left: 0;
  list-style: none;
  touch-action: manipulation;
  background: #fff;
  padding: 1rem;
  border: 1px solid #798490;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 10px 25px -15px #000;
}
.search-suggest-container::after {
  transform: rotate(135deg);
  width: 12px;
  height: 12px;
  top: -7px;
  content: "";
  display: block;
  position: absolute;
  background: #fff;
  left: 48%;
  border: 1px solid #798490;
  border-top: 0 none;
  border-right: 0 none;
}
.search-suggest-product {
  border-bottom: 1px solid #798490;
}
.search-suggest-product:last-child {
  border-bottom: 0;
}
.search-suggest-product-link:hover, .search-suggest-total-link:hover {
  text-decoration: none;
}
.search-suggest-product-link:focus, .search-suggest-product-link:focus-visible, .search-suggest-total-link:focus, .search-suggest-total-link:focus-visible {
  color: #64748b;
  box-shadow: inset 0 0 0 0.125rem #64748b, inset 0 0 0 0.25rem #fff;
  outline: none;
}
.search-suggest-product-link {
  display: block;
  padding: 0.5rem 0;
  color: #2b3136;
  text-decoration: none;
}
.search-suggest-product-link:hover {
  color: #64748b;
}
.search-suggest-product-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-suggest-product-variation {
  font-size: 0.875rem;
  color: #798490;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.search-suggest-product-price {
  text-align: right;
  padding-right: 0.25rem;
}
.search-suggest-product-list-price, .search-suggest-product-reference-price {
  color: #798490;
  text-align: right;
  display: block;
}
.search-suggest-product-image-container {
  width: 35px;
  height: 35px;
  margin: 0 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-suggest-product-image {
  max-width: 35px;
  max-height: 35px;
  display: block;
}
.search-suggest-total {
  padding: 0.5rem;
}
.search-suggest-no-result {
  text-align: center;
}
@media (min-width: 768px) {
  .search-suggest-container {
    width: 500px;
    left: 50%;
    transform: translateX(-50%);
  }
}
/*
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 #798490;
  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 (max-width: 575.98px) {
  .cookie-permission-actions .btn {
    white-space: normal;
    line-height: normal;
    padding: var(--bs-btn-padding-x) calc(var(--bs-btn-padding-y) * 5);
  }
}
@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 #798490;
}
.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;
  }
}
@media (max-width: 575.98px) {
  .offcanvas-cookie-group .form-check {
    padding-right: 2rem;
  }
  .offcanvas-cookie-group input ~ label {
    display: block;
    overflow-wrap: anywhere;
  }
}
.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 {
  padding: 8px 8px 0;
  margin: 0;
}
.offcanvas-cookie-entries .offcanvas-cookie-entry {
  padding: 8px 8px 0 24px;
  margin: 0 0 0 24px;
  overflow: visible;
}
.offcanvas-cookie-entries .offcanvas-cookie-entry > p {
  margin: 8px 0;
}
.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.1;
  position: fixed;
  right: 1.5rem;
  transform: scale(0);
  transition: 0.3s cubic-bezier(0.3, 0, 0.15, 1);
  z-index: 700;
  pointer-events: none;
}
.scroll-up-button.is-visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.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.125rem;
  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: #f9f9f9;
}
.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 #eee;
}
.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: #798490;
  --bs-btn-color: #2b3136;
  --bs-btn-padding-y: 0.125rem;
  --bs-btn-line-height: 1.625rem;
  --bs-btn-active-bg: #fff;
  --bs-btn-active-color: #2b3136;
  --bs-btn-active-border-color: #64748b;
  --bs-btn-disabled-border-color: #798490;
  --bs-btn-disabled-color: #2b3136;
  --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 {
  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;
}
.product-detail-review-form-radio:not(caption) {
  position: absolute !important;
}
.product-detail-review-form-radio * {
  overflow: hidden !important;
}
.product-detail-review-form-rating-input {
  display: flex;
}
.product-detail-review-form-rating-input .product-detail-review-form-rating-text {
  margin-left: 0.5rem;
  margin-bottom: 0;
}
.product-review-point svg {
  top: 0;
}
.product-review-point, .point-container {
  display: inline-block;
  position: relative;
}
.point-rating {
  display: block;
}
.point-rating.point-blank .icon {
  color: #eee;
}
.point-partial {
  position: absolute;
  top: 0;
  left: 0;
}
.product-detail-review-form-star {
  margin-right: 10px;
}
.product-detail-review-form-star:has(.product-detail-review-form-radio:focus-visible) {
  box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #64748b;
}
.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 {
  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;
}
.address-manager-modal-address-form .icon svg {
  top: 0.25em;
}
.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 #798490;
  position: relative;
}
.order-table .order-item-detail {
  border-top: 0 none;
}
.order-table .order-detail-content {
  border-top: 1px solid #798490;
  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 #798490;
  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: #005b99;
  color: #fff;
}
.order-item-status-badge.order-item-status-badge-completed {
  background-color: #007e4e;
  color: #fff;
}
.order-item-status-badge.order-item-status-badge-failed, .order-item-status-badge.order-item-status-badge-cancelled {
  background-color: #c20017;
  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;
  }
  .order-table-header-order-table-body .order-table-header-label * {
    overflow: hidden !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 #798490;
}
.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 #798490;
  padding-bottom: 0.5rem;
}
.download-detail-content-header {
  display: block;
  border-bottom: 1px solid #798490;
  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 #798490;
  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: #007e4e;
}
.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 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: #f9f9f9;
  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 #798490;
  }
  .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, .is-active-route-frontend-checkout-cart-page .footer-minimal .footer-service-menu-list, .is-active-route-frontend-checkout-confirm-page .footer-minimal .footer-service-menu-list, .is-active-route-frontend-checkout-finish-page .footer-minimal .footer-service-menu-list, .is-active-route-frontend-checkout-info .footer-minimal .footer-service-menu-list, .is-active-route-frontend-cart-offcanvas .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.125rem;
  font-weight: 700;
  padding-top: 13px;
  border-top: 1px solid #798490;
  margin-top: 5px;
}
.checkout-aside-summary-total-rounded {
  font-size: 1.125rem;
  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-container, .is-active-route-frontend-checkout-cart-page .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));
}
.is-act-cartpage .checkout .checkout-main, .is-active-route-frontend-checkout-cart-page .checkout .checkout-main {
  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);
  margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
  .is-act-cartpage .checkout .checkout-main, .is-active-route-frontend-checkout-cart-page .checkout .checkout-main {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
}
.is-act-cartpage .checkout .checkout-aside, .is-active-route-frontend-checkout-cart-page .checkout .checkout-aside {
  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);
}
@media (min-width: 768px) {
  .is-act-cartpage .checkout .checkout-aside, .is-active-route-frontend-checkout-cart-page .checkout .checkout-aside {
    flex: 0 0 auto;
    width: 41.66666667%;
    margin-left: 58.33333333%;
  }
}
@media (min-width: 992px) {
  .is-act-cartpage .checkout .checkout-aside, .is-active-route-frontend-checkout-cart-page .checkout .checkout-aside {
    flex: 0 0 auto;
    width: 33.33333333%;
    margin-left: 0;
  }
}
.is-act-cartpage .checkout .checkout-aside-container, .is-active-route-frontend-checkout-cart-page .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, .cart-header-row > [class*="col-"], .line-item-row > .col, .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, .is-active-route-frontend-checkout-register-page .checkout {
  padding-top: 70px;
}
.is-act-checkoutregisterpage .checkout .checkout-container, .is-active-route-frontend-checkout-register-page .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));
}
.is-act-checkoutregisterpage .checkout .checkout-main, .is-active-route-frontend-checkout-register-page .checkout .checkout-main {
  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);
  margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
  .is-act-checkoutregisterpage .checkout .checkout-main, .is-active-route-frontend-checkout-register-page .checkout .checkout-main {
    flex: 0 0 auto;
    width: 66.66666667%;
    margin-bottom: 0;
  }
}
.is-act-checkoutregisterpage .checkout .checkout-aside, .is-active-route-frontend-checkout-register-page .checkout .checkout-aside {
  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);
}
@media (min-width: 992px) {
  .is-act-checkoutregisterpage .checkout .checkout-aside, .is-active-route-frontend-checkout-register-page .checkout .checkout-aside {
    flex: 0 0 auto;
    width: 33.33333333%;
    display: block;
  }
}
.is-act-confirmpage .checkout, .is-ctl-accountorder .checkout, .is-active-route-frontend-checkout-confirm-page .checkout, .is-active-route-frontend-account-order-page .checkout, .is-active-route-frontend-account-order-cancel .checkout, .is-active-route-frontend-account-order-single-page .checkout, .is-active-route-widgets-account-order-detail .checkout, .is-active-route-frontend-account-edit-order-page .checkout {
  padding-top: 70px;
}
.is-act-confirmpage .checkout .checkout-container, .is-ctl-accountorder .checkout .checkout-container, .is-active-route-frontend-checkout-confirm-page .checkout .checkout-container, .is-active-route-frontend-account-order-page .checkout .checkout-container, .is-active-route-frontend-account-order-cancel .checkout .checkout-container, .is-active-route-frontend-account-order-single-page .checkout .checkout-container, .is-active-route-widgets-account-order-detail .checkout .checkout-container, .is-active-route-frontend-account-edit-order-page .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));
}
.is-act-confirmpage .checkout .checkout-main, .is-ctl-accountorder .checkout .checkout-main, .is-active-route-frontend-checkout-confirm-page .checkout .checkout-main, .is-active-route-frontend-account-order-page .checkout .checkout-main, .is-active-route-frontend-account-order-cancel .checkout .checkout-main, .is-active-route-frontend-account-order-single-page .checkout .checkout-main, .is-active-route-widgets-account-order-detail .checkout .checkout-main, .is-active-route-frontend-account-edit-order-page .checkout .checkout-main {
  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);
}
@media (min-width: 992px) {
  .is-act-confirmpage .checkout .checkout-main, .is-ctl-accountorder .checkout .checkout-main, .is-active-route-frontend-checkout-confirm-page .checkout .checkout-main, .is-active-route-frontend-account-order-page .checkout .checkout-main, .is-active-route-frontend-account-order-cancel .checkout .checkout-main, .is-active-route-frontend-account-order-single-page .checkout .checkout-main, .is-active-route-widgets-account-order-detail .checkout .checkout-main, .is-active-route-frontend-account-edit-order-page .checkout .checkout-main {
    flex: 0 0 auto;
    width: 66.66666667%;
    margin-left: 16.66666667%;
  }
}
.is-act-confirmpage .checkout .checkout-additional, .is-ctl-accountorder .checkout .checkout-additional, .is-active-route-frontend-checkout-confirm-page .checkout .checkout-additional, .is-active-route-frontend-account-order-page .checkout .checkout-additional, .is-active-route-frontend-account-order-cancel .checkout .checkout-additional, .is-active-route-frontend-account-order-single-page .checkout .checkout-additional, .is-active-route-widgets-account-order-detail .checkout .checkout-additional, .is-active-route-frontend-account-edit-order-page .checkout .checkout-additional {
  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);
  margin-top: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  .is-act-confirmpage .checkout .checkout-additional, .is-ctl-accountorder .checkout .checkout-additional, .is-active-route-frontend-checkout-confirm-page .checkout .checkout-additional, .is-active-route-frontend-account-order-page .checkout .checkout-additional, .is-active-route-frontend-account-order-cancel .checkout .checkout-additional, .is-active-route-frontend-account-order-single-page .checkout .checkout-additional, .is-active-route-widgets-account-order-detail .checkout .checkout-additional, .is-active-route-frontend-account-edit-order-page .checkout .checkout-additional {
    flex: 0 0 auto;
    width: 50%;
  }
}
@media (min-width: 992px) {
  .is-act-confirmpage .checkout .checkout-additional, .is-ctl-accountorder .checkout .checkout-additional, .is-active-route-frontend-checkout-confirm-page .checkout .checkout-additional, .is-active-route-frontend-account-order-page .checkout .checkout-additional, .is-active-route-frontend-account-order-cancel .checkout .checkout-additional, .is-active-route-frontend-account-order-single-page .checkout .checkout-additional, .is-active-route-widgets-account-order-detail .checkout .checkout-additional, .is-active-route-frontend-account-edit-order-page .checkout .checkout-additional {
    flex: 0 0 auto;
    width: 33.33333333%;
    margin-left: 16.66666667%;
  }
}
.is-act-confirmpage .checkout .checkout-aside, .is-ctl-accountorder .checkout .checkout-aside, .is-active-route-frontend-checkout-confirm-page .checkout .checkout-aside, .is-active-route-frontend-account-order-page .checkout .checkout-aside, .is-active-route-frontend-account-order-cancel .checkout .checkout-aside, .is-active-route-frontend-account-order-single-page .checkout .checkout-aside, .is-active-route-widgets-account-order-detail .checkout .checkout-aside, .is-active-route-frontend-account-edit-order-page .checkout .checkout-aside {
  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: 1 1 0;
  max-width: 100%;
}
@media (min-width: 768px) {
  .is-act-confirmpage .checkout .checkout-aside, .is-ctl-accountorder .checkout .checkout-aside, .is-active-route-frontend-checkout-confirm-page .checkout .checkout-aside, .is-active-route-frontend-account-order-page .checkout .checkout-aside, .is-active-route-frontend-account-order-cancel .checkout .checkout-aside, .is-active-route-frontend-account-order-single-page .checkout .checkout-aside, .is-active-route-widgets-account-order-detail .checkout .checkout-aside, .is-active-route-frontend-account-edit-order-page .checkout .checkout-aside {
    flex: 0 0 auto;
    width: 50%;
    margin-left: 50%;
  }
}
@media (min-width: 992px) {
  .is-act-confirmpage .checkout .checkout-aside, .is-ctl-accountorder .checkout .checkout-aside, .is-active-route-frontend-checkout-confirm-page .checkout .checkout-aside, .is-active-route-frontend-account-order-page .checkout .checkout-aside, .is-active-route-frontend-account-order-cancel .checkout .checkout-aside, .is-active-route-frontend-account-order-single-page .checkout .checkout-aside, .is-active-route-widgets-account-order-detail .checkout .checkout-aside, .is-active-route-frontend-account-edit-order-page .checkout .checkout-aside {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
}
.is-act-confirmpage .checkout .checkout-aside-no-offset, .is-ctl-accountorder .checkout .checkout-aside-no-offset, .is-active-route-frontend-checkout-confirm-page .checkout .checkout-aside-no-offset, .is-active-route-frontend-account-order-page .checkout .checkout-aside-no-offset, .is-active-route-frontend-account-order-cancel .checkout .checkout-aside-no-offset, .is-active-route-frontend-account-order-single-page .checkout .checkout-aside-no-offset, .is-active-route-widgets-account-order-detail .checkout .checkout-aside-no-offset, .is-active-route-frontend-account-edit-order-page .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-tos-bottom {
  margin-bottom: 3rem;
}
.confirm-payment-current, .confirm-shipping-current {
  margin-bottom: 3rem;
}
.confirm-payment-current.is-invalid, .confirm-shipping-current.is-invalid {
  color: #c20017;
}
.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, .is-active-route-frontend-checkout-finish-page .checkout {
  padding-top: 70px;
}
.is-act-finishpage .checkout .checkout-container, .is-active-route-frontend-checkout-finish-page .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));
}
.is-act-finishpage .checkout .checkout-main, .is-active-route-frontend-checkout-finish-page .checkout .checkout-main {
  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);
}
@media (min-width: 992px) {
  .is-act-finishpage .checkout .checkout-main, .is-active-route-frontend-checkout-finish-page .checkout .checkout-main {
    flex: 0 0 auto;
    width: 66.66666667%;
    margin-left: 16.66666667%;
  }
}
.is-act-finishpage .checkout .checkout-additional, .is-active-route-frontend-checkout-finish-page .checkout .checkout-additional {
  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);
  margin-top: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  .is-act-finishpage .checkout .checkout-additional, .is-active-route-frontend-checkout-finish-page .checkout .checkout-additional {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
}
@media (min-width: 768px) {
  .is-act-finishpage .checkout .checkout-additional, .is-active-route-frontend-checkout-finish-page .checkout .checkout-additional {
    flex: 0 0 auto;
    width: 50%;
  }
}
@media (min-width: 992px) {
  .is-act-finishpage .checkout .checkout-additional, .is-active-route-frontend-checkout-finish-page .checkout .checkout-additional {
    flex: 0 0 auto;
    width: 33.33333333%;
    margin-left: 16.66666667%;
  }
}
.is-act-finishpage .checkout .checkout-aside, .is-active-route-frontend-checkout-finish-page .checkout .checkout-aside {
  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: 1 1 0;
  max-width: 100%;
}
@media (min-width: 576px) {
  .is-act-finishpage .checkout .checkout-aside, .is-active-route-frontend-checkout-finish-page .checkout .checkout-aside {
    flex: 0 0 auto;
    width: 58.33333333%;
    margin-left: 41.66666667%;
  }
}
@media (min-width: 768px) {
  .is-act-finishpage .checkout .checkout-aside, .is-active-route-frontend-checkout-finish-page .checkout .checkout-aside {
    flex: 0 0 auto;
    width: 50%;
    margin-left: 50%;
  }
}
@media (min-width: 992px) {
  .is-act-finishpage .checkout .checkout-aside, .is-active-route-frontend-checkout-finish-page .checkout .checkout-aside {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
}
.is-act-finishpage .checkout .checkout-aside-no-offset, .is-active-route-frontend-checkout-finish-page .checkout .checkout-aside-no-offset {
  margin-left: 0;
}
.finish-content {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 6rem;
}
.finish-ordernumber {
  font-size: 1.125rem;
  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: #2b3136;
}
.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
 * ------- */
/*
Inter typeface family
==================================================
Import of Inter font vendor.

https://rsms.me/inter/

@sw-package framework
*/
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: fallback;
  src: url("../../019eea8f845e718c87a08c326c3def54/assets/font/Inter-Variable-Roman-CyrillicExt.woff2") format("woff2 supports variations"), url("../../019eea8f845e718c87a08c326c3def54/assets/font/Inter-Variable-Roman-CyrillicExt.woff2") format("woff2-variations");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: fallback;
  src: url("../../019eea8f845e718c87a08c326c3def54/assets/font/Inter-Variable-Roman-Cyrillic.woff2") format("woff2 supports variations"), url("../../019eea8f845e718c87a08c326c3def54/assets/font/Inter-Variable-Roman-Cyrillic.woff2") format("woff2-variations");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: fallback;
  src: url("../../019eea8f845e718c87a08c326c3def54/assets/font/Inter-Variable-Roman-GreekExt.woff2") format("woff2 supports variations"), url("../../019eea8f845e718c87a08c326c3def54/assets/font/Inter-Variable-Roman-GreekExt.woff2") format("woff2-variations");
  unicode-range: U+1F00-1FFF;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: fallback;
  src: url("../../019eea8f845e718c87a08c326c3def54/assets/font/Inter-Variable-Roman-Greek.woff2") format("woff2 supports variations"), url("../../019eea8f845e718c87a08c326c3def54/assets/font/Inter-Variable-Roman-Greek.woff2") format("woff2-variations");
  unicode-range: U+0370-03FF;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: fallback;
  src: url("../../019eea8f845e718c87a08c326c3def54/assets/font/Inter-Variable-Roman-Vietnamese.woff2") format("woff2 supports variations"), url("../../019eea8f845e718c87a08c326c3def54/assets/font/Inter-Variable-Roman-Vietnamese.woff2") format("woff2-variations");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: fallback;
  src: url("../../019eea8f845e718c87a08c326c3def54/assets/font/Inter-Variable-Roman-LatinExt.woff2") format("woff2 supports variations"), url("../../019eea8f845e718c87a08c326c3def54/assets/font/Inter-Variable-Roman-LatinExt.woff2") format("woff2-variations");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: fallback;
  src: url("../../019eea8f845e718c87a08c326c3def54/assets/font/Inter-Variable-Roman-Latin.woff2") format("woff2 supports variations"), url("../../019eea8f845e718c87a08c326c3def54/assets/font/Inter-Variable-Roman-Latin.woff2") format("woff2-variations");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 400 700;
  font-display: fallback;
  src: url("../../019eea8f845e718c87a08c326c3def54/assets/font/Inter-Variable-Italic-CyrillicExt.woff2") format("woff2 supports variations"), url("../../019eea8f845e718c87a08c326c3def54/assets/font/Inter-Variable-Italic-CyrillicExt.woff2") format("woff2-variations");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 400 700;
  font-display: fallback;
  src: url("../../019eea8f845e718c87a08c326c3def54/assets/font/Inter-Variable-Italic-Cyrillic.woff2") format("woff2 supports variations"), url("../../019eea8f845e718c87a08c326c3def54/assets/font/Inter-Variable-Italic-Cyrillic.woff2") format("woff2-variations");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 400 700;
  font-display: fallback;
  src: url("../../019eea8f845e718c87a08c326c3def54/assets/font/Inter-Variable-Italic-GreekExt.woff2") format("woff2 supports variations"), url("../../019eea8f845e718c87a08c326c3def54/assets/font/Inter-Variable-Italic-GreekExt.woff2") format("woff2-variations");
  unicode-range: U+1F00-1FFF;
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 400 700;
  font-display: fallback;
  src: url("../../019eea8f845e718c87a08c326c3def54/assets/font/Inter-Variable-Italic-Greek.woff2") format("woff2 supports variations"), url("../../019eea8f845e718c87a08c326c3def54/assets/font/Inter-Variable-Italic-Greek.woff2") format("woff2-variations");
  unicode-range: U+0370-03FF;
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 400 700;
  font-display: fallback;
  src: url("../../019eea8f845e718c87a08c326c3def54/assets/font/Inter-Variable-Italic-Vietnamese.woff2") format("woff2 supports variations"), url("../../019eea8f845e718c87a08c326c3def54/assets/font/Inter-Variable-Italic-Vietnamese.woff2") format("woff2-variations");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 400 700;
  font-display: fallback;
  src: url("../../019eea8f845e718c87a08c326c3def54/assets/font/Inter-Variable-Italic-LatinExt.woff2") format("woff2 supports variations"), url("../../019eea8f845e718c87a08c326c3def54/assets/font/Inter-Variable-Italic-LatinExt.woff2") format("woff2-variations");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 400 700;
  font-display: fallback;
  src: url("../../019eea8f845e718c87a08c326c3def54/assets/font/Inter-Variable-Italic-Latin.woff2") format("woff2 supports variations"), url("../../019eea8f845e718c87a08c326c3def54/assets/font/Inter-Variable-Italic-Latin.woff2") format("woff2-variations");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
body {
  font-feature-settings: "cv02" 1, "cv03" 1, "cv04" 1;
}
/*
 * 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 {
  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;
}
blockquote {
  font-size: 1.125rem;
  font-style: italic;
  line-height: 24px;
  margin-top: 16px;
  margin-left: 20px;
  position: relative;
}
blockquote::before {
  content: '"';
  font-size: 40px;
  line-height: 16px;
  color: #9aa7be;
  position: absolute;
  top: 10px;
  left: -24px;
}
/*
 * 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: #64748b;
  --bs-alert-bg: #ebeff8;
  --bs-alert-color: #2b3136;
}
.alert-secondary {
  --bs-alert-border-color: #474a57;
  --bs-alert-bg: #e6e6f5;
  --bs-alert-color: #2b3136;
}
.alert-success {
  --bs-alert-border-color: #007e4e;
  --bs-alert-bg: #defaee;
  --bs-alert-color: #2b3136;
}
.alert-info {
  --bs-alert-border-color: #005b99;
  --bs-alert-bg: #dff0fc;
  --bs-alert-color: #2b3136;
}
.alert-warning {
  --bs-alert-border-color: #974200;
  --bs-alert-bg: #fcebdf;
  --bs-alert-color: #2b3136;
}
.alert-danger {
  --bs-alert-border-color: #c20017;
  --bs-alert-bg: #ffe0e3;
  --bs-alert-color: #2b3136;
}
.alert-light {
  --bs-alert-border-color: #f9f9f9;
  --bs-alert-bg: #fefefe;
  --bs-alert-color: #2b3136;
}
.alert-dark {
  --bs-alert-border-color: #4a545b;
  --bs-alert-bg: #e6eef6;
  --bs-alert-color: #2b3136;
}
/*
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;
}
/*
Breadcrumb
==============================================
Custom skin styling for bootstrap breadcrumb component.

https://getbootstrap.com/docs/5.2/components/breadcrumb
*/
.breadcrumb .breadcrumb-placeholder {
  margin: 0 0.5rem;
}
.breadcrumb svg {
  height: 1rem;
  width: auto;
  top: 3px;
}
.breadcrumb .breadcrumb-item + .breadcrumb-item:before {
  line-height: 24px;
  padding-top: 3px;
}
.breadcrumb a {
  color: #2b3136;
  font-size: 1rem;
}
.breadcrumb a:hover {
  color: #64748b;
  text-decoration: none;
}
.breadcrumb a.is-active {
  color: #64748b;
  font-weight: bolder;
}
/*
Button
==============================================
Custom skin styling for bootstrap button component.

https://getbootstrap.com/docs/5.2/components/buttons
*/
.btn {
  --bs-btn-disabled-color: #bcc1c7;
  overflow: hidden;
  text-overflow: ellipsis;
}
.btn-buy {
  --bs-btn-color: #fff;
  --bs-btn-bg: #0042a0;
  --bs-btn-border-color: #0042a0;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #003888;
  --bs-btn-hover-border-color: #003580;
  --bs-btn-focus-shadow-rgb: 38, 94, 174;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #003580;
  --bs-btn-active-border-color: #003278;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #0042a0;
  --bs-btn-disabled-border-color: #0042a0;
  --bs-btn-focus-box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #64748b;
}
.btn-buy.disabled, .btn-buy:disabled {
  opacity: 1;
  background: #eee;
  border-color: #eee;
  color: #bcc1c7;
}
.btn-link {
  --bs-btn-font-weight: 600;
  --bs-btn-focus-box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #64748b;
}
.btn-link-inline {
  --bs-btn-color: var(--bs-link-color);
  --bs-btn-hover-color: var(--bs-link-hover-color);
  --bs-btn-font-weight: 400;
  --bs-btn-font-size: inherit;
  --bs-btn-focus-box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #64748b;
  --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, .btn-outline-primary {
  --bs-btn-focus-box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #64748b;
}
.btn-secondary, .btn-outline-secondary {
  --bs-btn-focus-box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #64748b;
}
.btn-success, .btn-outline-success {
  --bs-btn-focus-box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #64748b;
}
.btn-info, .btn-outline-info {
  --bs-btn-focus-box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #64748b;
}
.btn-warning, .btn-outline-warning {
  --bs-btn-focus-box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #64748b;
}
.btn-danger, .btn-outline-danger {
  --bs-btn-focus-box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #64748b;
}
.btn-light, .btn-outline-light {
  --bs-btn-focus-box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #64748b;
}
.btn-dark, .btn-outline-dark {
  --bs-btn-focus-box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #64748b;
}
/*
Card
==============================================
Custom skin styling for bootstrap card component.

https://getbootstrap.com/docs/5.2/components/card
*/
.card-title {
  border-bottom: 1px solid #798490;
  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: #666977;
}
.custom-select:hover {
  border-color: #64748b;
  color: #64748b;
}
/*
Form
==============================================
Custom skin styling for bootstrap forms.

https://getbootstrap.com/docs/5.2/forms/overview
*/
.form-group {
  margin-bottom: 20px;
}
.was-validated .form-control:invalid:focus, .was-validated .form-control.is-invalid:focus, .was-validated .form-control:valid:focus, .was-validated .form-control.is-valid:focus, .was-validated .form-select:invalid:focus, .was-validated .form-select.is-invalid:focus, .was-validated .form-select:valid:focus, .was-validated .form-select.is-valid:focus, .form-control:invalid:focus, .form-control.is-invalid:focus, .form-control:valid:focus, .form-control.is-valid:focus, .form-select:invalid:focus, .form-select.is-invalid:focus, .form-select:valid:focus, .form-select.is-valid:focus {
  box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #64748b;
}
.form-required-label {
  color: #c20017;
}
.form-field-feedback .invalid-feedback {
  display: block;
}
/*
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 {
  --bs-card-bg: var(--bs-body-bg);
  border-color: #798490;
}
.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: #2b3136;
  --bs-nav-tabs-border-width: 0;
  --bs-nav-tabs-border-radius: 0;
  --bs-nav-tabs-link-hover-border-color: #64748b;
  --bs-nav-link-hover-color: #64748b;
  --bs-nav-tabs-link-active-color: #2b3136;
  --bs-nav-tabs-link-active-border-color: #64748b;
  border-bottom: 2px solid #798490;
}
.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: #ccc;
}
.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;
}
.quickview-minimal-product-name {
  color: #2b3136;
}
.quickview-minimal-product-name:hover {
  text-decoration: none;
}
.quickview-minimal-product-number {
  font-size: 0.875rem;
}
.quickview-minimal-footer-heading {
  border-bottom: 1px solid #798490;
}
.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
 * ----------------------- */
/*
Top bar
==================================================
Contains skin styles for the top bar located at the top of the page.
The top bar contains e.g. the language switcher, the currency switcher and the service menu.
*/
.top-bar-nav-btn.btn {
  --bs-btn-focus-box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #64748b;
  --bs-btn-color: #2b3136;
  --bs-btn-font-weight: 400;
  --bs-btn-border-width: 0;
  --bs-btn-border-color: transparent;
  --bs-btn-padding-x: 0;
  --bs-btn-padding-y: 0;
  --bs-btn-hover-color: #64748b;
}
.top-bar-list {
  --bs-dropdown-link-hover-bg: transparent;
  --bs-dropdown-link-hover-color: #64748b;
  --bs-dropdown-link-active-color: #64748b;
  --bs-dropdown-link-active-bg: transparent;
}
.top-bar-list-item-currency-symbol {
  min-width: 1.7rem;
}
/*
Header
==================================================
Contains custom skin 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-search-btn, .header-close-btn {
  --bs-btn-focus-box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #64748b;
  --bs-btn-border-color: #798490;
  --bs-btn-hover-color: #64748b;
  --bs-btn-hover-border-color: #798490;
  --bs-btn-active-border-color: #798490;
  --bs-btn-disabled-bg: var(--bs-body-bg);
  --bs-btn-disabled-border-color: #798490;
  border-left: 0 none;
}
.header-search-btn:hover .icon, .header-close-btn:hover .icon {
  color: #64748b;
}
.header-search-btn.btn:disabled, .header-close-btn.btn:disabled {
  display: flex;
  align-items: center;
}
.header-search-input {
  border-right: 0;
}
.header-search-input:focus, .header-search-input:focus ~ .header-search-btn, .header-search-input:focus ~ .header-close-btn {
  border-color: #64748b;
}
.header-actions-btn {
  --bs-btn-focus-box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #64748b;
  --bs-btn-active-border-color: transparent;
  --bs-btn-active-bg: transparent;
  --bs-btn-hover-color: transparent;
  --bs-btn-hover-border-color: transparent;
  --bs-btn-hover-bg: transparent;
}
.header-actions-btn:hover, .header-actions-btn:hover .icon {
  color: #64748b;
}
.header-cart-total {
  color: #64748b;
  font-size: 1.125rem;
}
@media (min-width: 576px) {
  .header-cart-badge {
    display: none;
  }
}
/*
Footer
==================================================
Contains custom skin styles for the footer located at the bottom of the page.
*/
.footer-main {
  border-top: 1px solid #798490;
}
.footer-column {
  border-bottom: 1px solid #798490;
}
.footer-column-headline {
  color: #64748b;
  font-size: 1.125rem;
  font-weight: 700;
}
.footer-link {
  color: #2b3136;
}
.footer-link:hover {
  color: #64748b;
}
.footer-contact-hotline a {
  display: block;
  margin: 1rem 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #64748b;
}
.footer-bottom {
  background: #f9f9f9;
}
.footer-service-menu-item {
  padding-right: 1rem;
  font-weight: 700;
}
.footer-service-menu-item:last-child {
  padding-right: 0;
}
.footer-service-menu-link {
  color: inherit;
}
@media (min-width: 768px) {
  .footer-column {
    border: 0;
  }
  .footer-link-item {
    padding: 2px 0;
  }
}
/*
Main navigation
==============================================
Custom styling for main navigation on larger screens.

Based on bootstrap nav:
https://getbootstrap.com/docs/5.2/components/navs-tabs
*/
@media (min-width: 768px) {
  .main-navigation-menu {
    --bs-navbar-color: #2b3136;
    --bs-navbar-nav-link-padding-x: 0;
  }
  .main-navigation-menu .nav-item:not(:last-child) {
    padding-right: 1rem;
  }
  .main-navigation-link.root.active .main-navigation-link-text {
    border-color: #64748b;
  }
  .main-navigation-link-text {
    border-bottom: 2px solid transparent;
    padding-bottom: 3px;
  }
}
.main-navigation-menu .dropdown-menu::after {
  content: "";
  position: absolute;
  height: calc(1 * var(--bs-dropdown-spacer) + 1px);
  left: 0;
  right: 0;
}
.main-navigation-menu .dropdown:not(.dropup) .dropdown-menu::after {
  top: calc(-1 * var(--bs-dropdown-spacer) - 1px);
}
.main-navigation-menu .dropup .dropdown-menu::after {
  bottom: calc(-1 * var(--bs-dropdown-spacer) - 1px);
}
/*
Navigation flyout
==============================================
Custom skin styling for navigation flyout which opens on hover over the main navigation.
*/
.navigation-flyout-categories:not(.is-level-0) {
  margin-left: 20px;
}
.navigation-flyout-categories.is-level-0 > .navigation-flyout-col {
  margin-bottom: 30px;
  position: relative;
}
.navigation-flyout-categories.is-level-0 > .navigation-flyout-col::before {
  border-left: 1px solid #798490;
  content: "";
  height: 100%;
  left: 15px;
  position: absolute;
  top: 0;
}
.navigation-flyout-link {
  transition: padding 0.25s cubic-bezier(0, 0.77, 0.33, 1);
  color: #2b3136;
  font-size: 1rem;
  margin: 0 1rem;
  padding: 0.25rem 0;
}
@media (prefers-reduced-motion: reduce) {
  .navigation-flyout-link {
    transition: none;
  }
}
.navigation-flyout-link.is-level-0 {
  font-weight: 700;
}
.navigation-flyout-link.is-level-2 {
  font-size: 1rem;
  padding: 0.125rem 0;
}
.navigation-flyout-link.nav-link:hover {
  color: #64748b;
  padding-left: 5px;
}
.navigation-flyout-link.active {
  color: #64748b;
  font-weight: 700;
}
.navigation-flyout-bar {
  align-items: center;
  padding: 20px 0;
}
.navigation-flyout-category-link {
  font-weight: 700;
  font-size: 1rem;
}
/*
Navigation offcanvas
==============================================
Custom skin styling for navigation offcanvas which replaces main navigation on smaller screens.
Based on custom offcanvas component.
*/
.navigation-offcanvas-headline {
  font-weight: 700;
  color: #474a57;
}
.navigation-offcanvas-headline:focus-visible {
  box-shadow: inset 0 0 0 0.125rem #64748b, inset 0 0 0 0.25rem #fff;
}
.navigation-offcanvas-list-item {
  background-color: #fff;
  border-top: 1px solid #bcc1c7;
}
.navigation-offcanvas-list-item:last-child {
  border-bottom: 1px solid #bcc1c7;
}
.navigation-offcanvas-link {
  color: #2b3136;
}
.navigation-offcanvas-link:focus-visible {
  box-shadow: inset 0 0 0 0.125rem #64748b, inset 0 0 0 0.25rem #fff;
}
.navigation-offcanvas-link.is-home-link, .navigation-offcanvas-link.is-home-link .icon {
  color: #64748b;
}
.navigation-offcanvas-link.is-back-link {
  border-top: 1px solid #bcc1c7;
  font-weight: 700;
  color: #474a57;
}
.navigation-offcanvas-link.is-current-category {
  color: #64748b;
  font-weight: 700;
}
/*
Offcanvas cart
==============================================
Custom skin styling for the cart offcanvas.
*/
.offcanvas-cart-header-count {
  color: var(--bs-secondary-color);
  font-weight: 700;
}
.offcanvas-cart-tax {
  color: var(--bs-secondary-color);
}
/*
 * Page-specific styles
 * -------------------- */
.product-detail-name {
  color: #2b3136;
}
.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: #2b3136;
  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: #2b3136;
  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: #64748b;
  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 #798490;
  margin-bottom: 2rem;
}
.product-detail-review-item-date p {
  margin-bottom: 1rem;
}
.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: #2b3136;
  font-weight: 700;
  margin-bottom: 1rem;
}
.account-aside-item {
  --bs-list-group-item-padding-x: 0;
  --bs-list-group-action-active-color: #64748b;
  --bs-list-group-action-active-bg: var(--bs-body-bg);
  --bs-list-group-action-hover-color: #64748b;
  --bs-list-group-action-hover-bg: var(--bs-body-bg);
  --bs-list-group-border-width: 0;
}
.account-aside-item.is-active {
  color: #64748b;
  font-weight: 700;
}
.account-aside-footer {
  background: none;
  margin-top: 1px;
  border-top: 1px solid #798490;
}
.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 #798490;
}
.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-item-header .row, .order-detail-content-header .row {
  margin-right: 0;
  margin-left: 0;
}
.order-table-header .row > .col, .order-table-header .row > [class*="col-"], .order-item-header .row > .col, .order-item-header .row > [class*="col-"], .order-detail-content-header .row > .col, .order-detail-content-header .row > [class*="col-"] {
  padding-right: 10px;
  padding-left: 10px;
}
@media (max-width: 575.98px) {
  .order-table-header .row > .col, .order-table-header .row > [class*="col-"], .order-item-header .row > .col, .order-item-header .row > [class*="col-"], .order-detail-content-header .row > .col, .order-detail-content-header .row > [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 .row > .order-table-header-order-number {
  padding-right: 0;
  padding-left: 0;
}
.order-item-name {
  color: #4a545b;
}
.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: #2b3136;
}
.order-item-product-name:hover {
  color: #64748b;
  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: #f9f9f9;
}
.order-item-nested-icon {
  background-color: #798490;
}
.order-item-detail-footer {
  background-color: #f9f9f9;
}
.order-detail-table-footer {
  background-color: #f9f9f9;
}
.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: #f9f9f9;
}
.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;
}
.language-flag {
  display: inline-block;
  height: 12px;
  width: 16px;
  border: 1px solid #adb5bd;
  margin-top: 2px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100%;
}
.language-flag.country-ad {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/ad.svg");
}
.language-flag.country-ae {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/ae.svg");
}
.language-flag.country-af {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/af.svg");
}
.language-flag.country-ag {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/ag.svg");
}
.language-flag.country-ai {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/ai.svg");
}
.language-flag.country-al {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/al.svg");
}
.language-flag.country-am {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/am.svg");
}
.language-flag.country-ao {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/ao.svg");
}
.language-flag.country-aq {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/aq.svg");
}
.language-flag.country-ar {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/ar.svg");
}
.language-flag.country-as {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/as.svg");
}
.language-flag.country-at {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/at.svg");
}
.language-flag.country-au {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/au.svg");
}
.language-flag.country-aw {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/aw.svg");
}
.language-flag.country-ax {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/ax.svg");
}
.language-flag.country-az {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/az.svg");
}
.language-flag.country-ba {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/ba.svg");
}
.language-flag.country-bb {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/bb.svg");
}
.language-flag.country-bd {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/bd.svg");
}
.language-flag.country-be {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/be.svg");
}
.language-flag.country-bf {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/bf.svg");
}
.language-flag.country-bg {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/bg.svg");
}
.language-flag.country-bh {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/bh.svg");
}
.language-flag.country-bi {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/bi.svg");
}
.language-flag.country-bj {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/bj.svg");
}
.language-flag.country-bl {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/bl.svg");
}
.language-flag.country-bm {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/bm.svg");
}
.language-flag.country-bn {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/bn.svg");
}
.language-flag.country-bo {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/bo.svg");
}
.language-flag.country-bq {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/bq.svg");
}
.language-flag.country-br {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/br.svg");
}
.language-flag.country-bs {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/bs.svg");
}
.language-flag.country-bt {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/bt.svg");
}
.language-flag.country-bv {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/bv.svg");
}
.language-flag.country-bw {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/bw.svg");
}
.language-flag.country-by {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/by.svg");
}
.language-flag.country-bz {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/bz.svg");
}
.language-flag.country-ca {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/ca.svg");
}
.language-flag.country-cc {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/cc.svg");
}
.language-flag.country-cd {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/cd.svg");
}
.language-flag.country-cf {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/cf.svg");
}
.language-flag.country-cg {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/cg.svg");
}
.language-flag.country-ch {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/ch.svg");
}
.language-flag.country-ci {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/ci.svg");
}
.language-flag.country-ck {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/ck.svg");
}
.language-flag.country-cl {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/cl.svg");
}
.language-flag.country-cm {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/cm.svg");
}
.language-flag.country-cn {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/cn.svg");
}
.language-flag.country-co {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/co.svg");
}
.language-flag.country-cr {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/cr.svg");
}
.language-flag.country-cu {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/cu.svg");
}
.language-flag.country-cv {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/cv.svg");
}
.language-flag.country-cw {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/cw.svg");
}
.language-flag.country-cx {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/cx.svg");
}
.language-flag.country-cy {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/cy.svg");
}
.language-flag.country-cz {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/cz.svg");
}
.language-flag.country-de {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/de.svg");
}
.language-flag.country-dj {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/dj.svg");
}
.language-flag.country-dk {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/dk.svg");
}
.language-flag.country-dm {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/dm.svg");
}
.language-flag.country-do {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/do.svg");
}
.language-flag.country-dz {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/dz.svg");
}
.language-flag.country-ec {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/ec.svg");
}
.language-flag.country-ee {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/ee.svg");
}
.language-flag.country-eg {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/eg.svg");
}
.language-flag.country-eh {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/eh.svg");
}
.language-flag.country-er {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/er.svg");
}
.language-flag.country-es-ca {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/es-ca.svg");
}
.language-flag.country-es-ga {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/es-ga.svg");
}
.language-flag.country-es {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/es.svg");
}
.language-flag.country-et {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/et.svg");
}
.language-flag.country-eu {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/eu.svg");
}
.language-flag.country-fi {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/fi.svg");
}
.language-flag.country-fj {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/fj.svg");
}
.language-flag.country-fk {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/fk.svg");
}
.language-flag.country-fm {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/fm.svg");
}
.language-flag.country-fo {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/fo.svg");
}
.language-flag.country-fr {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/fr.svg");
}
.language-flag.country-ga {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/ga.svg");
}
.language-flag.country-gb-eng {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/gb-eng.svg");
}
.language-flag.country-gb-nir {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/gb-nir.svg");
}
.language-flag.country-gb-sct {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/gb-sct.svg");
}
.language-flag.country-gb-wls {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/gb-wls.svg");
}
.language-flag.country-gb {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/gb.svg");
}
.language-flag.country-gd {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/gd.svg");
}
.language-flag.country-ge {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/ge.svg");
}
.language-flag.country-gf {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/gf.svg");
}
.language-flag.country-gg {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/gg.svg");
}
.language-flag.country-gh {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/gh.svg");
}
.language-flag.country-gi {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/gi.svg");
}
.language-flag.country-gl {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/gl.svg");
}
.language-flag.country-gm {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/gm.svg");
}
.language-flag.country-gn {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/gn.svg");
}
.language-flag.country-gp {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/gp.svg");
}
.language-flag.country-gq {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/gq.svg");
}
.language-flag.country-gr {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/gr.svg");
}
.language-flag.country-gs {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/gs.svg");
}
.language-flag.country-gt {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/gt.svg");
}
.language-flag.country-gu {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/gu.svg");
}
.language-flag.country-gw {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/gw.svg");
}
.language-flag.country-gy {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/gy.svg");
}
.language-flag.country-hk {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/hk.svg");
}
.language-flag.country-hm {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/hm.svg");
}
.language-flag.country-hn {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/hn.svg");
}
.language-flag.country-hr {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/hr.svg");
}
.language-flag.country-ht {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/ht.svg");
}
.language-flag.country-hu {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/hu.svg");
}
.language-flag.country-id {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/id.svg");
}
.language-flag.country-ie {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/ie.svg");
}
.language-flag.country-il {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/il.svg");
}
.language-flag.country-im {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/im.svg");
}
.language-flag.country-in {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/in.svg");
}
.language-flag.country-io {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/io.svg");
}
.language-flag.country-iq {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/iq.svg");
}
.language-flag.country-ir {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/ir.svg");
}
.language-flag.country-is {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/is.svg");
}
.language-flag.country-it {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/it.svg");
}
.language-flag.country-je {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/je.svg");
}
.language-flag.country-jm {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/jm.svg");
}
.language-flag.country-jo {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/jo.svg");
}
.language-flag.country-jp {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/jp.svg");
}
.language-flag.country-ke {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/ke.svg");
}
.language-flag.country-kg {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/kg.svg");
}
.language-flag.country-kh {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/kh.svg");
}
.language-flag.country-ki {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/ki.svg");
}
.language-flag.country-km {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/km.svg");
}
.language-flag.country-kn {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/kn.svg");
}
.language-flag.country-kp {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/kp.svg");
}
.language-flag.country-kr {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/kr.svg");
}
.language-flag.country-kw {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/kw.svg");
}
.language-flag.country-ky {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/ky.svg");
}
.language-flag.country-kz {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/kz.svg");
}
.language-flag.country-la {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/la.svg");
}
.language-flag.country-lb {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/lb.svg");
}
.language-flag.country-lc {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/lc.svg");
}
.language-flag.country-li {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/li.svg");
}
.language-flag.country-lk {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/lk.svg");
}
.language-flag.country-lr {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/lr.svg");
}
.language-flag.country-ls {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/ls.svg");
}
.language-flag.country-lt {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/lt.svg");
}
.language-flag.country-lu {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/lu.svg");
}
.language-flag.country-lv {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/lv.svg");
}
.language-flag.country-ly {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/ly.svg");
}
.language-flag.country-ma {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/ma.svg");
}
.language-flag.country-mc {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/mc.svg");
}
.language-flag.country-md {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/md.svg");
}
.language-flag.country-me {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/me.svg");
}
.language-flag.country-mf {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/mf.svg");
}
.language-flag.country-mg {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/mg.svg");
}
.language-flag.country-mh {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/mh.svg");
}
.language-flag.country-mk {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/mk.svg");
}
.language-flag.country-ml {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/ml.svg");
}
.language-flag.country-mm {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/mm.svg");
}
.language-flag.country-mn {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/mn.svg");
}
.language-flag.country-mo {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/mo.svg");
}
.language-flag.country-mp {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/mp.svg");
}
.language-flag.country-mq {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/mq.svg");
}
.language-flag.country-mr {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/mr.svg");
}
.language-flag.country-ms {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/ms.svg");
}
.language-flag.country-mt {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/mt.svg");
}
.language-flag.country-mu {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/mu.svg");
}
.language-flag.country-mv {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/mv.svg");
}
.language-flag.country-mw {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/mw.svg");
}
.language-flag.country-mx {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/mx.svg");
}
.language-flag.country-my {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/my.svg");
}
.language-flag.country-mz {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/mz.svg");
}
.language-flag.country-na {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/na.svg");
}
.language-flag.country-nc {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/nc.svg");
}
.language-flag.country-ne {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/ne.svg");
}
.language-flag.country-nf {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/nf.svg");
}
.language-flag.country-ng {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/ng.svg");
}
.language-flag.country-ni {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/ni.svg");
}
.language-flag.country-nl {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/nl.svg");
}
.language-flag.country-no {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/no.svg");
}
.language-flag.country-np {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/np.svg");
}
.language-flag.country-nr {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/nr.svg");
}
.language-flag.country-nu {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/nu.svg");
}
.language-flag.country-nz {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/nz.svg");
}
.language-flag.country-om {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/om.svg");
}
.language-flag.country-pa {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/pa.svg");
}
.language-flag.country-pe {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/pe.svg");
}
.language-flag.country-pf {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/pf.svg");
}
.language-flag.country-pg {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/pg.svg");
}
.language-flag.country-ph {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/ph.svg");
}
.language-flag.country-pk {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/pk.svg");
}
.language-flag.country-pl {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/pl.svg");
}
.language-flag.country-pm {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/pm.svg");
}
.language-flag.country-pn {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/pn.svg");
}
.language-flag.country-pr {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/pr.svg");
}
.language-flag.country-ps {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/ps.svg");
}
.language-flag.country-pt {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/pt.svg");
}
.language-flag.country-pw {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/pw.svg");
}
.language-flag.country-py {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/py.svg");
}
.language-flag.country-qa {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/qa.svg");
}
.language-flag.country-re {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/re.svg");
}
.language-flag.country-ro {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/ro.svg");
}
.language-flag.country-rs {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/rs.svg");
}
.language-flag.country-ru {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/ru.svg");
}
.language-flag.country-rw {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/rw.svg");
}
.language-flag.country-sa {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/sa.svg");
}
.language-flag.country-sb {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/sb.svg");
}
.language-flag.country-sc {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/sc.svg");
}
.language-flag.country-sd {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/sd.svg");
}
.language-flag.country-se {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/se.svg");
}
.language-flag.country-sg {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/sg.svg");
}
.language-flag.country-sh {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/sh.svg");
}
.language-flag.country-si {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/si.svg");
}
.language-flag.country-sj {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/sj.svg");
}
.language-flag.country-sk {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/sk.svg");
}
.language-flag.country-sl {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/sl.svg");
}
.language-flag.country-sm {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/sm.svg");
}
.language-flag.country-sn {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/sn.svg");
}
.language-flag.country-so {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/so.svg");
}
.language-flag.country-sr {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/sr.svg");
}
.language-flag.country-ss {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/ss.svg");
}
.language-flag.country-st {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/st.svg");
}
.language-flag.country-sv {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/sv.svg");
}
.language-flag.country-sx {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/sx.svg");
}
.language-flag.country-sy {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/sy.svg");
}
.language-flag.country-sz {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/sz.svg");
}
.language-flag.country-tc {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/tc.svg");
}
.language-flag.country-td {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/td.svg");
}
.language-flag.country-tf {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/tf.svg");
}
.language-flag.country-tg {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/tg.svg");
}
.language-flag.country-th {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/th.svg");
}
.language-flag.country-tj {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/tj.svg");
}
.language-flag.country-tk {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/tk.svg");
}
.language-flag.country-tl {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/tl.svg");
}
.language-flag.country-tm {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/tm.svg");
}
.language-flag.country-tn {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/tn.svg");
}
.language-flag.country-to {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/to.svg");
}
.language-flag.country-tr {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/tr.svg");
}
.language-flag.country-tt {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/tt.svg");
}
.language-flag.country-tv {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/tv.svg");
}
.language-flag.country-tw {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/tw.svg");
}
.language-flag.country-tz {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/tz.svg");
}
.language-flag.country-ua {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/ua.svg");
}
.language-flag.country-ug {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/ug.svg");
}
.language-flag.country-um {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/um.svg");
}
.language-flag.country-un {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/un.svg");
}
.language-flag.country-us {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/us.svg");
}
.language-flag.country-uy {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/uy.svg");
}
.language-flag.country-uz {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/uz.svg");
}
.language-flag.country-va {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/va.svg");
}
.language-flag.country-vc {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/vc.svg");
}
.language-flag.country-ve {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/ve.svg");
}
.language-flag.country-vg {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/vg.svg");
}
.language-flag.country-vi {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/vi.svg");
}
.language-flag.country-vn {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/vn.svg");
}
.language-flag.country-vu {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/vu.svg");
}
.language-flag.country-wf {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/wf.svg");
}
.language-flag.country-ws {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/ws.svg");
}
.language-flag.country-xk {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/xk.svg");
}
.language-flag.country-ye {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/ye.svg");
}
.language-flag.country-yt {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/yt.svg");
}
.language-flag.country-za {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/za.svg");
}
.language-flag.country-zm {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/zm.svg");
}
.language-flag.country-zw {
  background-image: url("https://shop.gs-stancanelli.com/bundles/swaglanguagepack/static/flags/zw.svg");
}
.cms-element-great-four-steps-image {
  display: flex;
  gap: 60px;
  align-items: center;
  padding: 40px 0;
}
@media (max-width: 767.98px) {
  .cms-element-great-four-steps-image {
    flex-direction: column;
    gap: 30px;
  }
}
.great-four-steps-image__image-col {
  position: relative;
  flex: 0 0 46%;
  max-width: 46%;
}
@media (max-width: 767.98px) {
  .great-four-steps-image__image-col {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.great-four-steps-image__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 4px;
  min-height: 320px;
}
@media (max-width: 767.98px) {
  .great-four-steps-image__image {
    min-height: 220px;
  }
}
.great-four-steps-image__badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #2196f3;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  letter-spacing: 0.02em;
}
.great-four-steps-image__content-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.great-four-steps-image__overline {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2196f3;
  margin-bottom: 8px;
}
.great-four-steps-image__headline {
  font-size: 2rem;
  font-weight: 800;
  color: #1a2332;
  margin: 0 0 12px 0;
  line-height: 1.15;
}
@media (max-width: 991.98px) {
  .great-four-steps-image__headline {
    font-size: 1.6rem;
  }
}
.great-four-steps-image__subtext {
  font-size: 1rem;
  color: #5c6a7a;
  margin: 0 0 28px 0;
  line-height: 1.6;
  max-width: 480px;
}
.great-four-steps-image__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 30px;
}
@media (max-width: 575.98px) {
  .great-four-steps-image__features {
    grid-template-columns: 1fr;
  }
}
.great-four-steps-image__feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.great-four-steps-image__feature-icon {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  background-color: #e3f2fd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2196f3;
  margin-top: 2px;
}
.great-four-steps-image__feature-icon .icon {
  width: 18px;
  height: 18px;
}
.great-four-steps-image__feature-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.great-four-steps-image__feature-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a2332;
  display: block;
}
.great-four-steps-image__feature-desc {
  font-size: 0.85rem;
  color: #5c6a7a;
  line-height: 1.5;
  display: block;
}
.great-four-steps-image__icon-img {
  width: 20px;
  height: 20px;
  filter: invert(47%) sepia(93%) saturate(565%) hue-rotate(179deg) brightness(99%) contrast(94%);
}
.cms-element-great-four-steps-image.great-four-steps-image--image-right {
  flex-direction: row-reverse;
}
.cms-element-great-four-steps-image.great-four-steps-image--image-right .great-four-steps-image__badge {
  left: auto;
  right: -10px;
}
.header-row .maxia-tax-switch-col {
  display: flex;
  align-items: center;
}
/* Dropdown */
.header-row .maxia-tax-switch-dropdown {
  margin-top: 2px;
  margin-right: 9px;
}
header .maxia-tax-switch-inactive-label {
  display: none;
}
/* Checkbox */
.top-bar-nav .maxia-tax-switch-checkbox {
  display: flex;
  align-items: center;
  height: 34px;
  padding: 0 16px;
}
.header-row .maxia-tax-switch-checkbox {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 12px;
}
/* Radio */
.top-bar-nav .maxia-tax-switch-radio {
  display: flex;
  align-items: center;
  padding: 0 16px;
}
@media screen and (max-width: 375px) {
  .top-bar-nav .maxia-tax-switch-radio {
    padding: 0 8px;
  }
}
header.header-main .header-row .header-actions-col .btn.maxia-tax-switch-radio-button {
  padding: 2px 10px;
}
@media screen and (max-width: 375px) {
  header.header-main .header-row .header-actions-col .btn.maxia-tax-switch-radio-button {
    padding: 2px 8px;
  }
}
.header-row .maxia-tax-switch-radio {
  padding: 0 10px;
}
.navigation-offcanvas .maxia-tax-switch-checkbox {
  display: flex;
  align-items: center;
  padding-left: 15px;
  padding-right: 10px;
}
.navigation-offcanvas .maxia-tax-switch-radio {
  display: flex;
  align-items: center;
  height: 50px;
  padding-left: 15px;
  padding-right: 10px;
}
#maxiaTaxSwitchModal .maxia-tax-switch-link {
  text-align: center;
}
.maxia-tax-switch-modal-description {
  margin-bottom: 20px;
}
.maxia-tax-switch-modal-choose {
  font-weight: bold;
  margin-bottom: 20px;
}
.maxia-tax-switch-modal-options {
  display: flex;
  flex-direction: column;
}
.maxia-tax-switch-modal-options .maxia-tax-switch-form {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.maxia-tax-switch-modal-options .btn {
  vertical-align: middle;
  display: block;
  flex: 1;
  line-height: 45px;
}
.maxia-tax-switch-modal-options > div:first-child, .maxia-tax-switch-modal-options > form:first-child {
  margin-bottom: 5px;
}
.maxia-tax-switch-modal-options .prices-hint {
  font-size: 12px;
  font-weight: normal;
  vertical-align: top;
}
@media (min-width: 768px) {
  .maxia-tax-switch-modal-options {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .maxia-tax-switch-modal-options > div:first-child, .maxia-tax-switch-modal-options form:first-child {
    margin-right: 5px;
    margin-bottom: 0;
  }
  .maxia-tax-switch-modal-options > div:last-child, .maxia-tax-switch-modal-options form:last-child {
    margin-left: 5px;
  }
}
.maxia-tax-switch-checkbox {
  position: relative;
  user-select: none;
}
.maxia-tax-switch-checkbox .form-check {
  margin-bottom: 0;
}
.maxia-tax-switch-checkbox, .maxia-tax-switch-checkbox label {
  cursor: pointer;
}
.maxia-tax-switch-checkbox .form-check-label {
  vertical-align: middle;
  line-height: 22px;
}
.maxia-tax-switch-checkbox .maxia-tax-switch-inactive-label {
  font-size: 0.875rem;
}
.maxia-tax-switch-link.is-input-overlay {
  color: transparent;
  background-color: transparent;
  border: none;
  font-size: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  outline: 0;
  width: 100%;
  height: 100%;
}
.maxia-tax-switch-link.is-input-overlay:focus-visible {
  box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #64748b;
  z-index: 2;
}
.maxia-tax-switch-radio {
  position: relative;
  user-select: none;
}
.maxia-tax-switch-radio input {
  display: none;
}
.maxia-tax-switch-radio label {
  margin-bottom: 0;
}
.maxia-tax-switch-radio .btn {
  height: 28px;
  line-height: 22px;
  font-size: 0.875rem;
  border-radius: 0 15px 15px 0;
  cursor: pointer;
  overflow: visible;
}
.maxia-tax-switch-radio .btn:hover {
  background: inherit;
  color: inherit;
}
.maxia-tax-switch-radio input:first-child + .btn {
  border-radius: 15px 0 0 15px;
}
.maxia-tax-switch-radio .btn:active, .maxia-tax-switch-radio input:checked + .btn, .maxia-tax-switch-radio input:checked + .btn:hover {
  background: var(--bs-btn-active-bg);
  color: var(--bs-btn-active-color);
}
.maxia-tax-switch-radio.reverse .btn.gross-button, .maxia-tax-switch-radio.reverse input:first-child + .btn.gross-button {
  order: 2;
  border-radius: 0 15px 15px 0;
}
.maxia-tax-switch-radio.reverse .btn.net-button {
  order: 1;
  border-radius: 15px 0 0 15px;
}
.product-detail-buy .maxia-tax-switch {
  float: right;
  margin-top: -5px;
  margin-left: 18px;
}
.product-detail-delivery-information {
  clear: right;
}
.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%;
}
apple-pay-button {
  display: block;
  --apple-pay-button-border-radius: 0;
  --apple-pay-button-width: 100%;
  --apple-pay-button-height: calc(
        1rem * 1.5 + 0.375rem * 2 + var(--bs-border-width) * 2
    );
}
.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, .mollie-credit-card-mandate-remove-modal .swag-custom-notifications-newsletter-popup__content .confirm-message, .swag-custom-notifications-newsletter-popup__content .mollie-credit-card-mandate-remove-modal .confirm-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.mollie-credit-card-mandate-remove-modal .modal-body p, .mollie-credit-card-mandate-remove-modal .swag-custom-notifications-newsletter-popup__content .confirm-message p, .swag-custom-notifications-newsletter-popup__content .mollie-credit-card-mandate-remove-modal .confirm-message 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: #64748b;
}
.mollie-credit-card-mandate .mollie-credit-card-mandate-actions-item:hover .mollie-credit-card-mandate-actions-item-text {
  color: #505d6f;
}
.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: #64748b;
  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: #bcc1c7;
  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 {
  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;
}
.subscription-detail-content {
  margin-top: 1rem;
}
.order-table .subscription-detail-content {
  padding-top: 1rem;
}
.btn-mollie-subscription-cancel {
  color: #b30000;
}
/* stylelint-disable selector-id-pattern, declaration-no-important */
.mollie-express-button.d-none, .mollie-apple-pay-direct-button .d-none, .mollie-apple-pay-direct-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 */
.cms-block-great-category-banner-grid {
  width: 100%;
}
.gcbg-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 640px) {
  .gcbg-container {
    padding: 0 24px;
  }
}
.gcbg-header {
  text-align: center;
  margin-bottom: 48px;
}
.gcbg-header__overline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}
.gcbg-header__overline::before, .gcbg-header__overline::after {
  content: "";
  width: 40px;
  height: 1px;
  background: rgba(0, 0, 0, 0.2);
}
.gcbg-header__overline span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #999;
  font-weight: 600;
}
.gcbg-header__headline {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  color: #111;
}
@media (max-width: 640px) {
  .gcbg-header__headline {
    font-size: 26px;
  }
}
.gcbg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 1024px) {
  .gcbg-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 640px) {
  .gcbg-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.gcbg-card {
  display: block;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.gcbg-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1) !important;
  text-decoration: none;
  color: inherit;
}
.gcbg-card__image-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #f0f0f0;
}
.gcbg-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gcbg-card:hover .gcbg-card__img {
  transform: scale(1.03);
}
.gcbg-card__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.gcbg-card__text {
  padding: 20px;
}
.gcbg-card__title {
  font-weight: 600;
  margin: 0 0 4px;
}
.gcbg-card__desc {
  margin: 0 0 12px;
}
.gcbg-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  transition: gap 0.2s ease;
}
.gcbg-card:hover .gcbg-card__link {
  gap: 8px;
}
.great-stc-sparks {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}
.great-stc-heritage__inner {
  display: flex;
  flex-wrap: wrap;
  min-height: 560px;
}
.great-stc-heritage__text-col {
  width: 55%;
  display: flex;
  align-items: center;
  padding: 80px 80px 80px 64px;
  position: relative;
  z-index: 4;
}
@media (max-width: 991.98px) {
  .great-stc-heritage__text-col {
    width: 100%;
    padding: 60px 32px;
  }
}
.great-stc-heritage__text-wrap {
  max-width: 520px;
}
.great-stc-heritage__label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.great-stc-heritage__label-line {
  display: block;
  width: 40px;
  height: 1px;
  background: #666;
}
.great-stc-heritage__label-text {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #666;
  font-weight: 600;
}
.great-stc-heritage__headline {
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin: 0 0 12px 0;
}
@media (max-width: 767.98px) {
  .great-stc-heritage__headline {
    font-size: 28px;
  }
}
.great-stc-heritage__subline {
  color: #999;
  font-size: 16px;
  letter-spacing: 1px;
  margin: 0 0 24px 0;
}
.great-stc-heritage__body {
  color: #999;
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 40px 0;
}
.great-stc-heritage__link {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(255, 255, 255, 0.4);
  transition: text-decoration-color 0.3s;
}
.great-stc-heritage__link:hover {
  text-decoration-color: rgba(255, 255, 255, 0.9);
  color: #fff;
}
.great-stc-heritage__image-col {
  width: 45%;
  position: relative;
}
@media (max-width: 991.98px) {
  .great-stc-heritage__image-col {
    width: 100%;
    min-height: 320px;
  }
}
.great-stc-heritage__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.great-stc-heritage__gradient-left {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #111111, rgba(17, 17, 17, 0.4), transparent);
  z-index: 3;
}
.great-stc-heritage__gradient-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 96px;
  background: linear-gradient(to top, #111111, transparent);
  z-index: 3;
}
.great-stc-stats {
  padding: 80px 0;
}
.great-stc-stats__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
  z-index: 2;
}
.great-stc-stats__header {
  text-align: center;
  margin-bottom: 64px;
}
.great-stc-stats__headline {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px 0;
}
@media (max-width: 767.98px) {
  .great-stc-stats__headline {
    font-size: 26px;
  }
}
.great-stc-stats__subline {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}
.great-stc-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 767.98px) {
  .great-stc-stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
}
.great-stc-stats__item {
  text-align: center;
  padding: 24px 0;
}
.great-stc-stats__item--border {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 767.98px) {
  .great-stc-stats__item--border {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}
.great-stc-stats__label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}
.great-stc-stat-value {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 12px;
}
@media (max-width: 767.98px) {
  .great-stc-stat-value {
    font-size: 36px;
  }
}
.gsvb {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-left: calc(var(--bs-gutter-x, 40px) * -0.5);
  margin-right: calc(var(--bs-gutter-x, 40px) * -0.5);
}
.gsvb__ratio-box {
  position: relative;
  width: 100%;
  padding-top: var(--gsvb-aspect, 56.25%);
}
.gsvb__video, .gsvb__fallback-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.gsvb__placeholder {
  position: absolute;
  inset: 0;
  background-color: #111111;
}
.gsvb__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}
.gsvb__overlay--top {
  align-items: flex-start;
}
.gsvb__overlay--middle {
  align-items: center;
}
.gsvb__overlay--bottom {
  align-items: flex-end;
}
.gsvb__content-layer {
  z-index: 2;
  opacity: 1 !important;
  width: 100%;
}
.gsvb__inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 48px 48px;
}
@media (max-width: 991.98px) {
  .gsvb__inner {
    padding: 40px 32px;
  }
}
@media (max-width: 575.98px) {
  .gsvb__inner {
    padding: 28px 20px;
  }
}
.gsvb__content {
  max-width: 800px;
}
.gsvb__content--center {
  margin: 0 auto;
  text-align: center;
}
.gsvb__content--center .gsvb__features, .gsvb__content--center .gsvb__buttons {
  justify-content: center;
}
.gsvb__content--left {
  margin-right: auto;
  text-align: left;
}
.gsvb__content--left .gsvb__features, .gsvb__content--left .gsvb__buttons {
  justify-content: flex-start;
}
.gsvb__content--right {
  margin-left: auto;
  text-align: right;
}
.gsvb__content--right .gsvb__features, .gsvb__content--right .gsvb__buttons {
  justify-content: flex-end;
}
.gsvb__label {
  color: var(--gsvb-label-color, #aaaaaa);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin: 0 0 20px 0;
}
.gsvb__headline {
  color: var(--gsvb-text-color, #ffffff);
  font-size: var(--gsvb-headline-size, 72px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 20px 0;
}
@media (max-width: 767.98px) {
  .gsvb__headline {
    font-size: var(--gsvb-headline-size-mobile, 38px);
  }
}
.gsvb__headline-line2 {
  display: block;
}
.gsvb__subline {
  color: var(--gsvb-text-color, #ffffff);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  opacity: 0.85;
  margin: 0 0 20px 0;
  max-width: 640px;
}
.gsvb__content--center .gsvb__subline {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767.98px) {
  .gsvb__subline {
    font-size: 16px;
  }
}
.gsvb__features {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 0;
  margin: 0 0 32px 0;
  color: var(--gsvb-text-color, #ffffff);
  font-size: 15px;
  font-weight: 400;
  opacity: 0.8;
}
@media (max-width: 575.98px) {
  .gsvb__features {
    font-size: 14px;
  }
}
.gsvb__feature {
  white-space: nowrap;
}
.gsvb__feature-dot {
  margin: 0 12px;
  opacity: 0.5;
  font-size: 18px;
  line-height: 1;
}
.gsvb__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 575.98px) {
  .gsvb__buttons {
    flex-direction: column;
    align-items: stretch;
  }
}
.gsvb__btn {
  display: inline-block;
  padding: 16px 36px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-style: solid;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
  text-align: center;
}
.gsvb__btn:hover, .gsvb__btn:focus {
  opacity: 0.8;
  transform: translateY(-1px);
  text-decoration: none;
}
.gsvb__btn:active {
  transform: translateY(0);
}
@media (max-width: 575.98px) {
  .gsvb__btn {
    padding: 14px 24px;
    font-size: 12px;
  }
}
.swag-custom-notification-consent-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  display: none;
}
.swag-custom-notification-consent-modal__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.swag-custom-notification-consent-modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1201;
  background: #fff;
  padding: 32px;
  max-width: 600px;
}
@media (max-width: 575.98px) {
  .swag-custom-notification-consent-modal__content {
    width: 90%;
  }
}
.swag-custom-notification-consent-modal__consent {
  margin-top: 40px;
  text-align: right;
}
.swag-custom-notification-info-modal__content {
  padding: 0 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.swag-custom-notification-info-modal__content img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 576px) {
  .swag-custom-notification-info-modal__content {
    flex-direction: row;
  }
  .swag-custom-notification-info-modal__content img {
    width: 50%;
  }
}
.swag-custom-notifications-newsletter-popup__content .form-content {
  padding-top: 0;
}
.swag-custom-notifications-newsletter-popup__content .modal-footer {
  margin-top: 20px;
  padding-top: 20px;
  padding-bottom: 0;
  padding-right: 0;
}
.swag-custom-notifications-newsletter-popup__content .modal-footer .btn-primary {
  margin: 0;
}
.swag-custom-notifications-newsletter-popup__content .confirm-message {
  padding-top: 0;
  font-size: 1rem;
}
.modal-content .modal-header.only-close {
  padding: 2rem 2rem 10px;
}
.swag-custom-notification-banner {
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr 20px;
}
.swag-custom-notification-banner-text {
  text-align: center;
}
.swag-custom-notification-banner-close-icon {
  align-self: auto;
  cursor: pointer;
}
.swag-custom-notification-banner-close-icon {
  background: none;
  border: none;
  padding: 0;
}
.scroll-wrapper {
  overflow: hidden;
  white-space: nowrap;
}
.scroll-content {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-linear 15s linear infinite;
}
@keyframes scroll-linear {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.visually-hidden, .sr-only {
  position: absolute !important;
  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;
}
:focus-visible {
  outline: 2px solid #64748b;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.9), 0 0 0 6px #64748b;
}
:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}
.g2g-service-dropdown-toggle {
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  color: inherit;
  font: inherit;
  line-height: inherit;
  cursor: pointer;
  text-align: inherit;
}
.g2g-service-dropdown-toggle:hover {
  text-decoration: underline;
}
.skip-to-content-link, [class*="skip-to-"] {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 9999;
}
.skip-to-content-link:focus, .skip-to-content-link:focus-visible, [class*="skip-to-"]:focus, [class*="skip-to-"]:focus-visible {
  position: fixed;
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1.5rem;
  background: var(--g2g-token-color-neutral-text-default);
  color: var(--g2g-token-color-neutral-background);
  outline: 3px solid #64748b;
  outline-offset: 0;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
.social-links a, .icon-social2gether-link {
  min-height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.newsletter2gether-button, .newsletter2gether-button.btn {
  min-height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
}
footer a, .footer-bottom-line a, .payment-method-text-link {
  padding-block: 0.5rem;
  display: inline-block;
}
#header-main-search-input, .header-main-search-field {
  min-height: 40px;
}
input::placeholder, textarea::placeholder, .form-control::placeholder {
  color: var(--g2g-token-color-neutral-text-muted);
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .navigation-slider-container .scroll-left, .navigation-slider-container .scroll-right, .navigation-slider-container .main-navigation-menu {
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .offcanvas-cart, .newsletter2gether-button, .g2g-service-dropdown-menu {
    transition: none !important;
    animation: none !important;
  }
}
.product-wishlist-not-added .icon-wishlist-not-added, .product-wishlist-added .icon-wishlist-added {
  will-change: transform;
}
.g2g-additional-info-header-title {
  font-size: var(--g2g-addp-title-font-size, 1.25rem);
}
.g2g-addp-content {
  color: var(--g2g-addp-icon-color, var(--g2g-token-color-neutral-text-default));
}
@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../../assets/fonts/fontawesome/webfonts/fa-solid-900.woff2") format("woff2");
}
@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../../assets/fonts/fontawesome/webfonts/fa-regular-400.woff2") format("woff2");
}
@font-face {
  font-family: "Font Awesome 6 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../../assets/fonts/fontawesome/webfonts/fa-brands-400.woff2") format("woff2");
}
.g2g-hidden.g2g-hidden {
  display: none;
}
.g2g-invisible.g2g-invisible {
  visibility: hidden;
}
.g2g-grabbing.g2g-grabbing {
  cursor: grabbing;
}
:root {
  --g2g-lazy-color: #000000;
  --g2g-lazy-size: 32px;
  --g2g-lazy-speed: 1;
  --g2g-lazy-bg: #f3f4f6;
  --g2g-lazy-shimmer: rgba(255,255,255,0.6);
}
img.g2g-lazy-loading {
  color: transparent;
  font-size: 0;
  text-indent: -9999px;
  transition: opacity 0.4s ease;
}
img.g2g-lazy-loaded {
  opacity: 1;
  animation: g2g-lazy-fadein 0.4s ease;
}
@keyframes g2g-lazy-fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
img.g2g-lazy-anim-spinner.g2g-lazy-loading {
  background-image: radial-gradient(circle at center, transparent 35%, var(--g2g-lazy-color) 36%, var(--g2g-lazy-color) 42%, transparent 43%);
  background-size: var(--g2g-lazy-size) var(--g2g-lazy-size);
  background-position: center;
  background-repeat: no-repeat;
  animation: g2g-lazy-spin calc(var(--g2g-lazy-speed) * 0.9s) linear infinite;
}
@keyframes g2g-lazy-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
img.g2g-lazy-anim-bars.g2g-lazy-loading {
  background: linear-gradient(var(--g2g-lazy-color), var(--g2g-lazy-color)) 30% 50% / 4px 60% no-repeat, linear-gradient(var(--g2g-lazy-color), var(--g2g-lazy-color)) 50% 50% / 4px 60% no-repeat, linear-gradient(var(--g2g-lazy-color), var(--g2g-lazy-color)) 70% 50% / 4px 60% no-repeat;
  background-color: var(--g2g-lazy-bg);
  animation: g2g-lazy-bars calc(var(--g2g-lazy-speed) * 1s) ease-in-out infinite;
}
@keyframes g2g-lazy-bars {
  0%, 100% {
    background-size: 4px 60%, 4px 60%, 4px 60%;
  }
  50% {
    background-size: 4px 20%, 4px 80%, 4px 40%;
  }
}
img.g2g-lazy-anim-dots.g2g-lazy-loading {
  background: radial-gradient(circle, var(--g2g-lazy-color) 30%, transparent 32%) 30% 50% / 12px 12px no-repeat, radial-gradient(circle, var(--g2g-lazy-color) 30%, transparent 32%) 50% 50% / 12px 12px no-repeat, radial-gradient(circle, var(--g2g-lazy-color) 30%, transparent 32%) 70% 50% / 12px 12px no-repeat;
  background-color: var(--g2g-lazy-bg);
  animation: g2g-lazy-dots calc(var(--g2g-lazy-speed) * 1.2s) ease-in-out infinite;
}
@keyframes g2g-lazy-dots {
  0% {
    opacity: 0.3;
  }
  33% {
    opacity: 1;
  }
  100% {
    opacity: 0.3;
  }
}
img.g2g-lazy-anim-pulse.g2g-lazy-loading {
  background-color: var(--g2g-lazy-bg);
  animation: g2g-lazy-pulse calc(var(--g2g-lazy-speed) * 1.5s) ease-in-out infinite;
}
@keyframes g2g-lazy-pulse {
  0%, 100% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.9;
  }
}
img.g2g-lazy-anim-fade-in.g2g-lazy-loading {
  background-color: var(--g2g-lazy-bg);
  opacity: 0;
}
img.g2g-lazy-anim-skeleton.g2g-lazy-loading {
  background: linear-gradient(90deg, var(--g2g-lazy-bg) 25%, var(--g2g-lazy-shimmer) 50%, var(--g2g-lazy-bg) 75%);
  background-size: 200% 100%;
  animation: g2g-lazy-skeleton calc(var(--g2g-lazy-speed) * 1.4s) linear infinite;
}
@keyframes g2g-lazy-skeleton {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
img.g2g-lazy-anim-circles.g2g-lazy-loading {
  background: radial-gradient(circle, var(--g2g-lazy-color) 50%, transparent 52%) 20% 50% / 28px 28px no-repeat, radial-gradient(circle, var(--g2g-lazy-color) 50%, transparent 52%) 50% 50% / 28px 28px no-repeat, radial-gradient(circle, var(--g2g-lazy-color) 50%, transparent 52%) 80% 50% / 28px 28px no-repeat;
  background-color: var(--g2g-lazy-bg);
  animation: g2g-lazy-circles calc(var(--g2g-lazy-speed) * 1.4s) ease-in-out infinite;
}
@keyframes g2g-lazy-circles {
  0%, 100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}
img.g2g-lazy-anim-rings.g2g-lazy-loading {
  background: radial-gradient(circle, transparent 38%, var(--g2g-lazy-color) 39%, var(--g2g-lazy-color) 42%, transparent 43%) center / var(--g2g-lazy-size) var(--g2g-lazy-size) no-repeat;
  background-color: var(--g2g-lazy-bg);
  animation: g2g-lazy-rings calc(var(--g2g-lazy-speed) * 1.6s) ease-out infinite;
}
@keyframes g2g-lazy-rings {
  0% {
    background-size: 0 0;
    opacity: 1;
  }
  100% {
    background-size: calc(var(--g2g-lazy-size) * 2.5) calc(var(--g2g-lazy-size) * 2.5);
    opacity: 0;
  }
}
img.g2g-lazy-anim-dual-ring.g2g-lazy-loading {
  background: conic-gradient(from 0deg, var(--g2g-lazy-color) 0deg 90deg, transparent 90deg 180deg, var(--g2g-lazy-color) 180deg 270deg, transparent 270deg 360deg);
  -webkit-mask: radial-gradient(circle at center, transparent 38%, #000 40%, #000 46%, transparent 48%);
  mask: radial-gradient(circle at center, transparent 38%, #000 40%, #000 46%, transparent 48%);
  background-color: var(--g2g-lazy-bg);
  animation: g2g-lazy-spin calc(var(--g2g-lazy-speed) * 1.2s) linear infinite;
}
img.g2g-lazy-anim-hearts.g2g-lazy-loading {
  background: radial-gradient(circle, var(--g2g-lazy-color) 50%, transparent 52%) center / 60% 60% no-repeat;
  background-color: var(--g2g-lazy-bg);
  animation: g2g-lazy-heart-beat calc(var(--g2g-lazy-speed) * 1s) ease-in-out infinite;
}
@keyframes g2g-lazy-heart-beat {
  0%, 50%, 100% {
    background-size: 60% 60%;
    opacity: 0.6;
  }
  25% {
    background-size: 80% 80%;
    opacity: 1;
  }
  75% {
    background-size: 50% 50%;
    opacity: 0.8;
  }
}
img.g2g-lazy-anim-oval.g2g-lazy-loading {
  background: conic-gradient(from 0deg, var(--g2g-lazy-color) 0deg 270deg, transparent 270deg 360deg);
  -webkit-mask: radial-gradient(circle at center, transparent 35%, #000 36%, #000 44%, transparent 45%);
  mask: radial-gradient(circle at center, transparent 35%, #000 36%, #000 44%, transparent 45%);
  background-color: var(--g2g-lazy-bg);
  animation: g2g-lazy-spin calc(var(--g2g-lazy-speed) * 0.8s) linear infinite;
}
img.g2g-lazy-anim-puff.g2g-lazy-loading {
  background: radial-gradient(circle, var(--g2g-lazy-color) 30%, transparent 60%) center / var(--g2g-lazy-size) var(--g2g-lazy-size) no-repeat;
  background-color: var(--g2g-lazy-bg);
  animation: g2g-lazy-puff calc(var(--g2g-lazy-speed) * 1.8s) ease-out infinite;
}
@keyframes g2g-lazy-puff {
  0% {
    background-size: 0 0;
    opacity: 0.8;
  }
  100% {
    background-size: calc(var(--g2g-lazy-size) * 1.5) calc(var(--g2g-lazy-size) * 1.5);
    opacity: 0;
  }
}
img.g2g-lazy-anim-bounce.g2g-lazy-loading {
  background: radial-gradient(circle, var(--g2g-lazy-color) 50%, transparent 52%) 25% 50% / 24px 24px no-repeat, radial-gradient(circle, var(--g2g-lazy-color) 50%, transparent 52%) 50% 50% / 24px 24px no-repeat, radial-gradient(circle, var(--g2g-lazy-color) 50%, transparent 52%) 75% 50% / 24px 24px no-repeat;
  background-color: var(--g2g-lazy-bg);
  animation: g2g-lazy-bounce calc(var(--g2g-lazy-speed) * 1.4s) ease-in-out infinite;
}
@keyframes g2g-lazy-bounce {
  0%, 100% {
    background-position: 25% 25%, 50% 75%, 75% 75%;
  }
  33% {
    background-position: 25% 75%, 50% 25%, 75% 75%;
  }
  66% {
    background-position: 25% 75%, 50% 75%, 75% 25%;
  }
}
img.g2g-lazy-anim-grid.g2g-lazy-loading {
  background: radial-gradient(circle, var(--g2g-lazy-color) 35%, transparent 36%) 30% 30% / 6px 6px no-repeat, radial-gradient(circle, var(--g2g-lazy-color) 35%, transparent 36%) 50% 30% / 6px 6px no-repeat, radial-gradient(circle, var(--g2g-lazy-color) 35%, transparent 36%) 70% 30% / 6px 6px no-repeat, radial-gradient(circle, var(--g2g-lazy-color) 35%, transparent 36%) 30% 50% / 6px 6px no-repeat, radial-gradient(circle, var(--g2g-lazy-color) 35%, transparent 36%) 50% 50% / 6px 6px no-repeat, radial-gradient(circle, var(--g2g-lazy-color) 35%, transparent 36%) 70% 50% / 6px 6px no-repeat, radial-gradient(circle, var(--g2g-lazy-color) 35%, transparent 36%) 30% 70% / 6px 6px no-repeat, radial-gradient(circle, var(--g2g-lazy-color) 35%, transparent 36%) 50% 70% / 6px 6px no-repeat, radial-gradient(circle, var(--g2g-lazy-color) 35%, transparent 36%) 70% 70% / 6px 6px no-repeat;
  background-color: var(--g2g-lazy-bg);
  animation: g2g-lazy-pulse calc(var(--g2g-lazy-speed) * 1.5s) ease-in-out infinite;
}
img.g2g-lazy-anim-wave.g2g-lazy-loading {
  background: linear-gradient(var(--g2g-lazy-color), var(--g2g-lazy-color)) 0 40% / 100% 3px no-repeat, linear-gradient(var(--g2g-lazy-color), var(--g2g-lazy-color)) 0 50% / 100% 3px no-repeat, linear-gradient(var(--g2g-lazy-color), var(--g2g-lazy-color)) 0 60% / 100% 3px no-repeat;
  background-color: var(--g2g-lazy-bg);
  animation: g2g-lazy-wave calc(var(--g2g-lazy-speed) * 1.6s) ease-in-out infinite;
}
@keyframes g2g-lazy-wave {
  0%, 100% {
    background-size: 100% 3px, 100% 3px, 100% 3px;
    opacity: 0.5;
  }
  50% {
    background-size: 100% 5px, 100% 5px, 100% 5px;
    opacity: 1;
  }
}
img.g2g-lazy-anim-square-pulse.g2g-lazy-loading {
  background: linear-gradient(var(--g2g-lazy-color), var(--g2g-lazy-color)) center / var(--g2g-lazy-size) var(--g2g-lazy-size) no-repeat;
  background-color: var(--g2g-lazy-bg);
  animation: g2g-lazy-square-pulse calc(var(--g2g-lazy-speed) * 1.2s) ease-in-out infinite;
}
@keyframes g2g-lazy-square-pulse {
  0%, 100% {
    background-size: 60% 60%;
    opacity: 0.6;
  }
  50% {
    background-size: 100% 100%;
    opacity: 1;
  }
}
img.g2g-lazy-anim-gradient-sweep.g2g-lazy-loading {
  position: relative;
  min-width: 80px;
  min-height: 24px;
  background-color: var(--g2g-lazy-bg);
  background-image: linear-gradient(90deg, transparent 0%, var(--g2g-lazy-color) 50%, transparent 100%);
  background-size: 200px 100%;
  background-repeat: no-repeat;
  background-position: -200px 0;
  animation: g2g-lazy-gradient-sweep calc(var(--g2g-lazy-speed) * 1.8s) linear infinite;
}
@keyframes g2g-lazy-gradient-sweep {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: calc(100% + 200px) 0;
  }
}
img.g2g-lazy-anim-diamond.g2g-lazy-loading {
  background: linear-gradient(var(--g2g-lazy-color), var(--g2g-lazy-color)) center / var(--g2g-lazy-size) var(--g2g-lazy-size) no-repeat;
  background-color: var(--g2g-lazy-bg);
  animation: g2g-lazy-diamond calc(var(--g2g-lazy-speed) * 1.5s) ease-in-out infinite;
}
@keyframes g2g-lazy-diamond {
  0%, 100% {
    transform: rotate(45deg) scale(0.7);
    opacity: 0.5;
  }
  50% {
    transform: rotate(225deg) scale(1);
    opacity: 1;
  }
}
img.g2g-lazy-anim-double-bounce.g2g-lazy-loading {
  background: radial-gradient(circle, var(--g2g-lazy-color) 50%, transparent 51%) 30% 50% / var(--g2g-lazy-size) var(--g2g-lazy-size) no-repeat, radial-gradient(circle, var(--g2g-lazy-color) 50%, transparent 51%) 70% 50% / var(--g2g-lazy-size) var(--g2g-lazy-size) no-repeat;
  background-color: var(--g2g-lazy-bg);
  animation: g2g-lazy-double-bounce calc(var(--g2g-lazy-speed) * 2s) ease-in-out infinite;
}
@keyframes g2g-lazy-double-bounce {
  0%, 100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}
img.g2g-lazy-anim-custom.g2g-lazy-loading {
  background-image: var(--g2g-lazy-custom-icon, none);
  background-size: var(--g2g-lazy-size) var(--g2g-lazy-size);
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--g2g-lazy-bg);
  animation: g2g-lazy-spin calc(var(--g2g-lazy-speed) * 1.2s) linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  img[class*="g2g-lazy-anim-"] {
    animation: none !important;
    opacity: 0.7;
  }
}
.g2g-async-slider-placeholder {
  min-height: 320px;
  width: 100%;
  position: relative;
  background-color: var(--g2g-lazy-bg, #f3f4f6);
}
.g2g-async-slider-placeholder.is-loading {
  background: linear-gradient(90deg, var(--g2g-lazy-bg, #f3f4f6) 25%, var(--g2g-lazy-shimmer, rgba(255, 255, 255, 0.6)) 50%, var(--g2g-lazy-bg, #f3f4f6) 75%);
  background-size: 200% 100%;
  animation: g2g-async-slider-shimmer 1.4s linear infinite;
}
.g2g-async-slider-placeholder.is-loaded {
  opacity: 0;
  transition: opacity 0.2s ease;
}
.g2g-async-slider-placeholder.has-error {
  border: 1px dashed #ef4444;
  opacity: 0.5;
}
@keyframes g2g-async-slider-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .g2g-async-slider-placeholder.is-loading {
    animation: none;
    background: var(--g2g-lazy-bg, #f3f4f6);
  }
}
.dreamtheme .input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  border-top-left-radius: unset;
  border-bottom-left-radius: unset;
}
.dreamtheme .header-main .container .header-row .header-search-col .collapse .header-search .header-search-form .input-group .header-search-input, .dreamtheme .header-main .cms-section .boxed .header-row .header-search-col .collapse .header-search .header-search-form .input-group .header-search-input, .cms-section .dreamtheme .header-main .boxed .header-row .header-search-col .collapse .header-search .header-search-form .input-group .header-search-input {
  border-radius: var(--g2g-border-radius, 999px);
}
.dreamtheme .header-main .container .header-row .header-search-col .collapse .header-search .header-search-form .input-group .header-search-btn, .dreamtheme .header-main .cms-section .boxed .header-row .header-search-col .collapse .header-search .header-search-form .input-group .header-search-btn, .cms-section .dreamtheme .header-main .boxed .header-row .header-search-col .collapse .header-search .header-search-form .input-group .header-search-btn {
  border-radius: var(--g2g-border-radius, 50%);
}
.dreamtheme.is-act-index .content-main .container-main .cms-sections .cms-section-sidebar .cms-section-sidebar-sidebar-content .cms-block-category-navigation .cms-block-container .cms-element-category-navigation {
  border-radius: var(--g2g-border-radius, 4px);
}
.dreamtheme.is-act-index .content-main .container-main .cms-sections .cms-section-sidebar .cms-section-sidebar-main-content .cms-block-product-listing .cms-element-product-listing-actions .sorting {
  border-radius: var(--g2g-border-radius, 4px);
}
.dreamtheme.is-act-index .content-main .container-main .cms-sections .cms-section-sidebar .cms-section-sidebar-main-content .cms-block-product-listing .card.product-box .card-body .product-info .product-action .btn-buy.product-button-detail, .dreamtheme.is-act-index .content-main .container-main .cms-sections .cms-section-sidebar .cms-section-sidebar-main-content .cms-block-product-listing .card.product-box .card-body .product-info .product-action .btn-light.product-button-detail {
  border-radius: var(--g2g-border-radius, 4px);
}
.dreamtheme.is-act-index .content-main .container-main .cms-sections .cms-section-default .cms-block-moorl-twig {
  border-radius: var(--g2g-border-radius, 4px);
}
.dreamtheme .newsletter2gether-twoclicks .newsletter2gether--inner .newsletter2gether-box .newsletter2gether-button {
  border-radius: var(--g2g-border-radius, 4px);
}
.dreamtheme .offcanvas-cart .alert {
  border-radius: var(--g2g-border-radius, 4px);
}
.dreamtheme .offcanvas-cart .line-item-product .line-item-img {
  border-radius: var(--g2g-border-radius, 4px);
}
.dreamtheme .offcanvas-cart .line-item-product .line-item-remove-button {
  border-radius: var(--g2g-border-radius, 4px);
}
.dreamtheme .offcanvas-cart .line-item-product .acris-quantity-advanced .acris-quantity-wrapper {
  border-radius: var(--g2g-border-radius, 4px);
}
.dreamtheme .offcanvas-cart .offcanvas-cart-actions .offcanvas-cart-promotion-form .input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  border-radius: var(--g2g-border-radius, 4px) 0 0 var(--g2g-border-radius, 4px);
}
.dreamtheme .offcanvas-cart .offcanvas-cart-actions .offcanvas-cart-promotion-form .input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback).btn {
  border-radius: 0 var(--g2g-border-radius, 4px) var(--g2g-border-radius, 4px) 0;
}
.dreamtheme .offcanvas-cart .offcanvas-cart-actions .btn.btn-block.btn-link {
  border-radius: var(--g2g-border-radius, 4px);
}
.dreamtheme .offcanvas-cart .offcanvas-cart-actions .btn.btn-block.begin-checkout-btn.btn-primary {
  border-radius: var(--g2g-border-radius, 4px);
}
.dreamtheme .offcanvas-cart .offcanvas-cart-actions .js-offcanvas-cart-promotion .input-group input {
  border-radius: var(--g2g-border-radius, 4px);
}
.dreamtheme .offcanvas-cart .off-canvas-icons2gether .content-pay2gether img, .dreamtheme .offcanvas-cart .off-canvas-icons2gether .content-ship2gether img {
  border-radius: var(--g2g-border-radius, 4px);
}
.dreamtheme.is-ctl-product .content-main .cms-sections .product-detail-media .badge-stock2gether {
  border-radius: var(--g2g-border-radius, 4px);
}
.dreamtheme.is-ctl-product .content-main .cms-sections .product-detail-media .gallery-slider-item {
  border-radius: var(--g2g-border-radius, 4px);
  overflow: hidden;
}
.dreamtheme.is-ctl-product .content-main .cms-sections .product-detail-media .gallery-slider-thumbnails-image {
  border-radius: var(--g2g-border-radius, 4px);
}
.dreamtheme.is-ctl-product .content-main .cms-sections .product-detail-buy .product-detail-configurator-container .product-detail-configurator-option-input + .product-detail-configurator-option-label.is-display-text {
  border-radius: var(--g2g-border-radius, 4px);
}
.dreamtheme.is-ctl-product .content-main .cms-sections .product-detail-buy .product-detail-form-container .buy-widget-container .btn-buy {
  border-radius: var(--g2g-border-radius, 4px);
}
.dreamtheme.is-ctl-product .content-main .cms-sections .product-detail-tabs {
  border-radius: var(--g2g-border-radius, 4px);
}
.dreamtheme.is-ctl-product .content-main .cms-sections .product-detail-tabs .product-table2gether .table-body2gether {
  border-radius: var(--g2g-border-radius, 4px);
}
.dreamtheme.is-ctl-product .content-main .cms-sections .product-detail-tabs .product-detail-properties-table {
  border-radius: var(--g2g-border-radius, 4px);
  overflow: hidden;
}
.dreamtheme.is-ctl-product .content-main .cms-sections .product-detail-tabs .product-detail-review .product-detail-review-teaser-btn {
  border-radius: var(--g2g-border-radius, 4px);
}
.dreamtheme.is-ctl-product .content-main .cms-sections .product-detail-tabs .product-detail-review .alert-has-icon {
  border-radius: var(--g2g-border-radius, 4px);
  overflow: hidden;
}
.dreamtheme.is-act-loginpage .account-register [class~="col-lg-4"] input, .dreamtheme.is-act-loginpage .account-register [class~="col-lg-8"] input {
  border-radius: var(--g2g-border-radius, 4px);
}
.dreamtheme.is-act-loginpage .account-register [class~="col-lg-4"] .custom-select, .dreamtheme.is-act-loginpage .account-register [class~="col-lg-8"] .custom-select {
  border-radius: var(--g2g-border-radius, 4px);
}
.dreamtheme.is-ctl-register .login-submit .btn.btn-primary, .dreamtheme.is-ctl-register .register-submit .btn.btn-primary {
  border-radius: var(--g2g-border-radius, 4px);
}
.dreamtheme .cms-section .name2gether-1line .card .card-body .product-info .product-name, .dreamtheme .cms-section .name2gether-3lines .card .card-body .product-info .product-name, .dreamtheme .cms-section .name2gether-4lines .card .card-body .product-info .product-name {
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
@media (min-width: 576px) {
  .dreamtheme .cms-section .name2gether-1line .card .card-body .product-info .product-name, .dreamtheme .cms-section .name2gether-3lines .card .card-body .product-info .product-name, .dreamtheme .cms-section .name2gether-4lines .card .card-body .product-info .product-name {
    font-size: 13px;
  }
}
@media (min-width: 992px) {
  .dreamtheme .cms-section .name2gether-1line .card .card-body .product-info .product-name, .dreamtheme .cms-section .name2gether-3lines .card .card-body .product-info .product-name, .dreamtheme .cms-section .name2gether-4lines .card .card-body .product-info .product-name {
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  .dreamtheme .cms-section .name2gether-1line .card .card-body .product-info .product-name, .dreamtheme .cms-section .name2gether-3lines .card .card-body .product-info .product-name, .dreamtheme .cms-section .name2gether-4lines .card .card-body .product-info .product-name {
    font-size: 16px;
  }
}
.dreamtheme .cms-section .name2gether-1line .card .card-body .product-info .product-name {
  height: calc(1 * 1.3em);
  min-height: 0;
  -webkit-line-clamp: 1;
}
.dreamtheme .cms-section .name2gether-3lines .card .card-body .product-info .product-name {
  height: calc(3 * 1.3em);
  min-height: 0;
  -webkit-line-clamp: 3;
}
.dreamtheme .cms-section .name2gether-4lines .card .card-body .product-info .product-name {
  height: calc(4 * 1.3em);
  min-height: 0;
  -webkit-line-clamp: 4;
}
body.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-list-title-lines-1 .product-box .product-name {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
body.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-list-title-lines-2 .product-box .product-name {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
body.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-list-title-lines-3 .product-box .product-name {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
body.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-list-title-lines-4 .product-box .product-name {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main {
  padding: 30px 20px;
  background: transparent;
  margin-bottom: 30px;
}
@media (min-width: 1200px) {
  .dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content {
    flex-wrap: nowrap;
  }
}
@media (min-width: 992px) {
  .dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-aside, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-aside, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-aside, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-aside {
    align-self: flex-start;
    position: sticky;
    top: 16px;
    padding-left: 0;
  }
}
@media (min-width: 1200px) {
  .dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-aside, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-aside, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-aside, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-aside {
    flex: 0 0 25%;
    width: 25%;
  }
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside {
  padding: 12px 14px 14px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .card.account-menu-inner, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .card.account-menu-inner, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .card.account-menu-inner, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .card.account-menu-inner {
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .g2g-account-eyebrow, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .g2g-account-eyebrow, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .g2g-account-eyebrow, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .g2g-account-eyebrow {
  color: var(--g2g-token-color-brand-primary);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #ececec;
  margin-bottom: 14px;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .g2g-account-eyebrow::before, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .g2g-account-eyebrow::before, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .g2g-account-eyebrow::before, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .g2g-account-eyebrow::before {
  content: "//";
  margin-right: 7px;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .account-aside-header, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .account-aside-header, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .account-aside-header, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .account-aside-header {
  background-color: transparent;
  font-size: 16px;
  font-weight: 500;
  color: var(--g2g-token-color-neutral-text-default);
  border: none;
  border-bottom: none;
  padding: 0 0 14px 12px;
  margin-bottom: 0;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .list-group, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .list-group, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .list-group, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .list-group {
  margin-bottom: 0;
  border: none;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .list-group .account-aside-item, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .list-group .account-aside-item, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .list-group .account-aside-item, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .list-group .account-aside-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px 10px 12px;
  margin-bottom: 0;
  color: #555;
  font-weight: 500;
  font-size: 14px;
  border: none;
  border-left: 3px solid transparent;
  border-radius: 0;
  background: transparent;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .list-group .account-aside-item + .account-aside-item, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .list-group .account-aside-item + .account-aside-item, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .list-group .account-aside-item + .account-aside-item, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .list-group .account-aside-item + .account-aside-item {
  border-top: 1px solid #f0f1f2;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .list-group .account-aside-item .g2g-acct-icon, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .list-group .account-aside-item .g2g-acct-icon, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .list-group .account-aside-item .g2g-acct-icon, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .list-group .account-aside-item .g2g-acct-icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  color: #8a9098;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .list-group .account-aside-item .g2g-acct-icon svg, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .list-group .account-aside-item .g2g-acct-icon svg, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .list-group .account-aside-item .g2g-acct-icon svg, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .list-group .account-aside-item .g2g-acct-icon svg {
  width: 16px;
  height: 16px;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .list-group .account-aside-item .g2g-lucide-chevron, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .list-group .account-aside-item .g2g-lucide-chevron, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .list-group .account-aside-item .g2g-lucide-chevron, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .list-group .account-aside-item .g2g-lucide-chevron {
  margin-left: auto;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  color: #c4c8cc;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .list-group .account-aside-item:hover, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .list-group .account-aside-item:hover, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .list-group .account-aside-item:hover, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .list-group .account-aside-item:hover {
  background: #f6f7f8;
  color: #1f2329;
  text-decoration: none;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .list-group .account-aside-item:hover .g2g-acct-icon, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .list-group .account-aside-item:hover .g2g-acct-icon, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .list-group .account-aside-item:hover .g2g-acct-icon, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .list-group .account-aside-item:hover .g2g-acct-icon {
  color: #5f6469;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .list-group .account-aside-item.is-active, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .list-group .account-aside-item.is-active, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .list-group .account-aside-item.is-active, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .list-group .account-aside-item.is-active {
  background: color-mix(in srgb, var(--g2g-token-color-brand-primary) 7%, transparent);
  border-left-color: var(--g2g-token-color-brand-primary);
  color: var(--g2g-token-color-brand-primary);
  font-weight: 700;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .list-group .account-aside-item.is-active .g2g-acct-icon, .dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .list-group .account-aside-item.is-active .g2g-lucide-chevron, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .list-group .account-aside-item.is-active .g2g-acct-icon, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .list-group .account-aside-item.is-active .g2g-lucide-chevron, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .list-group .account-aside-item.is-active .g2g-acct-icon, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .list-group .account-aside-item.is-active .g2g-lucide-chevron, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .list-group .account-aside-item.is-active .g2g-acct-icon, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .list-group .account-aside-item.is-active .g2g-lucide-chevron {
  color: var(--g2g-token-color-brand-primary);
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .list-group .account-aside-item.is-active:hover, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .list-group .account-aside-item.is-active:hover, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .list-group .account-aside-item.is-active:hover, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .list-group .account-aside-item.is-active:hover {
  background: color-mix(in srgb, var(--g2g-token-color-brand-primary) 11%, transparent);
  color: var(--g2g-token-color-brand-primary);
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .list-group .account-aside-item.is-active:hover .g2g-acct-icon, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .list-group .account-aside-item.is-active:hover .g2g-acct-icon, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .list-group .account-aside-item.is-active:hover .g2g-acct-icon, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .list-group .account-aside-item.is-active:hover .g2g-acct-icon {
  color: var(--g2g-token-color-brand-primary);
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .card-footer.account-aside-footer, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .card-footer.account-aside-footer, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .card-footer.account-aside-footer, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .card-footer.account-aside-footer {
  padding: 0;
  margin: 0;
  background: transparent;
  border: none;
  border-radius: 0;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .card-footer.account-aside-footer .account-aside-btn, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .card-footer.account-aside-footer .account-aside-btn, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .card-footer.account-aside-footer .account-aside-btn, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .card-footer.account-aside-footer .account-aside-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 10px 0 0 12px;
  margin-top: 10px;
  border-top: 1px solid #e5e7eb;
  color: #8a9098;
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  width: 100%;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .card-footer.account-aside-footer .account-aside-btn .g2g-lucide-chevron, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .card-footer.account-aside-footer .account-aside-btn .g2g-lucide-chevron, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .card-footer.account-aside-footer .account-aside-btn .g2g-lucide-chevron, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .card-footer.account-aside-footer .account-aside-btn .g2g-lucide-chevron {
  display: none;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .card-footer.account-aside-footer .account-aside-btn:hover, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .card-footer.account-aside-footer .account-aside-btn:hover, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .card-footer.account-aside-footer .account-aside-btn:hover, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-aside .account-aside .card-footer.account-aside-footer .account-aside-btn:hover {
  color: #555;
  background: transparent;
  text-decoration: none;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .card, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .card, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .card, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .card {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .card-title, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .card-title, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .card-title, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--g2g-token-color-brand-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  padding-bottom: 0;
  border: none;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .card-title::before, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .card-title::before, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .card-title::before, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .card-title::before {
  content: "//";
  margin-right: 6px;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .card-title + hr, .dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .card-title::after, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .card-title + hr, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .card-title::after, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .card-title + hr, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .card-title::after, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .card-title + hr, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .card-title::after {
  display: none;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .card-body hr, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .card-body hr, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .card-body hr, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .card-body hr {
  display: none;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .card-body p, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .card-body p, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .card-body p, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .card-body p {
  margin-bottom: 6px;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .card-body p:empty, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .card-body p:empty, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .card-body p:empty, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .card-body p:empty {
  display: none;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .card-body label, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .card-body label, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .card-body label, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .card-body label {
  font-size: 13px;
  font-weight: 500;
  color: #888;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .account-profile-personal, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .account-profile-personal, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .account-profile-personal, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .account-profile-personal {
  margin-bottom: 14px;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .account-profile-credentials, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .account-profile-credentials, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .account-profile-credentials, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .account-profile-credentials {
  margin-bottom: 14px;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .required-fields, .dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main p:has(> .text-muted), .dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main p:last-of-type:not(:empty), .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .required-fields, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main p:has(> .text-muted), .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main p:last-of-type:not(:empty), .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .required-fields, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main p:has(> .text-muted), .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main p:last-of-type:not(:empty), .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .required-fields, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main p:has(> .text-muted), .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main p:last-of-type:not(:empty) {
  font-size: 12px;
  color: #aaa;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .account-profile-change, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .account-profile-change, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .account-profile-change, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .account-profile-change {
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  color: var(--g2g-token-color-brand-primary);
  padding: 4px 12px;
  border-radius: 6px;
  transition: background 0.15s ease;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .account-profile-change:hover, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .account-profile-change:hover, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .account-profile-change:hover, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .account-profile-change:hover {
  background: color-mix(in srgb, var(--g2g-token-color-brand-primary) 7%, transparent);
  text-decoration: none;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .account-welcome, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .account-welcome, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .account-welcome, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .account-welcome {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  padding: 20px 24px;
  margin-bottom: 14px;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .account-welcome h1, .dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .account-welcome .h1, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .account-welcome h1, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .account-welcome .h1, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .account-welcome h1, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .account-welcome .h1, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .account-welcome h1, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .account-welcome .h1 {
  font-size: 21px;
  font-weight: 700;
  color: var(--g2g-token-color-brand-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: none;
  margin-bottom: 6px;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .account-welcome h1::before, .dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .account-welcome .h1::before, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .account-welcome h1::before, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .account-welcome .h1::before, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .account-welcome h1::before, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .account-welcome .h1::before, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .account-welcome h1::before, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .account-welcome .h1::before {
  content: "//";
  margin-right: 8px;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .account-welcome p, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .account-welcome p, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .account-welcome p, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .account-welcome p {
  color: #666;
  font-size: 14px;
  margin-bottom: 0;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .account-overview-card, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .account-overview-card, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .account-overview-card, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .account-overview-card {
  margin-bottom: 14px;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .account-overview-card:only-child, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .account-overview-card:only-child, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .account-overview-card:only-child, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .account-overview-card:only-child {
  flex: 0 0 100%;
  max-width: 100%;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .account-overview-card .order-table, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .account-overview-card .order-table, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .account-overview-card .order-table, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .account-overview-card .order-table {
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  margin-bottom: 0;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main [class~="row"].js-account-overview-addresses, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main [class~="row"].js-account-overview-addresses, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main [class~="row"].js-account-overview-addresses, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main [class~="row"].js-account-overview-addresses {
  margin-bottom: 0;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main [class~="row"].js-account-overview-addresses .account-overview-card, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main [class~="row"].js-account-overview-addresses .account-overview-card, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main [class~="row"].js-account-overview-addresses .account-overview-card, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main [class~="row"].js-account-overview-addresses .account-overview-card {
  margin-bottom: 14px;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .order-table, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .order-table, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .order-table, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .order-table {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  background: #fff;
  padding: 20px 24px;
  margin-bottom: 14px;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-item-header > [class~="row"], .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-item-header > [class~="row"], .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-item-header > [class~="row"], .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-item-header > [class~="row"] {
  align-items: center;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-item-header > [class~="row"] > .col-sm, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-item-header > [class~="row"] > .col-sm, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-item-header > [class~="row"] > .col-sm, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-item-header > [class~="row"] > .col-sm {
  text-align: right;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-table-header-heading, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-table-header-heading, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-table-header-heading, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-table-header-heading {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-item-status-badge.order-item-status-badge, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-item-status-badge.order-item-status-badge, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-item-status-badge.order-item-status-badge, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-item-status-badge.order-item-status-badge {
  background: rgba(0, 91, 153, 0.1);
  color: #005B99;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid rgba(0, 91, 153, 0.18);
  border-radius: 20px;
  padding: 1px 10px;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-table-header-order-number, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-table-header-order-number, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-table-header-order-number, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-table-header-order-number {
  font-size: 13px;
  color: #888;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .btn.order-table-header-context-menu, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .btn.order-table-header-context-menu, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .btn.order-table-header-context-menu, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .btn.order-table-header-context-menu {
  padding: 4px 6px;
  min-height: 0;
  height: auto;
  width: auto;
  line-height: 1;
  font-size: 14px;
  letter-spacing: 2px;
  border-radius: 6px;
  background: transparent;
  color: #bbb;
  border: none;
  box-shadow: none;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .btn.order-table-header-context-menu:hover, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .btn.order-table-header-context-menu:hover, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .btn.order-table-header-context-menu:hover, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .btn.order-table-header-context-menu:hover {
  background: #f3f4f6;
  color: #555;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-table-header-context-menu-content, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-table-header-context-menu-content, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-table-header-context-menu-content, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-table-header-context-menu-content {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 4px;
  min-width: 180px;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-table-header-context-menu-content .dropdown-item, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-table-header-context-menu-content .dropdown-item, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-table-header-context-menu-content .dropdown-item, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-table-header-context-menu-content .dropdown-item {
  font-size: 13px;
  border-radius: 6px;
  padding: 7px 12px;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-table-header-context-menu-content .dropdown-item:hover, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-table-header-context-menu-content .dropdown-item:hover, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-table-header-context-menu-content .dropdown-item:hover, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-table-header-context-menu-content .dropdown-item:hover {
  background: #f6f7f8;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-table-header-order-table-header, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-table-header-order-table-header, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-table-header-order-table-header, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-table-header-order-table-header {
  display: none;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-table-header-order-table-body, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-table-header-order-table-body, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-table-header-order-table-body, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-table-header-order-table-body {
  border-top: 1px solid #f0f1f2;
  padding-top: 14px;
  margin-top: 4px;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-table-header-order-table-body .order-table-header-order-table-body-cell, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-table-header-order-table-body .order-table-header-order-table-body-cell, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-table-header-order-table-body .order-table-header-order-table-body-cell, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-table-header-order-table-body .order-table-header-order-table-body-cell {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-table-header-order-table-body .order-table-header-order-table-body-cell .order-table-header-label, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-table-header-order-table-body .order-table-header-order-table-body-cell .order-table-header-label, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-table-header-order-table-body .order-table-header-order-table-body-cell .order-table-header-label, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-table-header-order-table-body .order-table-header-order-table-body-cell .order-table-header-label {
  position: static !important;
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: normal !important;
  font-size: 11px;
  font-weight: 500;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-table-header-order-table-body .order-table-header-order-table-body-cell .order-table-body-value, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-table-header-order-table-body .order-table-header-order-table-body-cell .order-table-body-value, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-table-header-order-table-body .order-table-header-order-table-body-cell .order-table-body-value, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-table-header-order-table-body .order-table-header-order-table-body-cell .order-table-body-value {
  font-size: 13px;
  font-weight: 500;
  color: #333;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .btn.order-hide-btn, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .btn.order-hide-btn, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .btn.order-hide-btn, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .btn.order-hide-btn {
  padding: 5px 14px;
  min-height: 0;
  height: auto;
  line-height: 1.2;
  font-size: 12px;
  border-radius: 8px;
  background: #f6f7f8;
  color: #888;
  border-color: #e5e7eb;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .btn.order-hide-btn:hover, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .btn.order-hide-btn:hover, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .btn.order-hide-btn:hover, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .btn.order-hide-btn:hover {
  background: color-mix(in srgb, var(--g2g-token-color-brand-primary) 6%, transparent);
  color: var(--g2g-token-color-brand-primary);
  border-color: color-mix(in srgb, var(--g2g-token-color-brand-primary) 25%, transparent);
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-detail-content, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-detail-content, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-detail-content, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-detail-content {
  border-top-color: #f0f1f2;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-detail-content-header, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-detail-content-header, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-detail-content-header, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-detail-content-header {
  border-bottom-color: #f0f1f2;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-detail-content-header .order-detail-content-header-cell, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-detail-content-header .order-detail-content-header-cell, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-detail-content-header .order-detail-content-header-cell, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-detail-content-header .order-detail-content-header-cell {
  font-size: 11px;
  font-weight: 500;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .line-item.is-order, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .line-item.is-order, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .line-item.is-order, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .line-item.is-order {
  position: relative;
  border-bottom-color: #f0f1f2;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .line-item.is-order .line-item-img, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .line-item.is-order .line-item-img, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .line-item.is-order .line-item-img, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .line-item.is-order .line-item-img {
  border: none;
  border-radius: 8px;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .line-item.is-order .product-name, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .line-item.is-order .product-name, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .line-item.is-order .product-name, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .line-item.is-order .product-name {
  display: inline;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .line-item.is-order .hide2gether-offcanvas-items:has(.product-wishlist), .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .line-item.is-order .hide2gether-offcanvas-items:has(.product-wishlist), .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .line-item.is-order .hide2gether-offcanvas-items:has(.product-wishlist), .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .line-item.is-order .hide2gether-offcanvas-items:has(.product-wishlist) {
  position: static;
  margin: 0;
  padding: 0;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .line-item.is-order .product-wishlist, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .line-item.is-order .product-wishlist, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .line-item.is-order .product-wishlist, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .line-item.is-order .product-wishlist {
  position: absolute;
  top: 12px;
  left: 48px;
  z-index: 2;
  margin: 0;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .line-item.is-order .product-wishlist .product-wishlist-action, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .line-item.is-order .product-wishlist .product-wishlist-action, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .line-item.is-order .product-wishlist .product-wishlist-action, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .line-item.is-order .product-wishlist .product-wishlist-action {
  padding: 0;
  background: rgba(255, 255, 255, 0.85);
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  line-height: 1;
  overflow: hidden;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .line-item.is-order .product-wishlist .product-wishlist-action .product-wishlist-btn-content, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .line-item.is-order .product-wishlist .product-wishlist-action .product-wishlist-btn-content, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .line-item.is-order .product-wishlist .product-wishlist-action .product-wishlist-btn-content, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .line-item.is-order .product-wishlist .product-wishlist-action .product-wishlist-btn-content {
  display: none;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .line-item.is-order .product-wishlist .product-wishlist-action .icon, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .line-item.is-order .product-wishlist .product-wishlist-action .icon, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .line-item.is-order .product-wishlist .product-wishlist-action .icon, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .line-item.is-order .product-wishlist .product-wishlist-action .icon {
  font-size: 14px;
  width: 14px;
  height: 14px;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .line-item-info .line-item-details-container .line-item-label, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .line-item-info .line-item-details-container .line-item-label, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .line-item-info .line-item-details-container .line-item-label, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .line-item-info .line-item-details-container .line-item-label {
  font-size: 12px;
  font-weight: 500;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .line-item-info .line-item-details-container .line-item-details, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .line-item-info .line-item-details-container .line-item-details, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .line-item-info .line-item-details-container .line-item-details, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .line-item-info .line-item-details-container .line-item-details {
  font-size: 12px;
  color: #888;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .line-item-total-price, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .line-item-total-price, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .line-item-total-price, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .line-item-total-price {
  font-weight: 600;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-detail-content-padding, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-detail-content-padding, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-detail-content-padding, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-detail-content-padding {
  background: #fafafa;
  border-radius: 10px;
  padding: 16px 20px;
  margin-top: 8px;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-item-detail-labels, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-item-detail-labels, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-item-detail-labels, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-item-detail-labels {
  font-size: 13px;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-item-detail-labels dt, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-item-detail-labels dt, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-item-detail-labels dt, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-item-detail-labels dt {
  color: #888;
  font-weight: 500;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-item-detail-labels dd, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-item-detail-labels dd, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-item-detail-labels dd, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-item-detail-labels dd {
  color: #333;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-item-detail-summary, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-item-detail-summary, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-item-detail-summary, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-item-detail-summary {
  font-size: 13px;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-item-detail-summary dt, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-item-detail-summary dt, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-item-detail-summary dt, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-item-detail-summary dt {
  color: #888;
  font-weight: 500;
  text-align: right;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-item-detail-summary dd, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-item-detail-summary dd, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-item-detail-summary dd, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-item-detail-summary dd {
  font-weight: 600;
  text-align: right;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-item-detail-summary dt:last-of-type, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-item-detail-summary dt:last-of-type, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-item-detail-summary dt:last-of-type, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-item-detail-summary dt:last-of-type {
  color: #333;
  font-weight: 600;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-item-detail-summary dd:last-of-type, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-item-detail-summary dd:last-of-type, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-item-detail-summary dd:last-of-type, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .order-table .order-item-detail-summary dd:last-of-type {
  color: var(--g2g-token-color-brand-primary);
  font-size: 15px;
  font-weight: 700;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main h1.account-welcome, .dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .account-welcome.h1, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main h1.account-welcome, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .account-welcome.h1, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main h1.account-welcome, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .account-welcome.h1, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main h1.account-welcome, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .account-welcome.h1 {
  font-size: 15px;
  color: var(--g2g-token-color-brand-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main h1.account-welcome::before, .dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .account-welcome.h1::before, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main h1.account-welcome::before, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .account-welcome.h1::before, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main h1.account-welcome::before, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .account-welcome.h1::before, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main h1.account-welcome::before, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .account-welcome.h1::before {
  content: "//";
  margin-right: 6px;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-select-address.address-manager-select-address, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-select-address.address-manager-select-address, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-select-address.address-manager-select-address, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-select-address.address-manager-select-address {
  border-color: #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  background: #fff;
  padding: 20px;
  transition: box-shadow 0.15s ease;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-select-address.address-manager-select-address:hover, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-select-address.address-manager-select-address:hover, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-select-address.address-manager-select-address:hover, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-select-address.address-manager-select-address:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.09);
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-select-address.address-manager-select-address .address, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-select-address.address-manager-select-address .address, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-select-address.address-manager-select-address .address, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-select-address.address-manager-select-address .address {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-select-address.address-manager-select-address .dropdown > button, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-select-address.address-manager-select-address .dropdown > button, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-select-address.address-manager-select-address .dropdown > button, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-select-address.address-manager-select-address .dropdown > button {
  padding: 4px 6px;
  border-radius: 6px;
  color: #bbb;
  transition: background 0.15s ease, color 0.15s ease;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-select-address.address-manager-select-address .dropdown > button:hover, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-select-address.address-manager-select-address .dropdown > button:hover, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-select-address.address-manager-select-address .dropdown > button:hover, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-select-address.address-manager-select-address .dropdown > button:hover {
  background: #f3f4f6;
  color: #555;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-select-address.address-manager-select-address .dropdown .dropdown-menu, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-select-address.address-manager-select-address .dropdown .dropdown-menu, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-select-address.address-manager-select-address .dropdown .dropdown-menu, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-select-address.address-manager-select-address .dropdown .dropdown-menu {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 4px;
  min-width: 180px;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-select-address.address-manager-select-address .dropdown .dropdown-menu .dropdown-item, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-select-address.address-manager-select-address .dropdown .dropdown-menu .dropdown-item, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-select-address.address-manager-select-address .dropdown .dropdown-menu .dropdown-item, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-select-address.address-manager-select-address .dropdown .dropdown-menu .dropdown-item {
  font-size: 13px;
  border-radius: 6px;
  padding: 7px 12px;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-select-address.address-manager-select-address .dropdown .dropdown-menu .dropdown-item:hover, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-select-address.address-manager-select-address .dropdown .dropdown-menu .dropdown-item:hover, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-select-address.address-manager-select-address .dropdown .dropdown-menu .dropdown-item:hover, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-select-address.address-manager-select-address .dropdown .dropdown-menu .dropdown-item:hover {
  background: #f6f7f8;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .address-item-default-badge.address-item-default-badge, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .address-item-default-badge.address-item-default-badge, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .address-item-default-badge.address-item-default-badge, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .address-item-default-badge.address-item-default-badge {
  background-color: color-mix(in srgb, var(--g2g-token-color-brand-primary) 10%, transparent);
  color: var(--g2g-token-color-brand-primary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid color-mix(in srgb, var(--g2g-token-color-brand-primary) 20%, transparent);
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-list-base h2, .dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-list-base .h2, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-list-base h2, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-list-base .h2, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-list-base h2, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-list-base .h2, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-list-base h2, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-list-base .h2 {
  font-size: 15px;
  font-weight: 700;
  color: var(--g2g-token-color-brand-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-list-base h2::before, .dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-list-base .h2::before, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-list-base h2::before, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-list-base .h2::before, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-list-base h2::before, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-list-base .h2::before, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-list-base h2::before, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-list-base .h2::before {
  content: "//";
  margin-right: 6px;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-list-base .d-flex.justify-content-between, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-list-base .d-flex.justify-content-between, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-list-base .d-flex.justify-content-between, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-list-base .d-flex.justify-content-between {
  align-items: center;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-list-base .address-manager-list-search.address-manager-list-search, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-list-base .address-manager-list-search.address-manager-list-search, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-list-base .address-manager-list-search.address-manager-list-search, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-list-base .address-manager-list-search.address-manager-list-search {
  height: auto;
  padding: 9px 14px;
  font-size: 13px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-list-base .address-manager-list-search.address-manager-list-search:focus, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-list-base .address-manager-list-search.address-manager-list-search:focus, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-list-base .address-manager-list-search.address-manager-list-search:focus, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-list-base .address-manager-list-search.address-manager-list-search:focus {
  border-color: var(--g2g-token-color-brand-primary);
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-list-base .address-manager-list-search.address-manager-list-search:hover, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-list-base .address-manager-list-search.address-manager-list-search:hover, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-list-base .address-manager-list-search.address-manager-list-search:hover, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-list-base .address-manager-list-search.address-manager-list-search:hover {
  border-color: #ccc;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-list-base .address-manager-modal-address-form.btn, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-list-base .address-manager-modal-address-form.btn, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-list-base .address-manager-modal-address-form.btn, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-list-base .address-manager-modal-address-form.btn {
  display: inline-flex;
  align-items: center;
  height: auto;
  line-height: 1.4;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  background: var(--g2g-token-color-brand-primary);
  color: #fff;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-list-base .address-manager-modal-address-form.btn .icon, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-list-base .address-manager-modal-address-form.btn .icon, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-list-base .address-manager-modal-address-form.btn .icon, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-list-base .address-manager-modal-address-form.btn .icon {
  display: none;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-list-base .address-manager-modal-address-form.btn:hover, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-list-base .address-manager-modal-address-form.btn:hover, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-list-base .address-manager-modal-address-form.btn:hover, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .address-manager-list-base .address-manager-modal-address-form.btn:hover {
  background: #d45500;
  color: #fff;
  border: none;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .address-form-submit.address-form-submit, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .address-form-submit.address-form-submit, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .address-form-submit.address-form-submit, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .address-form-submit.address-form-submit {
  display: block;
  margin-left: auto;
  background: var(--g2g-token-color-brand-primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 22px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  height: auto;
  transition: background 0.15s ease;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .address-form-submit.address-form-submit:hover, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .address-form-submit.address-form-submit:hover, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .address-form-submit.address-form-submit:hover, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .address-form-submit.address-form-submit:hover {
  background: #d45500;
  color: #fff;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .account-address-back.account-address-back, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .account-address-back.account-address-back, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .account-address-back.account-address-back, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .account-address-back.account-address-back {
  display: inline-flex;
  align-items: center;
  border-color: #e5e7eb;
  color: var(--g2g-token-color-brand-primary);
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  height: auto;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .account-address-back.account-address-back .icon, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .account-address-back.account-address-back .icon, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .account-address-back.account-address-back .icon, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .account-address-back.account-address-back .icon {
  display: none;
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .account-address-back.account-address-back:hover, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .account-address-back.account-address-back:hover, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .account-address-back.account-address-back:hover, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .account-address-back.account-address-back:hover {
  background: color-mix(in srgb, var(--g2g-token-color-brand-primary) 7%, transparent);
  border-color: var(--g2g-token-color-brand-primary);
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main .btn.btn-primary, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main .btn.btn-primary, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main .btn.btn-primary, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main .btn.btn-primary {
  border-radius: var(--g2g-border-radius, 4px);
  background-color: #64748b;
  color: var(--g2g-token-color-neutral-background);
}
@media (min-width: 1200px) {
  .dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-content .account-content-main, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-content .account-content-main, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-content .account-content-main, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-content .account-content-main {
    flex: 1;
    min-width: 0;
    width: auto;
    margin-left: 20px;
  }
}
.dreamtheme.is-ctl-accountprofile .content-main [class~="container"] .container-main .account-welcome, .dreamtheme.is-ctl-accountpayment .content-main [class~="container"] .container-main .account-welcome, .dreamtheme.is-ctl-accountorder .content-main [class~="container"] .container-main .account-welcome, .dreamtheme.is-ctl-address .content-main [class~="container"] .container-main .account-welcome {
  padding-top: 0;
}
.dreamtheme.is-ctl-accountorder .icon-warning {
  display: none;
}
.dreamtheme.is-act-profileoverview .card.account-password {
  margin-top: 20px;
}
.dreamtheme.is-ctl-accountprofile .account-content-aside, .dreamtheme.is-ctl-address .account-content-aside, .dreamtheme.is-ctl-accountpayment .account-content-aside, .dreamtheme.is-ctl-accountorder .account-content-aside, .dreamtheme.is-ctl-register .account-content-aside, .dreamtheme.is-ctl-checkout .account-content-aside {
  padding-right: 0;
  border-right: none;
}
.dreamtheme.is-ctl-accountprofile h1, .dreamtheme.is-ctl-accountprofile .h1, .dreamtheme.is-ctl-accountprofile h2, .dreamtheme.is-ctl-accountprofile .h2, .dreamtheme.is-ctl-accountprofile h3, .dreamtheme.is-ctl-accountprofile .h3, .dreamtheme.is-ctl-accountprofile h4, .dreamtheme.is-ctl-accountprofile .h4, .dreamtheme.is-ctl-address h1, .dreamtheme.is-ctl-address .h1, .dreamtheme.is-ctl-address h2, .dreamtheme.is-ctl-address .h2, .dreamtheme.is-ctl-address h3, .dreamtheme.is-ctl-address .h3, .dreamtheme.is-ctl-address h4, .dreamtheme.is-ctl-address .h4, .dreamtheme.is-ctl-accountpayment h1, .dreamtheme.is-ctl-accountpayment .h1, .dreamtheme.is-ctl-accountpayment h2, .dreamtheme.is-ctl-accountpayment .h2, .dreamtheme.is-ctl-accountpayment h3, .dreamtheme.is-ctl-accountpayment .h3, .dreamtheme.is-ctl-accountpayment h4, .dreamtheme.is-ctl-accountpayment .h4, .dreamtheme.is-ctl-accountorder h1, .dreamtheme.is-ctl-accountorder .h1, .dreamtheme.is-ctl-accountorder h2, .dreamtheme.is-ctl-accountorder .h2, .dreamtheme.is-ctl-accountorder h3, .dreamtheme.is-ctl-accountorder .h3, .dreamtheme.is-ctl-accountorder h4, .dreamtheme.is-ctl-accountorder .h4, .dreamtheme.is-ctl-register h1, .dreamtheme.is-ctl-register .h1, .dreamtheme.is-ctl-register h2, .dreamtheme.is-ctl-register .h2, .dreamtheme.is-ctl-register h3, .dreamtheme.is-ctl-register .h3, .dreamtheme.is-ctl-register h4, .dreamtheme.is-ctl-register .h4, .dreamtheme.is-ctl-checkout h1, .dreamtheme.is-ctl-checkout .h1, .dreamtheme.is-ctl-checkout h2, .dreamtheme.is-ctl-checkout .h2, .dreamtheme.is-ctl-checkout h3, .dreamtheme.is-ctl-checkout .h3, .dreamtheme.is-ctl-checkout h4, .dreamtheme.is-ctl-checkout .h4 {
  font-weight: 100;
}
.dreamtheme.is-ctl-accountprofile .form-select, .dreamtheme.is-ctl-accountprofile .custom-select, .dreamtheme.is-ctl-accountprofile .form-control, .dreamtheme.is-ctl-address .form-select, .dreamtheme.is-ctl-address .custom-select, .dreamtheme.is-ctl-address .form-control, .dreamtheme.is-ctl-accountpayment .form-select, .dreamtheme.is-ctl-accountpayment .custom-select, .dreamtheme.is-ctl-accountpayment .form-control, .dreamtheme.is-ctl-accountorder .form-select, .dreamtheme.is-ctl-accountorder .custom-select, .dreamtheme.is-ctl-accountorder .form-control, .dreamtheme.is-ctl-register .form-select, .dreamtheme.is-ctl-register .custom-select, .dreamtheme.is-ctl-register .form-control, .dreamtheme.is-ctl-checkout .form-select, .dreamtheme.is-ctl-checkout .custom-select, .dreamtheme.is-ctl-checkout .form-control {
  border: none;
  border-bottom: 1px solid #d1d5db;
  border-radius: 0;
  background-color: transparent;
  padding-left: 0;
  font-size: 14px;
  transition: border-color 0.2s ease;
}
.dreamtheme.is-ctl-accountprofile .form-select:focus, .dreamtheme.is-ctl-accountprofile .custom-select:focus, .dreamtheme.is-ctl-accountprofile .form-control:focus, .dreamtheme.is-ctl-address .form-select:focus, .dreamtheme.is-ctl-address .custom-select:focus, .dreamtheme.is-ctl-address .form-control:focus, .dreamtheme.is-ctl-accountpayment .form-select:focus, .dreamtheme.is-ctl-accountpayment .custom-select:focus, .dreamtheme.is-ctl-accountpayment .form-control:focus, .dreamtheme.is-ctl-accountorder .form-select:focus, .dreamtheme.is-ctl-accountorder .custom-select:focus, .dreamtheme.is-ctl-accountorder .form-control:focus, .dreamtheme.is-ctl-register .form-select:focus, .dreamtheme.is-ctl-register .custom-select:focus, .dreamtheme.is-ctl-register .form-control:focus, .dreamtheme.is-ctl-checkout .form-select:focus, .dreamtheme.is-ctl-checkout .custom-select:focus, .dreamtheme.is-ctl-checkout .form-control:focus {
  border-bottom-color: var(--g2g-token-color-brand-primary);
  box-shadow: none;
}
.dreamtheme.is-ctl-accountprofile .form-select:hover, .dreamtheme.is-ctl-accountprofile .custom-select:hover, .dreamtheme.is-ctl-accountprofile .form-control:hover, .dreamtheme.is-ctl-address .form-select:hover, .dreamtheme.is-ctl-address .custom-select:hover, .dreamtheme.is-ctl-address .form-control:hover, .dreamtheme.is-ctl-accountpayment .form-select:hover, .dreamtheme.is-ctl-accountpayment .custom-select:hover, .dreamtheme.is-ctl-accountpayment .form-control:hover, .dreamtheme.is-ctl-accountorder .form-select:hover, .dreamtheme.is-ctl-accountorder .custom-select:hover, .dreamtheme.is-ctl-accountorder .form-control:hover, .dreamtheme.is-ctl-register .form-select:hover, .dreamtheme.is-ctl-register .custom-select:hover, .dreamtheme.is-ctl-register .form-control:hover, .dreamtheme.is-ctl-checkout .form-select:hover, .dreamtheme.is-ctl-checkout .custom-select:hover, .dreamtheme.is-ctl-checkout .form-control:hover {
  border-bottom-color: #999;
}
.dreamtheme.is-ctl-accountprofile .profile-form-submit, .dreamtheme.is-ctl-address .profile-form-submit, .dreamtheme.is-ctl-accountpayment .profile-form-submit, .dreamtheme.is-ctl-accountorder .profile-form-submit, .dreamtheme.is-ctl-register .profile-form-submit, .dreamtheme.is-ctl-checkout .profile-form-submit {
  display: block;
  margin-left: auto;
  background: var(--g2g-token-color-brand-primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 22px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  transition: background 0.15s ease;
}
.dreamtheme.is-ctl-accountprofile .profile-form-submit:hover, .dreamtheme.is-ctl-address .profile-form-submit:hover, .dreamtheme.is-ctl-accountpayment .profile-form-submit:hover, .dreamtheme.is-ctl-accountorder .profile-form-submit:hover, .dreamtheme.is-ctl-register .profile-form-submit:hover, .dreamtheme.is-ctl-checkout .profile-form-submit:hover {
  background: #d45500;
  color: #fff;
}
.dreamtheme .account-register .form-select, .dreamtheme .account-register .custom-select, .dreamtheme .account-register .form-control, .dreamtheme .account-recover-password .form-select, .dreamtheme .account-recover-password .custom-select, .dreamtheme .account-recover-password .form-control, .dreamtheme .account-reset-password .form-select, .dreamtheme .account-reset-password .custom-select, .dreamtheme .account-reset-password .form-control {
  border: none;
  border-bottom: 1px solid #d1d5db;
  border-radius: 0;
  background-color: transparent;
  padding-left: 0;
  font-size: 14px;
  transition: border-color 0.2s ease;
}
.dreamtheme .account-register .form-select:focus, .dreamtheme .account-register .custom-select:focus, .dreamtheme .account-register .form-control:focus, .dreamtheme .account-recover-password .form-select:focus, .dreamtheme .account-recover-password .custom-select:focus, .dreamtheme .account-recover-password .form-control:focus, .dreamtheme .account-reset-password .form-select:focus, .dreamtheme .account-reset-password .custom-select:focus, .dreamtheme .account-reset-password .form-control:focus {
  border-bottom-color: var(--g2g-token-color-brand-primary);
  box-shadow: none;
}
.dreamtheme .account-register .form-select:hover, .dreamtheme .account-register .custom-select:hover, .dreamtheme .account-register .form-control:hover, .dreamtheme .account-recover-password .form-select:hover, .dreamtheme .account-recover-password .custom-select:hover, .dreamtheme .account-recover-password .form-control:hover, .dreamtheme .account-reset-password .form-select:hover, .dreamtheme .account-reset-password .custom-select:hover, .dreamtheme .account-reset-password .form-control:hover {
  border-bottom-color: #999;
}
@media (max-width: 767.98px) {
  .dreamtheme .account-register, .dreamtheme .account-recover-password, .dreamtheme .account-reset-password {
    padding-left: 16px;
    padding-right: 16px;
  }
  .dreamtheme .account-register .card-body, .dreamtheme .account-register .register-card .card-body, .dreamtheme .account-recover-password .card-body, .dreamtheme .account-recover-password .register-card .card-body, .dreamtheme .account-reset-password .card-body, .dreamtheme .account-reset-password .register-card .card-body {
    padding: 1.25rem 1.25rem;
  }
}
.dreamtheme .account-menu-offcanvas .offcanvas-body .fa-solid {
  margin-right: 8px;
}
.dreamtheme .login-advantages ul {
  padding-left: 15px;
}
.dreamtheme .account-menu-dropdown.account-menu-dropdown .account-menu-header, .dreamtheme .account-menu-offcanvas .account-menu-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: transparent;
  color: var(--g2g-token-color-brand-primary);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 14px;
  text-align: left;
  padding: 0 0 12px;
  border-bottom: 1px solid #ececec;
  margin-bottom: 14px;
}
.dreamtheme .account-menu-dropdown.account-menu-dropdown .account-menu-header::before, .dreamtheme .account-menu-offcanvas .account-menu-header::before {
  content: "//";
  margin-right: 7px;
}
.dreamtheme .account-menu-dropdown.account-menu-dropdown .account-menu-close, .dreamtheme .account-menu-offcanvas .account-menu-close {
  flex: 0 0 auto;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: #94a3b8;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.dreamtheme .account-menu-dropdown.account-menu-dropdown .account-menu-close:hover, .dreamtheme .account-menu-offcanvas .account-menu-close:hover {
  background: #f1f3f5;
  color: #1a1a1a;
}
.dreamtheme .account-menu-dropdown.account-menu-dropdown .account-menu-login, .dreamtheme .account-menu-offcanvas .account-menu-login {
  padding: 4px 0 0;
  margin-bottom: 0;
  border-bottom: none;
}
.dreamtheme .account-menu-dropdown.account-menu-dropdown .account-menu-login-button.btn.btn-primary, .dreamtheme .account-menu-offcanvas .account-menu-login-button.btn.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 36px;
  min-height: 36px;
  padding: 0 16px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background: var(--g2g-token-color-brand-primary);
  border: 1px solid var(--g2g-token-color-brand-primary);
  box-shadow: 0 2px 10px color-mix(in srgb, var(--g2g-token-color-brand-primary) 22%, transparent);
}
.dreamtheme .account-menu-dropdown.account-menu-dropdown .account-menu-login-button.btn.btn-primary:hover, .dreamtheme .account-menu-dropdown.account-menu-dropdown .account-menu-login-button.btn.btn-primary:focus, .dreamtheme .account-menu-offcanvas .account-menu-login-button.btn.btn-primary:hover, .dreamtheme .account-menu-offcanvas .account-menu-login-button.btn.btn-primary:focus {
  color: #fff;
  background: var(--g2g-token-color-brand-primary-hover);
  border-color: var(--g2g-token-color-brand-primary-hover);
  box-shadow: 0 4px 14px color-mix(in srgb, var(--g2g-token-color-brand-primary) 28%, transparent);
}
.dreamtheme .account-menu-dropdown.account-menu-dropdown .account-menu-register, .dreamtheme .account-menu-offcanvas .account-menu-register {
  margin-top: 12px;
  text-align: center;
  color: #64748b;
}
.dreamtheme .account-menu-dropdown.account-menu-dropdown .account-menu-register a, .dreamtheme .account-menu-offcanvas .account-menu-register a {
  color: var(--g2g-token-color-brand-primary);
  font-weight: 700;
  text-decoration: none;
}
.dreamtheme .account-menu-dropdown.account-menu-dropdown .account-menu-register a:hover, .dreamtheme .account-menu-offcanvas .account-menu-register a:hover {
  text-decoration: underline;
}
.dreamtheme .account-menu-dropdown.account-menu-dropdown .account-menu-links, .dreamtheme .account-menu-offcanvas .account-menu-links {
  border-top: 1px solid #ececec;
  margin-top: 12px;
  padding-top: 8px;
}
.dreamtheme .account-menu-dropdown.account-menu-dropdown .header-account-menu, .dreamtheme .account-menu-dropdown.account-menu-dropdown .account-menu-inner, .dreamtheme .account-menu-dropdown.account-menu-dropdown .account-aside-list-group, .dreamtheme .account-menu-offcanvas .header-account-menu, .dreamtheme .account-menu-offcanvas .account-menu-inner, .dreamtheme .account-menu-offcanvas .account-aside-list-group {
  border: none;
  background: transparent;
}
.dreamtheme .account-menu-dropdown.account-menu-dropdown .account-aside-item, .dreamtheme .account-menu-offcanvas .account-aside-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 12px;
  margin-bottom: 0;
  color: #33373b;
  font-weight: 500;
  border: none;
  border-left: 3px solid transparent;
  border-radius: 0;
  background: transparent;
}
.dreamtheme .account-menu-dropdown.account-menu-dropdown .account-aside-item + .account-aside-item, .dreamtheme .account-menu-offcanvas .account-aside-item + .account-aside-item {
  border-top: 1px solid #f0f1f2;
}
.dreamtheme .account-menu-dropdown.account-menu-dropdown .account-aside-item .g2g-acct-icon, .dreamtheme .account-menu-offcanvas .account-aside-item .g2g-acct-icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  color: #8a9098;
}
.dreamtheme .account-menu-dropdown.account-menu-dropdown .account-aside-item .g2g-lucide-chevron, .dreamtheme .account-menu-offcanvas .account-aside-item .g2g-lucide-chevron {
  margin-left: auto;
  color: #c4c8cc;
}
.dreamtheme .account-menu-dropdown.account-menu-dropdown .account-aside-item:hover, .dreamtheme .account-menu-offcanvas .account-aside-item:hover {
  background: #f6f7f8;
  color: #1f2329;
}
.dreamtheme .account-menu-dropdown.account-menu-dropdown .account-aside-item:hover .g2g-acct-icon, .dreamtheme .account-menu-offcanvas .account-aside-item:hover .g2g-acct-icon {
  color: #5f6469;
}
.dreamtheme .account-menu-dropdown.account-menu-dropdown .account-aside-item.is-active, .dreamtheme .account-menu-offcanvas .account-aside-item.is-active {
  background: color-mix(in srgb, var(--g2g-token-color-brand-primary) 7%, transparent);
  border-left-color: var(--g2g-token-color-brand-primary);
  color: var(--g2g-token-color-brand-primary);
  font-weight: 700;
}
.dreamtheme .account-menu-dropdown.account-menu-dropdown .account-aside-item.is-active .g2g-acct-icon, .dreamtheme .account-menu-dropdown.account-menu-dropdown .account-aside-item.is-active .g2g-lucide-chevron, .dreamtheme .account-menu-offcanvas .account-aside-item.is-active .g2g-acct-icon, .dreamtheme .account-menu-offcanvas .account-aside-item.is-active .g2g-lucide-chevron {
  color: var(--g2g-token-color-brand-primary);
}
.dreamtheme .account-menu-dropdown.account-menu-dropdown .account-aside-item.is-active:hover, .dreamtheme .account-menu-offcanvas .account-aside-item.is-active:hover {
  background: color-mix(in srgb, var(--g2g-token-color-brand-primary) 11%, transparent);
  color: var(--g2g-token-color-brand-primary);
}
.dreamtheme .account-menu-dropdown.account-menu-dropdown .account-aside-item.is-active:hover .g2g-acct-icon, .dreamtheme .account-menu-offcanvas .account-aside-item.is-active:hover .g2g-acct-icon {
  color: var(--g2g-token-color-brand-primary);
}
.dreamtheme .account-menu-dropdown.account-menu-dropdown {
  min-width: 340px;
  padding: 18px;
  border: 1px solid #eceff3;
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.14);
}
.dreamtheme .account-menu-offcanvas .offcanvas-header {
  display: none;
}
.dreamtheme .account-menu-offcanvas .offcanvas-body {
  padding: 18px;
}
.dreamtheme .account-menu-offcanvas.offcanvas-start {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.dreamtheme.is-ctl-product .content-main .cms-breadcrumb .breadcrumb .breadcrumb-item .breadcrumb-link {
  color: var(--g2g-token-color-neutral-text-muted);
}
.dreamtheme.is-ctl-product .content-main .cms-breadcrumb .breadcrumb .breadcrumb-item .breadcrumb-link.is-active {
  color: #64748b;
  font-weight: 500;
}
body.dreamtheme .cms-breadcrumb .breadcrumb {
  padding-left: 0;
}
body.dreamtheme .cms-breadcrumb .breadcrumb-link, body.dreamtheme .cms-breadcrumb .breadcrumb-link:hover, body.dreamtheme .cms-breadcrumb .breadcrumb-link:focus {
  text-decoration: none;
}
.dreamtheme .btn-primary {
  color: var(--g2g-token-color-neutral-background);
}
.dreamtheme .btn-primary .icon {
  color: var(--g2g-token-color-neutral-background);
}
.dreamtheme.is-act-loginpage .account-register {
  margin-bottom: 30px;
}
.dreamtheme.is-ctl-register .checkout .g2g-checkout-register-header {
  padding-top: 30px;
  margin-top: 10px;
  border-top: 2px solid var(--g2g-token-color-neutral-border);
}
.dreamtheme.is-ctl-register .login-submit .btn.btn-primary, .dreamtheme.is-ctl-register .register-submit .btn.btn-primary {
  position: relative;
  overflow: hidden;
  border-color: transparent;
  width: 98%;
  background: #1e293b;
  text-align: center;
  color: var(--g2g-token-color-neutral-background);
  padding: 10px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
}
.dreamtheme.is-ctl-register .login-submit .btn.btn-primary::before, .dreamtheme.is-ctl-register .register-submit .btn.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  will-change: transform;
  width: 100%;
  height: 100%;
  background: #334155;
  z-index: 0;
  transition: transform 0.5s ease-in-out;
}
.dreamtheme.is-ctl-register .login-submit .btn.btn-primary span, .dreamtheme.is-ctl-register .register-submit .btn.btn-primary span {
  position: relative;
  z-index: 1;
}
.dreamtheme.is-ctl-register .login-submit .btn.btn-primary:hover::before, .dreamtheme.is-ctl-register .register-submit .btn.btn-primary:hover::before {
  transform: translateX(0);
}
.dreamtheme.is-ctl-checkout .content-main .container .container-main .checkout .checkout-container .checkout-main .confirm-tos .form-check .form-check-input, .dreamtheme.is-ctl-checkout .content-main .cms-section .boxed .container-main .checkout .checkout-container .checkout-main .confirm-tos .form-check .form-check-input, .cms-section .dreamtheme.is-ctl-checkout .content-main .boxed .container-main .checkout .checkout-container .checkout-main .confirm-tos .form-check .form-check-input {
  margin-left: unset;
}
.dreamtheme.is-ctl-checkout .content-main .container .container-main .checkout .checkout-container .checkout-main .confirm-tos .form-check .checkout-confirm-tos-label, .dreamtheme.is-ctl-checkout .content-main .cms-section .boxed .container-main .checkout .checkout-container .checkout-main .confirm-tos .form-check .checkout-confirm-tos-label, .cms-section .dreamtheme.is-ctl-checkout .content-main .boxed .container-main .checkout .checkout-container .checkout-main .confirm-tos .form-check .checkout-confirm-tos-label {
  margin-left: 10px;
  width: 80%;
}
.dreamtheme.is-ctl-checkout .content-main .container .container-main .checkout .checkout-container .checkout-main .confirm-tos .form-check .checkbox2gether, .dreamtheme.is-ctl-checkout .content-main .cms-section .boxed .container-main .checkout .checkout-container .checkout-main .confirm-tos .form-check .checkbox2gether, .cms-section .dreamtheme.is-ctl-checkout .content-main .boxed .container-main .checkout .checkout-container .checkout-main .confirm-tos .form-check .checkbox2gether {
  padding-left: 0;
}
.dreamtheme.is-ctl-checkout .content-main .container .container-main .checkout .checkout-container .checkout-main .confirm-tos .form-check .checkbox2gether input, .dreamtheme.is-ctl-checkout .content-main .cms-section .boxed .container-main .checkout .checkout-container .checkout-main .confirm-tos .form-check .checkbox2gether input, .cms-section .dreamtheme.is-ctl-checkout .content-main .boxed .container-main .checkout .checkout-container .checkout-main .confirm-tos .form-check .checkbox2gether input {
  display: none;
}
.dreamtheme.is-ctl-checkout .content-main .container .container-main .checkout .checkout-container .checkout-main .confirm-tos .form-check .checkbox2gether .checkout-confirm-tos-label, .dreamtheme.is-ctl-checkout .content-main .cms-section .boxed .container-main .checkout .checkout-container .checkout-main .confirm-tos .form-check .checkbox2gether .checkout-confirm-tos-label, .cms-section .dreamtheme.is-ctl-checkout .content-main .boxed .container-main .checkout .checkout-container .checkout-main .confirm-tos .form-check .checkbox2gether .checkout-confirm-tos-label {
  margin-left: 0;
}
.dreamtheme.is-ctl-checkout .content-main .container .container-main .checkout .checkout-container .checkout-main .confirm-tos .form-check .checkbox2gether .checkout-confirm-tos-label::before, .dreamtheme.is-ctl-checkout .content-main .cms-section .boxed .container-main .checkout .checkout-container .checkout-main .confirm-tos .form-check .checkbox2gether .checkout-confirm-tos-label::before, .cms-section .dreamtheme.is-ctl-checkout .content-main .boxed .container-main .checkout .checkout-container .checkout-main .confirm-tos .form-check .checkbox2gether .checkout-confirm-tos-label::before {
  display: none;
}
.dreamtheme.is-ctl-checkout .content-main .container .container-main .checkout .checkout-container .checkout-main .confirm-tos .great-checkout-phone-number-block, .dreamtheme.is-ctl-checkout .content-main .cms-section .boxed .container-main .checkout .checkout-container .checkout-main .confirm-tos .great-checkout-phone-number-block, .cms-section .dreamtheme.is-ctl-checkout .content-main .boxed .container-main .checkout .checkout-container .checkout-main .confirm-tos .great-checkout-phone-number-block {
  padding: 20px 20px 10px 20px;
}
.dreamtheme.is-act-confirmpage .header-minimal-contact.back-to-shop-hidden {
  float: right;
  width: auto;
  padding-right: 40px;
}
.dreamtheme.is-act-confirmpage .checkout {
  padding-top: 0;
}
.dreamtheme.is-act-confirmpage .checkout .checkout-main .confirm-main-header {
  font-weight: 600;
  font-size: 25px;
}
.dreamtheme.is-act-confirmpage .checkout .checkout-main .great-sw5-checkout.confirm-payment-shipping .confirm-payment, .dreamtheme.is-act-confirmpage .checkout .checkout-main .great-sw5-checkout.confirm-payment-shipping .confirm-shipping {
  width: 100%;
}
.dreamtheme.is-act-confirmpage .checkout .checkout-main .great-sw5-checkout.confirm-payment-shipping .payment-method-label .payment-method-description {
  width: 100%;
}
.dreamtheme.is-act-confirmpage .checkout .checkout-main .great-sw5-checkout.confirm-payment-shipping .shipping-method-label .payment-method-description .shipping-method-label, .dreamtheme.is-act-confirmpage .checkout .checkout-main .great-sw5-checkout.confirm-payment-shipping .shipping-method-label .shipping-method-description .shipping-method-label {
  width: 100%;
}
.dreamtheme.is-act-confirmpage .checkout .checkout-main .great-sw5-checkout.confirm-payment-shipping .payment-method-label, .dreamtheme.is-act-confirmpage .checkout .checkout-main .great-sw5-checkout.confirm-payment-shipping .shipping-method-label {
  padding-left: 10px;
}
.dreamtheme.is-act-confirmpage .checkout .checkout-main .checkout-card .card-title {
  border-bottom: 1px solid var(--g2g-token-color-neutral-border);
  background: var(--g2g-token-color-neutral-border);
  padding: 20px 0 20px 20px;
}
.dreamtheme.is-act-confirmpage .checkout .checkout-main .checkout-card .card-body {
  background: var(--g2g-token-color-neutral-surface);
}
.dreamtheme.is-act-confirmpage .checkout .checkout-main .checkout-card .card-body form {
  padding: 0 20px 0 20px;
}
.dreamtheme.is-act-confirmpage .checkout .checkout-main .checkout-card .card-body .form-check {
  padding: 0 0 0 20px;
  min-height: 40px;
}
.dreamtheme.is-act-confirmpage .checkout .checkout-main .checkout-card .card-body .card-actions {
  padding: 10px 0 25px 20px;
}
.dreamtheme.is-act-confirmpage .checkout .checkout-main .checkout-card .card-body .card-actions .btn-light {
  background: var(--g2g-token-color-neutral-border);
  color: var(--g2g-token-color-neutral-text-default);
}
.dreamtheme.is-act-confirmpage .checkout .checkout-main .checkout-card .card-body .payment-methods .payment-method {
  border-bottom: 1px solid var(--g2g-token-color-neutral-border);
}
.dreamtheme.is-act-confirmpage .checkout .checkout-main .checkout-card .card-body .payment-methods .payment-method .payment-form-group {
  margin-bottom: 0;
  padding-top: 20px;
}
.dreamtheme.is-act-confirmpage .checkout .checkout-main .checkout-card .card-body .payment-methods .payment-method:last-child {
  border-bottom: none;
}
.dreamtheme.is-act-confirmpage .checkout .checkout-main .checkout-card .card-body .shipping-methods .shipping-method {
  border-bottom: 1px solid var(--g2g-token-color-neutral-border);
}
.dreamtheme.is-act-confirmpage .checkout .checkout-main .checkout-card .card-body .shipping-methods .shipping-method .shipping-form-group {
  margin-bottom: 0;
  padding-top: 20px;
}
.dreamtheme.is-act-confirmpage .checkout .checkout-main .checkout-card .card-body .shipping-methods .shipping-method:last-child {
  border-bottom: none;
}
.dreamtheme.is-act-confirmpage .checkout .checkout-main .checkout-card .revocation-notice, .dreamtheme.is-act-confirmpage .checkout .checkout-main .checkout-card .confirm-address-shipping, .dreamtheme.is-act-confirmpage .checkout .checkout-main .checkout-card .confirm-address-billing {
  padding-left: 25px;
  padding-top: 10px;
}
.dreamtheme.is-act-confirmpage .checkout .checkout-main .confirm-product .cart-table-header {
  border-bottom: 1px solid var(--g2g-token-color-neutral-border);
  background: transparent;
  padding-left: 0;
  padding-right: 0;
}
.dreamtheme.is-act-confirmpage .checkout .checkout-main .confirm-product .card-body {
  background: transparent;
}
.dreamtheme.is-act-confirmpage .checkout .checkout-main .confirm-product .card-body .line-item {
  margin: 0;
  padding: 15px 0;
  border-bottom: 1px solid var(--g2g-token-color-neutral-border);
}
.dreamtheme.is-act-confirmpage .checkout .checkout-main .confirm-product .card-body .line-item:last-child {
  border-bottom: none;
}
.dreamtheme.is-act-confirmpage .checkout .checkout-main .confirm-product .card-body .line-item .line-item-img, .dreamtheme.is-act-confirmpage .checkout .checkout-main .confirm-product .card-body .line-item img.line-item-img, .dreamtheme.is-act-confirmpage .checkout .checkout-main .confirm-product .card-body .line-item .line-item-img-container img, .dreamtheme.is-act-confirmpage .checkout .checkout-main .confirm-product .card-body .line-item .line-item-img-link img {
  border: 0;
}
@media (min-width: 768px) {
  .dreamtheme.is-act-confirmpage .checkout .checkout-main {
    margin-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .dreamtheme.is-act-confirmpage .checkout .checkout-main {
    margin-left: unset;
    width: 100%;
  }
}
.dreamtheme.is-act-confirmpage .checkout .checkout-aside .checkout-aside-summary {
  padding: 0;
}
.dreamtheme.is-act-confirmpage .checkout .checkout-aside .checkout-aside-summary .checkout-aside-summary-header {
  border-bottom: 1px solid var(--g2g-token-color-neutral-border);
  background: transparent;
  padding: 10px 20px;
}
.dreamtheme.is-act-confirmpage .checkout .checkout-aside .checkout-aside-summary .checkout-aside-summary-list-container {
  padding: 20px;
}
.dreamtheme.is-act-confirmpage .checkout .checkout-aside .btn-primary {
  position: relative;
  overflow: hidden;
  border-color: transparent;
  width: 100%;
  background: #1e293b;
  text-align: center;
  color: var(--g2g-token-color-neutral-background);
  padding: 10px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  margin: 10px 0 5px 0;
}
.dreamtheme.is-act-confirmpage .checkout .checkout-aside .btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  will-change: transform;
  width: 100%;
  height: 100%;
  background: #334155;
  z-index: 0;
  transition: transform 0.5s ease-in-out;
}
.dreamtheme.is-act-confirmpage .checkout .checkout-aside .btn-primary:hover::before {
  transform: translateX(0);
}
.dreamtheme.is-act-confirmpage .checkout .checkout-aside .btn-primary span {
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .dreamtheme.is-act-confirmpage .checkout .checkout-aside {
    margin-left: unset;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .dreamtheme.is-act-confirmpage .checkout .checkout-aside {
    margin-left: 0;
    width: auto;
  }
}
.dreamtheme.is-act-finishpage .checkout {
  padding-top: 0;
}
@media (min-width: 992px) {
  body.dreamtheme .g2g-trust-mobile-only {
    display: none;
  }
  body.dreamtheme.is-act-confirmpage .checkout-container, body.dreamtheme.is-act-cartpage .checkout-container, body.dreamtheme.is-act-checkoutregisterpage .checkout-container, body.dreamtheme.is-act-finishpage .checkout-container {
    flex-wrap: nowrap;
    gap: 16px;
    align-items: flex-start;
  }
  body.dreamtheme.is-act-confirmpage .checkout-container > .checkout-main, body.dreamtheme.is-act-cartpage .checkout-container > .checkout-main, body.dreamtheme.is-act-checkoutregisterpage .checkout-container > .checkout-main, body.dreamtheme.is-act-finishpage .checkout-container > .checkout-main {
    padding-right: 0;
  }
  body.dreamtheme.is-act-confirmpage .checkout-container > .checkout-aside, body.dreamtheme.is-act-cartpage .checkout-container > .checkout-aside, body.dreamtheme.is-act-checkoutregisterpage .checkout-container > .checkout-aside, body.dreamtheme.is-act-finishpage .checkout-container > .checkout-aside {
    padding-left: 0;
  }
  body.dreamtheme.is-act-confirmpage .checkout-container > .checkout-main, body.dreamtheme.is-act-cartpage .checkout-container > .checkout-main, body.dreamtheme.is-act-checkoutregisterpage .checkout-container > .checkout-main, body.dreamtheme.is-act-finishpage .checkout-container > .checkout-main {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
    width: auto;
    margin-left: 0;
  }
  body.dreamtheme.is-act-confirmpage .checkout-container > .checkout-main > *, body.dreamtheme.is-act-confirmpage .g2g-checkout-layout, body.dreamtheme.is-act-confirmpage .g2g-checkout-layout__main, body.dreamtheme.is-act-confirmpage .g2g-checkout-step, body.dreamtheme.is-act-confirmpage .g2g-checkout-progress {
    min-width: 0;
  }
  body.dreamtheme.is-act-confirmpage .checkout-container > .checkout-aside, body.dreamtheme.is-act-cartpage .checkout-container > .checkout-aside, body.dreamtheme.is-act-checkoutregisterpage .checkout-container > .checkout-aside, body.dreamtheme.is-act-finishpage .checkout-container > .checkout-aside {
    flex: 0 0 320px;
    max-width: 320px;
    width: 320px;
    margin-left: 0;
    padding-top: 24px;
    position: sticky;
    top: 24px;
  }
  body.dreamtheme.is-act-confirmpage .g2g-checkout-layout {
    grid-template-columns: 1fr;
  }
  body.dreamtheme.is-act-confirmpage .checkout .checkout-main .line-item-quantity .quantity-selector-group {
    display: flex;
    flex-direction: column;
    width: 32px;
    height: 94px;
    margin: 0 auto;
    border-radius: var(--g2g-border-radius, 4px);
    box-shadow: 0 2px 4px 0 rgba(51, 51, 51, 0.08);
    background: transparent;
    overflow: hidden;
  }
  body.dreamtheme.is-act-confirmpage .checkout .checkout-main .line-item-quantity .quantity-selector-group .btn-plus {
    order: 1;
    width: 32px;
    height: 32px;
    min-width: 0;
    padding: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--g2g-token-color-action-buy);
    border: 1px solid transparent;
    border-radius: var(--g2g-border-radius, 4px) var(--g2g-border-radius, 4px) 0 0;
    color: #fff;
    transition: background 0.15s ease;
    line-height: 1;
  }
  body.dreamtheme.is-act-confirmpage .checkout .checkout-main .line-item-quantity .quantity-selector-group .btn-plus .icon {
    width: 16px;
    height: 16px;
    line-height: 1;
    color: #fff;
  }
  body.dreamtheme.is-act-confirmpage .checkout .checkout-main .line-item-quantity .quantity-selector-group .btn-plus .icon svg, body.dreamtheme.is-act-confirmpage .checkout .checkout-main .line-item-quantity .quantity-selector-group .btn-plus > svg, body.dreamtheme.is-act-confirmpage .checkout .checkout-main .line-item-quantity .quantity-selector-group .btn-plus .icon-plus {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    color: #fff;
    fill: #fff;
    pointer-events: none;
  }
  body.dreamtheme.is-act-confirmpage .checkout .checkout-main .line-item-quantity .quantity-selector-group .btn-plus:hover {
    background: var(--g2g-token-color-action-buy-hover);
  }
  body.dreamtheme.is-act-confirmpage .checkout .checkout-main .line-item-quantity .quantity-selector-group input.form-control.quantity-selector-group-input {
    order: 2;
    width: 32px;
    min-width: 32px;
    max-width: 32px;
    height: 32px;
    padding: 0;
    box-sizing: border-box;
    background: #fff;
    color: #333;
    border: none;
    border-radius: 0;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    -moz-appearance: textfield;
    appearance: textfield;
  }
  body.dreamtheme.is-act-confirmpage .checkout .checkout-main .line-item-quantity .quantity-selector-group input.form-control.quantity-selector-group-input::-webkit-outer-spin-button, body.dreamtheme.is-act-confirmpage .checkout .checkout-main .line-item-quantity .quantity-selector-group input.form-control.quantity-selector-group-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  body.dreamtheme.is-act-confirmpage .checkout .checkout-main .line-item-quantity .quantity-selector-group input.form-control.quantity-selector-group-input:focus {
    box-shadow: none;
    outline: none;
  }
  body.dreamtheme.is-act-confirmpage .checkout .checkout-main .line-item-quantity .quantity-selector-group .btn-minus {
    order: 3;
    width: 32px;
    height: 32px;
    min-width: 0;
    padding: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid transparent;
    border-radius: 0 0 var(--g2g-border-radius, 4px) var(--g2g-border-radius, 4px);
    color: #888;
    transition: background 0.15s ease, color 0.15s ease;
    line-height: 1;
  }
  body.dreamtheme.is-act-confirmpage .checkout .checkout-main .line-item-quantity .quantity-selector-group .btn-minus .icon {
    width: 16px;
    height: 16px;
    line-height: 1;
    color: #888;
  }
  body.dreamtheme.is-act-confirmpage .checkout .checkout-main .line-item-quantity .quantity-selector-group .btn-minus .icon svg, body.dreamtheme.is-act-confirmpage .checkout .checkout-main .line-item-quantity .quantity-selector-group .btn-minus > svg, body.dreamtheme.is-act-confirmpage .checkout .checkout-main .line-item-quantity .quantity-selector-group .btn-minus .icon-minus {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    color: #888;
    fill: #888;
    pointer-events: none;
  }
  body.dreamtheme.is-act-confirmpage .checkout .checkout-main .line-item-quantity .quantity-selector-group .btn-minus:hover {
    background: #f5f5f5;
    color: #555;
  }
}
body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .quantity-selector-group, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .form-control-quantity-selector, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) {
  display: flex;
  flex-direction: column;
  width: 32px;
  height: 94px;
  margin: 0 auto;
  border-radius: var(--g2g-border-radius, 4px);
  box-shadow: 0 2px 4px 0 rgba(51, 51, 51, 0.08);
  background: transparent;
  overflow: hidden;
  background: transparent;
  border: 1px solid var(--g2g-token-color-neutral-border, #e2e8f0);
  box-shadow: none;
}
body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .quantity-selector-group .btn-plus, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .form-control-quantity-selector .btn-plus, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-plus {
  order: 1;
  width: 32px;
  height: 32px;
  min-width: 0;
  padding: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--g2g-token-color-action-buy);
  border: 1px solid transparent;
  border-radius: var(--g2g-border-radius, 4px) var(--g2g-border-radius, 4px) 0 0;
  color: #fff;
  transition: background 0.15s ease;
  line-height: 1;
}
body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .quantity-selector-group .btn-plus .icon, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .form-control-quantity-selector .btn-plus .icon, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-plus .icon {
  width: 16px;
  height: 16px;
  line-height: 1;
  color: #fff;
}
body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .quantity-selector-group .btn-plus .icon svg, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .quantity-selector-group .btn-plus > svg, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .quantity-selector-group .btn-plus .icon-plus, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .form-control-quantity-selector .btn-plus .icon svg, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .form-control-quantity-selector .btn-plus > svg, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .form-control-quantity-selector .btn-plus .icon-plus, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-plus .icon svg, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-plus > svg, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-plus .icon-plus {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  color: #fff;
  fill: #fff;
  pointer-events: none;
}
body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .quantity-selector-group .btn-plus:hover, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .form-control-quantity-selector .btn-plus:hover, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-plus:hover {
  background: var(--g2g-token-color-action-buy-hover);
}
body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .quantity-selector-group input.form-control.quantity-selector-group-input, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .form-control-quantity-selector input.form-control.quantity-selector-group-input, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) input.form-control.quantity-selector-group-input {
  order: 2;
  width: 32px;
  min-width: 32px;
  max-width: 32px;
  height: 32px;
  padding: 0;
  box-sizing: border-box;
  background: #fff;
  color: #333;
  border: none;
  border-radius: 0;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  -moz-appearance: textfield;
  appearance: textfield;
}
body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .quantity-selector-group input.form-control.quantity-selector-group-input::-webkit-outer-spin-button, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .quantity-selector-group input.form-control.quantity-selector-group-input::-webkit-inner-spin-button, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .form-control-quantity-selector input.form-control.quantity-selector-group-input::-webkit-outer-spin-button, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .form-control-quantity-selector input.form-control.quantity-selector-group-input::-webkit-inner-spin-button, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) input.form-control.quantity-selector-group-input::-webkit-outer-spin-button, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) input.form-control.quantity-selector-group-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .quantity-selector-group input.form-control.quantity-selector-group-input:focus, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .form-control-quantity-selector input.form-control.quantity-selector-group-input:focus, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) input.form-control.quantity-selector-group-input:focus {
  box-shadow: none;
  outline: none;
}
body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .quantity-selector-group .btn-minus, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .form-control-quantity-selector .btn-minus, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-minus {
  order: 3;
  width: 32px;
  height: 32px;
  min-width: 0;
  padding: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid transparent;
  border-radius: 0 0 var(--g2g-border-radius, 4px) var(--g2g-border-radius, 4px);
  color: #888;
  transition: background 0.15s ease, color 0.15s ease;
  line-height: 1;
}
body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .quantity-selector-group .btn-minus .icon, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .form-control-quantity-selector .btn-minus .icon, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-minus .icon {
  width: 16px;
  height: 16px;
  line-height: 1;
  color: #888;
}
body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .quantity-selector-group .btn-minus .icon svg, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .quantity-selector-group .btn-minus > svg, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .quantity-selector-group .btn-minus .icon-minus, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .form-control-quantity-selector .btn-minus .icon svg, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .form-control-quantity-selector .btn-minus > svg, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .form-control-quantity-selector .btn-minus .icon-minus, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-minus .icon svg, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-minus > svg, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-minus .icon-minus {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  color: #888;
  fill: #888;
  pointer-events: none;
}
body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .quantity-selector-group .btn-minus:hover, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .form-control-quantity-selector .btn-minus:hover, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-minus:hover {
  background: #f5f5f5;
  color: #555;
}
body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .quantity-selector-group .btn-plus, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .form-control-quantity-selector .btn-plus, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-plus {
  background: #fff;
  color: #2b3136;
}
body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .quantity-selector-group .btn-plus .icon, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .quantity-selector-group .btn-plus .icon svg, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .quantity-selector-group .btn-plus > svg, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .quantity-selector-group .btn-plus .icon-plus, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .form-control-quantity-selector .btn-plus .icon, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .form-control-quantity-selector .btn-plus .icon svg, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .form-control-quantity-selector .btn-plus > svg, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .form-control-quantity-selector .btn-plus .icon-plus, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-plus .icon, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-plus .icon svg, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-plus > svg, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-plus .icon-plus {
  color: #2b3136;
  fill: #2b3136;
}
body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .quantity-selector-group .btn-plus:hover, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .form-control-quantity-selector .btn-plus:hover, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-plus:hover {
  background: #f5f5f5;
}
body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .btn-minus .icon, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .btn-minus .icon svg, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity .btn-minus > svg {
  color: #2b3136;
  fill: #2b3136;
}
body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-quantity {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1200px) {
  body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-product .line-item-remove {
    display: none;
  }
  body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-promotion .line-item-total-price, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-promotion .line-item-price {
    white-space: nowrap;
    min-width: 100px;
  }
  body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-promotion .line-item-remove {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
  }
  body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-promotion .line-item-remove .line-item-remove-button, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-promotion .line-item-remove button.btn, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-promotion .line-item-remove .btn {
    width: 32px;
    height: 32px;
    min-width: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--g2g-token-color-neutral-text-muted, #6b7280);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease, color 0.15s ease;
  }
  body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-promotion .line-item-remove .line-item-remove-button svg, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-promotion .line-item-remove .line-item-remove-button i, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-promotion .line-item-remove .line-item-remove-button .icon, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-promotion .line-item-remove button.btn svg, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-promotion .line-item-remove button.btn i, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-promotion .line-item-remove button.btn .icon, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-promotion .line-item-remove .btn svg, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-promotion .line-item-remove .btn i, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-promotion .line-item-remove .btn .icon {
    width: 16px;
    height: 16px;
  }
  body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-promotion .line-item-remove .line-item-remove-button:hover, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-promotion .line-item-remove .line-item-remove-button:focus-visible, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-promotion .line-item-remove button.btn:hover, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-promotion .line-item-remove button.btn:focus-visible, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-promotion .line-item-remove .btn:hover, body.dreamtheme.is-act-cartpage .checkout .checkout-main .line-item.line-item-promotion .line-item-remove .btn:focus-visible {
    background: rgba(0, 0, 0, 0.05);
    color: var(--g2g-token-color-action-buy);
    outline: none;
  }
}
body.dreamtheme.is-act-cartpage .checkout-main .cart-main-header, body.dreamtheme.is-act-confirmpage .checkout-main .cart-main-header {
  margin-bottom: 0;
}
body.dreamtheme.is-act-cartpage .checkout-main .cart-main-header-item-counter, body.dreamtheme.is-act-confirmpage .checkout-main .cart-main-header-item-counter {
  margin-bottom: 12px;
}
body.dreamtheme.is-act-cartpage .checkout-main .g2g-free-shipping-bar.g2g-fsb--cart-page, body.dreamtheme.is-act-confirmpage .checkout-main .g2g-free-shipping-bar.g2g-fsb--cart-page {
  margin-top: 4px;
}
body.dreamtheme.is-act-cartpage .checkout-aside .checkout-aside-summary, body.dreamtheme.is-act-cartpage .checkout-aside .checkout-aside-summary.checkout-aside-summary, body.dreamtheme.is-act-cartpage .checkout-aside-summary.checkout-aside-summary, body.dreamtheme.is-act-confirmpage .checkout-aside .checkout-aside-summary, body.dreamtheme.is-act-confirmpage .checkout-aside .checkout-aside-summary.checkout-aside-summary, body.dreamtheme.is-act-confirmpage .checkout-aside-summary.checkout-aside-summary {
  background-color: #f8f8f8;
  border-radius: var(--g2g-border-radius, 8px);
}
body.dreamtheme.is-act-cartpage .checkout-aside .checkout-aside-summary-total.checkout-aside-summary-total, body.dreamtheme.is-act-cartpage .checkout-aside dt.checkout-aside-summary-total.checkout-aside-summary-total, body.dreamtheme.is-act-cartpage .checkout-aside dd.checkout-aside-summary-total.checkout-aside-summary-total, body.dreamtheme.is-act-confirmpage .checkout-aside .checkout-aside-summary-total.checkout-aside-summary-total, body.dreamtheme.is-act-confirmpage .checkout-aside dt.checkout-aside-summary-total.checkout-aside-summary-total, body.dreamtheme.is-act-confirmpage .checkout-aside dd.checkout-aside-summary-total.checkout-aside-summary-total {
  background: transparent;
  background-color: transparent;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 12px;
  margin-top: 4px;
}
body.dreamtheme.is-act-cartpage .checkout-aside .input-group.checkout-aside-add-code, body.dreamtheme.is-act-cartpage .checkout-aside-summary .input-group.checkout-aside-add-code, body.dreamtheme.is-act-confirmpage .checkout-aside .input-group.checkout-aside-add-code, body.dreamtheme.is-act-confirmpage .checkout-aside-summary .input-group.checkout-aside-add-code {
  background: #f8f8f8;
}
body.dreamtheme.is-act-cartpage .checkout-main .card.checkout-product-table, body.dreamtheme.is-act-cartpage .checkout-main .checkout-product-table.checkout-product-table, body.dreamtheme.is-act-confirmpage .checkout-main .card.checkout-product-table, body.dreamtheme.is-act-confirmpage .checkout-main .checkout-product-table.checkout-product-table {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--g2g-border-radius, 8px);
  box-shadow: none;
}
body.dreamtheme.is-act-cartpage .checkout-main .cart-table-header, body.dreamtheme.is-act-confirmpage .checkout-main .cart-table-header {
  background: transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(0, 0, 0, 0.55);
  font-weight: 600;
}
body.dreamtheme.is-act-cartpage .checkout-main .card-body .line-item, body.dreamtheme.is-act-cartpage .checkout-main .card-body .line-item.line-item-product, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-promotion, body.dreamtheme.is-act-confirmpage .checkout-main .card-body .line-item, body.dreamtheme.is-act-confirmpage .checkout-main .card-body .line-item.line-item-product, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-promotion {
  border-bottom-color: rgba(0, 0, 0, 0.08);
}
body.dreamtheme.is-act-cartpage .address-main-header, body.dreamtheme.is-act-cartpage .cart-main-header, body.dreamtheme.is-act-cartpage h1, body.dreamtheme.is-act-cartpage .h1, body.dreamtheme.is-act-checkoutregisterpage .address-main-header, body.dreamtheme.is-act-checkoutregisterpage .cart-main-header, body.dreamtheme.is-act-checkoutregisterpage h1, body.dreamtheme.is-act-checkoutregisterpage .h1, body.dreamtheme.is-act-confirmpage .address-main-header, body.dreamtheme.is-act-confirmpage .cart-main-header, body.dreamtheme.is-act-confirmpage h1, body.dreamtheme.is-act-confirmpage .h1, body.dreamtheme.is-act-finishpage .address-main-header, body.dreamtheme.is-act-finishpage .cart-main-header, body.dreamtheme.is-act-finishpage h1, body.dreamtheme.is-act-finishpage .h1, body.dreamtheme.is-ctl-checkout .address-main-header, body.dreamtheme.is-ctl-checkout .cart-main-header, body.dreamtheme.is-ctl-checkout h1, body.dreamtheme.is-ctl-checkout .h1, body.dreamtheme.is-ctl-register .address-main-header, body.dreamtheme.is-ctl-register .cart-main-header, body.dreamtheme.is-ctl-register h1, body.dreamtheme.is-ctl-register .h1, body.dreamtheme.is-ctl-address .address-main-header, body.dreamtheme.is-ctl-address .cart-main-header, body.dreamtheme.is-ctl-address h1, body.dreamtheme.is-ctl-address .h1 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
}
body.dreamtheme.is-act-cartpage .card-title, body.dreamtheme.is-act-cartpage .checkout-aside-summary-header, body.dreamtheme.is-act-cartpage .checkout-aside-product-header, body.dreamtheme.is-act-cartpage h2, body.dreamtheme.is-act-cartpage .h2, body.dreamtheme.is-act-checkoutregisterpage .card-title, body.dreamtheme.is-act-checkoutregisterpage .checkout-aside-summary-header, body.dreamtheme.is-act-checkoutregisterpage .checkout-aside-product-header, body.dreamtheme.is-act-checkoutregisterpage h2, body.dreamtheme.is-act-checkoutregisterpage .h2, body.dreamtheme.is-act-confirmpage .card-title, body.dreamtheme.is-act-confirmpage .checkout-aside-summary-header, body.dreamtheme.is-act-confirmpage .checkout-aside-product-header, body.dreamtheme.is-act-confirmpage h2, body.dreamtheme.is-act-confirmpage .h2, body.dreamtheme.is-act-finishpage .card-title, body.dreamtheme.is-act-finishpage .checkout-aside-summary-header, body.dreamtheme.is-act-finishpage .checkout-aside-product-header, body.dreamtheme.is-act-finishpage h2, body.dreamtheme.is-act-finishpage .h2, body.dreamtheme.is-ctl-checkout .card-title, body.dreamtheme.is-ctl-checkout .checkout-aside-summary-header, body.dreamtheme.is-ctl-checkout .checkout-aside-product-header, body.dreamtheme.is-ctl-checkout h2, body.dreamtheme.is-ctl-checkout .h2, body.dreamtheme.is-ctl-register .card-title, body.dreamtheme.is-ctl-register .checkout-aside-summary-header, body.dreamtheme.is-ctl-register .checkout-aside-product-header, body.dreamtheme.is-ctl-register h2, body.dreamtheme.is-ctl-register .h2, body.dreamtheme.is-ctl-address .card-title, body.dreamtheme.is-ctl-address .checkout-aside-summary-header, body.dreamtheme.is-ctl-address .checkout-aside-product-header, body.dreamtheme.is-ctl-address h2, body.dreamtheme.is-ctl-address .h2 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}
body.dreamtheme.is-act-cartpage .login-form-description, body.dreamtheme.is-act-cartpage h3, body.dreamtheme.is-act-cartpage .h3, body.dreamtheme.is-act-checkoutregisterpage .login-form-description, body.dreamtheme.is-act-checkoutregisterpage h3, body.dreamtheme.is-act-checkoutregisterpage .h3, body.dreamtheme.is-act-confirmpage .login-form-description, body.dreamtheme.is-act-confirmpage h3, body.dreamtheme.is-act-confirmpage .h3, body.dreamtheme.is-act-finishpage .login-form-description, body.dreamtheme.is-act-finishpage h3, body.dreamtheme.is-act-finishpage .h3, body.dreamtheme.is-ctl-checkout .login-form-description, body.dreamtheme.is-ctl-checkout h3, body.dreamtheme.is-ctl-checkout .h3, body.dreamtheme.is-ctl-register .login-form-description, body.dreamtheme.is-ctl-register h3, body.dreamtheme.is-ctl-register .h3, body.dreamtheme.is-ctl-address .login-form-description, body.dreamtheme.is-ctl-address h3, body.dreamtheme.is-ctl-address .h3 {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}
.checkout-aside-products .checkout-aside-product-header.mb-4.mb-4 {
  margin-bottom: 12px;
}
.checkout-aside-products .line-item.line-item-product {
  position: relative;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.checkout-aside-products .line-item.line-item-product:last-child {
  border-bottom: 0;
}
.checkout-aside-products .line-item.line-item-product .line-item-img-container, .checkout-aside-products .line-item.line-item-product .line-item-img-link {
  width: 64px;
  height: 64px;
  max-width: 64px;
  flex: 0 0 64px;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  border-radius: var(--g2g-border-radius, 4px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.checkout-aside-products .line-item.line-item-product .line-item-img-container img, .checkout-aside-products .line-item.line-item-product .line-item-img-container .line-item-img, .checkout-aside-products .line-item.line-item-product .line-item-img-link img, .checkout-aside-products .line-item.line-item-product .line-item-img-link .line-item-img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border: 0;
  padding: 0;
}
.checkout-aside-products .line-item.line-item-product .line-item-quantity-display, .checkout-aside-products .line-item.line-item-product .line-item-label-quantity {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.55);
  font-weight: 400;
  font-size: 12px;
}
.checkout-aside-products .line-item.line-item-product .line-item-label.line-item-label, .checkout-aside-products .line-item.line-item-product .line-item-label a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}
.checkout-aside-products .line-item.line-item-product .line-item-product-number, .checkout-aside-products .line-item.line-item-product .line-item-delivery-date, .checkout-aside-products .line-item.line-item-product .line-item-ordernumber {
  font-size: 11px;
  color: rgba(0, 0, 0, 0.55);
  line-height: 1.35;
  margin: 1px 0;
}
.checkout-aside-products .line-item.line-item-product .line-item-total-price, .checkout-aside-products .line-item.line-item-product .line-item-price {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
}
.checkout-aside-products .line-item.line-item-product .line-item-unit-price.line-item-unit-price {
  font-size: 11px;
  font-style: normal;
  color: rgba(0, 0, 0, 0.45);
  text-align: left;
}
.checkout-aside-products .line-item.line-item-product .product-wishlist-action, .checkout-aside-products .line-item.line-item-product .line-item-wishlist {
  display: none;
}
.checkout-aside-products .line-item.line-item-product .line-item-quantity {
  display: none;
}
.checkout-aside-products .line-item.line-item-product .line-item-total-price ~ .line-item-total-price, .checkout-aside-products .line-item.line-item-product .line-item-unit-price ~ .line-item-unit-price, .checkout-aside-products .line-item.line-item-product > .line-item-row > .line-item-total-price, .checkout-aside-products .line-item.line-item-product > .line-item-row > .line-item-price, .checkout-aside-products .line-item.line-item-product > .line-item-row > .line-item-unit-price, .checkout-aside-products .line-item.line-item-product > .line-item-row > .line-item-tax-price {
  display: none;
}
.checkout-aside-products .line-item.line-item-product .line-item-remove {
  position: absolute;
  top: 8px;
  right: 0;
  z-index: 2;
}
.checkout-aside-products .line-item.line-item-product .line-item-remove .line-item-remove-button, .checkout-aside-products .line-item.line-item-product .line-item-remove .btn {
  width: 28px;
  height: 28px;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(0, 0, 0, 0.45);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, color 0.15s ease;
}
.checkout-aside-products .line-item.line-item-product .line-item-remove .line-item-remove-button svg, .checkout-aside-products .line-item.line-item-product .line-item-remove .line-item-remove-button i, .checkout-aside-products .line-item.line-item-product .line-item-remove .line-item-remove-button .icon, .checkout-aside-products .line-item.line-item-product .line-item-remove .btn svg, .checkout-aside-products .line-item.line-item-product .line-item-remove .btn i, .checkout-aside-products .line-item.line-item-product .line-item-remove .btn .icon {
  width: 14px;
  height: 14px;
}
.checkout-aside-products .line-item.line-item-product .line-item-remove .line-item-remove-button:hover, .checkout-aside-products .line-item.line-item-product .line-item-remove .line-item-remove-button:focus-visible, .checkout-aside-products .line-item.line-item-product .line-item-remove .btn:hover, .checkout-aside-products .line-item.line-item-product .line-item-remove .btn:focus-visible {
  background: rgba(0, 0, 0, 0.05);
  color: var(--g2g-token-color-action-buy);
}
body.dreamtheme .header-minimal-contact strong > a[href^="tel:"] {
  display: block;
}
body.dreamtheme .header-minimal-contact small, body.dreamtheme .header-minimal-contact .small {
  display: block;
  margin-top: 2px;
}
body.dreamtheme .checkout-aside-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
body.dreamtheme .checkout-aside-container .checkout-aside-products {
  order: 1;
  padding-bottom: 0;
}
body.dreamtheme .checkout-aside-container .checkout-aside-products .checkout-aside-product-list {
  margin-bottom: 0;
}
body.dreamtheme .checkout-aside-container .checkout-aside-summary {
  order: 2;
}
body.dreamtheme.is-act-cartpage .checkout-aside-container .checkout-aside-summary {
  order: 1;
}
body.dreamtheme.is-act-cartpage .checkout-aside-container .checkout-aside-action.d-grid {
  order: 2;
}
body.dreamtheme.is-act-cartpage .checkout-aside-container .checkout-aside-action:not(.d-grid) {
  order: 3;
}
body.dreamtheme.is-act-cartpage form[action*="add-by-number"] .input-group {
  background: var(--g2g-token-color-neutral-surface, #f8fafc);
  border-radius: var(--g2g-border-radius, 8px);
  overflow: hidden;
}
body.dreamtheme.is-act-cartpage form[action*="add-by-number"] .input-group .form-control, body.dreamtheme.is-act-cartpage form[action*="add-by-number"] .input-group input[type="text"] {
  background: transparent;
  border: 0;
}
body.dreamtheme.is-act-cartpage form[action*="add-by-number"] .input-group .btn, body.dreamtheme.is-act-cartpage form[action*="add-by-number"] .add-product-button {
  background: transparent;
  border: 0;
  border-radius: 0;
}
body.dreamtheme.is-act-cartpage .line-item-details .product-wishlist, body.dreamtheme.is-act-cartpage .line-item-details .hide2gether-offcanvas-items {
  display: none;
}
body.dreamtheme.is-act-cartpage .line-item-details .line-item-product-number.hide2gether-offcanvas-items {
  display: block;
}
body.dreamtheme.is-act-cartpage .checkout-aside-container {
  gap: 6px;
}
body.dreamtheme.dreamtheme.is-act-finishpage .checkout-main .line-item-img-container, body.dreamtheme.dreamtheme.is-act-finishpage .checkout-main .line-item-img-link, body.dreamtheme.dreamtheme.is-act-finishpage .checkout-main .line-item-img {
  width: 96px;
  height: 96px;
  aspect-ratio: 1;
  border: 0;
  border-radius: var(--g2g-border-radius, 8px);
  overflow: hidden;
}
body.dreamtheme.dreamtheme.is-act-finishpage .checkout-main .line-item-img-container img, body.dreamtheme.dreamtheme.is-act-finishpage .checkout-main .line-item-img-link img, body.dreamtheme.dreamtheme.is-act-finishpage .checkout-main img.line-item-img {
  width: 100%;
  height: 100%;
  max-height: 96px;
  object-fit: cover;
  border-radius: var(--g2g-border-radius, 8px);
}
body.dreamtheme.dreamtheme.is-act-finishpage .g2g-finish-banner {
  background: var(--g2g-token-color-brand-primary, #64748b);
  border: 0;
  border-radius: var(--g2g-border-radius, 8px);
}
body.dreamtheme.dreamtheme.is-act-finishpage .g2g-finish-banner .g2g-finish-banner__body {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 24px;
  text-align: left;
}
body.dreamtheme.dreamtheme.is-act-finishpage .g2g-finish-banner__icon {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.dreamtheme.dreamtheme.is-act-finishpage .g2g-finish-banner__icon::before {
  content: "";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--g2g-token-color-brand-primary-text, #64748b);
  font-size: 24px;
  line-height: 1;
}
body.dreamtheme.dreamtheme.is-act-finishpage .g2g-finish-banner__title {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
}
body.dreamtheme.dreamtheme.is-act-finishpage .g2g-finish-banner__sub {
  color: #ffe9da;
  font-size: 16px;
  margin-top: 3px;
}
body.dreamtheme.dreamtheme.is-act-finishpage .g2g-finish-banner__ordernr {
  color: #fff;
  font-weight: 700;
}
body.dreamtheme.dreamtheme.is-act-finishpage .checkout-main [class~="row"].finish-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin: 24px 0 0;
}
body.dreamtheme.dreamtheme.is-act-finishpage .checkout-main .finish-info > .finish-address, body.dreamtheme.dreamtheme.is-act-finishpage .checkout-main .finish-info > .finish-address > [class~="row"], body.dreamtheme.dreamtheme.is-act-finishpage .checkout-main .finish-info > .finish-address > [class~="row"] > [class~="col-sm-6"], body.dreamtheme.dreamtheme.is-act-finishpage .checkout-main .finish-info > .finish-order-details {
  display: contents;
}
body.dreamtheme.dreamtheme.is-act-finishpage .checkout-main .finish-info .card.checkout-card {
  margin: 0;
  height: 100%;
}
body.dreamtheme.dreamtheme.is-act-finishpage .checkout-main .finish-info .card .card-title {
  display: flex;
  align-items: center;
  gap: 10px;
}
body.dreamtheme.dreamtheme.is-act-finishpage .checkout-main .finish-info .card .card-title::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 15px;
  color: var(--g2g-token-color-brand-primary-text, #64748b);
  flex: none;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background: #fdeee4;
  border-radius: 50%;
}
body.dreamtheme.dreamtheme.is-act-finishpage .checkout-main .finish-address [class~="row"] [class~="col-sm-6"]:first-child .card .card-title::before {
  content: "";
}
body.dreamtheme.dreamtheme.is-act-finishpage .checkout-main .finish-address [class~="row"] [class~="col-sm-6"]:last-child .card .card-title::before {
  content: "";
}
body.dreamtheme.dreamtheme.is-act-finishpage .checkout-main .finish-order-details .card .card-title::before {
  content: "";
}
body.dreamtheme.dreamtheme.is-act-finishpage .checkout-aside {
  padding-top: 0;
}
body.dreamtheme.dreamtheme.is-act-finishpage .checkout-aside .checkout-aside-summary {
  border-top: 3px solid var(--g2g-token-color-brand-primary, #64748b);
  border-radius: var(--g2g-border-radius, 8px);
  overflow: hidden;
}
body.dreamtheme.dreamtheme.is-act-finishpage .checkout-main .checkout-product-table {
  margin-top: 24px;
}
body.dreamtheme.dreamtheme.is-act-finishpage .checkout-product-table .line-item-total-price, body.dreamtheme.dreamtheme.is-act-finishpage .checkout-product-table .line-item-price, body.dreamtheme.dreamtheme.is-act-finishpage .checkout-product-table .line-item-unit-price {
  white-space: nowrap;
}
body.dreamtheme.dreamtheme.is-act-finishpage .checkout-main .finish-info .card.checkout-card, body.dreamtheme.dreamtheme.is-act-finishpage .checkout-main .checkout-product-table {
  background-color: #f5f5f5;
  border: 0;
  border-top: 3px solid var(--g2g-token-color-brand-primary, #64748b);
}
body.dreamtheme.dreamtheme.is-act-finishpage .checkout-aside .checkout-aside-summary {
  background-color: #f5f5f5;
}
body.dreamtheme.dreamtheme.is-act-finishpage .checkout-main .finish-info .card .card-title {
  border-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 14px;
}
body.dreamtheme.dreamtheme.is-act-finishpage .checkout-product-table .card-title.cart-table-header {
  border-bottom: 0;
}
body.dreamtheme.dreamtheme.is-act-finishpage .checkout-product-table .line-item.line-item-product, body.dreamtheme.dreamtheme.is-act-finishpage .checkout-product-table .line-item.line-item-promotion {
  border-top: 0;
  border-bottom: 0;
}
body.dreamtheme.dreamtheme.is-act-finishpage .checkout-aside-summary-label, body.dreamtheme.dreamtheme.is-act-finishpage .checkout-aside-summary-value {
  background-color: transparent;
  border-color: rgba(121, 132, 144, 0.3);
}
body.dreamtheme.dreamtheme.is-act-finishpage .checkout-product-table .line-item-info > .line-item-row {
  flex-wrap: nowrap;
  align-items: center;
  position: relative;
}
body.dreamtheme.dreamtheme.is-act-finishpage .checkout-product-table .line-item-details {
  min-width: 0;
}
body.dreamtheme.dreamtheme.is-act-finishpage .checkout-product-table .product-name {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
body.dreamtheme.dreamtheme.is-act-finishpage .checkout-product-table .line-item-product-number {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
body.dreamtheme.dreamtheme.is-act-finishpage .checkout-product-table .product-wishlist-btn-content {
  display: none;
}
body.dreamtheme.dreamtheme.is-act-finishpage .checkout-product-table .product-wishlist {
  position: absolute;
  top: 10px;
  left: 71px;
  margin: 0;
  padding: 0;
  z-index: 3;
  line-height: 0;
}
body.dreamtheme.dreamtheme.is-act-finishpage .checkout-product-table .product-wishlist button {
  padding: 0;
  border: 0;
  background: transparent;
  line-height: 0;
}
body.dreamtheme.dreamtheme.is-act-finishpage .g2g-section-head {
  color: var(--g2g-token-color-brand-primary-text, #64748b);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  margin: 26px 0 12px;
}
body.dreamtheme header.header-minimal .header-minimal-logo .header-logo-main {
  margin-left: 20px;
}
body.dreamtheme header.header-minimal .header-minimal-logo {
  position: relative;
  top: 4px;
}
body.dreamtheme header.header-minimal .header-minimal-contact {
  text-align: right;
  margin-right: 20px;
}
body.dreamtheme.dreamtheme.is-act-cartpage .checkout-main .line-item-img-container, body.dreamtheme.dreamtheme.is-act-cartpage .checkout-main .line-item-img, body.dreamtheme.dreamtheme.is-act-cartpage .checkout-main .line-item-img-link {
  width: 96px;
  height: 96px;
  aspect-ratio: 1;
  border: 0;
  border-radius: var(--g2g-border-radius, 8px);
  overflow: hidden;
}
body.dreamtheme.dreamtheme.is-act-cartpage .checkout-main .line-item-img-container.line-item-img-container img, body.dreamtheme.dreamtheme.is-act-cartpage .checkout-main .line-item-img.line-item-img img, body.dreamtheme.dreamtheme.is-act-cartpage .checkout-main .line-item-img-link.line-item-img-link img {
  width: 100%;
  height: 100%;
  max-height: 96px;
  object-fit: cover;
}
body.dreamtheme.dreamtheme.is-act-cartpage .checkout-main .g2g-free-shipping-bar.g2g-fsb--cart-page {
  margin-top: 24px;
}
body.dreamtheme.dreamtheme.is-act-cartpage .checkout-aside-action:not(.d-grid) .input-group .btn, body.dreamtheme.dreamtheme.is-act-cartpage .checkout-aside-action:not(.d-grid) .input-group button, body.dreamtheme.dreamtheme.is-act-cartpage form[action*="add-by-number"] .input-group .btn, body.dreamtheme.dreamtheme.is-act-cartpage form[action*="add-by-number"] .input-group button {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
body.dreamtheme.dreamtheme.is-act-cartpage .checkout-aside-action:not(.d-grid) .input-group .icon, body.dreamtheme.dreamtheme.is-act-cartpage form[action*="add-by-number"] .input-group .icon {
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
body.dreamtheme.dreamtheme.is-act-cartpage .checkout-aside-action:not(.d-grid) .input-group .icon svg, body.dreamtheme.dreamtheme.is-act-cartpage form[action*="add-by-number"] .input-group .icon svg {
  position: static;
  top: 0;
  vertical-align: middle;
}
body.dreamtheme.dreamtheme.is-act-cartpage .line-item .line-item-tax-price, body.dreamtheme.dreamtheme.is-act-cartpage .line-item .line-item-tax-price-label, body.dreamtheme.dreamtheme.is-act-cartpage .line-item .line-item-tax-price-value, body.dreamtheme.dreamtheme.is-act-confirmpage .line-item .line-item-tax-price, body.dreamtheme.dreamtheme.is-act-confirmpage .line-item .line-item-tax-price-label, body.dreamtheme.dreamtheme.is-act-confirmpage .line-item .line-item-tax-price-value {
  display: none;
  visibility: hidden;
}
body.dreamtheme.dreamtheme.is-act-confirmpage .confirm-product .cart-table-header .cart-header-info, body.dreamtheme.dreamtheme.is-act-confirmpage .confirm-product .card-body .line-item .line-item-row .line-item-info {
  flex: 1 1 0;
  max-width: none;
  width: auto;
}
body.dreamtheme.is-act-cartpage .g2g-free-shipping-bar.g2g-fsb--cart-page, body.dreamtheme.is-act-confirmpage .g2g-free-shipping-bar {
  border: 0;
  border-radius: var(--g2g-border-radius, 8px);
}
.cart-add-promotion > label, .cart-add-promotion .mb-1 {
  display: none;
}
.checkout-aside .input-group.checkout-aside-add-code, .checkout-aside-summary .input-group.checkout-aside-add-code {
  border: none;
  background: #e2e8f0;
  border-radius: var(--g2g-border-radius, 8px);
  overflow: hidden;
  align-items: stretch;
  padding: 0;
}
.checkout-aside .input-group.checkout-aside-add-code > .form-control, .checkout-aside .input-group.checkout-aside-add-code > input[type="text"], .checkout-aside-summary .input-group.checkout-aside-add-code > .form-control, .checkout-aside-summary .input-group.checkout-aside-add-code > input[type="text"] {
  border: none;
  background: transparent;
  padding: 10px 14px;
  font-size: 14px;
  box-shadow: none;
  outline: none;
  border-radius: 0;
  color: #0f172a;
}
.checkout-aside .input-group.checkout-aside-add-code > .form-control:focus, .checkout-aside .input-group.checkout-aside-add-code > input[type="text"]:focus, .checkout-aside-summary .input-group.checkout-aside-add-code > .form-control:focus, .checkout-aside-summary .input-group.checkout-aside-add-code > input[type="text"]:focus {
  border: none;
  box-shadow: none;
  outline: none;
  background: transparent;
}
.checkout-aside .input-group.checkout-aside-add-code > .form-control::placeholder, .checkout-aside .input-group.checkout-aside-add-code > input[type="text"]::placeholder, .checkout-aside-summary .input-group.checkout-aside-add-code > .form-control::placeholder, .checkout-aside-summary .input-group.checkout-aside-add-code > input[type="text"]::placeholder {
  color: #585858;
  font-size: 14px;
}
.checkout-aside .input-group.checkout-aside-add-code > .btn, .checkout-aside .input-group.checkout-aside-add-code > button[type="submit"], .checkout-aside .input-group.checkout-aside-add-code .checkout-aside-add-promotion-button, .checkout-aside-summary .input-group.checkout-aside-add-code > .btn, .checkout-aside-summary .input-group.checkout-aside-add-code > button[type="submit"], .checkout-aside-summary .input-group.checkout-aside-add-code .checkout-aside-add-promotion-button {
  background: transparent;
  border: none;
  color: #0f172a;
  border-radius: 0;
  padding: 8px 16px;
  min-width: 44px;
  position: relative;
  transition: background 0.15s ease, color 0.15s ease;
}
.checkout-aside .input-group.checkout-aside-add-code > .btn .icon, .checkout-aside .input-group.checkout-aside-add-code > .btn svg, .checkout-aside .input-group.checkout-aside-add-code > .btn .icon-checkmark, .checkout-aside .input-group.checkout-aside-add-code > button[type="submit"] .icon, .checkout-aside .input-group.checkout-aside-add-code > button[type="submit"] svg, .checkout-aside .input-group.checkout-aside-add-code > button[type="submit"] .icon-checkmark, .checkout-aside .input-group.checkout-aside-add-code .checkout-aside-add-promotion-button .icon, .checkout-aside .input-group.checkout-aside-add-code .checkout-aside-add-promotion-button svg, .checkout-aside .input-group.checkout-aside-add-code .checkout-aside-add-promotion-button .icon-checkmark, .checkout-aside-summary .input-group.checkout-aside-add-code > .btn .icon, .checkout-aside-summary .input-group.checkout-aside-add-code > .btn svg, .checkout-aside-summary .input-group.checkout-aside-add-code > .btn .icon-checkmark, .checkout-aside-summary .input-group.checkout-aside-add-code > button[type="submit"] .icon, .checkout-aside-summary .input-group.checkout-aside-add-code > button[type="submit"] svg, .checkout-aside-summary .input-group.checkout-aside-add-code > button[type="submit"] .icon-checkmark, .checkout-aside-summary .input-group.checkout-aside-add-code .checkout-aside-add-promotion-button .icon, .checkout-aside-summary .input-group.checkout-aside-add-code .checkout-aside-add-promotion-button svg, .checkout-aside-summary .input-group.checkout-aside-add-code .checkout-aside-add-promotion-button .icon-checkmark {
  display: inline-block;
}
.checkout-aside .input-group.checkout-aside-add-code > .btn::after, .checkout-aside .input-group.checkout-aside-add-code > button[type="submit"]::after, .checkout-aside .input-group.checkout-aside-add-code .checkout-aside-add-promotion-button::after, .checkout-aside-summary .input-group.checkout-aside-add-code > .btn::after, .checkout-aside-summary .input-group.checkout-aside-add-code > button[type="submit"]::after, .checkout-aside-summary .input-group.checkout-aside-add-code .checkout-aside-add-promotion-button::after {
  content: none;
}
.checkout-aside .input-group.checkout-aside-add-code > .btn:hover, .checkout-aside .input-group.checkout-aside-add-code > button[type="submit"]:hover, .checkout-aside .input-group.checkout-aside-add-code .checkout-aside-add-promotion-button:hover, .checkout-aside-summary .input-group.checkout-aside-add-code > .btn:hover, .checkout-aside-summary .input-group.checkout-aside-add-code > button[type="submit"]:hover, .checkout-aside-summary .input-group.checkout-aside-add-code .checkout-aside-add-promotion-button:hover {
  background: rgba(0, 0, 0, 0.06);
}
body.dreamtheme .cart-offcanvas .input-group:has(.offcanvas-cart-promotion-button) {
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  align-items: stretch;
}
body.dreamtheme .cart-offcanvas .input-group:has(.offcanvas-cart-promotion-button) .form-control {
  border: none;
  background: transparent;
  padding: 8px 0;
  font-size: 15px;
  box-shadow: none;
  outline: none;
}
body.dreamtheme .cart-offcanvas .input-group:has(.offcanvas-cart-promotion-button) .form-control:focus {
  border: none;
  box-shadow: none;
  outline: none;
  background: transparent;
}
body.dreamtheme .cart-offcanvas .input-group:has(.offcanvas-cart-promotion-button) .form-control::placeholder {
  color: #888;
  font-size: 15px;
}
body.dreamtheme .cart-offcanvas .input-group:has(.offcanvas-cart-promotion-button) .offcanvas-cart-promotion-button {
  background: transparent;
  border: 0;
  color: var(--g2g-token-color-neutral-text-default, #1a1a1a);
  border-radius: 0;
  padding: 8px 4px;
  font-size: 14px;
  font-weight: 600;
  min-width: auto;
  text-decoration: underline;
  text-underline-offset: 3px;
  position: relative;
  transition: color 0.15s ease;
}
body.dreamtheme .cart-offcanvas .input-group:has(.offcanvas-cart-promotion-button) .offcanvas-cart-promotion-button:hover, body.dreamtheme .cart-offcanvas .input-group:has(.offcanvas-cart-promotion-button) .offcanvas-cart-promotion-button:focus {
  background: transparent;
  color: var(--g2g-token-color-action-buy, #16a34a);
}
body.dreamtheme .cart-offcanvas .line-item.is-offcanvas .line-item-quantity {
  display: block;
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
}
body.dreamtheme .cart-offcanvas .line-item.is-offcanvas .line-item-quantity .line-item-quantity-row {
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
}
body.dreamtheme .cart-offcanvas .line-item.is-offcanvas .line-item-quantity .line-item-quantity-row, body.dreamtheme .cart-offcanvas .line-item.is-offcanvas .line-item-quantity .line-item-quantity-select-wrapper, body.dreamtheme .cart-offcanvas .line-item.is-offcanvas .line-item-quantity .line-item-quantity-container, body.dreamtheme .cart-offcanvas .line-item.is-offcanvas .line-item-quantity fieldset {
  margin-top: 0;
  min-height: 94px;
  align-items: center;
}
body.dreamtheme .cart-offcanvas .line-item.is-offcanvas .line-item-quantity .input-group {
  align-items: center;
  min-height: 94px;
}
body.dreamtheme .cart-offcanvas .line-item.is-offcanvas .line-item-quantity .quantity-selector-group {
  display: flex;
  flex-direction: column;
  width: 32px;
  height: 94px;
  margin: 0 auto;
  border-radius: var(--g2g-border-radius, 4px);
  box-shadow: 0 2px 4px 0 rgba(51, 51, 51, 0.08);
  background: transparent;
  overflow: hidden;
}
body.dreamtheme .cart-offcanvas .line-item.is-offcanvas .line-item-quantity .quantity-selector-group .btn-plus {
  order: 1;
  width: 32px;
  height: 32px;
  min-width: 0;
  padding: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--g2g-token-color-action-buy);
  border: 1px solid transparent;
  border-radius: var(--g2g-border-radius, 4px) var(--g2g-border-radius, 4px) 0 0;
  color: #fff;
  transition: background 0.15s ease;
  line-height: 1;
}
body.dreamtheme .cart-offcanvas .line-item.is-offcanvas .line-item-quantity .quantity-selector-group .btn-plus .icon {
  width: 16px;
  height: 16px;
  line-height: 1;
  color: #fff;
}
body.dreamtheme .cart-offcanvas .line-item.is-offcanvas .line-item-quantity .quantity-selector-group .btn-plus .icon svg, body.dreamtheme .cart-offcanvas .line-item.is-offcanvas .line-item-quantity .quantity-selector-group .btn-plus > svg, body.dreamtheme .cart-offcanvas .line-item.is-offcanvas .line-item-quantity .quantity-selector-group .btn-plus .icon-plus {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  color: #fff;
  fill: #fff;
  pointer-events: none;
}
body.dreamtheme .cart-offcanvas .line-item.is-offcanvas .line-item-quantity .quantity-selector-group .btn-plus:hover {
  background: var(--g2g-token-color-action-buy-hover);
}
body.dreamtheme .cart-offcanvas .line-item.is-offcanvas .line-item-quantity .quantity-selector-group input.form-control.quantity-selector-group-input {
  order: 2;
  width: 32px;
  min-width: 32px;
  max-width: 32px;
  height: 32px;
  padding: 0;
  box-sizing: border-box;
  background: #fff;
  color: #333;
  border: none;
  border-radius: 0;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  -moz-appearance: textfield;
  appearance: textfield;
}
body.dreamtheme .cart-offcanvas .line-item.is-offcanvas .line-item-quantity .quantity-selector-group input.form-control.quantity-selector-group-input::-webkit-outer-spin-button, body.dreamtheme .cart-offcanvas .line-item.is-offcanvas .line-item-quantity .quantity-selector-group input.form-control.quantity-selector-group-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
body.dreamtheme .cart-offcanvas .line-item.is-offcanvas .line-item-quantity .quantity-selector-group input.form-control.quantity-selector-group-input:focus {
  box-shadow: none;
  outline: none;
}
body.dreamtheme .cart-offcanvas .line-item.is-offcanvas .line-item-quantity .quantity-selector-group .btn-minus {
  order: 3;
  width: 32px;
  height: 32px;
  min-width: 0;
  padding: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid transparent;
  border-radius: 0 0 var(--g2g-border-radius, 4px) var(--g2g-border-radius, 4px);
  color: #888;
  transition: background 0.15s ease, color 0.15s ease;
  line-height: 1;
}
body.dreamtheme .cart-offcanvas .line-item.is-offcanvas .line-item-quantity .quantity-selector-group .btn-minus .icon {
  width: 16px;
  height: 16px;
  line-height: 1;
  color: #888;
}
body.dreamtheme .cart-offcanvas .line-item.is-offcanvas .line-item-quantity .quantity-selector-group .btn-minus .icon svg, body.dreamtheme .cart-offcanvas .line-item.is-offcanvas .line-item-quantity .quantity-selector-group .btn-minus > svg, body.dreamtheme .cart-offcanvas .line-item.is-offcanvas .line-item-quantity .quantity-selector-group .btn-minus .icon-minus {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  color: #888;
  fill: #888;
  pointer-events: none;
}
body.dreamtheme .cart-offcanvas .line-item.is-offcanvas .line-item-quantity .quantity-selector-group .btn-minus:hover {
  background: #f5f5f5;
  color: #555;
}
body.dreamtheme .cart-offcanvas .line-item.is-offcanvas .line-item-remove {
  display: none;
}
body.dreamtheme .cart-offcanvas .line-item.is-offcanvas .product-quantity.offcanvas-quantity2gether {
  display: none;
}
body.dreamtheme .cart-offcanvas .line-item.is-offcanvas > .line-item-row {
  flex-wrap: nowrap;
  align-items: center;
  --bs-gutter-x: 0;
  min-height: 110px;
}
body.dreamtheme .cart-offcanvas .line-item.is-offcanvas > .line-item-row > .line-item-info {
  width: auto;
  max-width: none;
  flex: 1 1 auto;
}
body.dreamtheme .cart-offcanvas .line-item.is-offcanvas > .line-item-row > .line-item-quantity {
  width: auto;
  max-width: none;
  flex: 0 0 auto;
  margin-left: auto;
  margin-right: 16px;
  align-self: center;
}
@media (max-width: 991.98px) {
  body.dreamtheme .g2g-trust-desktop-only {
    display: none;
  }
}
@media (max-width: 1199.98px) {
  body.dreamtheme.is-act-cartpage .checkout-container > .checkout-main, body.dreamtheme.is-act-cartpage .checkout-container > .checkout-aside, body.dreamtheme.is-act-confirmpage .checkout-container > .checkout-main, body.dreamtheme.is-act-confirmpage .checkout-container > .checkout-aside {
    padding-left: 12px;
    padding-right: 12px;
  }
  body.dreamtheme.is-act-cartpage .checkout-main .card, body.dreamtheme.is-act-cartpage .checkout-main .checkout-product-table, body.dreamtheme.is-act-confirmpage .checkout-main .card, body.dreamtheme.is-act-confirmpage .checkout-main .checkout-product-table {
    border-radius: var(--g2g-border-radius, 8px);
  }
  body.dreamtheme.is-act-cartpage .checkout-main .card-body, body.dreamtheme.is-act-confirmpage .checkout-main .card-body {
    padding: 0;
  }
  body.dreamtheme.is-act-cartpage .cart-free-shipping-banner, body.dreamtheme.is-act-cartpage .cart-free-shipping-notice, body.dreamtheme.is-act-cartpage .progress-cart-free-shipping, body.dreamtheme.is-act-confirmpage .cart-free-shipping-banner, body.dreamtheme.is-act-confirmpage .cart-free-shipping-notice, body.dreamtheme.is-act-confirmpage .progress-cart-free-shipping {
    padding: 6px 12px;
    margin: 8px 0;
    font-size: 12px;
    line-height: 1.3;
    border-radius: var(--g2g-border-radius, 6px);
  }
  body.dreamtheme.is-act-cartpage .checkout-main .cart-table-header, body.dreamtheme.is-act-cartpage .cart-header, body.dreamtheme.is-act-confirmpage .checkout-main .cart-table-header, body.dreamtheme.is-act-confirmpage .cart-header {
    display: none;
  }
  body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product, body.dreamtheme.is-act-cartpage .card-body .line-item-product, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product, body.dreamtheme.is-act-confirmpage .card-body .line-item-product {
    position: relative;
    margin: 0;
    padding: 16px 140px 16px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
  body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product:last-child, body.dreamtheme.is-act-cartpage .card-body .line-item-product:last-child, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product:last-child, body.dreamtheme.is-act-confirmpage .card-body .line-item-product:last-child {
    border-bottom: 0;
  }
  body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product > [class~="row"].line-item-row, body.dreamtheme.is-act-cartpage .card-body .line-item-product > [class~="row"].line-item-row, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product > [class~="row"].line-item-row, body.dreamtheme.is-act-confirmpage .card-body .line-item-product > [class~="row"].line-item-row {
    --bs-gutter-x: 12px;
    --bs-gutter-y: 0;
    align-items: flex-start;
  }
  body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product > [class~="row"].line-item-row > .line-item-info, body.dreamtheme.is-act-cartpage .card-body .line-item-product > [class~="row"].line-item-row > .line-item-info, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product > [class~="row"].line-item-row > .line-item-info, body.dreamtheme.is-act-confirmpage .card-body .line-item-product > [class~="row"].line-item-row > .line-item-info {
    flex: 1 1 100%;
    max-width: 100%;
    width: 100%;
  }
  body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-info > [class~="row"].line-item-row, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-info > [class~="row"].line-item-row, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-info > [class~="row"].line-item-row, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-info > [class~="row"].line-item-row {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
  }
  body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-info .line-item-img-container, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-info .line-item-img-link, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-info .line-item-img-container, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-info .line-item-img-link, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-info .line-item-img-container, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-info .line-item-img-link, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-info .line-item-img-container, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-info .line-item-img-link {
    flex: 0 0 96px;
    width: 96px;
    max-width: 96px;
  }
  body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-info .line-item-details, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-info .line-item-details, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-info .line-item-details, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-info .line-item-details {
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 96px);
    width: auto;
  }
  body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-img-container, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-img-link, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-img-container, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-img-link, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-img-container, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-img-link, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-img-container, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-img-link {
    width: 96px;
    max-width: 96px;
    height: 96px;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
    overflow: hidden;
    border-radius: var(--g2g-border-radius, 4px);
    flex: 0 0 96px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-img-container img, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-img-container .line-item-img, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-img-link img, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-img-link .line-item-img, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-img-container img, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-img-container .line-item-img, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-img-link img, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-img-link .line-item-img, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-img-container img, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-img-container .line-item-img, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-img-link img, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-img-link .line-item-img, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-img-container img, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-img-container .line-item-img, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-img-link img, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-img-link .line-item-img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: var(--g2g-border-radius, 4px);
    padding: 0;
    border: 0;
  }
  body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-details, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-details, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-details, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-details {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
    width: auto;
    padding-left: 16px;
  }
  body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-details .line-item-details-container .line-item-label, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-details .line-item-details-container .line-item-label, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-details .line-item-details-container .line-item-label, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-details .line-item-details-container .line-item-label {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #0f172a;
  }
  body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-details .line-item-details-container .line-item-product-number, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-details .line-item-details-container .line-item-delivery-date, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-details .line-item-details-container .line-item-ordernumber, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-details .line-item-details-container .line-item-product-number, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-details .line-item-details-container .line-item-delivery-date, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-details .line-item-details-container .line-item-ordernumber, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-details .line-item-details-container .line-item-product-number, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-details .line-item-details-container .line-item-delivery-date, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-details .line-item-details-container .line-item-ordernumber, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-details .line-item-details-container .line-item-product-number, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-details .line-item-details-container .line-item-delivery-date, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-details .line-item-details-container .line-item-ordernumber {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.55);
    line-height: 1.45;
    margin: 0;
  }
  body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-details .line-item-details-container .product-wishlist-action, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-details .line-item-details-container .line-item-wishlist, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-details .line-item-details-container .product-wishlist-action, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-details .line-item-details-container .line-item-wishlist, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-details .line-item-details-container .product-wishlist-action, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-details .line-item-details-container .line-item-wishlist, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-details .line-item-details-container .product-wishlist-action, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-details .line-item-details-container .line-item-wishlist {
    font-size: 12px;
    margin-top: 6px;
    opacity: 0.55;
  }
  body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-remove, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-remove, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-remove, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-remove {
    display: none;
  }
  body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-quantity, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-quantity, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-quantity, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-quantity {
    position: absolute;
    top: 16px;
    right: 20px;
    left: auto;
    width: auto;
    margin: 0;
    padding: 0;
    z-index: 2;
  }
  body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-quantity .line-item-quantity-label, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-quantity > label, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-quantity .col-form-label, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-quantity .line-item-quantity-label, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-quantity > label, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-quantity .col-form-label, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-quantity .line-item-quantity-label, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-quantity > label, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-quantity .col-form-label, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-quantity .line-item-quantity-label, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-quantity > label, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-quantity .col-form-label {
    display: none;
  }
  body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-quantity .quantity-selector-group, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-quantity .form-control-quantity-selector, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)), body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-quantity .quantity-selector-group, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-quantity .form-control-quantity-selector, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)), body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-quantity .quantity-selector-group, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-quantity .form-control-quantity-selector, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)), body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-quantity .quantity-selector-group, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-quantity .form-control-quantity-selector, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) {
    display: flex;
    flex-direction: column;
    width: 32px;
    height: 94px;
    margin: 0 auto;
    border-radius: var(--g2g-border-radius, 4px);
    box-shadow: 0 2px 4px 0 rgba(51, 51, 51, 0.08);
    background: transparent;
    overflow: hidden;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
  body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-quantity .quantity-selector-group .btn-plus, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-quantity .form-control-quantity-selector .btn-plus, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-plus, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-quantity .quantity-selector-group .btn-plus, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-quantity .form-control-quantity-selector .btn-plus, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-plus, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-quantity .quantity-selector-group .btn-plus, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-quantity .form-control-quantity-selector .btn-plus, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-plus, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-quantity .quantity-selector-group .btn-plus, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-quantity .form-control-quantity-selector .btn-plus, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-plus {
    order: 1;
    width: 32px;
    height: 32px;
    min-width: 0;
    padding: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--g2g-token-color-action-buy);
    border: 1px solid transparent;
    border-radius: var(--g2g-border-radius, 4px) var(--g2g-border-radius, 4px) 0 0;
    color: #fff;
    transition: background 0.15s ease;
    line-height: 1;
  }
  body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-quantity .quantity-selector-group .btn-plus .icon, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-quantity .form-control-quantity-selector .btn-plus .icon, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-plus .icon, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-quantity .quantity-selector-group .btn-plus .icon, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-quantity .form-control-quantity-selector .btn-plus .icon, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-plus .icon, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-quantity .quantity-selector-group .btn-plus .icon, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-quantity .form-control-quantity-selector .btn-plus .icon, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-plus .icon, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-quantity .quantity-selector-group .btn-plus .icon, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-quantity .form-control-quantity-selector .btn-plus .icon, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-plus .icon {
    width: 16px;
    height: 16px;
    line-height: 1;
    color: #fff;
  }
  body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-quantity .quantity-selector-group .btn-plus .icon svg, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-quantity .quantity-selector-group .btn-plus > svg, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-quantity .quantity-selector-group .btn-plus .icon-plus, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-quantity .form-control-quantity-selector .btn-plus .icon svg, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-quantity .form-control-quantity-selector .btn-plus > svg, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-quantity .form-control-quantity-selector .btn-plus .icon-plus, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-plus .icon svg, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-plus > svg, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-plus .icon-plus, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-quantity .quantity-selector-group .btn-plus .icon svg, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-quantity .quantity-selector-group .btn-plus > svg, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-quantity .quantity-selector-group .btn-plus .icon-plus, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-quantity .form-control-quantity-selector .btn-plus .icon svg, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-quantity .form-control-quantity-selector .btn-plus > svg, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-quantity .form-control-quantity-selector .btn-plus .icon-plus, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-plus .icon svg, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-plus > svg, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-plus .icon-plus, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-quantity .quantity-selector-group .btn-plus .icon svg, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-quantity .quantity-selector-group .btn-plus > svg, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-quantity .quantity-selector-group .btn-plus .icon-plus, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-quantity .form-control-quantity-selector .btn-plus .icon svg, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-quantity .form-control-quantity-selector .btn-plus > svg, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-quantity .form-control-quantity-selector .btn-plus .icon-plus, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-plus .icon svg, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-plus > svg, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-plus .icon-plus, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-quantity .quantity-selector-group .btn-plus .icon svg, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-quantity .quantity-selector-group .btn-plus > svg, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-quantity .quantity-selector-group .btn-plus .icon-plus, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-quantity .form-control-quantity-selector .btn-plus .icon svg, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-quantity .form-control-quantity-selector .btn-plus > svg, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-quantity .form-control-quantity-selector .btn-plus .icon-plus, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-plus .icon svg, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-plus > svg, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-plus .icon-plus {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    color: #fff;
    fill: #fff;
    pointer-events: none;
  }
  body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-quantity .quantity-selector-group .btn-plus:hover, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-quantity .form-control-quantity-selector .btn-plus:hover, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-plus:hover, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-quantity .quantity-selector-group .btn-plus:hover, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-quantity .form-control-quantity-selector .btn-plus:hover, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-plus:hover, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-quantity .quantity-selector-group .btn-plus:hover, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-quantity .form-control-quantity-selector .btn-plus:hover, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-plus:hover, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-quantity .quantity-selector-group .btn-plus:hover, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-quantity .form-control-quantity-selector .btn-plus:hover, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-plus:hover {
    background: var(--g2g-token-color-action-buy-hover);
  }
  body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-quantity .quantity-selector-group input.form-control.quantity-selector-group-input, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-quantity .form-control-quantity-selector input.form-control.quantity-selector-group-input, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) input.form-control.quantity-selector-group-input, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-quantity .quantity-selector-group input.form-control.quantity-selector-group-input, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-quantity .form-control-quantity-selector input.form-control.quantity-selector-group-input, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) input.form-control.quantity-selector-group-input, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-quantity .quantity-selector-group input.form-control.quantity-selector-group-input, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-quantity .form-control-quantity-selector input.form-control.quantity-selector-group-input, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) input.form-control.quantity-selector-group-input, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-quantity .quantity-selector-group input.form-control.quantity-selector-group-input, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-quantity .form-control-quantity-selector input.form-control.quantity-selector-group-input, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) input.form-control.quantity-selector-group-input {
    order: 2;
    width: 32px;
    min-width: 32px;
    max-width: 32px;
    height: 32px;
    padding: 0;
    box-sizing: border-box;
    background: #fff;
    color: #333;
    border: none;
    border-radius: 0;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    -moz-appearance: textfield;
    appearance: textfield;
  }
  body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-quantity .quantity-selector-group input.form-control.quantity-selector-group-input::-webkit-outer-spin-button, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-quantity .quantity-selector-group input.form-control.quantity-selector-group-input::-webkit-inner-spin-button, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-quantity .form-control-quantity-selector input.form-control.quantity-selector-group-input::-webkit-outer-spin-button, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-quantity .form-control-quantity-selector input.form-control.quantity-selector-group-input::-webkit-inner-spin-button, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) input.form-control.quantity-selector-group-input::-webkit-outer-spin-button, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) input.form-control.quantity-selector-group-input::-webkit-inner-spin-button, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-quantity .quantity-selector-group input.form-control.quantity-selector-group-input::-webkit-outer-spin-button, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-quantity .quantity-selector-group input.form-control.quantity-selector-group-input::-webkit-inner-spin-button, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-quantity .form-control-quantity-selector input.form-control.quantity-selector-group-input::-webkit-outer-spin-button, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-quantity .form-control-quantity-selector input.form-control.quantity-selector-group-input::-webkit-inner-spin-button, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) input.form-control.quantity-selector-group-input::-webkit-outer-spin-button, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) input.form-control.quantity-selector-group-input::-webkit-inner-spin-button, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-quantity .quantity-selector-group input.form-control.quantity-selector-group-input::-webkit-outer-spin-button, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-quantity .quantity-selector-group input.form-control.quantity-selector-group-input::-webkit-inner-spin-button, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-quantity .form-control-quantity-selector input.form-control.quantity-selector-group-input::-webkit-outer-spin-button, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-quantity .form-control-quantity-selector input.form-control.quantity-selector-group-input::-webkit-inner-spin-button, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) input.form-control.quantity-selector-group-input::-webkit-outer-spin-button, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) input.form-control.quantity-selector-group-input::-webkit-inner-spin-button, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-quantity .quantity-selector-group input.form-control.quantity-selector-group-input::-webkit-outer-spin-button, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-quantity .quantity-selector-group input.form-control.quantity-selector-group-input::-webkit-inner-spin-button, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-quantity .form-control-quantity-selector input.form-control.quantity-selector-group-input::-webkit-outer-spin-button, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-quantity .form-control-quantity-selector input.form-control.quantity-selector-group-input::-webkit-inner-spin-button, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) input.form-control.quantity-selector-group-input::-webkit-outer-spin-button, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) input.form-control.quantity-selector-group-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-quantity .quantity-selector-group input.form-control.quantity-selector-group-input:focus, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-quantity .form-control-quantity-selector input.form-control.quantity-selector-group-input:focus, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) input.form-control.quantity-selector-group-input:focus, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-quantity .quantity-selector-group input.form-control.quantity-selector-group-input:focus, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-quantity .form-control-quantity-selector input.form-control.quantity-selector-group-input:focus, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) input.form-control.quantity-selector-group-input:focus, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-quantity .quantity-selector-group input.form-control.quantity-selector-group-input:focus, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-quantity .form-control-quantity-selector input.form-control.quantity-selector-group-input:focus, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) input.form-control.quantity-selector-group-input:focus, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-quantity .quantity-selector-group input.form-control.quantity-selector-group-input:focus, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-quantity .form-control-quantity-selector input.form-control.quantity-selector-group-input:focus, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) input.form-control.quantity-selector-group-input:focus {
    box-shadow: none;
    outline: none;
  }
  body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-quantity .quantity-selector-group .btn-minus, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-quantity .form-control-quantity-selector .btn-minus, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-minus, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-quantity .quantity-selector-group .btn-minus, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-quantity .form-control-quantity-selector .btn-minus, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-minus, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-quantity .quantity-selector-group .btn-minus, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-quantity .form-control-quantity-selector .btn-minus, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-minus, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-quantity .quantity-selector-group .btn-minus, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-quantity .form-control-quantity-selector .btn-minus, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-minus {
    order: 3;
    width: 32px;
    height: 32px;
    min-width: 0;
    padding: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid transparent;
    border-radius: 0 0 var(--g2g-border-radius, 4px) var(--g2g-border-radius, 4px);
    color: #888;
    transition: background 0.15s ease, color 0.15s ease;
    line-height: 1;
  }
  body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-quantity .quantity-selector-group .btn-minus .icon, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-quantity .form-control-quantity-selector .btn-minus .icon, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-minus .icon, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-quantity .quantity-selector-group .btn-minus .icon, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-quantity .form-control-quantity-selector .btn-minus .icon, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-minus .icon, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-quantity .quantity-selector-group .btn-minus .icon, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-quantity .form-control-quantity-selector .btn-minus .icon, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-minus .icon, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-quantity .quantity-selector-group .btn-minus .icon, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-quantity .form-control-quantity-selector .btn-minus .icon, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-minus .icon {
    width: 16px;
    height: 16px;
    line-height: 1;
    color: #888;
  }
  body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-quantity .quantity-selector-group .btn-minus .icon svg, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-quantity .quantity-selector-group .btn-minus > svg, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-quantity .quantity-selector-group .btn-minus .icon-minus, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-quantity .form-control-quantity-selector .btn-minus .icon svg, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-quantity .form-control-quantity-selector .btn-minus > svg, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-quantity .form-control-quantity-selector .btn-minus .icon-minus, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-minus .icon svg, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-minus > svg, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-minus .icon-minus, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-quantity .quantity-selector-group .btn-minus .icon svg, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-quantity .quantity-selector-group .btn-minus > svg, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-quantity .quantity-selector-group .btn-minus .icon-minus, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-quantity .form-control-quantity-selector .btn-minus .icon svg, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-quantity .form-control-quantity-selector .btn-minus > svg, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-quantity .form-control-quantity-selector .btn-minus .icon-minus, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-minus .icon svg, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-minus > svg, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-minus .icon-minus, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-quantity .quantity-selector-group .btn-minus .icon svg, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-quantity .quantity-selector-group .btn-minus > svg, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-quantity .quantity-selector-group .btn-minus .icon-minus, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-quantity .form-control-quantity-selector .btn-minus .icon svg, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-quantity .form-control-quantity-selector .btn-minus > svg, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-quantity .form-control-quantity-selector .btn-minus .icon-minus, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-minus .icon svg, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-minus > svg, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-minus .icon-minus, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-quantity .quantity-selector-group .btn-minus .icon svg, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-quantity .quantity-selector-group .btn-minus > svg, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-quantity .quantity-selector-group .btn-minus .icon-minus, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-quantity .form-control-quantity-selector .btn-minus .icon svg, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-quantity .form-control-quantity-selector .btn-minus > svg, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-quantity .form-control-quantity-selector .btn-minus .icon-minus, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-minus .icon svg, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-minus > svg, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-minus .icon-minus {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    color: #888;
    fill: #888;
    pointer-events: none;
  }
  body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-quantity .quantity-selector-group .btn-minus:hover, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-quantity .form-control-quantity-selector .btn-minus:hover, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-minus:hover, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-quantity .quantity-selector-group .btn-minus:hover, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-quantity .form-control-quantity-selector .btn-minus:hover, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-minus:hover, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-quantity .quantity-selector-group .btn-minus:hover, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-quantity .form-control-quantity-selector .btn-minus:hover, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-minus:hover, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-quantity .quantity-selector-group .btn-minus:hover, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-quantity .form-control-quantity-selector .btn-minus:hover, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-quantity .input-group:not(:has(.offcanvas-cart-promotion-button)) .btn-minus:hover {
    background: #f5f5f5;
    color: #555;
  }
  body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-tax-price.line-item-tax-price, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-tax-price-label.line-item-tax-price-label, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-tax-price-value.line-item-tax-price-value, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-tax-price.line-item-tax-price, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-tax-price-label.line-item-tax-price-label, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-tax-price-value.line-item-tax-price-value, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-tax-price.line-item-tax-price, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-tax-price-label.line-item-tax-price-label, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-tax-price-value.line-item-tax-price-value, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-tax-price.line-item-tax-price, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-tax-price-label.line-item-tax-price-label, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-tax-price-value.line-item-tax-price-value {
    display: none;
    visibility: hidden;
    position: absolute;
    left: -9999px;
  }
  body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-unit-price.line-item-unit-price.line-item-unit-price, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-unit-price.line-item-unit-price.line-item-unit-price, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-unit-price.line-item-unit-price.line-item-unit-price, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-unit-price.line-item-unit-price.line-item-unit-price {
    position: absolute;
    bottom: 16px;
    left: 140px;
    top: auto;
    right: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: baseline;
    gap: 4px;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    margin: 0;
    padding: 0;
    font-size: 13px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.55);
    text-align: left;
    white-space: nowrap;
    line-height: 1.2;
  }
  body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-unit-price.line-item-unit-price.line-item-unit-price .line-item-unit-price-label, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-unit-price.line-item-unit-price.line-item-unit-price .line-item-unit-price-value, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-unit-price.line-item-unit-price.line-item-unit-price > strong, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-unit-price.line-item-unit-price.line-item-unit-price > .line-item-unit-price-text, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-unit-price.line-item-unit-price.line-item-unit-price .line-item-unit-price-label, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-unit-price.line-item-unit-price.line-item-unit-price .line-item-unit-price-value, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-unit-price.line-item-unit-price.line-item-unit-price > strong, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-unit-price.line-item-unit-price.line-item-unit-price > .line-item-unit-price-text, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-unit-price.line-item-unit-price.line-item-unit-price .line-item-unit-price-label, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-unit-price.line-item-unit-price.line-item-unit-price .line-item-unit-price-value, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-unit-price.line-item-unit-price.line-item-unit-price > strong, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-unit-price.line-item-unit-price.line-item-unit-price > .line-item-unit-price-text, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-unit-price.line-item-unit-price.line-item-unit-price .line-item-unit-price-label, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-unit-price.line-item-unit-price.line-item-unit-price .line-item-unit-price-value, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-unit-price.line-item-unit-price.line-item-unit-price > strong, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-unit-price.line-item-unit-price.line-item-unit-price > .line-item-unit-price-text {
    display: inline-block;
    margin: 0;
    padding: 0;
    font-weight: 400;
    color: inherit;
    text-indent: 0;
    line-height: inherit;
  }
  body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-unit-price.line-item-unit-price.line-item-unit-price .line-item-unit-price-value-descriptor, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-unit-price.line-item-unit-price.line-item-unit-price .line-item-unit-price-value-descriptor, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-unit-price.line-item-unit-price.line-item-unit-price .line-item-unit-price-value-descriptor, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-unit-price.line-item-unit-price.line-item-unit-price .line-item-unit-price-value-descriptor {
    display: none;
  }
  body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-unit-price-label, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-unit-price-label, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-unit-price-label, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-unit-price-label {
    display: inline;
    font-weight: 400;
    color: inherit;
  }
  body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-total-price.line-item-price, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-total-price.line-item-price, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-total-price.line-item-price, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-total-price.line-item-price {
    position: absolute;
    top: 50px;
    right: 64px;
    left: auto;
    display: block;
    width: auto;
    max-width: none;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    padding: 0;
    text-align: right;
    white-space: nowrap;
    line-height: 1;
    width: auto;
    flex: 0 0 auto;
  }
  body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-total-price.line-item-price .line-item-total-price-label, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-total-price.line-item-price .line-item-price-label, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-total-price.line-item-price > strong + br, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-total-price.line-item-price > strong:first-child, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-total-price.line-item-price .line-item-total-price-label, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-total-price.line-item-price .line-item-price-label, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-total-price.line-item-price > strong + br, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-total-price.line-item-price > strong:first-child, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-total-price.line-item-price .line-item-total-price-label, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-total-price.line-item-price .line-item-price-label, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-total-price.line-item-price > strong + br, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-total-price.line-item-price > strong:first-child, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-total-price.line-item-price .line-item-total-price-label, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-total-price.line-item-price .line-item-price-label, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-total-price.line-item-price > strong + br, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-total-price.line-item-price > strong:first-child {
    display: none;
  }
  body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .product-wishlist-action, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-wishlist, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-product .line-item-details .product-wishlist-action, body.dreamtheme.is-act-cartpage .card-body .line-item-product .product-wishlist-action, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-wishlist, body.dreamtheme.is-act-cartpage .card-body .line-item-product .line-item-details .product-wishlist-action, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .product-wishlist-action, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-wishlist, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-product .line-item-details .product-wishlist-action, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .product-wishlist-action, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-wishlist, body.dreamtheme.is-act-confirmpage .card-body .line-item-product .line-item-details .product-wishlist-action {
    display: none;
  }
  body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-promotion, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-promotion {
    position: relative;
    margin: 0;
    padding: 12px 140px 12px 20px;
    border-bottom: 1px solid var(--g2g-token-color-neutral-border);
  }
  body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-promotion > [class~="row"].line-item-row, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-promotion > [class~="row"].line-item-row {
    --bs-gutter-x: 12px;
    --bs-gutter-y: 0;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: row;
  }
  body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-promotion .line-item-details, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-promotion .line-item-details {
    flex: 1 1 auto;
    max-width: 100%;
    padding-left: 16px;
    width: auto;
  }
  body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-promotion .line-item-img-container, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-promotion .line-item-img-link, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-promotion .line-item-img-container, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-promotion .line-item-img-link {
    width: 96px;
    height: 96px;
    max-width: 96px;
    flex: 0 0 96px;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
    border-radius: var(--g2g-border-radius, 4px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-promotion .line-item-img-container img, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-promotion .line-item-img-container .line-item-img, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-promotion .line-item-img-container svg, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-promotion .line-item-img-container i, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-promotion .line-item-img-link img, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-promotion .line-item-img-link .line-item-img, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-promotion .line-item-img-link svg, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-promotion .line-item-img-link i, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-promotion .line-item-img-container img, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-promotion .line-item-img-container .line-item-img, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-promotion .line-item-img-container svg, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-promotion .line-item-img-container i, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-promotion .line-item-img-link img, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-promotion .line-item-img-link .line-item-img, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-promotion .line-item-img-link svg, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-promotion .line-item-img-link i {
    width: 36px;
    height: 36px;
    max-width: 36px;
    max-height: 36px;
    display: block;
  }
  body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-promotion .line-item-img-container .line-item-img.line-item-icon, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-promotion .line-item-img-container .line-item-icon, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-promotion .line-item-img-link .line-item-img.line-item-icon, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-promotion .line-item-img-link .line-item-icon, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-promotion .line-item-img-container .line-item-img.line-item-icon, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-promotion .line-item-img-container .line-item-icon, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-promotion .line-item-img-link .line-item-img.line-item-icon, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-promotion .line-item-img-link .line-item-icon {
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
    width: auto;
    height: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-promotion .line-item-details .line-item-label, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-promotion .line-item-label, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-promotion .line-item-details .line-item-label, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-promotion .line-item-label {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
  }
  body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-promotion .line-item-total-price-label, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-promotion .line-item-total-price > strong:first-child, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-promotion .line-item-total-price-label, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-promotion .line-item-total-price > strong:first-child {
    display: none;
  }
  body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-promotion .line-item-total-price.line-item-total-price.g2g-promo-inline-price, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-promotion .line-item-details .line-item-total-price.line-item-total-price, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-promotion .line-item-details-container .line-item-total-price.line-item-total-price, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-promotion .line-item-total-price.line-item-total-price.g2g-promo-inline-price, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-promotion .line-item-details .line-item-total-price.line-item-total-price, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-promotion .line-item-details-container .line-item-total-price.line-item-total-price {
    position: absolute;
    top: 50%;
    right: 64px;
    left: auto;
    transform: translateY(-50%);
    display: block;
    width: auto;
    max-width: none;
    flex: 0 0 auto;
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    text-align: right;
    white-space: nowrap;
    line-height: 1;
  }
  body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-promotion .line-item-quantity, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-promotion .line-item-quantity {
    display: none;
  }
  body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-promotion .line-item-remove, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-promotion .line-item-remove {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    margin: 0;
    padding: 0;
    width: auto;
  }
  body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-promotion .line-item-remove .line-item-remove-button, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-promotion .line-item-remove button.btn, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-promotion .line-item-remove .btn, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-promotion .line-item-remove .line-item-remove-button, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-promotion .line-item-remove button.btn, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-promotion .line-item-remove .btn {
    width: 28px;
    height: 28px;
    min-width: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--g2g-token-color-neutral-text-muted, #6b7280);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-promotion .line-item-remove .line-item-remove-button svg, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-promotion .line-item-remove .line-item-remove-button i, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-promotion .line-item-remove button.btn svg, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-promotion .line-item-remove button.btn i, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-promotion .line-item-remove .btn svg, body.dreamtheme.is-act-cartpage .card-body .line-item.line-item-promotion .line-item-remove .btn i, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-promotion .line-item-remove .line-item-remove-button svg, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-promotion .line-item-remove .line-item-remove-button i, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-promotion .line-item-remove button.btn svg, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-promotion .line-item-remove button.btn i, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-promotion .line-item-remove .btn svg, body.dreamtheme.is-act-confirmpage .card-body .line-item.line-item-promotion .line-item-remove .btn i {
    width: 16px;
    height: 16px;
  }
  body.dreamtheme.is-act-cartpage .header-main, body.dreamtheme.is-act-confirmpage .header-main {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  }
  body.dreamtheme.is-act-cartpage .checkout-main .line-item, body.dreamtheme.is-act-confirmpage .checkout-main .line-item {
    scroll-margin-top: 120px;
  }
}
body.dreamtheme.is-act-cartpage .input-group:has(#addProductInput), body.dreamtheme.is-act-cartpage .input-group:has(.add-product-button), body.dreamtheme.is-act-cartpage .input-group:has(#addProductByNumberInput), body.dreamtheme.is-act-confirmpage .input-group:has(#addProductInput), body.dreamtheme.is-act-confirmpage .input-group:has(.add-product-button), body.dreamtheme.is-act-confirmpage .input-group:has(#addProductByNumberInput) {
  border-radius: var(--g2g-border-radius, 8px);
  overflow: hidden;
}
body.dreamtheme.is-act-cartpage .input-group:has(#addProductInput) > .form-control, body.dreamtheme.is-act-cartpage .input-group:has(#addProductInput) > input[type="text"], body.dreamtheme.is-act-cartpage .input-group:has(.add-product-button) > .form-control, body.dreamtheme.is-act-cartpage .input-group:has(.add-product-button) > input[type="text"], body.dreamtheme.is-act-cartpage .input-group:has(#addProductByNumberInput) > .form-control, body.dreamtheme.is-act-cartpage .input-group:has(#addProductByNumberInput) > input[type="text"], body.dreamtheme.is-act-confirmpage .input-group:has(#addProductInput) > .form-control, body.dreamtheme.is-act-confirmpage .input-group:has(#addProductInput) > input[type="text"], body.dreamtheme.is-act-confirmpage .input-group:has(.add-product-button) > .form-control, body.dreamtheme.is-act-confirmpage .input-group:has(.add-product-button) > input[type="text"], body.dreamtheme.is-act-confirmpage .input-group:has(#addProductByNumberInput) > .form-control, body.dreamtheme.is-act-confirmpage .input-group:has(#addProductByNumberInput) > input[type="text"] {
  border-radius: var(--g2g-border-radius, 8px) 0 0 var(--g2g-border-radius, 8px);
}
body.dreamtheme.is-act-cartpage .input-group:has(#addProductInput) > .btn, body.dreamtheme.is-act-cartpage .input-group:has(#addProductInput) > button[type="submit"], body.dreamtheme.is-act-cartpage .input-group:has(.add-product-button) > .btn, body.dreamtheme.is-act-cartpage .input-group:has(.add-product-button) > button[type="submit"], body.dreamtheme.is-act-cartpage .input-group:has(#addProductByNumberInput) > .btn, body.dreamtheme.is-act-cartpage .input-group:has(#addProductByNumberInput) > button[type="submit"], body.dreamtheme.is-act-confirmpage .input-group:has(#addProductInput) > .btn, body.dreamtheme.is-act-confirmpage .input-group:has(#addProductInput) > button[type="submit"], body.dreamtheme.is-act-confirmpage .input-group:has(.add-product-button) > .btn, body.dreamtheme.is-act-confirmpage .input-group:has(.add-product-button) > button[type="submit"], body.dreamtheme.is-act-confirmpage .input-group:has(#addProductByNumberInput) > .btn, body.dreamtheme.is-act-confirmpage .input-group:has(#addProductByNumberInput) > button[type="submit"] {
  border-radius: 0 var(--g2g-border-radius, 8px) var(--g2g-border-radius, 8px) 0;
}
@media (max-width: 991.98px) {
  body.g2g-has-mobile-bottombar.g2g-has-mobile-bottombar .g2g-mobile-header-usps.g2g-mobile-header-usps {
    display: flex;
  }
}
body.dreamtheme.dreamtheme.is-act-finishpage .checkout-product-table .product-wishlist {
  display: none;
}
body.dreamtheme.dreamtheme.is-act-finishpage .checkout > .g2g-finish-banner {
  width: auto;
  margin: 30px 20px 4px;
}
body.dreamtheme.dreamtheme.is-act-finishpage .g2g-finish-banner .g2g-finish-banner__body {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
body.dreamtheme.dreamtheme.is-act-finishpage .g2g-finish-banner__text {
  flex: 1 1 auto;
  min-width: 0;
}
body.dreamtheme.dreamtheme.is-act-finishpage .g2g-finish-banner__sub strong {
  color: #fff;
}
body.dreamtheme.dreamtheme.is-act-finishpage .g2g-finish-banner__actions {
  display: flex;
  gap: 10px;
  flex: none;
}
body.dreamtheme.dreamtheme.is-act-finishpage .g2g-finish-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  padding: 9px 16px;
  border-radius: var(--g2g-border-radius, 8px);
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
}
body.dreamtheme.dreamtheme.is-act-finishpage .g2g-finish-banner__btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
body.dreamtheme.dreamtheme.is-act-finishpage .g2g-finish-banner__btn::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #fff;
}
body.dreamtheme.dreamtheme.is-act-finishpage .g2g-finish-banner__btn--track::before {
  content: "";
}
body.dreamtheme.dreamtheme.is-act-finishpage .g2g-finish-banner__btn--invoice::before {
  content: "";
}
body.dreamtheme.dreamtheme.is-act-finishpage .checkout-aside .checkout-aside-summary {
  background-color: #fff;
  border: 1px solid #f3f3f3;
  border-top: 3px solid var(--g2g-token-color-brand-primary, #64748b);
}
body.dreamtheme.dreamtheme.is-act-finishpage .checkout-aside-summary-list .checkout-aside-summary-total {
  order: 10;
}
body.dreamtheme.is-act-finishpage .g2g-checkout-footer__payment {
  display: none;
}
@media (max-width: 991.98px) {
  body.dreamtheme.dreamtheme.is-act-finishpage header.header-minimal .header-minimal-logo {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }
  body.dreamtheme.dreamtheme.is-act-finishpage header.header-minimal .header-minimal-logo .header-logo-main {
    margin: 10px auto;
  }
  body.dreamtheme.dreamtheme.is-act-finishpage header.header-minimal .header-minimal-logo .header-logo-main img.header-logo-main-img {
    display: block;
    margin: 0 auto;
  }
  body.dreamtheme.dreamtheme.is-act-finishpage .checkout > .g2g-finish-banner {
    margin-bottom: 0;
  }
  body.dreamtheme.dreamtheme.is-act-finishpage .g2g-checkout-footer__copyright {
    display: none;
  }
  body.dreamtheme.dreamtheme.is-act-finishpage .g2g-checkout-footer__inner {
    justify-content: center;
  }
  body.dreamtheme.dreamtheme.is-act-finishpage .g2g-checkout-footer__legal {
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
  }
}
body.dreamtheme.dreamtheme .g2g-empty-cart {
  text-align: center;
  padding: 3.5rem 1rem 2.5rem;
  max-width: 720px;
  margin: 0 auto;
}
body.dreamtheme.dreamtheme .g2g-empty-cart__icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #fdf0e8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
body.dreamtheme.dreamtheme .g2g-empty-cart__icon i {
  font-size: 34px;
  color: var(--g2g-token-color-brand-primary-text, #64748b);
}
body.dreamtheme.dreamtheme .g2g-empty-cart__title {
  font-size: 24px;
  font-weight: 600;
  color: #2b2b2b;
  margin: 0 0 8px;
}
body.dreamtheme.dreamtheme .g2g-empty-cart__text {
  font-size: 15px;
  line-height: 1.6;
  color: #777;
  max-width: 420px;
  margin: 0 auto 1.5rem;
}
body.dreamtheme.dreamtheme .g2g-empty-cart__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--g2g-token-color-brand-primary, #64748b);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 30px;
  border-radius: var(--g2g-border-radius, 8px);
  text-decoration: none;
  transition: background-color 0.15s ease;
}
body.dreamtheme.dreamtheme .g2g-empty-cart__cta:hover, body.dreamtheme.dreamtheme .g2g-empty-cart__cta:focus {
  background: #d35500;
  color: #fff;
  text-decoration: none;
}
body.dreamtheme.dreamtheme .g2g-empty-cart__cta i {
  font-size: 14px;
}
body.dreamtheme.dreamtheme .g2g-empty-cart__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 1.75rem;
}
body.dreamtheme.dreamtheme .g2g-empty-cart__chip {
  font-size: 13px;
  padding: 8px 18px;
  border: 1px solid #d9d9d9;
  border-radius: var(--g2g-border-radius, 999px);
  color: #2b2b2b;
  text-decoration: none;
  transition: border-color 0.15s ease, color 0.15s ease;
}
body.dreamtheme.dreamtheme .g2g-empty-cart__chip:hover, body.dreamtheme.dreamtheme .g2g-empty-cart__chip:focus {
  border-color: var(--g2g-token-color-brand-primary-text, #64748b);
  color: var(--g2g-token-color-brand-primary-text, #64748b);
  text-decoration: none;
}
body.dreamtheme.dreamtheme .g2g-empty-cart__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 34px;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
  font-size: 13px;
  color: #777;
}
body.dreamtheme.dreamtheme .g2g-empty-cart__trust-item i {
  color: var(--g2g-token-color-brand-primary-text, #64748b);
  margin-right: 7px;
}
body.dreamtheme.dreamtheme.is-act-cartpage .checkout {
  padding-top: 15px;
}
body.dreamtheme.dreamtheme.is-act-cartpage .checkout-main {
  padding-left: 0;
}
body.dreamtheme.dreamtheme.is-act-cartpage .checkout-aside {
  padding-top: 0;
  padding-right: 0;
}
body.dreamtheme.dreamtheme.is-act-cartpage .g2g-cart-topbar {
  margin-bottom: 20px;
}
body.dreamtheme.dreamtheme.is-act-cartpage .g2g-cart-head {
  margin-bottom: 16px;
}
body.dreamtheme.dreamtheme.is-act-cartpage .g2g-cart-head__title {
  display: inline;
  font-size: 30px;
  font-weight: 700;
  color: #1f1f1f;
  margin: 0;
}
body.dreamtheme.dreamtheme.is-act-cartpage .g2g-cart-head__count {
  display: inline;
  font-size: 18px;
  font-weight: 400;
  color: #9a9a9a;
  margin-left: 10px;
}
body.dreamtheme.dreamtheme.is-act-cartpage .g2g-fsb {
  border-radius: var(--g2g-border-radius, 10px);
  padding: 14px 18px;
}
body.dreamtheme.dreamtheme.is-act-cartpage .g2g-fsb__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 9px;
  font-size: 15px;
}
body.dreamtheme.dreamtheme.is-act-cartpage .g2g-fsb__label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
}
body.dreamtheme.dreamtheme.is-act-cartpage .g2g-fsb__label i {
  font-size: 16px;
}
body.dreamtheme.dreamtheme.is-act-cartpage .g2g-fsb__track {
  height: 8px;
  border-radius: var(--g2g-border-radius, 999px);
  overflow: hidden;
}
body.dreamtheme.dreamtheme.is-act-cartpage .g2g-fsb__fill {
  height: 100%;
  border-radius: var(--g2g-border-radius, 999px);
}
body.dreamtheme.dreamtheme.is-act-cartpage .g2g-fsb.is-progress {
  background: #fff;
  border: 1px solid #f0f0f0;
}
body.dreamtheme.dreamtheme.is-act-cartpage .g2g-fsb.is-progress .g2g-fsb__label {
  color: #2b2b2b;
}
body.dreamtheme.dreamtheme.is-act-cartpage .g2g-fsb.is-progress .g2g-fsb__label i {
  color: var(--g2g-token-color-brand-primary-text, #64748b);
}
body.dreamtheme.dreamtheme.is-act-cartpage .g2g-fsb.is-progress .g2g-fsb__track {
  background: #ededed;
}
body.dreamtheme.dreamtheme.is-act-cartpage .g2g-fsb.is-progress .g2g-fsb__fill {
  background: var(--g2g-token-color-brand-primary, #64748b);
}
body.dreamtheme.dreamtheme.is-act-cartpage .g2g-fsb.is-reached {
  background: #e9f7ef;
}
body.dreamtheme.dreamtheme.is-act-cartpage .g2g-fsb.is-reached .g2g-fsb__label, body.dreamtheme.dreamtheme.is-act-cartpage .g2g-fsb.is-reached .g2g-fsb__ratio {
  color: #1a9e5f;
  font-weight: 600;
}
body.dreamtheme.dreamtheme.is-act-cartpage .g2g-fsb.is-reached .g2g-fsb__track {
  background: #cdeed9;
}
body.dreamtheme.dreamtheme.is-act-cartpage .g2g-fsb.is-reached .g2g-fsb__fill {
  background: #1a9e5f;
}
body.dreamtheme.dreamtheme.is-act-cartpage .checkout-product-table {
  background: #f5f5f5;
  border: 0;
  box-shadow: none;
  border-radius: var(--g2g-border-radius, 10px);
}
body.dreamtheme.dreamtheme.is-act-cartpage .checkout-aside-summary {
  background: #fff;
  border: 1px solid #f3f3f3;
  border-radius: var(--g2g-border-radius, 8px);
  padding: 18px 20px;
}
body.dreamtheme.dreamtheme.is-act-cartpage .cart-header-info, body.dreamtheme.dreamtheme.is-act-cartpage .line-item-info {
  flex: 0 0 63%;
  max-width: 63%;
}
body.dreamtheme.dreamtheme.is-act-cartpage .cart-header-quantity, body.dreamtheme.dreamtheme.is-act-cartpage .line-item-quantity, body.dreamtheme.dreamtheme.is-act-cartpage .cart-header-unit-price, body.dreamtheme.dreamtheme.is-act-cartpage .line-item-unit-price, body.dreamtheme.dreamtheme.is-act-cartpage .cart-header-total-price, body.dreamtheme.dreamtheme.is-act-cartpage .line-item-total-price {
  flex: 0 0 12.333%;
  max-width: 12.333%;
}
body.dreamtheme.dreamtheme.is-act-cartpage .line-item-product {
  position: relative;
}
body.dreamtheme.dreamtheme.is-act-cartpage .line-item-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  flex: none;
  max-width: none;
  width: auto;
}
body.dreamtheme.dreamtheme.is-act-cartpage .line-item-details, body.dreamtheme.dreamtheme.is-act-cartpage .line-item-details-container, body.dreamtheme.dreamtheme.is-act-cartpage .line-item-label {
  min-width: 0;
}
body.dreamtheme.dreamtheme.is-act-cartpage .line-item-label .product-name {
  display: block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
body.dreamtheme.dreamtheme.is-act-cartpage .checkout-aside-summary-list .summary-net {
  order: 1;
}
body.dreamtheme.dreamtheme.is-act-cartpage .checkout-aside-summary-list .summary-tax {
  order: 2;
}
body.dreamtheme.dreamtheme.is-act-cartpage .checkout-aside-summary-list > :nth-child(3), body.dreamtheme.dreamtheme.is-act-cartpage .checkout-aside-summary-list > :nth-child(4) {
  order: 3;
}
body.dreamtheme.dreamtheme.is-act-cartpage .checkout-aside-summary-list .checkout-aside-summary-total {
  order: 4;
  border-top: 1px solid #e6e6e6;
  padding-top: 10px;
  margin-top: 6px;
}
body.dreamtheme.dreamtheme.is-act-cartpage .checkout-aside-summary-list > :nth-child(1), body.dreamtheme.dreamtheme.is-act-cartpage .checkout-aside-summary-list > :nth-child(2) {
  display: none;
}
body.dreamtheme.dreamtheme.is-act-cartpage .checkout-aside-summary-value.g2g-shipping-free {
  color: #1a9e5f;
  font-weight: 600;
}
body.dreamtheme.dreamtheme.is-act-cartpage .line-item-delivery-date .g2g-delivery-icon {
  margin-right: 7px;
  color: #2b3136;
}
body.dreamtheme.dreamtheme.is-act-checkoutregisterpage .checkout-aside-summary, body.dreamtheme.dreamtheme.is-act-confirmpage .checkout-aside-summary {
  background: #fff;
  border: 1px solid #f3f3f3;
  border-radius: var(--g2g-border-radius, 8px);
  padding: 18px 20px;
}
body.dreamtheme.dreamtheme.is-act-checkoutregisterpage .checkout-aside-products, body.dreamtheme.dreamtheme.is-act-confirmpage .checkout-aside-products {
  background: #fff;
  border: 1px solid #f3f3f3;
  border-radius: var(--g2g-border-radius, 8px);
  padding: 18px 20px;
}
body.dreamtheme.dreamtheme.is-act-checkoutregisterpage .checkout-aside-summary-header, body.dreamtheme.dreamtheme.is-act-confirmpage .checkout-aside-summary-header {
  background: transparent;
}
body.dreamtheme.dreamtheme.is-act-checkoutregisterpage .checkout-aside-summary-list .summary-net, body.dreamtheme.dreamtheme.is-act-confirmpage .checkout-aside-summary-list .summary-net {
  order: 1;
}
body.dreamtheme.dreamtheme.is-act-checkoutregisterpage .checkout-aside-summary-list .summary-tax, body.dreamtheme.dreamtheme.is-act-confirmpage .checkout-aside-summary-list .summary-tax {
  order: 2;
}
body.dreamtheme.dreamtheme.is-act-checkoutregisterpage .checkout-aside-summary-list > :nth-child(3), body.dreamtheme.dreamtheme.is-act-checkoutregisterpage .checkout-aside-summary-list > :nth-child(4), body.dreamtheme.dreamtheme.is-act-confirmpage .checkout-aside-summary-list > :nth-child(3), body.dreamtheme.dreamtheme.is-act-confirmpage .checkout-aside-summary-list > :nth-child(4) {
  order: 3;
}
body.dreamtheme.dreamtheme.is-act-checkoutregisterpage .checkout-aside-summary-list .checkout-aside-summary-total, body.dreamtheme.dreamtheme.is-act-confirmpage .checkout-aside-summary-list .checkout-aside-summary-total {
  order: 4;
  background: transparent;
  border-top: 1px solid #e6e6e6;
  padding-top: 10px;
  margin-top: 6px;
}
body.dreamtheme.dreamtheme.is-act-checkoutregisterpage .checkout-aside-summary-list > :nth-child(1), body.dreamtheme.dreamtheme.is-act-checkoutregisterpage .checkout-aside-summary-list > :nth-child(2), body.dreamtheme.dreamtheme.is-act-confirmpage .checkout-aside-summary-list > :nth-child(1), body.dreamtheme.dreamtheme.is-act-confirmpage .checkout-aside-summary-list > :nth-child(2) {
  display: none;
}
body.dreamtheme.dreamtheme.is-act-checkoutregisterpage .checkout-aside-summary-value.g2g-shipping-free, body.dreamtheme.dreamtheme.is-act-confirmpage .checkout-aside-summary-value.g2g-shipping-free {
  color: #1a9e5f;
  font-weight: 600;
}
body.dreamtheme.dreamtheme.is-act-checkoutregisterpage .line-item-delivery-date .g2g-delivery-icon, body.dreamtheme.dreamtheme.is-act-confirmpage .line-item-delivery-date .g2g-delivery-icon {
  margin-right: 7px;
  color: #2b3136;
}
body.dreamtheme.dreamtheme.is-act-confirmpage .checkout {
  padding-top: 15px;
}
body.dreamtheme.dreamtheme.is-act-confirmpage .card-title.cart-table-header, body.dreamtheme.dreamtheme.is-act-confirmpage .cart-header-row {
  background: transparent;
}
body.dreamtheme.dreamtheme.is-act-confirmpage .line-item-remove {
  display: none;
}
body.dreamtheme.dreamtheme.is-act-confirmpage .line-item-details, body.dreamtheme.dreamtheme.is-act-confirmpage .line-item-label {
  min-width: 0;
}
body.dreamtheme.dreamtheme.is-act-confirmpage .line-item-label .product-name {
  display: block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
body.dreamtheme.dreamtheme.is-act-confirmpage .checkout-product-table, body.dreamtheme.dreamtheme.is-act-confirmpage .line-item.line-item-product {
  background: #f5f5f5;
  border: 0;
  border-radius: var(--g2g-border-radius, 10px);
}
body.dreamtheme.dreamtheme.is-act-confirmpage .line-item-quantity-group {
  box-shadow: none;
}
body.dreamtheme.dreamtheme.is-act-confirmpage .g2g-trust-desktop-only {
  border: 0;
  box-shadow: none;
  background: transparent;
  padding: 8px 0 0;
  font-size: 13px;
}
body.dreamtheme.dreamtheme.is-act-confirmpage .g2g-trust-desktop-only i, body.dreamtheme.dreamtheme.is-act-confirmpage .g2g-trust-desktop-only svg {
  color: #9aa3ad;
  fill: #9aa3ad;
}
body.dreamtheme.dreamtheme.is-act-confirmpage .checkout-main .line-item-quantity .quantity-selector-group .btn-plus.btn-plus, body.dreamtheme.dreamtheme.is-act-confirmpage .checkout-main .line-item-quantity .form-control-quantity-selector .btn-plus.btn-plus, body.dreamtheme.dreamtheme.is-act-confirmpage .checkout-main .line-item-quantity .input-group .btn-plus.btn-plus {
  background: #fff;
  color: #2b3136;
}
body.dreamtheme.dreamtheme.is-act-confirmpage .checkout-main .line-item-quantity .quantity-selector-group .btn-plus.btn-plus .icon, body.dreamtheme.dreamtheme.is-act-confirmpage .checkout-main .line-item-quantity .quantity-selector-group .btn-plus.btn-plus .icon svg, body.dreamtheme.dreamtheme.is-act-confirmpage .checkout-main .line-item-quantity .quantity-selector-group .btn-plus.btn-plus > svg, body.dreamtheme.dreamtheme.is-act-confirmpage .checkout-main .line-item-quantity .quantity-selector-group .btn-plus.btn-plus .icon-plus, body.dreamtheme.dreamtheme.is-act-confirmpage .checkout-main .line-item-quantity .form-control-quantity-selector .btn-plus.btn-plus .icon, body.dreamtheme.dreamtheme.is-act-confirmpage .checkout-main .line-item-quantity .form-control-quantity-selector .btn-plus.btn-plus .icon svg, body.dreamtheme.dreamtheme.is-act-confirmpage .checkout-main .line-item-quantity .form-control-quantity-selector .btn-plus.btn-plus > svg, body.dreamtheme.dreamtheme.is-act-confirmpage .checkout-main .line-item-quantity .form-control-quantity-selector .btn-plus.btn-plus .icon-plus, body.dreamtheme.dreamtheme.is-act-confirmpage .checkout-main .line-item-quantity .input-group .btn-plus.btn-plus .icon, body.dreamtheme.dreamtheme.is-act-confirmpage .checkout-main .line-item-quantity .input-group .btn-plus.btn-plus .icon svg, body.dreamtheme.dreamtheme.is-act-confirmpage .checkout-main .line-item-quantity .input-group .btn-plus.btn-plus > svg, body.dreamtheme.dreamtheme.is-act-confirmpage .checkout-main .line-item-quantity .input-group .btn-plus.btn-plus .icon-plus {
  color: #2b3136;
  fill: #2b3136;
}
body.dreamtheme.dreamtheme.is-act-confirmpage .checkout-main .line-item-quantity .btn-minus .icon, body.dreamtheme.dreamtheme.is-act-confirmpage .checkout-main .line-item-quantity .btn-minus .icon svg, body.dreamtheme.dreamtheme.is-act-confirmpage .checkout-main .line-item-quantity .btn-minus > svg {
  color: #2b3136;
  fill: #2b3136;
}
body.dreamtheme.is-act-confirmpage .checkout-aside-container .checkout-aside-summary {
  order: 1;
  position: sticky;
  top: 16px;
}
body.dreamtheme.is-act-confirmpage .checkout-aside-container .checkout-aside-action.d-grid {
  order: 2;
}
body.dreamtheme.is-act-confirmpage .checkout-aside-container .checkout-aside-action:not(.d-grid) {
  order: 3;
}
body.dreamtheme.is-act-confirmpage .checkout-aside-container .g2g-trust-desktop-only {
  order: 4;
}
body.dreamtheme.dreamtheme.is-act-cartpage .line-item .product-wishlist, body.dreamtheme.dreamtheme.is-act-confirmpage .line-item .product-wishlist {
  display: none;
}
body.dreamtheme.dreamtheme.is-act-checkoutregisterpage .g2g-checkout-progress {
  margin-top: 28px;
  margin-bottom: 32px;
}
body.dreamtheme.dreamtheme.is-act-checkoutregisterpage .checkout-main .card {
  background: #f8f8f8;
  border: none;
  border-radius: var(--g2g-border-radius, 8px);
  box-shadow: none;
}
body.dreamtheme.dreamtheme.is-act-checkoutregisterpage .checkout-main .card hr, body.dreamtheme.dreamtheme.is-act-checkoutregisterpage .checkout-main .card .card-body > hr {
  display: none;
}
body.dreamtheme.dreamtheme.is-act-checkoutregisterpage .checkout-main .card-title {
  color: #64748b;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-top: 0;
  padding-top: 0;
  border: none;
}
body.dreamtheme.dreamtheme.is-act-checkoutregisterpage .checkout-main .card-title::before {
  content: "// ";
}
body.dreamtheme.dreamtheme.is-act-checkoutregisterpage .checkout-main .form-control, body.dreamtheme.dreamtheme.is-act-checkoutregisterpage .checkout-main .form-select {
  border-radius: var(--g2g-border-radius, 4px);
}
body.dreamtheme.dreamtheme.is-act-checkoutregisterpage .checkout-main .login-submit .btn.btn-primary, body.dreamtheme.dreamtheme.is-act-checkoutregisterpage .checkout-main .register-submit .btn.btn-primary {
  background: #64748b;
  border-color: transparent;
}
body.dreamtheme.dreamtheme.is-act-checkoutregisterpage .checkout-main .login-submit .btn.btn-primary::before, body.dreamtheme.dreamtheme.is-act-checkoutregisterpage .checkout-main .register-submit .btn.btn-primary::before {
  background: #c95400;
}
body.dreamtheme.dreamtheme.is-act-checkoutregisterpage .checkout-aside-summary {
  background: #f8f8f8;
  border: none;
  border-top: 3px solid #64748b;
  border-radius: var(--g2g-border-radius, 8px);
}
body.dreamtheme.dreamtheme.is-act-checkoutregisterpage .checkout-container > .checkout-aside {
  padding-top: 0;
}
body.dreamtheme .header-minimal {
  border-bottom: 1px solid #f3f3f3;
  padding-top: 5px;
}
body.dreamtheme .header-minimal .g2g-minimal-contact-icon {
  margin-right: 7px;
  color: #64748b;
}
body.dreamtheme .checkout-aside-products .line-item.line-item-product {
  position: relative;
  padding-bottom: 0;
}
body.dreamtheme .checkout-aside-products .line-item.line-item-product .line-item-info > [class~="row"].line-item-row {
  display: block;
}
body.dreamtheme .checkout-aside-products .line-item.line-item-product .line-item-info {
  width: 100%;
  flex: 1 1 auto;
  max-width: none;
}
body.dreamtheme .checkout-aside-products .line-item.line-item-product .line-item-info-img {
  float: left;
  width: 50px;
  max-width: 50px;
  flex: none;
  margin-right: 7px;
  padding: 0;
}
body.dreamtheme .checkout-aside-products .line-item.line-item-product .line-item-img-container, body.dreamtheme .checkout-aside-products .line-item.line-item-product .line-item-img-link {
  width: 50px;
  height: 50px;
  max-width: 50px;
  flex: 0 0 50px;
}
body.dreamtheme .checkout-aside-products .line-item.line-item-product .line-item-details, body.dreamtheme .checkout-aside-products .line-item.line-item-product .line-item-details-container {
  display: block;
  padding-left: 0;
  min-width: 0;
  width: auto;
  max-width: none;
}
body.dreamtheme .checkout-aside-products .line-item.line-item-product .line-item-details {
  padding-right: 44px;
}
body.dreamtheme .checkout-aside-products .line-item.line-item-product .line-item-label.line-item-label {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: normal;
  line-height: 1.3;
}
body.dreamtheme .checkout-aside-products .line-item.line-item-product .line-item-label.line-item-label .product-quantity {
  display: inline;
  margin-right: 4px;
}
body.dreamtheme .checkout-aside-products .line-item.line-item-product .line-item-label.line-item-label .product-name {
  display: inline;
}
body.dreamtheme .checkout-aside-products .line-item.line-item-product .line-item-product-number {
  clear: left;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  margin-top: 6px;
}
body.dreamtheme .checkout-aside-products .line-item.line-item-product .line-item-delivery-date {
  display: flex;
  align-items: center;
  margin-top: 2px;
}
body.dreamtheme .checkout-aside-products .line-item.line-item-product .line-item-delivery-date .g2g-delivery-icon, body.dreamtheme .checkout-aside-products .line-item.line-item-product .line-item-delivery-date i {
  color: #1a9e5f;
}
body.dreamtheme .checkout-aside-products .line-item.line-item-product .hide2gether-offcanvas-items-in-basket {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: flex-start;
  gap: 8px;
  width: auto;
  max-width: 100%;
  margin-top: 2px;
}
body.dreamtheme .checkout-aside-products .line-item.line-item-product .hide2gether-offcanvas-items-in-basket .line-item-total-price-label, body.dreamtheme .checkout-aside-products .line-item.line-item-product .hide2gether-offcanvas-items-in-basket .line-item-unit-price-label {
  display: none;
}
body.dreamtheme .checkout-aside-products .line-item.line-item-product .hide2gether-offcanvas-items-in-basket .line-item-total-price, body.dreamtheme .checkout-aside-products .line-item.line-item-product .hide2gether-offcanvas-items-in-basket .line-item-price, body.dreamtheme .checkout-aside-products .line-item.line-item-product .hide2gether-offcanvas-items-in-basket .line-item-unit-price {
  display: inline-flex;
  width: auto;
  flex: 0 0 auto;
  justify-content: flex-start;
  padding: 0;
  margin: 0;
}
body.dreamtheme .checkout-aside-products .line-item.line-item-product .line-item-remove {
  display: none;
}
body.dreamtheme .checkout-aside-products .line-item.line-item-product .line-item-quantity {
  display: block;
  position: absolute;
  top: 12px;
  right: 10px;
  left: auto;
  width: 28px;
  margin: 0;
  padding: 0;
}
body.dreamtheme .checkout-aside-products .line-item.line-item-product .line-item-quantity .line-item-quantity-label {
  display: none;
}
body.dreamtheme .checkout-aside-products .line-item.line-item-product .line-item-quantity .line-item-quantity-row, body.dreamtheme .checkout-aside-products .line-item.line-item-product .line-item-quantity .line-item-quantity-select-wrapper {
  margin: 0;
  width: 28px;
  max-width: 28px;
  display: block;
}
body.dreamtheme .checkout-aside-products .line-item.line-item-product .line-item-quantity .quantity-selector-group {
  display: flex;
  flex-direction: column;
  width: 28px;
  border: 1px solid #e2e8f0;
  border-radius: var(--g2g-border-radius, 6px);
  overflow: hidden;
  box-shadow: none;
  background: #fff;
}
body.dreamtheme .checkout-aside-products .line-item.line-item-product .line-item-quantity .quantity-selector-group .btn-plus {
  order: 1;
}
body.dreamtheme .checkout-aside-products .line-item.line-item-product .line-item-quantity .quantity-selector-group input.form-control.quantity-selector-group-input {
  order: 2;
  width: 28px;
  min-width: 28px;
  max-width: 28px;
  height: 22px;
  padding: 0;
  border: none;
  border-top: 1px solid #eef0f2;
  border-bottom: 1px solid #eef0f2;
  border-radius: 0;
  text-align: center;
  font-size: 12px;
  background: #fff;
  color: #2b3136;
}
body.dreamtheme .checkout-aside-products .line-item.line-item-product .line-item-quantity .quantity-selector-group .btn-minus {
  order: 3;
}
body.dreamtheme .checkout-aside-products .line-item.line-item-product .line-item-quantity .quantity-selector-group .btn-plus, body.dreamtheme .checkout-aside-products .line-item.line-item-product .line-item-quantity .quantity-selector-group .btn-minus {
  width: 28px;
  height: 22px;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #fff;
  color: #2b3136;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.dreamtheme .checkout-aside-products .line-item.line-item-product .line-item-quantity .quantity-selector-group .btn-plus .icon, body.dreamtheme .checkout-aside-products .line-item.line-item-product .line-item-quantity .quantity-selector-group .btn-plus .icon svg, body.dreamtheme .checkout-aside-products .line-item.line-item-product .line-item-quantity .quantity-selector-group .btn-plus > svg, body.dreamtheme .checkout-aside-products .line-item.line-item-product .line-item-quantity .quantity-selector-group .btn-minus .icon, body.dreamtheme .checkout-aside-products .line-item.line-item-product .line-item-quantity .quantity-selector-group .btn-minus .icon svg, body.dreamtheme .checkout-aside-products .line-item.line-item-product .line-item-quantity .quantity-selector-group .btn-minus > svg {
  width: 12px;
  height: 12px;
  color: #2b3136;
  fill: #2b3136;
}
body.dreamtheme .checkout-aside-products {
  padding-bottom: 10px;
}
body.dreamtheme.dreamtheme.is-act-checkoutregisterpage .checkout-main .form-control, body.dreamtheme.dreamtheme.is-act-checkoutregisterpage .checkout-main .form-select {
  border-color: #dfe3e8;
}
body.dreamtheme.is-act-confirmpage .checkout > .g2g-checkout-progress {
  margin: 28px 0 32px;
  width: 100%;
}
body.dreamtheme.dreamtheme.is-act-confirmpage .g2g-checkout-step__title {
  color: #64748b;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}
body.dreamtheme.dreamtheme.is-act-confirmpage .g2g-checkout-step__title::before {
  content: "//";
  color: #64748b;
  font-weight: 700;
}
body.dreamtheme.dreamtheme.is-act-confirmpage .checkout-aside-summary-header {
  color: #64748b;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: transparent;
}
body.dreamtheme.dreamtheme.is-act-confirmpage .checkout-aside-summary-header::before {
  content: "// ";
}
body.dreamtheme.dreamtheme.is-act-confirmpage .checkout-product-table {
  background: #f5f5f5;
  border: 0;
  border-top: 3px solid #64748b;
  border-radius: var(--g2g-border-radius, 8px);
  padding: 16px 18px;
}
body.dreamtheme.dreamtheme.is-act-confirmpage .cart-table-header {
  background: transparent;
  text-transform: none;
  border: 0;
}
body.dreamtheme.dreamtheme.is-act-confirmpage .cart-table-header::before {
  display: none;
  content: none;
}
body.dreamtheme.dreamtheme.is-act-confirmpage .line-item.line-item-product {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #e7e7e7;
  border-radius: 0;
}
body.dreamtheme.dreamtheme.is-act-confirmpage .line-item.line-item-product:last-child {
  border-bottom: 0;
}
body.dreamtheme.dreamtheme.is-act-confirmpage .line-item-img-container, body.dreamtheme.dreamtheme.is-act-confirmpage .line-item-img-link, body.dreamtheme.dreamtheme.is-act-confirmpage .line-item-img {
  width: 72px;
  height: 72px;
  border-radius: var(--g2g-border-radius, 8px);
  background: #eceff1;
  overflow: hidden;
}
body.dreamtheme.dreamtheme.is-act-confirmpage .line-item-img-container img, body.dreamtheme.dreamtheme.is-act-confirmpage img.line-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body.dreamtheme.dreamtheme.is-act-confirmpage .line-item-product-number {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
body.dreamtheme.dreamtheme.is-act-confirmpage .cart-header-row .cart-header-tax-price, body.dreamtheme.dreamtheme.is-act-confirmpage .line-item.line-item-product .line-item-row > .line-item-tax-price {
  display: none;
}
body.dreamtheme.dreamtheme.is-act-confirmpage .line-item.line-item-product .line-item-row {
  align-items: center;
}
body.dreamtheme.dreamtheme.is-act-confirmpage .line-item.line-item-product .line-item-row .line-item-quantity {
  order: 9;
}
body.dreamtheme.dreamtheme.is-act-confirmpage .cart-header-row .cart-header-quantity {
  order: 9;
  text-align: right;
}
body.dreamtheme.dreamtheme.is-act-confirmpage .line-item-quantity .quantity-selector-group {
  display: flex;
  flex-direction: column;
  width: 30px;
  margin: 0 auto;
  border: 1px solid #e2e8f0;
  border-radius: var(--g2g-border-radius, 6px);
  overflow: hidden;
  background: #fff;
  box-shadow: none;
  height: auto;
}
body.dreamtheme.dreamtheme.is-act-confirmpage .line-item-quantity .quantity-selector-group .btn-plus {
  order: 1;
}
body.dreamtheme.dreamtheme.is-act-confirmpage .line-item-quantity .quantity-selector-group input.form-control.quantity-selector-group-input {
  order: 2;
  width: 30px;
  min-width: 30px;
  max-width: 30px;
  height: 24px;
  border: 0;
  border-top: 1px solid #eef0f2;
  border-bottom: 1px solid #eef0f2;
  border-radius: 0;
  text-align: center;
  font-size: 13px;
  background: #fff;
  color: #2b3136;
  padding: 0;
}
body.dreamtheme.dreamtheme.is-act-confirmpage .line-item-quantity .quantity-selector-group .btn-minus {
  order: 3;
}
body.dreamtheme.dreamtheme.is-act-confirmpage .line-item-quantity .quantity-selector-group .btn-plus, body.dreamtheme.dreamtheme.is-act-confirmpage .line-item-quantity .quantity-selector-group .btn-minus {
  width: 30px;
  height: 24px;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #fff;
  color: #2b3136;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.dreamtheme.dreamtheme.is-act-confirmpage .line-item-quantity .quantity-selector-group .btn-plus .icon, body.dreamtheme.dreamtheme.is-act-confirmpage .line-item-quantity .quantity-selector-group .btn-minus .icon {
  width: 12px;
  height: 12px;
}
body.dreamtheme.dreamtheme.is-act-confirmpage .g2g-checkout-step__next {
  display: inline-flex;
}
body.dreamtheme.dreamtheme.is-act-confirmpage .checkout-aside-summary {
  background: #f8f8f8;
  border: 0;
  border-top: 3px solid #64748b;
  border-radius: var(--g2g-border-radius, 8px);
}
body.dreamtheme.dreamtheme.is-act-confirmpage .checkout-aside-container .checkout-aside-action.g2g-aside-next {
  order: 2;
  margin-top: -6px;
}
body.dreamtheme.dreamtheme.is-act-confirmpage .checkout-aside-container .checkout-aside-action:not(.g2g-aside-next) {
  order: 2;
  margin-top: -6px;
}
body.dreamtheme.dreamtheme.is-act-confirmpage .checkout-aside-container .g2g-aside-next-btn {
  width: 100%;
  background: #64748b;
  border-color: #64748b;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
}
body.dreamtheme.dreamtheme.is-act-confirmpage .checkout-aside-container .g2g-aside-next-btn:hover {
  background: #c95400;
  border-color: #c95400;
}
body.dreamtheme .checkout-aside-summary-value.g2g-shipping-free {
  color: #1a9e5f;
  font-weight: 600;
}
.dreamtheme .content-main .container-main {
  padding-top: 0;
}
.dreamtheme.is-ctl-product caption {
  display: block;
  font-weight: 700;
  padding-left: 8px;
  border-bottom: 1px solid var(--g2g-token-color-neutral-border);
}
.dreamtheme.is-ctl-product .content-main {
  background: var(--g2g-token-color-neutral-background);
  background-size: contain;
  background-position: bottom;
}
.dreamtheme.is-ctl-product .content-main .cms-sections .cms-block-product-heading {
  display: none;
}
.dreamtheme.is-ctl-product .content-main .cms-sections .cms-block-gallery-buybox {
  padding: 0 20px;
}
.dreamtheme.is-ctl-product .content-main .cms-sections .cms-block-gallery-buybox .gallery-slider-single-image.is-contain .gallery-slider-image {
  width: 100%;
}
@media (min-width: 1200px) {
  .dreamtheme.is-ctl-product .content-main .cms-sections .cms-block-gallery-buybox {
    padding: 0;
  }
}
.dreamtheme.is-ctl-product .content-main .cms-sections .cms-block-product-description-reviews {
  padding: 0 20px;
}
.dreamtheme.is-ctl-product .content-main .cms-sections .cms-block-product-description-reviews .product-detail-properties-table th {
  width: 50%;
}
@media (min-width: 1200px) {
  .dreamtheme.is-ctl-product .content-main .cms-sections .cms-block-product-description-reviews {
    padding: 0;
  }
}
.dreamtheme.is-ctl-product .content-main .cms-sections .cms-block-product-description-reviews > .cms-block-container {
  padding-top: 0;
}
.dreamtheme.is-ctl-product .content-main .cms-sections .cms-block-product-description-reviews .properties-row {
  caption-side: bottom;
  border-collapse: collapse;
  width: 100%;
  display: inline-table;
}
.dreamtheme.is-ctl-product .content-main .cms-sections .cms-block-product-description-reviews .cms-element-product-description-reviews .product-description-reviews-tab-navigation .nav-item .nav-link {
  border-bottom: 0;
  font-weight: 700;
  padding-bottom: 10px;
}
.dreamtheme.is-ctl-product .content-main .cms-sections .cms-block-product-description-reviews .cms-element-product-description-reviews .product-description-reviews-tab-navigation .nav-item .nav-link:hover {
  background: none;
}
@media (min-width: 576px) {
  .dreamtheme.is-ctl-product .content-main .cms-sections .cms-block-product-description-reviews .cms-element-product-description-reviews .product-description-reviews-tab-navigation .nav-item .nav-link {
    padding: 10px;
  }
  .dreamtheme.is-ctl-product .content-main .cms-sections .cms-block-product-description-reviews .cms-element-product-description-reviews .product-description-reviews-tab-navigation .nav-item .nav-link.active {
    background: transparent;
    background-color: transparent;
    border-bottom: 3px solid var(--g2g-token-color-neutral-text-default);
  }
  .dreamtheme.is-ctl-product .content-main .cms-sections .cms-block-product-description-reviews .cms-element-product-description-reviews .product-description-reviews-tab-navigation .nav-item .nav-link:not(.active):hover {
    background: transparent;
    color: var(--g2g-token-color-detail-headline);
  }
}
.dreamtheme.is-ctl-product .content-main .cms-sections .cms-block-product-description-reviews .cms-element-product-description-reviews .product-detail-tabs-content {
  border-top: 1px solid var(--g2g-token-color-neutral-text-default);
  padding: 0;
}
.dreamtheme.is-ctl-product .content-main .cms-sections .cms-block-product-description-reviews .cms-element-product-description-reviews .product-detail-tabs-content .product-detail-description .product-detail-description-text {
  font-size: 16px;
}
.dreamtheme.is-ctl-product .content-main .cms-sections .cms-block-product-description-reviews .cms-element-product-description-reviews .product-detail-tabs-content .tab-content .tab-pane, .dreamtheme.is-ctl-product .content-main .cms-sections .cms-block-product-description-reviews .cms-element-product-description-reviews .product-detail-tabs-content .product-detail-description.tab-pane-container {
  padding-top: 16px;
}
.dreamtheme.is-ctl-product .content-main .cms-sections .cms-block-cross-selling .product-detail-cross-selling .product-cross-selling-tab-navigation {
  display: block;
}
@media (min-width: 992px) {
  .dreamtheme.is-ctl-product .content-main .cms-sections .cms-block-cross-selling .product-detail-cross-selling .product-cross-selling-tab-navigation {
    display: block;
  }
}
.dreamtheme.is-ctl-product .content-main .cms-sections .cms-block-cross-selling .great-suggested-products .product-cross-selling-tab-navigation {
  display: none;
}
.dreamtheme.is-ctl-product .content-main .cms-sections .cms-block-cross-selling .great-suggested-products .product-cross-selling-tab-navigation .product-detail-tab-navigation-list .nav-item:nth-child(2) {
  display: none;
}
.dreamtheme.is-ctl-product .content-main .cms-sections .cms-block-cross-selling .great-suggested-products .product-detail-tab-navigation .nav-item .nav-link {
  border-bottom: 0;
  font-weight: 700;
  padding: 10px;
}
.dreamtheme.is-ctl-product .content-main .cms-sections .cms-block-cross-selling .great-suggested-products .product-detail-tab-navigation .nav-item .nav-link.active {
  border-bottom: 3px solid;
  background: transparent;
}
.dreamtheme.is-ctl-product .content-main .cms-sections .cms-block-cross-selling .great-suggested-products .product-detail-tab-navigation .nav-item .nav-link:not(.active):hover {
  background: transparent;
  color: var(--g2g-token-color-detail-headline);
}
.dreamtheme.is-ctl-product .content-main .cms-sections .cms-block-cross-selling .great-suggested-products .product-detail-tabs-content {
  padding-top: 0;
}
.dreamtheme.is-ctl-product .content-main .cms-sections .product-detail-buy {
  margin-bottom: 0;
}
.dreamtheme.is-ctl-product .content-main .cms-sections .product-detail-buy h1.product-detail-name, .dreamtheme.is-ctl-product .content-main .cms-sections .product-detail-buy .product-detail-name.h1, .dreamtheme.is-ctl-product .content-main .cms-sections .product-detail-buy .product-detail-name, .dreamtheme.is-ctl-product .content-main .cms-sections .product-detail-buy h1.product-detail-name.h1 {
  color: var(--g2g-token-color-neutral-text-default);
  font-size: 1.75rem;
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 0.5rem;
}
.dreamtheme.is-ctl-product .content-main .cms-sections .product-detail-buy .g2g-pdp-manufacturer-inline {
  font-size: 0.55em;
  font-weight: 400;
  color: rgba(15, 23, 42, 0.4);
  vertical-align: baseline;
}
.dreamtheme.is-ctl-product .content-main .cms-sections .product-detail-buy .g2g-price-unit-above-table {
  margin: 0 0 0.5rem 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(15, 23, 42, 0.55);
}
.dreamtheme.is-ctl-product .content-main .cms-sections .product-detail-buy .g2g-price-unit-above-table .price-unit-content {
  color: #0f172a;
  font-weight: 700;
}
.dreamtheme.is-ctl-product .content-main .cms-sections .product-detail-buy .product-detail-price-container .product-detail-price {
  font-size: 20px;
  line-height: 1;
}
.dreamtheme.is-ctl-product .content-main .cms-sections .product-detail-buy .product-detail-price-container .product-detail-price-unit {
  margin: 0 0 0.5rem 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(15, 23, 42, 0.55);
}
.dreamtheme.is-ctl-product .content-main .cms-sections .product-detail-buy .product-detail-price-container .product-detail-price-unit .price-unit-content {
  color: #0f172a;
  font-weight: 700;
}
.dreamtheme.is-ctl-product .content-main .cms-sections .product-detail-buy .product-detail-price-container .product-detail-price-unit .price-unit-label {
  font-weight: 600;
}
.dreamtheme.is-ctl-product .content-main .cms-sections .product-detail-buy .product-detail-price-container .refund-system-container {
  display: none;
}
.dreamtheme.is-ctl-product .content-main .cms-sections .product-detail-buy .product-detail-tax-container {
  margin-top: 0.75rem;
}
.dreamtheme.is-ctl-product .content-main .cms-sections .product-detail-buy .product-detail-tax-container .product-detail-tax.product-detail-tax {
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 400;
  color: rgba(15, 23, 42, 0.55);
}
.dreamtheme.is-ctl-product .content-main .cms-sections .product-detail-buy .product-detail-tax-container .product-detail-tax.product-detail-tax .product-detail-tax-link {
  font-size: 12px;
  font-weight: 400;
  color: rgba(15, 23, 42, 0.55);
  text-decoration: none;
}
.dreamtheme.is-ctl-product .content-main .cms-sections .product-detail-buy .product-detail-tax-container .product-detail-tax.product-detail-tax .product-detail-tax-link:hover {
  text-decoration: underline;
}
.dreamtheme.is-ctl-product .content-main .cms-sections .product-detail-buy .product-detail-ordernumber-container {
  margin-bottom: 0;
}
.dreamtheme.is-ctl-product .content-main .cms-sections .product-detail-buy .product-detail-delivery-information {
  margin-top: 0.35rem;
  margin-bottom: 0;
}
.dreamtheme.is-ctl-product .content-main .cms-sections .product-detail-buy .product-detail-delivery-information .product-delivery-information .delivery-information {
  font-size: 14px;
  margin-bottom: 10px;
}
.dreamtheme.is-ctl-product .content-main .cms-sections .product-detail-buy .product-detail-configurator-group {
  margin-bottom: 9px;
}
.dreamtheme.is-ctl-product .content-main .cms-sections .product-detail-buy .product-detail-form-container .buy-widget-container .quantity-selector-group.quantity-selector-group {
  background: none;
  border: none;
  border-radius: 0;
  border-bottom: 2px solid rgba(15, 23, 42, 0.2);
}
.dreamtheme.is-ctl-product .content-main .cms-sections .product-detail-buy .product-detail-form-container .buy-widget-container .quantity-selector-group.quantity-selector-group .btn-decrement, .dreamtheme.is-ctl-product .content-main .cms-sections .product-detail-buy .product-detail-form-container .buy-widget-container .quantity-selector-group.quantity-selector-group .btn-increment, .dreamtheme.is-ctl-product .content-main .cms-sections .product-detail-buy .product-detail-form-container .buy-widget-container .quantity-selector-group.quantity-selector-group .quantity-selector-input {
  background: none;
  border: none;
  border-radius: 0;
}
.dreamtheme.is-ctl-product .content-main .cms-sections .product-detail-buy .product-detail-form-container .buy-widget-container .btn-buy {
  position: relative;
  overflow: hidden;
  border-color: transparent;
  width: 98%;
  background: var(--g2g-token-button-buy-bg-default);
  text-align: center;
  color: var(--g2g-token-color-neutral-background);
  padding: 10px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
}
.dreamtheme.is-ctl-product .content-main .cms-sections .product-detail-buy .product-detail-form-container .buy-widget-container .btn-buy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  will-change: transform;
  width: 100%;
  height: 100%;
  background: var(--g2g-token-button-buy-bg-hover);
  z-index: 0;
  transition: transform 0.5s ease-in-out;
}
.dreamtheme.is-ctl-product .content-main .cms-sections .product-detail-buy .product-detail-form-container .buy-widget-container .btn-buy span {
  position: relative;
  z-index: 1;
}
.dreamtheme.is-ctl-product .content-main .cms-sections .product-detail-buy .product-detail-form-container .buy-widget-container .btn-buy:hover::before {
  transform: translateX(0);
}
.dreamtheme.is-ctl-product .content-main .cms-sections .product-detail-buy .g2g-additional-info-header-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
  margin: 0 0 9px;
  flex: 0 0 100%;
  white-space: nowrap;
}
.dreamtheme.is-ctl-product .content-main .cms-sections .product-detail-buy .g2g-additional-info-header-title::before {
  content: "//";
  color: var(--bs-primary, #64748b);
  font-weight: 800;
  font-size: 14px;
  font-style: italic;
  line-height: 1;
}
.dreamtheme.is-ctl-product .content-main .cms-sections .product-detail-buy .g2g-addp-list {
  display: contents;
}
.dreamtheme.is-ctl-product .content-main .cms-sections .product-detail-buy .g2g-addp-list .g2g-addp-content {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #f0f0f0;
  border-radius: var(--g2g-border-radius, 99px);
  padding: 5px 12px;
  margin: 0;
  line-height: 1.2;
  font-size: 12px;
  color: var(--g2g-token-color-neutral-text-default);
  max-width: 100%;
}
.dreamtheme.is-ctl-product .content-main .cms-sections .product-detail-buy .g2g-addp-list .g2g-addp-content .icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.dreamtheme.is-ctl-product .content-main .cms-sections .product-detail-buy .g2g-addp-list .g2g-addp-content .icon > svg {
  width: 14px;
  height: 14px;
}
.dreamtheme.is-ctl-product .content-main .cms-element-product-slider .product-slider .cms-element-title-paragraph {
  border-top: 0;
  border-bottom: 0;
  color: var(--g2g-token-color-neutral-text-default);
}
.dreamtheme.is-ctl-product .content-main [class~="container"] .container-main {
  background-color: var(--g2g-token-color-neutral-background);
}
.dreamtheme.is-ctl-product .content-main [class~="container"] .container-main .product-detail-content {
  padding: 10px 25px 10px;
}
.dreamtheme.is-ctl-product .content-main [class~="container"] .container-main .product-detail-content .product-detail-main .product-detail-media {
  margin-top: 0;
  align-self: flex-start;
}
.dreamtheme.is-ctl-product .content-main [class~="container"] .container-main .product-detail-content .product-detail-main .product-detail-media .gallery-slider-single-image.is-contain .gallery-slider-image {
  width: 100%;
}
.dreamtheme.is-ctl-product .content-main [class~="container"] .container-main .product-detail-tabs {
  padding: 30px 20px 60px 30px;
  color: black;
}
.dreamtheme.is-ctl-product .content-main [class~="container"] .container-main .product-detail-tabs .tab-content .product-detail-description-title {
  color: black;
}
.dreamtheme.is-ctl-product .content-main [class~="container"] .container-main .product-detail-tabs .tab-content .product-detail-description-text p {
  color: black;
}
.dreamtheme.is-ctl-product .content-main [class~="container"] .container-main .product-detail-tabs .tab-content .product-detail-description-text span {
  color: black;
  background: var(--g2g-token-color-neutral-border) none;
}
.dreamtheme.is-ctl-product .content-main [class~="container"] .container-main .product-detail-tabs .tab-content .product-table2gether .table-body2gether {
  width: 100%;
  background: var(--g2g-token-color-neutral-background);
  border-collapse: separate;
  border-spacing: 1px;
}
.dreamtheme.is-ctl-product .content-main [class~="container"] .container-main .product-detail-tabs .tab-content .product-table2gether .table-body2gether .table-row2gether td {
  padding: 2px 1px 2px 5px;
}
.dreamtheme.is-ctl-product .content-main [class~="container"] .container-main .product-detail-tabs .tab-content .product-table2gether .table-body2gether .table-row2gether .table-label2gether {
  font-weight: 700;
  width: 40%;
}
.dreamtheme.is-ctl-product .content-main [class~="container"] .container-main .product-detail-tabs .tab-content .product-table2gether .table-body2gether tr:nth-child(even) {
  background-color: var(--g2g-token-color-neutral-surface);
}
.dreamtheme.is-ctl-product .content-main [class~="container"] .container-main .product-detail-tabs .tab-content .product-detail-review-title {
  color: black;
}
.dreamtheme.is-ctl-product .content-main [class~="container"] .container-main .product-detail-tabs .tab-content .product-detail-review-teaser .h4 {
  color: black;
  font-family: "Novecento Wide Bold", Arial, serif;
}
.dreamtheme.is-ctl-product .content-main [class~="container"] .container-main .product-detail-tabs .tab-content .product-detail-review-teaser .product-detail-review-teaser-btn {
  color: var(--g2g-token-color-neutral-background);
  background-color: #64748b;
  border-color: #64748b;
  border-radius: var(--g2g-border-radius, 4px);
  width: 100%;
}
.dreamtheme.is-ctl-product .content-main [class~="container"] .container-main .product-detail-tabs .tab-content .product-detail-review-teaser .product-detail-review-teaser-btn:hover {
  background-color: #0f172a;
  border-color: #0f172a;
}
.dreamtheme.is-ctl-product .content-main [class~="container"] .container-main .product-detail-tabs .tab-content .product-detail-review-main .login-form .login-form-description a {
  color: var(--g2g-token-color-status-error-dark);
}
.dreamtheme.is-ctl-product .content-main [class~="container"] .container-main .product-detail-tabs .tab-content .product-detail-review-main .login-form .login-form-description a:hover {
  color: var(--g2g-token-color-neutral-text-default);
  text-decoration: none;
}
.dreamtheme.is-ctl-product .content-main [class~="container"] .container-main .product-detail-tabs .tab-content .product-detail-review-main .login-form .form-group[class~="col-md-6"] input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: var(--g2g-border-radius, 4px);
  background: var(--g2g-token-color-neutral-surface);
  /* Place background property here */
  background-clip: padding-box;
  /* Then apply background-clip */
  box-sizing: border-box;
  line-height: 1.1875rem;
  font-size: 14px;
  padding: 10px;
  box-shadow: inset 0 1px 1px var(--g2g-token-color-neutral-border);
  border: 1px solid var(--g2g-token-color-neutral-border);
  border-top-color: var(--g2g-token-color-neutral-border);
  color: var(--g2g-token-color-neutral-text-muted);
  text-align: left;
}
.dreamtheme.is-ctl-product .content-main [class~="container"] .container-main .product-detail-tabs .tab-content .product-detail-review-main .login-form .form-group[class~="col-md-6"] .form-control {
  border-radius: 21px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: var(--g2g-token-color-neutral-surface);
  background-clip: padding-box;
  box-sizing: border-box;
  line-height: 19px;
  font-size: 14px;
  padding: 10px 10px 9px 10px;
  box-shadow: inset 0 1px 1px var(--g2g-token-color-neutral-border);
  border: 1px solid var(--g2g-token-color-neutral-border);
  border-top-color: var(--g2g-token-color-neutral-border);
  color: var(--g2g-token-color-neutral-text-muted);
  text-align: left;
  width: 100%;
}
.dreamtheme.is-ctl-product .content-main [class~="container"] .container-main .product-detail-tabs .tab-content .product-detail-review-main .login-form .form-group[class~="col-md-6"] .form-control:focus:not(:focus-visible) {
  box-shadow: 0 0 0 transparent;
  border-color: var(--g2g-token-color-status-error-dark);
  background: var(--g2g-token-color-neutral-background);
  color: var(--g2g-token-color-neutral-text-muted);
}
.dreamtheme.is-ctl-product .content-main [class~="container"] .container-main .product-detail-tabs .tab-content .product-detail-review-main .login-form .login-password-recover a {
  color: #64748b;
}
.dreamtheme.is-ctl-product .content-main [class~="container"] .container-main .product-detail-tabs .tab-content .product-detail-review-main .login-form .login-password-recover a:hover {
  color: var(--g2g-token-color-neutral-text-default);
  text-decoration: none;
}
.dreamtheme.is-ctl-product .content-main [class~="container"] .container-main .product-detail-tabs .tab-content .product-detail-review-main .login-form .login-submit .btn-primary {
  color: var(--g2g-token-color-neutral-background);
  background-color: #64748b;
  border-color: #64748b;
  border-radius: 21px;
  width: 100%;
}
.dreamtheme.is-ctl-product .content-main [class~="container"] .container-main .product-detail-tabs .tab-content .product-detail-review-main .login-form .login-submit .btn-primary:hover {
  background-color: #0f172a;
  border-color: #0f172a;
}
.dreamtheme.is-ctl-product .content-main [class~="container"] .container-main .product-detail-tabs .tab-content .product-detail-review-main .login-form .login-cancel .btn {
  color: var(--g2g-token-color-neutral-text-default);
  border: none transparent;
}
.dreamtheme.is-ctl-product .content-main [class~="container"] .container-main .product-detail-tabs .tab-content .product-detail-review-main .login-form .login-cancel .btn:hover {
  color: var(--g2g-token-color-neutral-text-default);
  border: none transparent;
  background-color: transparent;
}
.dreamtheme.is-ctl-product .content-main [class~="container"] .container-main .product-detail-tabs .nav.nav-tabs.product-detail-tab-navigation-list {
  border-bottom: 1px solid var(--g2g-token-color-neutral-text-default);
}
.dreamtheme.is-ctl-product .content-main [class~="container"] .container-main .product-detail-tabs .nav.nav-tabs.product-detail-tab-navigation-list .nav-item .product-detail-tab-navigation-link {
  color: var(--g2g-token-color-neutral-text-default);
  font-size: 14px;
  border-bottom: none;
  padding: 10px;
  font-weight: 700;
}
.dreamtheme.is-ctl-product .content-main [class~="container"] .container-main .product-detail-tabs .nav.nav-tabs.product-detail-tab-navigation-list .nav-item .product-detail-tab-navigation-link.active {
  color: var(--g2g-token-color-neutral-text-default);
  background: var(--g2g-token-color-neutral-border);
}
@media (min-width: 576px) {
  .dreamtheme.is-ctl-product .content-main [class~="container"] .container-main .product-detail-tabs .nav.nav-tabs.product-detail-tab-navigation-list .nav-item .product-detail-tab-navigation-link.active {
    border-bottom: 3px;
  }
}
.dreamtheme.is-ctl-product .content-main [class~="container"] .container-main .product-detail-tabs .nav.nav-tabs.product-detail-tab-navigation-list .nav-item .product-detail-tab-navigation-link:hover {
  border-bottom: none;
  background: transparent;
  color: var(--g2g-token-color-neutral-text-default);
}
.dreamtheme.is-ctl-product .js-pseudo-modal .modal .modal-dialog {
  min-width: 400px;
  max-width: 80%;
}
.dreamtheme .btn-buy {
  background: var(--g2g-token-button-buy-bg-default);
  border-color: transparent;
  color: var(--g2g-token-color-neutral-background);
}
.dreamtheme .btn-buy:hover {
  background: var(--g2g-token-button-buy-bg-hover);
  border-color: transparent;
  color: var(--g2g-token-color-neutral-background);
}
body.dreamtheme.dreamtheme.is-ctl-product h1.product-detail-name.product-detail-name, body.dreamtheme.dreamtheme.is-ctl-product .product-detail-name.h1 {
  font-size: 1.75rem;
  line-height: 1.2;
  font-weight: 700;
}
body.dreamtheme.dreamtheme.is-ctl-product:not(.g2g-pdp-name-right) .product-detail-buy h1.product-detail-name.product-detail-name, body.dreamtheme.dreamtheme.is-ctl-product:not(.g2g-pdp-name-right) .product-detail-buy .product-detail-name.h1 {
  display: none;
}
body.dreamtheme.dreamtheme.g2g-pdp-buy-style-plus-minus .product-detail-buy .btn-buy.btn-buy {
  min-width: auto;
  padding: 0.5rem 1rem;
  border-radius: var(--g2g-border-radius, 4px);
}
body.dreamtheme.dreamtheme.g2g-pdp-buy-style-plus-minus .product-detail-buy .btn-buy.btn-buy > span {
  display: none;
}
body.dreamtheme.dreamtheme.g2g-pdp-buy-style-plus-minus .product-detail-buy .btn-buy.btn-buy::before {
  content: "";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1.1rem;
}
body.dreamtheme.dreamtheme.g2g-pdp-buy-style-flaschenpost .product-detail-buy .btn-buy.btn-buy {
  min-width: auto;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
body.dreamtheme.dreamtheme.g2g-pdp-buy-style-flaschenpost .product-detail-buy .btn-buy.btn-buy > span {
  display: none;
}
body.dreamtheme.dreamtheme.g2g-pdp-buy-style-flaschenpost .product-detail-buy .btn-buy.btn-buy::before {
  content: "+";
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}
.dreamtheme.is-ctl-product .content-main .cms-sections .product-detail-buy .product-detail-tax-container .product-detail-tax .product-detail-tax-link {
  font-weight: 400;
  color: rgba(15, 23, 42, 0.55);
  text-decoration: none;
}
.dreamtheme.is-ctl-product .content-main .cms-sections .cms-block-product-description-reviews .cms-element-product-description-reviews .product-description-reviews-tab-navigation .g2g-show-description-on-mobile.nav-item {
  margin-right: 0;
  margin-bottom: 20px;
}
@media (min-width: 576px) {
  .dreamtheme.is-ctl-product .content-main .cms-sections .cms-block-product-description-reviews .cms-element-product-description-reviews .product-description-reviews-tab-navigation .g2g-show-description-on-mobile.nav-item {
    margin-bottom: 0;
  }
}
.dreamtheme.is-ctl-product .content-main .cms-sections .cms-block-product-description-reviews .cms-element-product-description-reviews .product-description-reviews-tab-navigation .g2g-show-description-on-mobile.nav-item .g2g-non-clickable-on-mobile {
  pointer-events: none;
  /* Deaktiviert die Klickbarkeit */
  cursor: default;
  /* Standard-Cursor anzeigen */
}
@media (min-width: 576px) {
  .dreamtheme.is-ctl-product .content-main .cms-sections .cms-block-product-description-reviews .cms-element-product-description-reviews .product-description-reviews-tab-navigation .g2g-show-description-on-mobile.nav-item .g2g-non-clickable-on-mobile {
    pointer-events: auto;
    /* Klickbarkeit wieder aktivieren */
    cursor: pointer;
    /* Hand-Cursor anzeigen */
  }
}
.dreamtheme.is-ctl-product .content-main .cms-sections .cms-block-product-description-reviews .cms-element-product-description-reviews .product-description-reviews-tab-navigation .g2g-show-description-on-mobile.nav-item .nav-link.g2g-non-clickable-on-mobile {
  padding: 0;
  border-bottom: 1px solid var(--g2g-token-color-neutral-border);
}
@media (min-width: 576px) {
  .dreamtheme.is-ctl-product .content-main .cms-sections .cms-block-product-description-reviews .cms-element-product-description-reviews .product-description-reviews-tab-navigation .g2g-show-description-on-mobile.nav-item .nav-link.g2g-non-clickable-on-mobile {
    padding: 8px 24px;
    border-bottom: none;
  }
}
.dreamtheme.is-ctl-product .content-main .cms-sections .cms-block-product-description-reviews .cms-element-product-description-reviews .product-description-reviews-tab-navigation .g2g-show-description-on-mobile.nav-item .nav-link.g2g-non-clickable-on-mobile.active {
  background: none;
  border-bottom: 1px solid var(--g2g-token-color-neutral-border);
  padding: 0;
}
@media (min-width: 576px) {
  .dreamtheme.is-ctl-product .content-main .cms-sections .cms-block-product-description-reviews .cms-element-product-description-reviews .product-description-reviews-tab-navigation .g2g-show-description-on-mobile.nav-item .nav-link.g2g-non-clickable-on-mobile.active {
    padding: 8px 24px;
  }
}
.dreamtheme.is-ctl-product .content-main .cms-sections .cms-block-product-description-reviews .cms-element-product-description-reviews .product-description-reviews-tab-navigation .g2g-show-description-on-mobile.nav-item .nav-link.g2g-non-clickable-on-mobile .g2g-hide-on-mobile {
  display: none;
}
@media (min-width: 576px) {
  .dreamtheme.is-ctl-product .content-main .cms-sections .cms-block-product-description-reviews .cms-element-product-description-reviews .product-description-reviews-tab-navigation .g2g-show-description-on-mobile.nav-item .nav-link.g2g-non-clickable-on-mobile .g2g-hide-on-mobile {
    display: block;
  }
}
.dreamtheme.is-ctl-product .content-main .cms-sections .cms-block-product-description-reviews .cms-element-product-description-reviews .product-description-reviews-tab-navigation .g2g-show-description-on-mobile.nav-item .nav-link.g2g-non-clickable-on-mobile .g2g-hide-always {
  display: none;
}
.dreamtheme.is-ctl-product .content-main .cms-sections .cms-block-product-description-reviews .cms-element-product-description-reviews .product-description-reviews-tab-navigation .g2g-show-description-on-mobile.nav-item .nav-link.g2g-non-clickable-on-mobile .g2g-hide-on-desktop {
  display: block;
}
.dreamtheme.is-ctl-product .content-main .cms-sections .cms-block-product-description-reviews .cms-element-product-description-reviews .product-description-reviews-tab-navigation .g2g-show-description-on-mobile.nav-item .nav-link.g2g-non-clickable-on-mobile .g2g-hide-on-desktop .product-detail-properties {
  margin: 20px 0;
}
.dreamtheme.is-ctl-product .content-main .cms-sections .cms-block-product-description-reviews .cms-element-product-description-reviews .product-description-reviews-tab-navigation .g2g-show-description-on-mobile.nav-item .nav-link.g2g-non-clickable-on-mobile .g2g-hide-on-desktop .product-table2gether {
  margin-top: 0;
}
.dreamtheme.is-ctl-product .content-main .cms-sections .cms-block-product-description-reviews .cms-element-product-description-reviews .product-description-reviews-tab-navigation .g2g-show-description-on-mobile.nav-item .nav-link.g2g-non-clickable-on-mobile .g2g-hide-on-desktop .product-detail-properties-table th {
  width: 40%;
}
@media (min-width: 576px) {
  .dreamtheme.is-ctl-product .content-main .cms-sections .cms-block-product-description-reviews .cms-element-product-description-reviews .product-description-reviews-tab-navigation .g2g-show-description-on-mobile.nav-item .nav-link.g2g-non-clickable-on-mobile .g2g-hide-on-desktop {
    display: none;
  }
}
.dreamtheme.is-ctl-product .content-main .cms-sections .cms-block-product-description-reviews .cms-element-product-description-reviews .product-description-reviews-tab-navigation .g2g-show-description-on-mobile.nav-item .nav-link.g2g-non-clickable-on-mobile .product-detail-tab-preview {
  margin-top: 0;
}
.dreamtheme .product-detail-properties-container.product-detail-properties-container {
  margin-left: 0;
  margin-right: 0;
}
.dreamtheme .footer-main {
  background-color: var(--g2g-token-footer-bg);
  border: none;
}
.dreamtheme .footer-main [class~="container"] [class~="row"].footer-columns {
  color: var(--g2g-token-footer-text);
}
.dreamtheme .footer-main [class~="container"] [class~="row"].footer-columns .footer-column-headline {
  color: var(--g2g-token-footer-heading);
  text-transform: none;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  align-items: center;
}
.dreamtheme .footer-main [class~="container"] [class~="row"].footer-columns .footer-column-headline.g2g-footer-headline--clickable {
  cursor: pointer;
  user-select: none;
}
.dreamtheme .footer-main [class~="container"] [class~="row"].footer-columns .footer-column-headline.g2g-footer-headline--clickable:hover {
  opacity: 0.85;
}
.dreamtheme .footer-main [class~="container"] [class~="row"].footer-columns .footer-column-toggle .footer-plus, .dreamtheme .footer-main [class~="container"] [class~="row"].footer-columns .footer-column-toggle .footer-minus {
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.dreamtheme .footer-main [class~="container"] [class~="row"].footer-columns .social-links.g2g-social-links {
  display: flex;
  flex-wrap: wrap;
  max-width: 420px;
  gap: 3px;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.dreamtheme .footer-main [class~="container"] [class~="row"].footer-columns .social-links.g2g-social-links li {
  line-height: 0;
}
.dreamtheme .footer-main [class~="container"] [class~="row"].footer-columns .social-links.g2g-social-links a.icon-social2gether-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--g2g-token-color-neutral-text-default);
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.dreamtheme .footer-main [class~="container"] [class~="row"].footer-columns .social-links.g2g-social-links a.icon-social2gether-link:hover {
  opacity: 0.75;
  text-decoration: none;
}
.dreamtheme .footer-main [class~="container"] [class~="row"].footer-columns .social-links.g2g-social-links a.icon-social2gether-link .icon-social2gether {
  font-size: calc(32px * 0.6);
  margin: 0;
}
.dreamtheme .footer-main [class~="container"] [class~="row"].footer-columns .social-links.g2g-social-links a.icon-social2gether-link .g2g-social-svg {
  width: calc(32px * 0.6);
  height: calc(32px * 0.6);
}
.dreamtheme .footer-main [class~="container"] [class~="row"].footer-columns .social-links.g2g-social-links a.icon-social2gether-link .g2g-social-custom-img {
  width: calc(32px * 0.6);
  height: calc(32px * 0.6);
  object-fit: contain;
}
.dreamtheme .footer-main [class~="container"] [class~="row"].footer-columns .social-links.g2g-social-links.g2g-social--normal a.icon-social2gether-link {
  background: transparent;
  border-radius: 0;
  color: var(--g2g-token-color-neutral-text-default);
}
.dreamtheme .footer-main [class~="container"] [class~="row"].footer-columns .social-links.g2g-social-links.g2g-social--circle a.icon-social2gether-link {
  background-color: var(--g2g-social-bg, #333333);
  border-radius: 50%;
  color: #ffffff;
}
.dreamtheme .footer-main [class~="container"] [class~="row"].footer-columns .social-links.g2g-social-links.g2g-social--circle a.icon-social2gether-link .icon-social2gether, .dreamtheme .footer-main [class~="container"] [class~="row"].footer-columns .social-links.g2g-social-links.g2g-social--circle a.icon-social2gether-link .g2g-social-svg {
  color: #ffffff;
  fill: #ffffff;
}
.dreamtheme .footer-main [class~="container"] [class~="row"].footer-columns .social-links.g2g-social-links.g2g-social--circle a.icon-social2gether-link:hover {
  transform: scale(1.1);
  opacity: 1;
}
.dreamtheme .footer-main [class~="container"] [class~="row"].footer-columns .social-links.g2g-social-links.g2g-social--square a.icon-social2gether-link {
  background-color: var(--g2g-social-bg, #333333);
  border-radius: var(--g2g-border-radius, 4px);
  color: #ffffff;
}
.dreamtheme .footer-main [class~="container"] [class~="row"].footer-columns .social-links.g2g-social-links.g2g-social--square a.icon-social2gether-link .icon-social2gether, .dreamtheme .footer-main [class~="container"] [class~="row"].footer-columns .social-links.g2g-social-links.g2g-social--square a.icon-social2gether-link .g2g-social-svg {
  color: #ffffff;
  fill: #ffffff;
}
.dreamtheme .footer-main [class~="container"] [class~="row"].footer-columns .social-links.g2g-social-links.g2g-social--square a.icon-social2gether-link:hover {
  transform: scale(1.1);
  opacity: 1;
}
@media (min-width: 768px) {
  .dreamtheme .footer-main .container #footerColumns .footer-column, .dreamtheme .footer-main .cms-section .boxed #footerColumns .footer-column, .cms-section .dreamtheme .footer-main .boxed #footerColumns .footer-column {
    padding-bottom: 20px;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .dreamtheme .footer-main .footer-column .headline-pay2gether {
    margin-top: 40px;
    padding-top: 8px;
  }
  .dreamtheme .footer-main .footer-column .headline-ship2gether {
    margin: 0;
  }
}
.dreamtheme .headline-social2gether {
  margin-top: 25px;
}
.dreamtheme .footer-social2gether {
  margin-top: 10px;
}
.dreamtheme .footer-icons2gether .headline-pay2gether, .dreamtheme .footer-icons2gether .headline-ship2gether {
  color: var(--g2g-token-color-neutral-text-default);
  font-size: 16px;
  font-weight: 700;
}
.dreamtheme .footer-icons2gether .headline-pay2gether {
  padding-bottom: 8px;
}
@media (min-width: 768px) {
  .dreamtheme .footer-icons2gether .headline-pay2gether {
    padding-top: 48px;
  }
}
.dreamtheme .footer-icons2gether .headline-ship2gether {
  margin-top: 5px;
  margin-bottom: 5px;
}
@media (min-width: 768px) {
  .dreamtheme .footer-icons2gether .headline-ship2gether {
    padding-top: 18px;
    padding-bottom: 8px;
  }
}
.dreamtheme .footer-icons2gether .content-pay2gether ul {
  padding: 0;
  margin: 0;
}
.dreamtheme .footer-icons2gether .content-pay2gether li {
  display: inline-block;
}
.dreamtheme .footer-icons2gether .content-pay2gether img {
  float: left;
  border: var(--g2g-pay-border, 1px solid #dadae5);
  border-radius: var(--g2g-pay-radius, 4px);
  width: 60px;
  height: auto;
}
.dreamtheme .footer-icons2gether .content-ship2gether ul {
  padding: 0;
  margin: 0;
}
.dreamtheme .footer-icons2gether .content-ship2gether li {
  display: inline-block;
}
.dreamtheme .footer-icons2gether .content-ship2gether img {
  float: left;
  border: var(--g2g-ship-border, 1px solid #dadae5);
  border-radius: var(--g2g-ship-radius, 4px);
  width: 60px;
  height: auto;
}
.dreamtheme .footer-bottom-line, .dreamtheme .footer-copyright, .dreamtheme .footer-main + .footer-bottom-line, .dreamtheme .footer-main + .footer-copyright {
  background-color: var(--g2g-token-footer-bottom-bg, #f9f9f9);
  border-top: 1px solid var(--g2g-token-footer-border);
  color: var(--g2g-token-footer-text);
}
.dreamtheme .footer-bottom-line a, .dreamtheme .footer-copyright a, .dreamtheme .footer-main + .footer-bottom-line a, .dreamtheme .footer-main + .footer-copyright a {
  color: var(--g2g-token-footer-text);
}
body.dreamtheme.dreamtheme .footer-main {
  background-color: var(--g2g-token-footer-bg);
}
body.dreamtheme.dreamtheme .footer-main .footer-column-headline, body.dreamtheme.dreamtheme .footer-main .footer-column-headline a, body.dreamtheme.dreamtheme .footer-main .footer-headline {
  color: var(--g2g-token-footer-heading);
}
body.dreamtheme.dreamtheme .footer-main p, body.dreamtheme.dreamtheme .footer-main li, body.dreamtheme.dreamtheme .footer-main span, body.dreamtheme.dreamtheme .footer-main .footer-column-content, body.dreamtheme.dreamtheme .footer-main .footer-contact-form, body.dreamtheme.dreamtheme .footer-main .footer-contact-hotline {
  color: var(--g2g-token-footer-text);
}
body.dreamtheme.dreamtheme .footer-main p {
  margin-bottom: 0;
}
body.dreamtheme.dreamtheme .footer-main a:not(.icon-social2gether-link):not(.btn) {
  color: var(--g2g-token-footer-link-default);
}
body.dreamtheme.dreamtheme .footer-main .footer-column-content a.footer-link {
  text-decoration: none;
  padding: 1px 0;
}
body.dreamtheme.dreamtheme .footer-main .footer-column-content a.footer-link:hover {
  text-decoration: underline;
}
body.dreamtheme.dreamtheme .footer-main .footer-column-content li.footer-link-item {
  padding: 1px 0;
}
body.dreamtheme.dreamtheme .footer-main .g2g-social-links a.icon-social2gether-link {
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  max-height: 32px;
  padding: 0;
  margin-right: 0;
}
body.dreamtheme.dreamtheme .footer-main .g2g-social-links a.icon-social2gether-link .icon-social2gether {
  font-size: calc(32px * 0.6);
}
body.dreamtheme.dreamtheme .footer-main .g2g-social-links a.icon-social2gether-link .g2g-social-svg {
  width: calc(32px * 0.6);
  height: calc(32px * 0.6);
}
body.dreamtheme.dreamtheme .footer-main .g2g-social-links a.icon-social2gether-link .g2g-social-custom-img {
  width: calc(32px * 0.6);
  height: calc(32px * 0.6);
  object-fit: contain;
}
body.dreamtheme.dreamtheme .footer-main .footer-icons2gether .content-pay2gether img {
  width: 60px;
  border: var(--g2g-pay-border, 1px solid #dadae5);
  border-radius: var(--g2g-pay-radius, 4px);
}
body.dreamtheme.dreamtheme .footer-main .footer-icons2gether .content-ship2gether img {
  width: 60px;
  border: var(--g2g-ship-border, 1px solid #dadae5);
  border-radius: var(--g2g-ship-radius, 4px);
}
body.dreamtheme.dreamtheme .footer-main .g2g-social-links {
  gap: 3px;
}
body.dreamtheme.dreamtheme .footer-main .footer-icons2gether .content-pay2gether ul {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
body.dreamtheme.dreamtheme .footer-main .footer-icons2gether .content-ship2gether ul {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
body.dreamtheme.dreamtheme .footer-main .footer-icons2gether.g2g-footer-icons--monochrome img {
  filter: grayscale(1);
  opacity: 0.7;
  transition: filter 0.2s ease, opacity 0.2s ease;
}
body.dreamtheme.dreamtheme .footer-main .footer-icons2gether.g2g-footer-icons--monochrome img:hover {
  filter: grayscale(0);
  opacity: 1;
}
body.dreamtheme.dreamtheme .g2g-footer-badge {
  text-align: center;
  padding: 1rem 0;
}
body.dreamtheme.dreamtheme .g2g-footer-copyright {
  text-align: center;
  padding: 0.75rem 0;
  font-size: 0.85rem;
  color: var(--g2g-token-footer-text);
}
.dreamtheme .g2g-footer-usp {
  background-color: var(--g2g-token-footer-bg);
  border-bottom: 1px solid var(--g2g-token-footer-border, rgba(0, 0, 0, 0.1));
  padding: 1rem 0;
}
.dreamtheme .g2g-footer-usp .g2g-footer-usp__row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.dreamtheme .g2g-footer-usp .g2g-footer-usp__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}
.dreamtheme .g2g-footer-usp .g2g-footer-usp__icon {
  display: inline-flex;
  align-items: center;
  color: var(--g2g-token-footer-heading);
}
.dreamtheme .g2g-footer-usp .g2g-footer-usp__icon svg {
  width: 20px;
  height: 20px;
}
.dreamtheme .g2g-footer-usp .g2g-footer-usp__text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--g2g-token-footer-text);
}
.dreamtheme .g2g-header {
  background: #ffffff;
}
.dreamtheme.dreamtheme header.header-main.header-main {
  height: auto;
  min-height: var(--g2g-token-header-main-height, 0);
  background-color: transparent;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  position: relative;
  z-index: 10;
  border-bottom: 0;
}
.dreamtheme.dreamtheme header.header-main.header-main > [class~="container"] {
  display: block;
  height: auto;
}
.dreamtheme.dreamtheme .header-main .header-search-col.header-search-col.header-search-col .header-search, .dreamtheme.dreamtheme .header-main .header-search-col.header-search-col.header-search-col .header-search-form, .dreamtheme.dreamtheme .header-main .header-search-col.header-search-col.header-search-col .input-group, .dreamtheme.dreamtheme .header-main .header-search-col.header-search-col.header-search-col .input-group > .header-search-input, .dreamtheme.dreamtheme .header-main .header-search-col.header-search-col.header-search-col .input-group > .header-search-btn, .dreamtheme.dreamtheme .header-main .header-search-col.header-search-col.header-search-col .input-group > .btn {
  box-sizing: border-box;
}
.dreamtheme.dreamtheme .header-main .header-search-col.header-search-col.header-search-col .header-search-input.header-search-input {
  height: 47px;
  min-height: 47px;
  max-height: 47px;
  line-height: 1.2;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 15px;
}
.dreamtheme.dreamtheme .header-main .header-search-col.header-search-col.header-search-col .header-search, .dreamtheme.dreamtheme .header-main .header-search-col.header-search-col.header-search-col .header-search-form, .dreamtheme.dreamtheme .header-main .header-search-col.header-search-col.header-search-col .input-group {
  height: 47px;
  min-height: 47px;
}
.dreamtheme.dreamtheme .header-main .header-search-col.header-search-col.header-search-col .input-group {
  position: relative;
}
.dreamtheme.dreamtheme .nav-main {
  margin-top: 0;
  border-top: 1px solid #ececec;
}
.dreamtheme.dreamtheme .content-main {
  margin-top: 0;
}
.dreamtheme .header-main {
  background-size: contain;
  background-position: bottom;
  margin-bottom: 10px;
}
.dreamtheme .header-main .header-row.header-row {
  box-shadow: 0 5px 6px -2px rgba(0, 0, 0, 0.2);
  padding-bottom: 0;
}
@media (min-width: 992px) {
  .dreamtheme .header-main .header-row.header-row {
    box-shadow: unset;
  }
}
.dreamtheme .header-main .header-row.header-row .header-logo-col {
  padding-top: 0;
  margin-top: 10px;
}
.dreamtheme .header-main .header-row.header-row .header-logo-col .header-logo-main-link .header-logo-picture {
  display: block;
}
.dreamtheme .header-main .header-row.header-row .header-search-col [class~="col"] {
  padding-top: 0;
}
.dreamtheme .header-main .header-row.header-row .header-search-col [class~="col"] .collapse .header-search {
  position: relative;
  display: flex;
}
.dreamtheme .header-main .header-row.header-row .header-search-col [class~="col"] .collapse .header-search .input-group {
  padding-top: 0;
}
.dreamtheme .header-main .header-row.header-row .header-search-col [class~="col"] .collapse .header-search .header-search-form {
  width: 100%;
}
.dreamtheme .header-main .header-row.header-row .header-search-col [class~="col"] .collapse .header-search .header-search-form.g2g-has-cat-switcher.g2g-has-cat-switcher .g2g-search-cat {
  display: none;
}
@media (min-width: 768px) {
  .dreamtheme .header-main .header-row.header-row .header-search-col [class~="col"] .collapse .header-search .header-search-form.g2g-has-cat-switcher.g2g-has-cat-switcher {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1.5px solid rgba(49, 97, 0, 0.16);
    border-radius: var(--g2g-border-radius, 999px);
    box-shadow: 0 4px 16px -8px rgba(49, 97, 0, 0.18), 0 1px 2px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
  }
  .dreamtheme .header-main .header-row.header-row .header-search-col [class~="col"] .collapse .header-search .header-search-form.g2g-has-cat-switcher.g2g-has-cat-switcher:focus-within {
    border-color: var(--g2g-token-color-brand-primary);
    box-shadow: 0 0 0 3px rgba(49, 97, 0, 0.16), 0 8px 22px -8px rgba(49, 97, 0, 0.26);
  }
  .dreamtheme .header-main .header-row.header-row .header-search-col [class~="col"] .collapse .header-search .header-search-form.g2g-has-cat-switcher.g2g-has-cat-switcher .g2g-search-cat {
    display: block;
    flex: 0 0 auto;
    max-width: 40%;
    border: 0;
    border-right: 1.5px solid rgba(49, 97, 0, 0.13);
    border-radius: var(--g2g-border-radius, 999px) 0 0 var(--g2g-border-radius, 999px);
    padding: 0 2rem 0 3rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3a1e;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23316100' d='M1 1l5 5 5-5'/%3E%3C/svg%3E") no-repeat right 0.85rem center / 0.65rem, url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='14' viewBox='0 0 16 14' fill='none' stroke='%23316100' stroke-width='2' stroke-linecap='round'%3E%3Cline x1='1' y1='2' x2='15' y2='2'/%3E%3Cline x1='1' y1='7' x2='15' y2='7'/%3E%3Cline x1='1' y1='12' x2='15' y2='12'/%3E%3C/svg%3E") no-repeat left 1.15rem center / 0.95rem, transparent;
  }
  .dreamtheme .header-main .header-row.header-row .header-search-col [class~="col"] .collapse .header-search .header-search-form.g2g-has-cat-switcher.g2g-has-cat-switcher .g2g-search-cat:hover {
    background-color: rgba(49, 97, 0, 0.05);
  }
  .dreamtheme .header-main .header-row.header-row .header-search-col [class~="col"] .collapse .header-search .header-search-form.g2g-has-cat-switcher.g2g-has-cat-switcher .g2g-search-cat:focus, .dreamtheme .header-main .header-row.header-row .header-search-col [class~="col"] .collapse .header-search .header-search-form.g2g-has-cat-switcher.g2g-has-cat-switcher .g2g-search-cat:focus-visible {
    outline: 0;
    box-shadow: none;
  }
  .dreamtheme .header-main .header-row.header-row .header-search-col [class~="col"] .collapse .header-search .header-search-form.g2g-has-cat-switcher.g2g-has-cat-switcher .input-group {
    flex: 1 1 auto;
    min-width: 0;
  }
  .dreamtheme .header-main .header-row.header-row .header-search-col [class~="col"] .collapse .header-search .header-search-form.g2g-has-cat-switcher.g2g-has-cat-switcher .input-group .header-search-input {
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding-left: 1.3rem;
  }
}
.dreamtheme .header-main .header-row.header-row .header-search-col [class~="col"] .collapse .header-search .header-search-form .input-group input {
  padding-left: 20px;
}
.dreamtheme .header-main .header-row.header-row .header-search-col [class~="col"] .collapse .header-search .header-search-form .input-group input::-webkit-input-placeholder {
  color: #585858;
}
.dreamtheme .header-main .header-row.header-row .header-search-col [class~="col"] .collapse .header-search .header-search-form .input-group input::placeholder {
  color: #585858;
  opacity: 1;
  text-transform: none;
}
.dreamtheme .header-main .header-row.header-row .header-search-col [class~="col"] .collapse .header-search .header-search-form .input-group input:-moz-placeholder {
  color: #585858;
  opacity: 1;
  text-transform: none;
}
.dreamtheme .header-main .header-row.header-row .header-search-col [class~="col"] .collapse .header-search .header-search-form .input-group input::-webkit-input-placeholder {
  color: #585858;
}
.dreamtheme .header-main .header-row.header-row .header-search-col [class~="col"] .collapse .header-search .header-search-form .input-group input:-ms-input-placeholder {
  color: #585858;
}
.dreamtheme .header-main .header-row.header-row .header-search-col [class~="col"] .collapse .header-search .header-search-form .input-group .btn.header-search-btn {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  width: 37px;
  height: 37px;
  min-height: 37px;
  max-height: 37px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--g2g-token-color-brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.dreamtheme .header-main .header-row.header-row .header-search-col [class~="col"] .collapse .header-search .header-search-form .input-group .btn.header-search-btn .loader {
  display: none;
}
.dreamtheme .header-main .header-row.header-row .header-search-col [class~="col"] .collapse .header-search .header-search-form .input-group .btn.header-search-btn .header-search-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-1px, -5px);
}
.dreamtheme .header-main .header-row.header-row .header-search-col [class~="col"] .collapse .header-search .header-search-form .input-group .btn.header-search-btn .header-search-icon .icon {
  color: #fff;
  width: 19px;
  height: 19px;
}
.dreamtheme .header-main .header-row.header-row .header-search-col [class~="col"] .collapse .header-search .header-search-form .input-group .btn.header-search-btn .header-search-icon .icon svg {
  stroke: #fff;
  stroke-width: 1.3px;
  width: 19px;
  height: 19px;
}
.dreamtheme .header-main .header-row.header-row .header-search-col [class~="col"] .collapse .header-search .header-search-form .input-group .btn.header-search-btn .header-search-icon .icon.icon-search {
  color: #fff;
}
.dreamtheme .header-main .header-row.header-row .header-search-col [class~="col"] .collapse .header-search .header-search-form .input-group .btn.header-search-btn .header-search-icon .icon.icon-search:hover {
  color: #fff;
}
.dreamtheme .header-main .header-row.header-row .header-search-col [class~="col"] .collapse .header-search .header-search-input {
  background: var(--g2g-token-form-input-bg-default);
  border: 1px solid var(--g2g-token-color-neutral-border);
  color: var(--g2g-token-form-input-text);
  text-transform: none;
  width: 100%;
  border-radius: var(--g2g-border-radius, 999px);
  padding-right: 59px;
}
.dreamtheme .header-main .header-row.header-row .header-actions-col .search-toggle {
  margin-right: 10px;
}
.dreamtheme .header-main .header-row.header-row .header-actions-col .header-cart {
  display: inline-flex;
  width: max-content;
}
.dreamtheme .header-main .header-row.header-row .header-actions-col .header-cart-total {
  color: var(--g2g-token-color-neutral-text-default);
  font-size: 0.9375rem;
  align-self: center;
  white-space: nowrap;
}
.dreamtheme .header-main .header-logo-col.header-logo-col {
  flex: 0 0 auto;
}
.dreamtheme .header-main .header-search-col.header-search-col {
  flex: 1 1 0%;
}
.dreamtheme .header-main .header-actions-col {
  padding-left: 14px;
}
.dreamtheme .header-main .header-actions-col [class~="row"] {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
}
.dreamtheme .header-main .header-actions-col [class~="row"] > [class*="col"] {
  width: auto;
  flex: 0 0 auto;
  padding-left: 0;
  padding-right: 0;
}
.dreamtheme .header-main .header-actions-col [class~="row"] > .col-cart {
  width: max-content;
}
.dreamtheme .header-main .header-actions-col .header-actions-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  font-size: 19px;
  line-height: 1;
  overflow: visible;
}
.dreamtheme .header-main .header-actions-col .header-actions-btn .icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  font-size: 0;
  line-height: 0;
}
.dreamtheme .header-main .header-actions-col .header-actions-btn svg {
  width: 22px;
  height: 22px;
  top: 0;
}
@media (max-width: 767px) {
  .dreamtheme .header-logo-col {
    display: block;
  }
}
.dreamtheme.is-act-loginpage .account-register [class~="row"] {
  margin-left: unset;
  margin-right: unset;
}
.dreamtheme.is-act-loginpage .account-register [class~="row"] [class~="col-lg-4"], .dreamtheme.is-act-loginpage .account-register [class~="row"] [class~="col-lg-8"] {
  background: var(--g2g-token-color-neutral-surface);
  padding: 20px;
}
@media (min-width: 992px) {
  .dreamtheme.is-act-loginpage .account-register [class~="row"] [class~="col-lg-4"], .dreamtheme.is-act-loginpage .account-register [class~="row"] [class~="col-lg-8"] {
    padding: unset;
  }
}
.dreamtheme.is-act-loginpage .account-register [class~="row"] [class~="col-lg-4"] .login-form .login-form-description {
  font-size: unset;
}
.dreamtheme.is-act-loginpage .account-register [class~="row"] [class~="col-lg-4"] .login-form .login-submit button {
  width: 100%;
  border-radius: var(--g2g-border-radius, 4px);
}
@media (min-width: 576px) {
  .dreamtheme.is-act-loginpage .account-register [class~="row"] [class~="col-lg-4"] .login-form .login-submit button {
    width: 50%;
  }
}
@media (min-width: 992px) {
  .dreamtheme.is-act-loginpage .account-register [class~="row"] [class~="col-lg-4"] .login-form .login-submit button {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .dreamtheme.is-act-loginpage .account-register [class~="row"] [class~="col-lg-4"] {
    padding: 20px 0 20px 20px;
  }
}
.dreamtheme.is-act-loginpage .account-register [class~="row"] [class~="col-lg-8"] .register-card .g2g-checkout-register-header {
  border-bottom: 1px solid var(--g2g-token-color-neutral-border);
  font-size: 16px;
}
.dreamtheme.is-act-loginpage .account-register [class~="row"] [class~="col-lg-8"] .register-card .register-form .register-submit button {
  border-radius: var(--g2g-border-radius, 4px);
}
@media (min-width: 992px) {
  .dreamtheme.is-act-loginpage .account-register [class~="row"] [class~="col-lg-8"] {
    padding: 20px;
  }
}
.dreamtheme .cms-section-sidebar .cms-element-product-listing, .dreamtheme .cms-section-sidebar-main-content .cms-element-product-listing, .dreamtheme .cms-section-default:not(.cms-section-sidebar) .cms-element-product-listing {
  padding: 0 16px;
}
@media (min-width: 992px) {
  .dreamtheme .cms-section-sidebar .cms-element-product-listing, .dreamtheme .cms-section-sidebar-main-content .cms-element-product-listing, .dreamtheme .cms-section-default:not(.cms-section-sidebar) .cms-element-product-listing {
    padding: 0 11px;
  }
}
@media (min-width: 1200px) {
  .dreamtheme .cms-section-sidebar .cms-element-product-listing, .dreamtheme .cms-section-sidebar-main-content .cms-element-product-listing, .dreamtheme .cms-section-default:not(.cms-section-sidebar) .cms-element-product-listing {
    padding: 0 16px;
  }
}
.dreamtheme .cms-section-default.boxed .cms-block-moorl-twig {
  padding: 0 20px;
}
@media (min-width: 1200px) {
  .dreamtheme .cms-section-default.boxed .cms-block-moorl-twig {
    padding: 0;
  }
}
.dreamtheme .cms-section-default.boxed .cms-block-moorl-twig .col-12 {
  background: unset;
}
body .cms-element-product-listing.g2g-listing-view-toggle-enabled .cms-listing-row {
  transition: opacity 0.12s ease;
}
body.dreamtheme .cms-listing-row {
  margin-left: 0;
  margin-right: 0;
}
@media (min-width: 992px) {
  body .cms-element-product-listing.g2g-listing-cols-3 .cms-listing-row, body .cms-element-product-listing.g2g-listing-cols-4 .cms-listing-row, body .cms-element-product-listing.g2g-listing-cols-5 .cms-listing-row {
    display: grid;
    gap: 1.5rem;
  }
  body .cms-element-product-listing.g2g-listing-cols-3 .cms-listing-row > [class*="col-"], body .cms-element-product-listing.g2g-listing-cols-4 .cms-listing-row > [class*="col-"], body .cms-element-product-listing.g2g-listing-cols-5 .cms-listing-row > [class*="col-"] {
    flex: unset;
    max-width: unset;
    width: unset;
    padding-left: 0;
    padding-right: 0;
  }
  body .cms-element-product-listing.g2g-listing-cols-3 .cms-listing-row .card.product-box, body .cms-element-product-listing.g2g-listing-cols-4 .cms-listing-row .card.product-box, body .cms-element-product-listing.g2g-listing-cols-5 .cms-listing-row .card.product-box {
    height: 100%;
  }
  body .cms-element-product-listing.g2g-listing-cols-3 .cms-listing-row {
    grid-template-columns: repeat(3, 1fr);
  }
  body .cms-element-product-listing.g2g-listing-cols-4 .cms-listing-row {
    grid-template-columns: repeat(4, 1fr);
  }
  body .cms-element-product-listing.g2g-listing-cols-5 .cms-listing-row {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (min-width: 992px) {
  body .cms-section-sidebar .cms-element-product-listing.g2g-listing-cols-5 .cms-listing-row {
    grid-template-columns: repeat(4, 1fr);
  }
  body .cms-section-sidebar .cms-element-product-listing.g2g-listing-cols-4 .cms-listing-row {
    grid-template-columns: repeat(3, 1fr);
  }
  body .cms-section-sidebar .cms-element-product-listing.g2g-listing-cols-3 .cms-listing-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
body.dreamtheme .cms-element-product-listing-actions.cms-element-product-listing-actions, body.dreamtheme .product-listing-sorting.product-listing-sorting {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 12px;
  min-height: 40px;
}
body.dreamtheme .cms-element-product-listing-actions > div, body.dreamtheme .cms-element-product-listing-actions > form, body.dreamtheme .cms-element-product-listing-actions > select {
  margin: 0;
  flex: 0 0 auto;
}
body.dreamtheme .cms-element-product-listing-actions > .g2g-listing-view-toggle {
  width: auto;
}
.g2g-listing-view-toggle {
  display: inline-flex;
  gap: 4px;
  margin-right: 0;
  vertical-align: middle;
  flex: 0 0 auto;
  order: -1;
}
.g2g-listing-view-toggle__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--g2g-token-color-neutral-border, #e2e8f0);
  border-radius: var(--g2g-border-radius-global, 6px);
  cursor: pointer;
  color: var(--g2g-token-color-neutral-text, #475569);
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.g2g-listing-view-toggle__btn:hover {
  background: var(--g2g-token-color-neutral-surface, #f1f5f9);
}
.g2g-listing-view-toggle__btn.is-active {
  background: var(--g2g-token-color-brand-primary, #64748b);
  border-color: var(--g2g-token-color-brand-primary, #64748b);
  color: #fff;
}
@media (max-width: 767px) {
  .g2g-listing-view-toggle {
    display: none;
  }
}
body.dreamtheme .g2g-listing-per-page-wrap {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: 4px;
}
body.dreamtheme .g2g-listing-per-page-wrap .g2g-per-page-label {
  font-size: 0.85rem;
  color: var(--g2g-token-color-neutral-text, #64748b);
  white-space: nowrap;
}
body.dreamtheme .g2g-listing-per-page-wrap .g2g-per-page-select {
  flex: 0 0 auto;
  min-width: 140px;
  width: auto;
  border: 1px solid var(--g2g-token-color-neutral-border, #e2e8f0);
  border-radius: var(--g2g-border-radius-global, 6px);
}
body.dreamtheme .cms-element-product-listing-actions .sorting.form-select, body.dreamtheme .cms-element-product-listing-actions .g2g-per-page-select.form-select {
  border-width: 1px;
  border-style: solid;
  border-color: var(--g2g-token-color-neutral-border, #e2e8f0);
  border-radius: var(--g2g-border-radius-global, 16px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
@media (max-width: 991.98px) {
  body.dreamtheme .cms-section-sidebar .cms-element-product-listing, body.dreamtheme .cms-element-product-listing {
    padding-left: 30px;
    padding-right: 30px;
  }
  body.dreamtheme .cms-breadcrumb, body.dreamtheme .breadcrumb {
    padding-left: 0;
    padding-right: 0;
  }
  body.dreamtheme .cms-element-product-listing-actions.cms-element-product-listing-actions {
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
  body.dreamtheme .cms-element-product-listing-actions.cms-element-product-listing-actions > .col-md-auto, body.dreamtheme .cms-element-product-listing-actions.cms-element-product-listing-actions > [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
  }
  body.dreamtheme .g2g-listing-view-toggle {
    display: none;
  }
  body.dreamtheme .g2g-listing-per-page-wrap {
    display: none;
  }
  body.dreamtheme .cms-listing-row, body.dreamtheme .cms-listing-row.js-listing-wrapper {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 992px) and (max-width: 1599.98px) {
  body.dreamtheme .cms-element-product-listing-actions .g2g-listing-per-page-wrap {
    flex: 0 0 auto;
  }
  body.dreamtheme .cms-element-product-listing-actions .g2g-per-page-select {
    width: auto;
    min-width: 120px;
    max-width: 130px;
    padding-right: 28px;
    font-size: 0.88rem;
  }
  body.dreamtheme .cms-element-product-listing-actions .sorting {
    max-width: 180px;
    font-size: 0.88rem;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  body.dreamtheme .cms-element-product-listing-actions .g2g-per-page-select {
    min-width: 100px;
    max-width: 115px;
    font-size: 0.8rem;
    padding: 4px 24px 4px 8px;
  }
  body.dreamtheme .cms-element-product-listing-actions .sorting, body.dreamtheme .cms-element-product-listing-actions .sorting select {
    max-width: 140px;
    font-size: 0.8rem;
    padding: 4px 24px 4px 8px;
  }
  body.dreamtheme .cms-element-product-listing-actions .pagination .page-link {
    padding: 4px 8px;
    font-size: 0.85rem;
    min-width: 28px;
  }
}
body.dreamtheme .cms-element-product-listing-actions {
  flex-wrap: wrap;
  row-gap: 8px;
  margin-left: 0;
  margin-right: 0;
}
body.dreamtheme .cms-element-product-listing-actions > .col-md-auto.ms-auto {
  margin-left: 0;
}
@media (min-width: 992px) {
  body.dreamtheme .cms-element-product-listing-actions > .g2g-listing-view-toggle {
    padding-left: 0;
    padding-right: 0;
  }
  body.dreamtheme .cms-element-product-listing-actions > .col-md-auto:has(.g2g-listing-per-page-wrap) {
    padding-right: 0;
  }
}
body.dreamtheme .cms-element-product-listing-actions .g2g-listing-per-page-wrap {
  margin-left: 8px;
}
body.dreamtheme .cms-element-product-listing-actions .sorting, body.dreamtheme .cms-element-product-listing-actions .sorting select {
  max-width: 160px;
  width: auto;
}
@media (min-width: 768px) {
  body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row, body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row.js-listing-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-left: 0;
    margin-right: 0;
  }
  body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row .cms-listing-col, body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row > [class*="col-"] {
    flex: 1 1 100%;
    max-width: 100%;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin-top: 10px;
    margin-bottom: 0;
  }
  body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row .cms-listing-col:first-child, body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row > [class*="col-"]:first-child {
    margin-top: 30px;
  }
  body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row .product-box.box-standard {
    display: flex;
    flex-direction: row;
    width: 100%;
    min-height: 140px;
    border: 1px solid #e5e7eb;
    border-radius: var(--g2g-border-radius-global, 12px);
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
    position: relative;
    margin: 0;
  }
  body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row .product-box.box-standard:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border-color: #d1d5db;
  }
  body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row .product-box .card-body {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    padding: 0;
    width: 100%;
    position: static;
    gap: 0;
    height: 100%;
  }
  body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row .product-box .card-body > a:not(.product-name) {
    flex: 0 0 180px;
    max-width: 180px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9fafb;
    padding: 14px;
    position: static;
    border-right: 1px solid #f3f4f6;
    align-self: stretch;
  }
  body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row .product-box .product-image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: static;
  }
  body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row .product-box .product-image-wrapper img {
    max-width: 100%;
    max-height: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
  }
  body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row .product-box:hover .product-image-wrapper img {
    transform: scale(1.06);
  }
  body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row .product-box .product-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
  }
  body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row .product-box .badge-stock2gether, body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row .product-box .badge-discount, body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row .product-box .badge.bg-danger {
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 0.65rem;
    font-weight: 600;
    line-height: 1.4;
  }
  body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row .product-box .badge-stock2gether {
    text-transform: uppercase;
    letter-spacing: 0.4px;
  }
  body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row .product-box .badge-discount, body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row .product-box .badge.bg-danger {
    font-weight: 700;
  }
  body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row .product-box.box-standard.box-standard {
    position: relative;
    width: 100%;
    max-width: 100%;
  }
  body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row .product-box .product-wishlist.product-wishlist {
    position: absolute;
    top: 10px;
    left: 145px;
    right: auto;
    bottom: auto;
    z-index: 10;
    width: 28px;
    height: 28px;
    margin: 0;
  }
  body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row .product-box .product-wishlist-action-circle {
    position: absolute;
    top: 0;
    right: 0;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--g2g-border-radius, 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s ease;
  }
  body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row .product-box .product-wishlist-action-circle:hover {
    background: #fff;
    transform: scale(1.1);
    border-color: var(--g2g-token-color-brand-primary, #64748b);
  }
  body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row .product-box .product-wishlist .icon, body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row .product-box .product-wishlist svg {
    position: static;
    width: 14px;
    height: 14px;
  }
  body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row .product-box .product-info {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    padding: 0 170px 14px 20px;
    min-width: 0;
    align-self: stretch;
    position: relative;
  }
  body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row .product-box .product-info > * {
    flex: 0 0 auto;
    height: auto;
  }
  body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row .product-box .g2g-product-rating {
    flex: 0 0 auto;
    width: auto;
    height: 16px;
    min-height: 16px;
    max-height: 16px;
    order: 1;
    margin: 0 0 4px 0;
    font-size: 0.72rem;
    color: #9ca3af;
    font-style: italic;
    line-height: 1.2;
  }
  body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row .product-box .g2g-product-rating:empty, body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row .product-box .g2g-product-rating:has(> .g2g-rating-empty:only-child) {
    visibility: hidden;
  }
  body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row .product-box .g2g-rating-empty {
    color: #9ca3af;
  }
  body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row .product-box .product-name-headline, body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row .product-box h2.product-name-headline, body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row .product-box .product-name-headline.h2 {
    order: 2;
    margin: 0 0 6px 0;
    font-size: 1.1rem;
    line-height: 1.3;
    font-weight: 600;
    color: var(--g2g-token-color-brand-primary-text, #64748b);
    /* Waltraud — WCAG AA Text */
    display: block;
    max-width: 60%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: left;
  }
  body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row .product-box .product-name-headline a, body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row .product-box .product-name {
    color: inherit;
    text-decoration: none;
    text-align: left;
  }
  body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row .product-box .product-name-headline a:hover {
    color: #c94f00;
    text-decoration: underline;
  }
  body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row .product-box .product-description {
    order: 3;
    font-size: 0.82rem;
    line-height: 1.45;
    color: #6b7280;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
  }
  body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row .product-box .product-price-info {
    position: absolute;
    top: 14px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
    gap: 0;
    text-align: right;
    width: auto;
  }
  body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row .product-box .product-price-unit {
    font-size: 0.7rem;
    color: #9ca3af;
    margin: 0;
    padding: 0;
    min-height: 0;
    line-height: 1;
    text-align: right;
    order: 10;
  }
  body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row .product-box .product-price-unit:not(:has(*)) {
    display: none;
  }
  body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row .product-box .product-cheapest-price {
    font-size: 0.72rem;
    color: #9ca3af;
    font-style: italic;
    margin: 0;
    padding: 0;
    min-height: 0;
    line-height: 1.2;
    text-align: right;
  }
  body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row .product-box .product-price-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
    margin: 0;
  }
  body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row .product-box .g2g-product-price-box {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin: 0;
    justify-content: flex-end;
  }
  body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row .product-box .g2g-product-price-box-inner {
    display: inline-flex;
    align-items: baseline;
    margin: 0;
  }
  body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row .product-box .product-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
    margin: 0;
  }
  body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row .product-box .product-tax, body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row .product-box .product-price-tax-link {
    font-size: 0.65rem;
    color: #9ca3af;
    text-decoration: none;
    padding: 0;
    margin: 0;
  }
  body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row .product-box .product-action {
    position: absolute;
    bottom: 14px;
    right: 20px;
    margin: 0;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    width: auto;
  }
  body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row .product-box .product-action form {
    display: flex;
    gap: 6px;
    align-items: center;
    margin: 0;
    justify-content: flex-end;
  }
  body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row .product-box .product-action .d-grid {
    width: 100%;
  }
  body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row .product-box .product-action .d-grid > .btn, body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row .product-box .product-action .btn-detail {
    justify-self: end;
  }
  body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row .product-box .product-action .btn, body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row .product-box .btn-buy {
    padding: 7px 16px;
    font-weight: 600;
    border-radius: 6px;
    white-space: nowrap;
    font-size: 0.82rem;
    transition: all 0.2s ease;
    line-height: 1.4;
  }
  body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row .product-box .product-action .btn:hover, body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row .product-box .btn-buy:hover {
    transform: translateY(-1px);
  }
}
body.dreamtheme[data-g2g-wow-effects*="gsap-listing-stagger"] .cms-element-product-listing:not(.g2g-stagger-revealed) .product-box, body.dreamtheme[data-g2g-wow-effects*="gsap-listing-stagger"] .cms-element-product-listing:not(.g2g-stagger-revealed) .product-card, body.dreamtheme[data-g2g-wow-effects*="gsap-listing-stagger"] .product-listing:not(.g2g-stagger-revealed) .product-box, body.dreamtheme[data-g2g-wow-effects*="gsap-listing-stagger"] .product-listing:not(.g2g-stagger-revealed) .product-card {
  opacity: 0;
  transform: translateY(32px);
  animation: g2g-stagger-fallback 0.4s ease 2s forwards;
}
@keyframes g2g-stagger-fallback {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
body.dreamtheme.dreamtheme .btn-detail.btn-detail {
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
body.dreamtheme.dreamtheme .btn-detail.btn-detail:hover, body.dreamtheme.dreamtheme .btn-detail.btn-detail:focus {
  background-color: var(--bs-success);
  border-color: var(--bs-success);
  color: #fff;
}
@media (max-width: 767.98px) {
  body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row .product-box.box-standard {
    flex-direction: column;
    min-height: auto;
    height: auto;
  }
  body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row .product-box .card-body {
    flex-direction: column;
    height: auto;
  }
  body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row .product-box .card-body > a:not(.product-name) {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
    min-height: 180px;
    border-right: none;
    border-bottom: 1px solid #f3f4f6;
  }
  body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row .product-box .product-info {
    padding: 14px;
    height: auto;
  }
  body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row .product-box .product-price-info, body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row .product-box .product-action {
    position: static;
    margin-top: 8px;
  }
  body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row .product-box .product-price-info {
    align-items: flex-start;
    text-align: left;
  }
  body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .cms-listing-row .product-box .product-action {
    justify-content: flex-start;
  }
}
.g2g-prev-next-edge {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 0.5px solid #e5e5e5;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.05);
  opacity: 0.9;
  transition: opacity 0.2s ease, transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s ease;
  user-select: none;
  pointer-events: auto;
  text-decoration: none;
}
.g2g-prev-next-edge:hover, .g2g-prev-next-edge:focus-visible {
  opacity: 1;
  text-decoration: none;
  border-color: #d0d0d0;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12), 0 4px 10px rgba(0, 0, 0, 0.08);
}
.g2g-prev-next-edge.g2g-prev-next-product-wrap {
  --g2g-prev-next-icon-hover-color: var(--g2g-token-color-brand-primary, #64748b);
}
.g2g-prev-next-edge.g2g-prev-next-category-wrap {
  --g2g-prev-next-icon-hover-color: var(--g2g-token-color-brand-primary, #64748b);
}
.g2g-prev-next-edge--prev {
  left: var(--g2g-prev-next-inset-right, 16px);
  padding: 6px 16px 6px 6px;
}
.g2g-prev-next-edge--prev:hover {
  transform: translateY(-50%) translateX(-3px);
}
.g2g-prev-next-edge--next {
  right: var(--g2g-prev-next-inset-right, 16px);
  padding: 6px 6px 6px 16px;
}
.g2g-prev-next-edge--next:hover {
  transform: translateY(-50%) translateX(3px);
}
.g2g-prev-next-edge__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--g2g-prev-next-icon-hover-color, var(--g2g-token-color-brand-primary, #64748b));
  border: 0;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease;
}
.g2g-prev-next-edge--prev .g2g-prev-next-edge__arrow {
  order: 1;
}
.g2g-prev-next-edge--next .g2g-prev-next-edge__arrow {
  order: 2;
}
.g2g-prev-next-edge__preview {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  width: auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.g2g-prev-next-edge__preview--text {
  width: auto;
  max-width: 180px;
  padding: 0;
  min-height: 0;
}
.g2g-prev-next-edge--prev .g2g-prev-next-edge__preview {
  order: 2;
  align-items: flex-start;
  text-align: left;
}
.g2g-prev-next-edge--next .g2g-prev-next-edge__preview {
  order: 1;
  align-items: flex-end;
  text-align: right;
}
.g2g-prev-next-edge__preview::before {
  content: "";
  display: block;
  font-size: 10px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.45);
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: 1px;
}
.g2g-prev-next-edge--prev .g2g-prev-next-edge__preview::before {
  content: "Vorherige";
}
.g2g-prev-next-edge--next .g2g-prev-next-edge__preview::before {
  content: "Nächste";
}
.g2g-prev-next-edge__thumb {
  display: none;
}
.g2g-prev-next-edge__name {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
  color: #1a1a1a;
}
body.dreamtheme.is-ctl-navigation.is-act-home[class*="g2g-page-width-"] .g2g-prev-next-edge.g2g-prev-next-edge {
  display: none;
}
body.dreamtheme .cms-breadcrumb.container, body.dreamtheme .cms-section .cms-breadcrumb.boxed, .cms-section body.dreamtheme .cms-breadcrumb.boxed, body.dreamtheme .cms-breadcrumb {
  position: relative;
}
body.dreamtheme[class*="g2g-page-width-"] .cms-breadcrumb.cms-breadcrumb .g2g-prev-next-edge.g2g-prev-next-edge {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  opacity: 1;
  display: flex;
}
body.dreamtheme .cms-breadcrumb.g2g-prev-next-solo-prev .g2g-prev-next-edge--prev, body.dreamtheme .cms-breadcrumb.g2g-prev-next-solo-next .g2g-prev-next-edge--next {
  right: var(--g2g-prev-next-inset-right, 19px);
  left: auto;
}
body.dreamtheme.g2g-prev-next-solo-prev .g2g-prev-next-edge--prev {
  left: auto;
  right: var(--g2g-prev-next-inset-right, 16px);
}
body.dreamtheme.g2g-prev-next-solo-prev .g2g-prev-next-edge--prev:hover {
  transform: translateY(-50%) translateX(3px);
}
@media (max-width: 1299px) {
  body.dreamtheme .cms-breadcrumb.container, body.dreamtheme .cms-section .cms-breadcrumb.boxed, .cms-section body.dreamtheme .cms-breadcrumb.boxed, body.dreamtheme .cms-breadcrumb {
    position: relative;
  }
  body.dreamtheme[class*="g2g-page-width-"] .g2g-prev-next-edge.g2g-prev-next-edge {
    display: flex;
    position: absolute;
    z-index: 50;
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
  }
  body.dreamtheme[class*="g2g-page-width-"] .g2g-prev-next-edge.g2g-prev-next-edge {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
  }
  body.dreamtheme[class*="g2g-page-width-"] .g2g-prev-next-edge.g2g-prev-next-edge .g2g-prev-next-edge__arrow {
    width: 28px;
    height: 28px;
    background: transparent;
    color: var(--g2g-token-color-brand-primary-text, #64748b);
    /* Waltraud — WCAG AA Text (Pfeil-Symbol als Text-equivalent) */
    font-size: 28px;
    line-height: 1;
    box-shadow: none;
    border-radius: 0;
    transition: color 180ms ease;
  }
  body.dreamtheme[class*="g2g-page-width-"] .g2g-prev-next-edge.g2g-prev-next-edge:hover .g2g-prev-next-edge__arrow, body.dreamtheme[class*="g2g-page-width-"] .g2g-prev-next-edge.g2g-prev-next-edge:focus-visible .g2g-prev-next-edge__arrow {
    color: var(--g2g-token-color-brand-primary-hover, #4a5667);
    background: transparent;
  }
  body.dreamtheme[class*="g2g-page-width-"] .g2g-prev-next-edge--prev {
    left: auto;
    right: calc(var(--g2g-prev-next-inset-right, 19px) + 41px);
  }
  body.dreamtheme[class*="g2g-page-width-"] .g2g-prev-next-edge--next {
    right: var(--g2g-prev-next-inset-right, 19px);
  }
  body.dreamtheme[class*="g2g-page-width-"] .g2g-prev-next-edge--prev .g2g-prev-next-edge__arrow {
    padding-bottom: 3px;
    padding-right: 1px;
  }
  body.dreamtheme[class*="g2g-page-width-"] .g2g-prev-next-edge--next .g2g-prev-next-edge__arrow {
    padding-bottom: 3px;
    padding-left: 1px;
  }
  body.dreamtheme[class*="g2g-page-width-"] .g2g-prev-next-edge .g2g-prev-next-edge__preview {
    display: none;
  }
  body.dreamtheme[class*="g2g-page-width-"] .g2g-prev-next-edge--prev:hover, body.dreamtheme[class*="g2g-page-width-"] .g2g-prev-next-edge--next:hover {
    transform: none;
  }
}
@media (min-width: 1300px) and (max-width: 1499px) {
  body.dreamtheme[class*="g2g-page-width-"] .g2g-prev-next-edge.g2g-prev-next-edge {
    display: flex;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
  }
  body.dreamtheme[class*="g2g-page-width-"] .g2g-prev-next-edge.g2g-prev-next-edge .g2g-prev-next-edge__preview {
    display: none;
  }
  body.dreamtheme[class*="g2g-page-width-"] .g2g-prev-next-edge.g2g-prev-next-edge .g2g-prev-next-edge__arrow {
    width: auto;
    height: auto;
    background: transparent;
    color: var(--g2g-token-color-brand-primary-text, #64748b);
    /* Waltraud — WCAG AA Text */
    font-size: 32px;
    box-shadow: none;
    border-radius: 0;
    padding: 4px 8px;
  }
  body.dreamtheme[class*="g2g-page-width-"] .g2g-prev-next-edge.g2g-prev-next-edge:hover .g2g-prev-next-edge__arrow, body.dreamtheme[class*="g2g-page-width-"] .g2g-prev-next-edge.g2g-prev-next-edge:focus-visible .g2g-prev-next-edge__arrow {
    color: var(--g2g-token-color-brand-primary-hover, #4a5667);
    background: transparent;
    box-shadow: none;
  }
  body.dreamtheme[class*="g2g-page-width-"] .g2g-prev-next-edge--prev {
    left: auto;
    right: calc(var(--g2g-prev-next-inset-right, 19px) + 41px);
  }
  body.dreamtheme[class*="g2g-page-width-"] .g2g-prev-next-edge--next {
    right: var(--g2g-prev-next-inset-right, 19px);
  }
}
:lang(en) .g2g-prev-next-edge--prev .g2g-prev-next-edge__preview::before {
  content: "Previous";
}
:lang(en) .g2g-prev-next-edge--next .g2g-prev-next-edge__preview::before {
  content: "Next";
}
body.g2g-prev-next-preview-image .g2g-prev-next-edge:has(.g2g-prev-next-edge__thumb) .g2g-prev-next-edge__arrow {
  display: none;
}
body.g2g-prev-next-preview-image .g2g-prev-next-edge:has(.g2g-prev-next-edge__thumb) .g2g-prev-next-edge__thumb {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--g2g-token-color-neutral-surface, #f8fafc);
  margin: 0;
  flex-shrink: 0;
}
body.g2g-prev-next-preview-image .g2g-prev-next-edge:has(.g2g-prev-next-edge__thumb):hover .g2g-prev-next-edge__thumb {
  box-shadow: inset 0 0 0 2px var(--g2g-token-color-action-buy, #64748b);
}
body.dreamtheme[class*="g2g-page-width-"] .g2g-prev-next-edge {
  display: none;
}
@media (min-width: 1280px) {
  body.dreamtheme.g2g-page-width-1200 .g2g-prev-next-edge {
    display: flex;
  }
  body.dreamtheme.g2g-page-width-1200 .g2g-prev-next-edge__preview {
    display: none;
  }
}
@media (min-width: 1500px) {
  body.dreamtheme.g2g-page-width-1200 .g2g-prev-next-edge__preview {
    display: flex;
  }
  body.dreamtheme.g2g-page-width-1200 .g2g-prev-next-edge--prev .g2g-prev-next-edge__preview {
    align-items: flex-start;
    text-align: left;
  }
  body.dreamtheme.g2g-page-width-1200 .g2g-prev-next-edge--next .g2g-prev-next-edge__preview {
    align-items: flex-end;
    text-align: right;
  }
  body.dreamtheme.g2g-page-width-1200 .g2g-prev-next-edge__name {
    max-width: 15ch;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-line-clamp: unset;
    display: inline-block;
  }
}
@media (min-width: 1380px) {
  body.dreamtheme.g2g-page-width-1300 .g2g-prev-next-edge {
    display: flex;
  }
  body.dreamtheme.g2g-page-width-1300 .g2g-prev-next-edge__preview {
    display: none;
  }
}
@media (min-width: 1600px) {
  body.dreamtheme.g2g-page-width-1300 .g2g-prev-next-edge__preview {
    display: flex;
  }
  body.dreamtheme.g2g-page-width-1300 .g2g-prev-next-edge--prev .g2g-prev-next-edge__preview {
    align-items: flex-start;
    text-align: left;
  }
  body.dreamtheme.g2g-page-width-1300 .g2g-prev-next-edge--next .g2g-prev-next-edge__preview {
    align-items: flex-end;
    text-align: right;
  }
  body.dreamtheme.g2g-page-width-1300 .g2g-prev-next-edge__name {
    max-width: 15ch;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-line-clamp: unset;
    display: inline-block;
  }
}
@media (min-width: 1480px) {
  body.dreamtheme.g2g-page-width-1400 .g2g-prev-next-edge {
    display: flex;
  }
  body.dreamtheme.g2g-page-width-1400 .g2g-prev-next-edge__preview {
    display: none;
  }
}
@media (min-width: 1700px) {
  body.dreamtheme.g2g-page-width-1400 .g2g-prev-next-edge__preview {
    display: flex;
  }
  body.dreamtheme.g2g-page-width-1400 .g2g-prev-next-edge--prev .g2g-prev-next-edge__preview {
    align-items: flex-start;
    text-align: left;
  }
  body.dreamtheme.g2g-page-width-1400 .g2g-prev-next-edge--next .g2g-prev-next-edge__preview {
    align-items: flex-end;
    text-align: right;
  }
  body.dreamtheme.g2g-page-width-1400 .g2g-prev-next-edge__name {
    max-width: 15ch;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-line-clamp: unset;
    display: inline-block;
  }
}
@media (min-width: 1580px) {
  body.dreamtheme.g2g-page-width-1500 .g2g-prev-next-edge {
    display: flex;
  }
  body.dreamtheme.g2g-page-width-1500 .g2g-prev-next-edge__preview {
    display: none;
  }
}
@media (min-width: 1800px) {
  body.dreamtheme.g2g-page-width-1500 .g2g-prev-next-edge__preview {
    display: flex;
  }
  body.dreamtheme.g2g-page-width-1500 .g2g-prev-next-edge--prev .g2g-prev-next-edge__preview {
    align-items: flex-start;
    text-align: left;
  }
  body.dreamtheme.g2g-page-width-1500 .g2g-prev-next-edge--next .g2g-prev-next-edge__preview {
    align-items: flex-end;
    text-align: right;
  }
  body.dreamtheme.g2g-page-width-1500 .g2g-prev-next-edge__name {
    max-width: 15ch;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-line-clamp: unset;
    display: inline-block;
  }
}
@media (min-width: 1680px) {
  body.dreamtheme.g2g-page-width-1600 .g2g-prev-next-edge {
    display: flex;
  }
  body.dreamtheme.g2g-page-width-1600 .g2g-prev-next-edge__preview {
    display: none;
  }
}
@media (min-width: 1900px) {
  body.dreamtheme.g2g-page-width-1600 .g2g-prev-next-edge__preview {
    display: flex;
  }
  body.dreamtheme.g2g-page-width-1600 .g2g-prev-next-edge--prev .g2g-prev-next-edge__preview {
    align-items: flex-start;
    text-align: left;
  }
  body.dreamtheme.g2g-page-width-1600 .g2g-prev-next-edge--next .g2g-prev-next-edge__preview {
    align-items: flex-end;
    text-align: right;
  }
  body.dreamtheme.g2g-page-width-1600 .g2g-prev-next-edge__name {
    max-width: 15ch;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-line-clamp: unset;
    display: inline-block;
  }
}
body.dreamtheme .product-wishlist-action-circle .icon-wishlist svg {
  overflow: visible;
}
@media (max-width: 575.98px) {
  body.dreamtheme .cms-element-product-listing-wrapper, body.dreamtheme .cms-element-product-listing, body.dreamtheme .g2g-search-products {
    padding-left: 0;
    padding-right: 0;
  }
  body.dreamtheme .g2g-search-products.g2g-search-products {
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
    max-width: calc(100% + 40px);
  }
  body.dreamtheme.dreamtheme .cms-listing-row, body.dreamtheme .cms-listing-row.cms-listing-row {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
    row-gap: 8px;
    width: 100%;
  }
  body.dreamtheme .product-badges, body.dreamtheme .product-badge {
    font-size: 10px;
    padding: 2px 6px;
    line-height: 1.2;
  }
  body.dreamtheme .product-badges .product-badge, body.dreamtheme .product-badge-discount, body.dreamtheme .product-badge-new {
    font-size: 10px;
    padding: 2px 6px;
    line-height: 1.2;
  }
  body.dreamtheme .cms-listing-row > .cms-listing-col, body.dreamtheme .cms-listing-row > [class*="cms-listing-col"] {
    padding-left: 4px;
    padding-right: 4px;
  }
  body.dreamtheme .product-box .card-body.card-body {
    padding-left: 8px;
    padding-right: 8px;
  }
  body.dreamtheme .product-box .product-info.product-info {
    padding-left: 0;
    padding-right: 0;
  }
  body.dreamtheme .product-box .product-info, body.dreamtheme .product-box .product-name {
    font-size: 0.95rem;
    line-height: 1.3;
  }
  body.dreamtheme .product-box .product-name.product-name, body.dreamtheme .product-box .name2gether-1line .product-name.product-name, body.dreamtheme .product-box .name2gether-3lines .product-name.product-name, body.dreamtheme .product-box .name2gether-4lines .product-name.product-name {
    white-space: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    height: auto;
    max-height: calc(2 * 1.3em);
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: auto;
  }
}
body.dreamtheme .cms-listing-row > .cms-listing-col:has(> .alert), body.dreamtheme .cms-listing-row > .col-12:has(> .alert), body.dreamtheme .cms-listing-row > .col-12:has(> .finder-no-result), body.dreamtheme .cms-listing-row > .cms-listing-col:has(> .finder-no-result) {
  grid-column: 1 / -1;
}
body.dreamtheme .cms-element-product-listing-wrapper .alert, body.dreamtheme .cms-element-product-listing .alert, body.dreamtheme .cms-element-product-listing-wrapper .finder-no-result, body.dreamtheme .cms-element-search-listing .alert {
  display: flex;
  width: 100%;
  box-sizing: border-box;
}
body.dreamtheme .cms-element-product-listing-wrapper:has(.alert) .g2g-listing-view-toggle, body.dreamtheme .cms-element-product-listing-wrapper:has(.finder-no-result) .g2g-listing-view-toggle {
  display: none;
}
body .cms-element-product-listing:not(.g2g-listing-view-list) .g2g-card-for-list {
  display: none;
}
body.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list) .product-box .g2g-list-trust-bar, body.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list) .product-box .g2g-list-description, body.dreamtheme.dreamtheme .product-slider-container .product-box .g2g-list-trust-bar, body.dreamtheme.dreamtheme .product-slider-container .product-box .g2g-list-description {
  display: none;
}
body.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .g2g-grid-description, body.dreamtheme.dreamtheme .product-slider-container .product-box .g2g-grid-description {
  display: none;
}
body.dreamtheme.dreamtheme .product-box .g2g-grid-description {
  font-size: 0.72rem;
  line-height: 1.4;
  color: var(--g2g-token-color-neutral-text, #64748b);
  margin-top: 0.25rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
body .cms-element-product-listing:not(.g2g-listing-view-list) .g2g-card-for-grid {
  height: 100%;
  display: flex;
  flex-direction: column;
}
body .cms-element-product-listing:not(.g2g-listing-view-list) .g2g-card-for-grid > * {
  flex: 1;
}
body .cms-element-product-listing.g2g-listing-view-list .g2g-card-for-grid {
  display: none;
}
body .cms-element-product-listing.g2g-listing-view-list .g2g-card-for-list {
  height: 100%;
}
body.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list) .product-box .product-variant-characteristics {
  display: none;
}
body.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list):not(.g2g-card-variants-on) .product-box .g2g-variant-area {
  display: none;
}
body.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-variants-on:not(.g2g-listing-view-list) .product-box .g2g-variant-area {
  --g2g-variant-rows: 3;
  --g2g-variant-row-h: 25px;
  height: calc(var(--g2g-variant-rows) * var(--g2g-variant-row-h) + 5px);
  padding: 0 0 5px;
  box-sizing: border-box;
  overflow: hidden;
  margin-bottom: 10px;
}
body.dreamtheme.dreamtheme .cms-element-product-listing .product-box .g2g-variant-area {
  position: relative;
}
body.dreamtheme.dreamtheme .cms-element-product-listing .product-box .g2g-variant-area.is-expanded {
  height: auto;
  overflow: visible;
}
body.dreamtheme.dreamtheme .cms-element-product-listing .product-box .g2g-variant-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  height: 18px;
  margin-left: 4px;
  padding: 0 8px;
  border: 0;
  border-radius: 4px;
  background: var(--g2g-token-color-brand-primary, #ec5b13);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  vertical-align: middle;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  transition: filter 0.15s ease;
}
body.dreamtheme.dreamtheme .cms-element-product-listing .product-box .g2g-variant-area.g2g-has-overflow .g2g-variant-toggle, body.dreamtheme.dreamtheme .cms-element-product-listing .product-box .g2g-variant-area.is-expanded .g2g-variant-toggle {
  display: inline-flex;
}
body.dreamtheme.dreamtheme .cms-element-product-listing .product-box .g2g-variant-toggle::before {
  content: "+";
}
body.dreamtheme.dreamtheme .cms-element-product-listing .product-box .g2g-variant-area.is-expanded .g2g-variant-toggle::before {
  content: "−";
}
body.dreamtheme.dreamtheme .cms-element-product-listing .product-box .g2g-variant-toggle:hover {
  filter: brightness(1.08);
}
body.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list) .product-box .product-price, body.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list) .product-box .product-cheapest-price-price {
  white-space: nowrap;
}
body.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list) .product-box .product-detail-ordernumber {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
body.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list) .product-box .g2g-product-card-manufacturer {
  min-height: 16px;
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-card-layout-modern):not(.g2g-card-layout-quantity-cart):not(.g2g-card-layout-add-on-image):not(.g2g-listing-view-list) .product-box .g2g-product-price-box-inner {
  min-height: 66px;
}
body.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list) .product-box .g2g-product-rating {
  min-height: 16px;
}
body.dreamtheme.dreamtheme .cms-element-product-listing .product-box .g2g-sku-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  max-width: 100%;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  margin: 6px 0 4px;
}
body.dreamtheme.dreamtheme .cms-element-product-listing .product-box .g2g-sku-row .g2g-sku-label {
  font-size: 10px;
  opacity: 0.78;
  white-space: nowrap;
  flex: 0 0 auto;
}
body.dreamtheme.dreamtheme .cms-element-product-listing .product-box .g2g-sku-row .g2g-sku-value {
  font-size: 10px;
  opacity: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
body.dreamtheme.dreamtheme .cms-element-product-listing .product-box .g2g-ean-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  max-width: 100%;
  min-width: 0;
  min-height: 15px;
  white-space: nowrap;
  overflow: hidden;
  margin: 0 0 4px;
}
body.dreamtheme.dreamtheme .cms-element-product-listing .product-box .g2g-ean-row .g2g-ean-label {
  font-size: 10px;
  opacity: 0.78;
  white-space: nowrap;
  flex: 0 0 auto;
}
body.dreamtheme.dreamtheme .cms-element-product-listing .product-box .g2g-ean-row .g2g-ean-value {
  font-size: 10px;
  opacity: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 991.98px) {
  body.dreamtheme .cms-element-product-listing .cms-listing-row .cms-listing-col {
    display: flex;
    flex-direction: column;
  }
  body.dreamtheme .cms-element-product-listing .cms-listing-row .cms-listing-col > * {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  body.dreamtheme .cms-element-product-listing .cms-listing-row .cms-listing-col .product-box {
    flex: 1 1 auto;
  }
}
body.dreamtheme.dreamtheme .g2g-list-variants__chip.g2g-soldout, body.dreamtheme.dreamtheme .g2g-list-variants__swatch.g2g-soldout {
  pointer-events: none;
  cursor: not-allowed;
}
body.dreamtheme.dreamtheme .g2g-list-variants__chip.g2g-soldout.g2g-soldout, body.dreamtheme.dreamtheme .g2g-slider-variants__chip.g2g-soldout.g2g-soldout {
  opacity: 0.5;
  text-decoration: line-through;
  text-decoration-color: rgba(0, 0, 0, 0.4);
}
body.dreamtheme.dreamtheme .g2g-list-variants__swatch.g2g-soldout.g2g-soldout, body.dreamtheme.dreamtheme .g2g-slider-variants__swatch.g2g-soldout.g2g-soldout {
  opacity: 0.4;
  position: relative;
  transform: none;
}
body.dreamtheme.dreamtheme .g2g-list-variants__swatch.g2g-soldout.g2g-soldout::after, body.dreamtheme.dreamtheme .g2g-slider-variants__swatch.g2g-soldout.g2g-soldout::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  background: linear-gradient(to top right, transparent calc(50% - 1px), rgba(31, 41, 55, 0.45) calc(50% - 1px), rgba(31, 41, 55, 0.45) calc(50% + 1px), transparent calc(50% + 1px));
}
.navigation-slider-container {
  position: relative;
  display: flex;
  align-items: center;
  overflow: visible;
  max-width: var(--g2g-page-width, 1200px);
  margin: 0 auto;
}
.nav-scroll-container {
  overflow-x: auto;
  overflow-y: visible;
  white-space: nowrap;
  scroll-behavior: smooth;
  flex: 1;
  scrollbar-width: none;
}
.main-navigation-menu-list {
  display: flex;
  flex-wrap: nowrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.scroll-btn {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  z-index: 10;
  font-size: 24px;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.scroll-left {
  left: -10px;
}
.scroll-right {
  right: -20px;
}
.dreamtheme .navigation-slider-container:not(.g2g-arrow-left-left) .scroll-left {
  left: auto;
  right: 20px;
}
.scroll-left, .scroll-right, .scroll-arrow, .scroll-btn {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0s linear 0.2s;
}
.scroll-left.g2g-arrow-shown, .scroll-right.g2g-arrow-shown, .scroll-arrow.g2g-arrow-shown, .scroll-btn.g2g-arrow-shown {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.2s ease, visibility 0s linear 0s;
}
.dropdown-menu {
  z-index: 1000;
}
.dreamtheme .header-main .header-row.header-row {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
}
.dreamtheme .header-main .header-row.header-row .header-logo-col {
  width: auto;
  position: static;
  margin: 0;
  padding: 0;
  align-self: center;
}
.dreamtheme .header-main .header-row.header-row .header-logo-col .header-logo-main .header-logo-main-link .header-logo-picture {
  min-width: 100px;
}
.dreamtheme .header-main .header-row.header-row .header-logo-col .header-logo-main .header-logo-main-link .header-logo-picture .header-logo-main-img {
  max-width: 195px;
}
@media (min-width: 992px) {
  .dreamtheme .header-main .header-row.header-row .header-logo-col .header-logo-main .header-logo-main-link .header-logo-picture .header-logo-main-img {
    max-width: 222px;
    padding-top: 3px;
  }
}
.dreamtheme .header-main .header-row.header-row #searchCollapse, .dreamtheme .header-main .header-row.header-row #searchCollapse.collapsing, .dreamtheme .header-main .header-row.header-row #searchCollapse.collapse {
  transition: none;
}
.dreamtheme .header-main .header-row.header-row #searchCollapse.collapse.show {
  height: auto;
}
@media (max-width: 575.98px) {
  .dreamtheme .header-main .header-row.header-row .header-search-col {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }
}
.dreamtheme .header-main .header-row.header-row .header-search-col [class~="row"] {
  margin-left: 0;
  margin-right: 0;
}
.dreamtheme .header-main .header-row.header-row .header-search-col [class~="row"] [class~="col"] {
  padding: 0;
}
@media (min-width: 992px) {
  .dreamtheme .header-main .header-row.header-row .header-search-col [class~="row"] [class~="col"] {
    margin-left: 0;
  }
}
.dreamtheme .header-main .header-row.header-row .header-search-col [class~="row"] [class~="col"] .collapse .header-search {
  margin: 0;
  float: right;
  width: 100%;
  max-width: unset;
}
.dreamtheme .header-main .header-row.header-row .header-search-col [class~="row"] [class~="col"] .collapse .header-search .header-search-form {
  width: 100%;
  float: right;
  border-bottom-left-radius: var(--g2g-border-radius, 3px);
  border-top-left-radius: var(--g2g-border-radius, 3px);
}
@media (min-width: 992px) {
  .dreamtheme .header-main .header-row.header-row .header-search-col [class~="row"] [class~="col"] .collapse .header-search .header-search-form {
    padding-top: 11px;
  }
}
.dreamtheme .header-main .header-row.header-row .header-search-col [class~="row"] [class~="col"] .collapse .header-search .header-search-form .input-group {
  position: relative;
}
.dreamtheme .header-main .header-row.header-row .header-search-col [class~="row"] [class~="col"] .collapse .header-search .header-search-form .input-group .header-search-btn {
  border: 1px solid var(--g2g-token-color-neutral-border);
  background: var(--g2g-token-color-neutral-border);
  border-top-right-radius: var(--g2g-border-radius, 3px);
  border-bottom-right-radius: var(--g2g-border-radius, 3px);
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  z-index: 6;
  width: 37px;
  min-width: 37px;
  height: 37px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--g2g-token-color-brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.dreamtheme .header-main .header-row.header-row .header-search-col [class~="row"] [class~="col"] .collapse .header-search .header-search-form .input-group .header-search-btn .header-search-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-1px, -5px);
}
.dreamtheme .header-main .header-row.header-row .header-search-col [class~="row"] [class~="col"] .collapse .header-search .header-search-form .input-group .header-search-btn .icon {
  color: #fff;
  width: 19px;
  height: 19px;
}
.dreamtheme .header-main .header-row.header-row .header-search-col [class~="row"] [class~="col"] .collapse .header-search .header-search-form .input-group .header-search-btn svg {
  width: 19px;
  height: 19px;
  color: #fff;
  stroke: #fff;
  stroke-width: 1.3px;
}
.dreamtheme .header-main .header-row.header-row .header-search-col [class~="row"] [class~="col"] .collapse.show .header-search .header-search-form .input-group .header-search-btn {
  display: block;
}
.dreamtheme .header-main .header-row.header-row .header-actions-col {
  padding: 10px 0;
  text-align: right;
}
@media (max-width: 575.98px) {
  .dreamtheme .header-main .header-row.header-row .header-actions-col {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
    margin-left: auto;
  }
}
.dreamtheme .header-main .header-row.header-row .header-actions-col .search-toggle {
  margin-right: 4px;
}
.dreamtheme .header-main .header-row.header-row .header-actions-col .search-toggle .header-actions-btn.search-toggle-btn {
  width: 35px;
}
.dreamtheme .header-main .header-row.header-row .header-actions-col .col-auto.great-wishlist {
  display: none;
}
.dreamtheme .header-main .header-row.header-row .header-actions-col [class~="row"] {
  float: right;
}
.dreamtheme .header-main .header-row.header-row .header-actions-col [class~="row"] .col-auto {
  width: 40px;
}
.dreamtheme .header-main .header-row.header-row .header-actions-col [class~="row"] .col-cart {
  width: max-content;
}
.dreamtheme .header-main .header-row.header-row .header-actions-col [class~="row"] .header-cart .header-actions-btn {
  margin-left: 0;
  padding: 1px 6px;
}
.dreamtheme .header-main .header-row.header-row .header-actions-col [class~="row"] .header-cart .header-cart-badge {
  right: -5px;
  top: 16px;
  height: 21px;
  width: 8px;
  line-height: 20px;
}
.dreamtheme .header-main .header-row.header-row .header-actions-col [class~="row"] .nav-main-toggle {
  width: 50px;
}
@media (min-width: 992px) {
  .dreamtheme .header-main .header-row.header-row .header-actions-col [class~="row"] .nav-main-toggle {
    display: none;
  }
}
@media (min-width: 992px) {
  .dreamtheme .header-main .header-row.header-row .header-actions-col {
    padding: unset;
  }
}
@media (min-width: 576px) {
  .dreamtheme .header-main .header-row.header-row {
    padding: 10px 20px;
  }
  .dreamtheme .header-main .header-row.header-row .header-logo-col .header-logo-main .header-logo-main-link .header-logo-picture .header-logo-main-img {
    max-width: 195px;
  }
  .dreamtheme .header-main .header-row.header-row .header-search-col [class~="row"] [class~="col"] .collapse .header-search .header-search-form {
    padding-top: 6px;
    margin-right: 0;
    padding-bottom: 6px;
  }
  .dreamtheme .header-main .header-row.header-row .header-search-col [class~="row"] [class~="col"] .collapse .header-search .header-search-form .input-group .header-search-btn {
    width: auto;
  }
  .dreamtheme .header-main .header-row.header-row .header-search-col [class~="row"] [class~="col"] .collapse.show .header-search .header-search-form .input-group .header-search-btn {
    display: block;
  }
  .dreamtheme .header-main .header-row.header-row .header-actions-col .search-toggle .header-actions-btn.search-toggle-btn {
    width: 45px;
  }
  .dreamtheme .header-main .header-row.header-row .header-actions-col .col-auto.great-wishlist {
    display: block;
  }
  .dreamtheme .header-main .header-row.header-row .header-actions-col [class~="row"] .header-cart .header-actions-btn {
    margin-left: 0;
    padding: 1px 10px;
  }
  body:not(.g2g-show-cart-total) .dreamtheme .header-main .header-row.header-row .header-actions-col [class~="row"] .header-cart .header-cart-total {
    display: none;
  }
  .dreamtheme .header-main .header-row.header-row .header-actions-col [class~="row"] .header-wishlist .header-actions-btn, .dreamtheme .header-main .header-row.header-row .header-actions-col [class~="row"] .header-account .header-actions-btn, .dreamtheme .header-main .header-row.header-row .header-actions-col [class~="row"] .account-menu .header-actions-btn, .dreamtheme .header-main .header-row.header-row .header-actions-col [class~="row"] > .col-auto > .header-account > .header-actions-btn {
    padding: 1px 10px;
  }
  .dreamtheme .header-main .header-row.header-row .header-actions-col [class~="row"] .nav-main-toggle-btn {
    width: 50px;
  }
}
@media (min-width: 992px) {
  .dreamtheme .header-main .header-row.header-row .header-logo-col .header-logo-main .header-logo-main-link .header-logo-picture .header-logo-main-img {
    max-width: 222px;
  }
  .dreamtheme .header-main .header-row.header-row .header-search-col [class~="row"] [class~="col"] .collapse .header-search .header-search-form .input-group .header-search-btn {
    width: auto;
  }
  .dreamtheme .header-main .header-row.header-row .header-search-col [class~="row"] [class~="col"] .collapse.show .header-search .header-search-form .input-group .header-search-btn {
    display: block;
  }
  .dreamtheme .header-main .header-row.header-row .header-actions-col .search-toggle .header-actions-btn.search-toggle-btn {
    width: 47px;
  }
  .dreamtheme .header-main .header-row.header-row .header-actions-col .col-auto.great-wishlist {
    display: block;
  }
  .dreamtheme .header-main .header-row.header-row .header-actions-col [class~="row"] .header-cart .header-actions-btn {
    margin-left: 0;
    padding: 1px 10px;
  }
  body:not(.g2g-show-cart-total) .dreamtheme .header-main .header-row.header-row .header-actions-col [class~="row"] .header-cart .header-cart-total {
    display: none;
  }
  .dreamtheme .header-main .header-row.header-row .header-actions-col [class~="row"] .nav-main-toggle-btn {
    width: 50px;
  }
}
@media (max-width: 991.98px) {
  .dreamtheme .header-main .header-row.header-row .header-logo-col {
    order: 0;
  }
  .dreamtheme .header-main .header-row.header-row .header-actions-col {
    order: 1;
    margin-left: auto;
    width: auto;
    flex: 0 0 auto;
  }
  .dreamtheme .header-main .header-row.header-row .header-search-col {
    order: 2;
    flex: 0 0 100%;
    width: 100%;
    margin-top: 14px;
    margin-bottom: 10px;
    padding-bottom: 3px;
  }
}
@media (max-width: 991.98px) {
  .dreamtheme:not(.g2g-has-mobile-bottombar):not(.g2g-mobile-search-prominent) .header-main .header-row.header-row .header-search-col:has(.collapse:not(.show)) {
    display: none;
  }
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .dreamtheme .header-main .header-search-col .collapse:not(.show) {
    display: none;
  }
  .dreamtheme .header-main .header-actions-col [class*="col"]:has(.search-toggle) {
    display: block;
  }
}
@media (max-width: 991.98px) {
  .dreamtheme .header-main .g2g-search-suggest.g2g-search-suggest {
    left: 0;
    right: 0;
    width: auto;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    border-radius: 0 0 12px 12px;
  }
}
@media (min-width: 992px) {
  .dreamtheme .nav-main {
    box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.06);
  }
}
.dreamtheme .main-navigation-menu-list > .nav-item > ul {
  display: none;
}
.dreamtheme .main-navigation-link > .navigation-flyouts {
  position: absolute;
}
.dreamtheme .nav-main .main-navigation .navigation-flyouts:hover {
  color: var(--g2g-token-color-neutral-background);
}
.dreamtheme .nav-main .main-navigation .navigation-flyouts .navigation-flyout {
  border-color: transparent;
  box-shadow: 0 43px 43px -6px rgba(0, 0, 0, 0.2);
  background-color: var(--g2g-token-color-neutral-background);
}
.dreamtheme .nav-main .main-navigation .container, .dreamtheme .nav-main .main-navigation .cms-section .boxed, .cms-section .dreamtheme .nav-main .main-navigation .boxed {
  padding: 0 20px;
}
.dreamtheme .nav-main .main-navigation .container .navbar, .dreamtheme .nav-main .main-navigation .cms-section .boxed .navbar, .cms-section .dreamtheme .nav-main .main-navigation .boxed .navbar {
  padding: 0;
}
.dreamtheme .nav-main .main-navigation .container .navbar .main-navigation-menu .nav-link:focus-visible, .dreamtheme .nav-main .main-navigation .cms-section .boxed .navbar .main-navigation-menu .nav-link:focus-visible, .cms-section .dreamtheme .nav-main .main-navigation .boxed .navbar .main-navigation-menu .nav-link:focus-visible {
  box-shadow: none;
}
.dreamtheme .nav-main .main-navigation.clown2gether .main-navigation-menu .main-navigation-link.nav-item-2:hover, .dreamtheme .nav-main .main-navigation.clown2gether .main-navigation-menu .main-navigation-link.nav-item-2[aria-current="page"] {
  background: #ff0000;
}
.dreamtheme .nav-main .main-navigation.clown2gether .main-navigation-menu .main-navigation-link.nav-item-3:hover, .dreamtheme .nav-main .main-navigation.clown2gether .main-navigation-menu .main-navigation-link.nav-item-3[aria-current="page"] {
  background: #990026;
}
.dreamtheme .nav-main .main-navigation.clown2gether .main-navigation-menu .main-navigation-link.nav-item-4:hover, .dreamtheme .nav-main .main-navigation.clown2gether .main-navigation-menu .main-navigation-link.nav-item-4[aria-current="page"] {
  background: #0F7699;
}
.dreamtheme .nav-main .main-navigation.clown2gether .main-navigation-menu .main-navigation-link.nav-item-5:hover, .dreamtheme .nav-main .main-navigation.clown2gether .main-navigation-menu .main-navigation-link.nav-item-5[aria-current="page"] {
  background: #5e2028;
}
.dreamtheme .nav-main .main-navigation.clown2gether .main-navigation-menu .main-navigation-link.nav-item-6:hover, .dreamtheme .nav-main .main-navigation.clown2gether .main-navigation-menu .main-navigation-link.nav-item-6[aria-current="page"] {
  background: #4EA24E;
}
.dreamtheme .nav-main .main-navigation.clown2gether .main-navigation-menu .main-navigation-link.nav-item-7:hover, .dreamtheme .nav-main .main-navigation.clown2gether .main-navigation-menu .main-navigation-link.nav-item-7[aria-current="page"] {
  background: #C70039;
}
.dreamtheme .nav-main .main-navigation.clown2gether .main-navigation-menu .main-navigation-link.nav-item-8:hover, .dreamtheme .nav-main .main-navigation.clown2gether .main-navigation-menu .main-navigation-link.nav-item-8[aria-current="page"] {
  background: #ffd700;
}
.dreamtheme .nav-main .main-navigation.clown2gether .main-navigation-menu .main-navigation-link.nav-item-9:hover, .dreamtheme .nav-main .main-navigation.clown2gether .main-navigation-menu .main-navigation-link.nav-item-9[aria-current="page"] {
  background: #27AE60;
}
.dreamtheme .nav-main .main-navigation.clown2gether .main-navigation-menu .main-navigation-link.nav-item-10:hover, .dreamtheme .nav-main .main-navigation.clown2gether .main-navigation-menu .main-navigation-link.nav-item-10[aria-current="page"] {
  background: #2E4053;
}
.dreamtheme .nav-main .main-navigation.clown2gether .main-navigation-menu .main-navigation-link.nav-item-11:hover, .dreamtheme .nav-main .main-navigation.clown2gether .main-navigation-menu .main-navigation-link.nav-item-11[aria-current="page"] {
  background: #FFA500;
}
.dreamtheme .nav-main .main-navigation.clown2gether .navigation-flyouts .navigation-flyout {
  border-color: transparent;
  box-shadow: 0 43px 43px -6px rgba(0, 0, 0, 0.2);
  background-color: var(--g2g-token-color-neutral-background);
}
.dreamtheme .nav-main .main-navigation.clown2gether .navigation-flyouts .navigation-flyout.navigation-flyout-1 .navigation-flyout-bar {
  background: #ff0000;
}
.dreamtheme .nav-main .main-navigation.clown2gether .navigation-flyouts .navigation-flyout.navigation-flyout-2 .navigation-flyout-bar {
  background: #990026;
}
.dreamtheme .nav-main .main-navigation.clown2gether .navigation-flyouts .navigation-flyout.navigation-flyout-3 .navigation-flyout-bar {
  background: #0F7699;
}
.dreamtheme .nav-main .main-navigation.clown2gether .navigation-flyouts .navigation-flyout.navigation-flyout-4 .navigation-flyout-bar {
  background: #5e2028;
}
.dreamtheme .nav-main .main-navigation.clown2gether .navigation-flyouts .navigation-flyout.navigation-flyout-5 .navigation-flyout-bar {
  background: #4EA24E;
}
.dreamtheme .nav-main .main-navigation.clown2gether .navigation-flyouts .navigation-flyout.navigation-flyout-6 .navigation-flyout-bar {
  background: #C70039;
}
.dreamtheme .nav-main .main-navigation.clown2gether .navigation-flyouts .navigation-flyout.navigation-flyout-7 .navigation-flyout-bar {
  background: #ffd700;
}
.dreamtheme .nav-main .main-navigation.clown2gether .navigation-flyouts .navigation-flyout.navigation-flyout-8 .navigation-flyout-bar {
  background: #27AE60;
}
.dreamtheme .nav-main .main-navigation.clown2gether .navigation-flyouts .navigation-flyout.navigation-flyout-9 .navigation-flyout-bar {
  background: #2E4053;
}
.dreamtheme .nav-main .main-navigation.clown2gether .navigation-flyouts .navigation-flyout.navigation-flyout-10 .navigation-flyout-bar {
  background: #FFA500;
}
.dreamtheme .nav-main .main-navigation .navigation-flyouts .navigation-flyout.is-open {
  background: white;
}
.dreamtheme .nav-main .main-navigation .navigation-flyouts .navigation-flyout {
  position: absolute;
  margin: 0 auto;
}
.dreamtheme .nav-main .main-navigation .navigation-flyouts .navigation-flyout .navigation-flyout-bar {
  padding: 0;
  color: #000000;
  background-color: #f0f0f0;
  margin-bottom: 20px;
}
.dreamtheme .nav-main .main-navigation .navigation-flyouts .navigation-flyout .navigation-flyout-bar .navigation-flyout-category-link .nav-link {
  color: var(--g2g-token-color-neutral-text-default);
  padding: 20px 50px 20px 50px;
  -webkit-transition: padding 0.1s ease;
  transition: padding 0.1s ease;
  position: relative;
}
.dreamtheme .nav-main .main-navigation .navigation-flyouts .navigation-flyout .navigation-flyout-bar .navigation-flyout-category-link .nav-link:hover {
  padding: 20px 50px 20px 55px;
}
.dreamtheme .nav-main .main-navigation .navigation-flyouts .navigation-flyout .navigation-flyout-bar .col-auto .icon {
  color: white;
}
.dreamtheme .nav-main .main-navigation .navigation-flyouts .navigation-flyout .navigation-flyout-bar .col-auto .icon:hover {
  color: #000000;
}
.dreamtheme .nav-main .main-navigation .navigation-flyouts .navigation-flyout .navigation-flyout-content {
  background: white;
  margin: 0;
  padding-bottom: 10px;
}
.dreamtheme .nav-main .main-navigation .navigation-flyouts .navigation-flyout .navigation-flyout-content .navigation-flyout-categories.is-level-0 .navigation-flyout-col::before {
  border-left: none;
}
.dreamtheme .nav-main .main-navigation .navigation-flyouts .navigation-flyout .super-mega-superfly {
  background: rgba(255, 255, 255, 0.9);
  padding-bottom: 10px;
  max-width: 1160px;
  margin: 0 auto;
  max-height: 80vh;
  justify-content: space-between;
}
.dreamtheme .nav-main .main-navigation .navigation-flyouts .navigation-flyout .super-mega-superfly.super-mega-superfly .navigation-flyout-categories .super-mega-flyout-wrapper {
  position: relative;
  background: var(--g2g-token-color-neutral-background);
  border-radius: var(--g2g-border-radius, 4px);
  overflow: visible;
  display: flex;
  align-items: stretch;
  min-height: 200px;
}
.dreamtheme .nav-main .main-navigation .navigation-flyouts .navigation-flyout .super-mega-superfly.super-mega-superfly .navigation-flyout-categories .super-mega-flyout-wrapper .super-mega-main-col {
  width: 230px;
  flex-shrink: 0;
  border-right: 1px solid var(--g2g-token-color-neutral-border);
  padding: 16px 16px 32px 0;
  box-sizing: border-box;
  background: var(--g2g-token-color-neutral-background);
  height: 100%;
  overflow-y: auto;
  position: relative;
}
.dreamtheme .nav-main .main-navigation .navigation-flyouts .navigation-flyout .super-mega-superfly.super-mega-superfly .navigation-flyout-categories .super-mega-flyout-wrapper .super-mega-main-col::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 28px;
  pointer-events: none;
  background: linear-gradient(to top, var(--g2g-token-color-neutral-background) 90%, transparent 100%);
  z-index: 100;
  border-radius: 0 0 var(--g2g-border-radius, 4px) var(--g2g-border-radius, 4px);
}
.dreamtheme .nav-main .main-navigation .navigation-flyouts .navigation-flyout .super-mega-superfly.super-mega-superfly .navigation-flyout-categories .super-mega-flyout-wrapper .super-mega-main-link {
  display: block;
  padding: 6px 12px 9px 12px;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  width: 100%;
  text-decoration: none;
  border-radius: var(--g2g-border-radius, 4px);
  font-size: 14px;
  font-weight: bold;
}
.dreamtheme .nav-main .main-navigation .navigation-flyouts .navigation-flyout .super-mega-superfly.super-mega-superfly .navigation-flyout-categories .super-mega-flyout-wrapper .super-mega-main-link.active, .dreamtheme .nav-main .main-navigation .navigation-flyouts .navigation-flyout .super-mega-superfly.super-mega-superfly .navigation-flyout-categories .super-mega-flyout-wrapper .super-mega-main-link:focus, .dreamtheme .nav-main .main-navigation .navigation-flyouts .navigation-flyout .super-mega-superfly.super-mega-superfly .navigation-flyout-categories .super-mega-flyout-wrapper .super-mega-main-link:hover {
  text-decoration: underline;
}
.dreamtheme .nav-main .main-navigation .navigation-flyouts .navigation-flyout .super-mega-superfly.super-mega-superfly .navigation-flyout-categories .super-mega-flyout-wrapper .super-mega-main-link .fa-chevron-right {
  float: right;
  margin-top: 2px;
  font-size: 12px;
  color: var(--g2g-token-color-neutral-text-muted);
}
.dreamtheme .nav-main .main-navigation .navigation-flyouts .navigation-flyout .super-mega-superfly.super-mega-superfly .navigation-flyout-categories .super-mega-flyout-wrapper .super-mega-main-cat {
  position: relative;
}
.dreamtheme .nav-main .main-navigation .navigation-flyouts .navigation-flyout .super-mega-superfly.super-mega-superfly .navigation-flyout-categories .super-mega-flyout-wrapper .super-mega-detail-col {
  position: relative;
  flex: 1 1 auto;
  min-width: auto;
  box-sizing: border-box;
  padding: 16px 0 32px 16px;
  background: var(--g2g-token-color-neutral-background);
  min-height: 250px;
}
.dreamtheme .nav-main .main-navigation .navigation-flyouts .navigation-flyout .super-mega-superfly.super-mega-superfly .navigation-flyout-categories .super-mega-flyout-wrapper .super-mega-detail-list {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--g2g-token-color-neutral-background);
  min-width: 250px;
  z-index: 50;
  border-radius: var(--g2g-border-radius, 4px);
  padding: 16px 8px 32px 0;
  align-items: flex-start;
  height: 100%;
  overflow-y: auto;
  position: relative;
}
.dreamtheme .nav-main .main-navigation .navigation-flyouts .navigation-flyout .super-mega-superfly.super-mega-superfly .navigation-flyout-categories .super-mega-flyout-wrapper .super-mega-detail-list.visible {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-top: 0;
}
.dreamtheme .nav-main .main-navigation .navigation-flyouts .navigation-flyout .super-mega-superfly.super-mega-superfly .navigation-flyout-categories .super-mega-flyout-wrapper .super-mega-detail-list.visible::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 28px;
  pointer-events: none;
  background: linear-gradient(to top, var(--g2g-token-color-neutral-background) 90%, transparent 100%);
  z-index: 100;
  border-radius: 0 0 var(--g2g-border-radius, 4px) var(--g2g-border-radius, 4px);
}
.dreamtheme .nav-main .main-navigation .navigation-flyouts .navigation-flyout .super-mega-superfly.super-mega-superfly .navigation-flyout-categories .super-mega-flyout-wrapper .super-mega-subcat-link {
  display: block;
  padding: 4px 16px;
  text-decoration: none;
  border-radius: var(--g2g-border-radius, 4px);
  margin-bottom: 2px;
  width: 100%;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: bold;
}
.dreamtheme .nav-main .main-navigation .navigation-flyouts .navigation-flyout .super-mega-superfly.super-mega-superfly .navigation-flyout-categories .super-mega-flyout-wrapper .super-mega-subcat-link:hover {
  text-decoration: underline;
}
.dreamtheme .nav-main .main-navigation .navigation-flyouts .navigation-flyout .super-mega-superfly .navigation-flyout-categories:not(.is-level-0) {
  margin-left: 0;
}
.dreamtheme .nav-main .main-navigation .navigation-flyouts .navigation-flyout .super-mega-superfly .navigation-flyout-categories.is-level-0 {
  margin-left: -5px;
}
.dreamtheme .nav-main .main-navigation .navigation-flyouts .navigation-flyout .super-mega-superfly .navigation-flyout-categories.is-level-0 .navigation-flyout-col {
  margin-top: 20px;
}
.dreamtheme .nav-main .main-navigation .navigation-flyouts .navigation-flyout .super-mega-superfly .navigation-flyout-categories.is-level-0 .navigation-flyout-col::before {
  border-left: none;
}
.dreamtheme .nav-main .main-navigation .navigation-flyouts .navigation-flyout .super-mega-superfly .navigation-flyout-categories.is-level-0 .col-4 {
  width: 50%;
  float: left;
}
.dreamtheme .nav-main .main-navigation .navigation-flyouts .navigation-flyout .super-mega-superfly .col-xl-9.with-flyout-teaser, .dreamtheme .nav-main .main-navigation .navigation-flyouts .navigation-flyout .super-mega-superfly .col-xl-3.with-flyout-teaser {
  width: 50%;
}
.dreamtheme .nav-main .main-navigation .navigation-flyouts .navigation-flyout .super-mega-superfly .col-xl-9.with-flyout-teaser .col-3, .dreamtheme .nav-main .main-navigation .navigation-flyouts .navigation-flyout .super-mega-superfly .col-xl-3.with-flyout-teaser .col-3 {
  width: 50%;
}
.dreamtheme .nav-main .main-navigation .navigation-flyouts .navigation-flyout .super-mega-superfly .col-xl-3 .navigation-flyout-teaser .navigation-flyout-teaser-image-container {
  padding-top: 20px;
}
.dreamtheme .nav-main .main-navigation .navigation-flyouts .navigation-flyout .super-mega-superfly .col-xl-3 .navigation-flyout-teaser .navigation-flyout-teaser-image-container .navigation-flyout-teaser-image {
  aspect-ratio: 1.3333333333;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.dreamtheme .nav-main .main-navigation .navigation-flyouts .navigation-flyout .super-mega-superfly .col-xl-3 .navigation-flyout-teaser .navigation-flyout-teaser-text-container .navigation-flyout-teaser-title {
  margin-top: 20px;
  margin-bottom: 15px;
}
.dreamtheme .nav-main .main-navigation .navigation-flyouts .navigation-flyout .super-mega-superfly .col-xl-3 .navigation-flyout-teaser .navigation-flyout-teaser-text-container .navigation-flyout-teaser-text {
  color: var(--g2g-token-color-neutral-text-default);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.dreamtheme .nav-main .main-navigation .navigation-flyouts .navigation-flyout .super-mega-superfly .col-xl-3 .navigation-flyout-teaser .navigation-flyout-teaser-text-container .navigation-flyout-teaser-link {
  color: var(--g2g-token-color-neutral-text-default);
  margin-top: 10px;
  font-weight: bold;
}
.dreamtheme .nav-main .main-navigation .navigation-flyouts .navigation-flyout .super-mega-superfly .col-xl-9 {
  width: 50%;
  margin-top: 10px;
}
.dreamtheme .nav-main .main-navigation .navigation-flyouts .navigation-flyout .navigation-flyout-link {
  color: var(--g2g-token-color-neutral-text-default);
}
.dreamtheme .nav-main .main-navigation .navigation-flyouts .navigation-flyout .navigation-flyout-link:hover {
  color: #000000;
}
.dreamtheme .nav-main .nav.main-navigation-menu {
  border-width: 0 1px;
}
.dreamtheme .nav-main .nav.main-navigation-menu .home-link {
  display: none;
}
.dreamtheme .nav-main .nav.main-navigation-menu .main-navigation-menu-list > .nav-item:has(> .home-link) {
  display: none;
}
.dreamtheme .nav-main .nav.main-navigation-menu .nav-item {
  padding-left: 0;
  padding-right: 0;
}
.dreamtheme .nav-main .nav.main-navigation-menu .nav-link.main-navigation-link {
  color: var(--g2g-token-header-navi-link-default);
  padding: 12px 20px;
  margin-right: 0;
}
@media (min-width: 992px) {
  .dreamtheme .nav-main .nav.main-navigation-menu .nav-link.main-navigation-link {
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  .dreamtheme .nav-main .nav.main-navigation-menu .nav-link.main-navigation-link {
    font-size: 15px;
  }
}
.dreamtheme .nav-main .nav.main-navigation-menu .nav-link.main-navigation-link:hover {
  color: var(--g2g-token-header-navi-link-hover, #000000);
  background: var(--g2g-token-header-navi-link-bg-hover, #f0f0f0);
}
.dreamtheme .nav-main .nav.main-navigation-menu .nav-link.main-navigation-link:hover:before {
  content: none;
}
.dreamtheme .nav-main .nav.main-navigation-menu .nav-link.main-navigation-link .main-navigation-link-text {
  text-decoration: none;
  border: none transparent;
}
.dreamtheme .nav-main .nav.main-navigation-menu .nav-link.main-navigation-link .main-navigation-link-text:hover {
  text-decoration: none;
  border: none transparent;
}
.dreamtheme .nav-main .nav.main-navigation-menu .nav-link.main-navigation-link[aria-current="page"] {
  font-weight: 700;
  color: var(--g2g-token-header-navi-link-active, #64748b);
}
.dreamtheme.g2g-flyout-hidden .navigation-flyouts {
  display: none;
}
.dreamtheme.g2g-flyout-hidden .main-navigation-link.dropdown-toggle::after {
  display: none;
}
.dreamtheme .newsletter2gether-twoclicks {
  display: flex;
  background: #0f172a;
  padding-bottom: 4px;
}
.dreamtheme .newsletter2gether-twoclicks .newsletter2gether--inner {
  margin: 0 auto;
  padding: 30px 20px 40px 20px;
  position: relative;
}
.dreamtheme .newsletter2gether-twoclicks .newsletter2gether--inner .newsletter2gether-htext {
  float: left;
  width: 100%;
}
.dreamtheme .newsletter2gether-twoclicks .newsletter2gether--inner .newsletter2gether-htext .newsletter2gether-eyebrow {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--g2g-token-color-brand-primary-text, #64748b);
  /* Waltraud — WCAG AA Text-Eyebrow */
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.dreamtheme .newsletter2gether-twoclicks .newsletter2gether--inner .newsletter2gether-htext .newsletter2gether-htext-header {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
}
.dreamtheme .newsletter2gether-twoclicks .newsletter2gether--inner .newsletter2gether-htext .newsletter2gether-htext-description {
  display: block;
  color: #ffffff;
  font-size: 14px;
}
.dreamtheme .newsletter2gether-twoclicks .newsletter2gether--inner .newsletter2gether-box {
  width: 100%;
  clear: both;
}
.dreamtheme .newsletter2gether-twoclicks .newsletter2gether--inner .newsletter2gether-box .content .newsletter2gether-button {
  position: relative;
  overflow: hidden;
  border-color: transparent;
  width: 100%;
  background: var(--g2g-token-footer-newsletter-button-bg, #64748b);
  text-align: center;
  color: #ffffff;
  padding: 10px;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  margin: 10px 0 5px 0;
}
.dreamtheme .newsletter2gether-twoclicks .newsletter2gether--inner .newsletter2gether-box .content .newsletter2gether-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  will-change: transform;
  width: 100%;
  height: 100%;
  background: var(--g2g-token-color-brand-primary-hover, #4a5667);
  z-index: 0;
  transition: transform 0.5s ease-in-out;
}
.dreamtheme .newsletter2gether-twoclicks .newsletter2gether--inner .newsletter2gether-box .content .newsletter2gether-button span {
  position: relative;
  z-index: 1;
}
.dreamtheme .newsletter2gether-twoclicks .newsletter2gether--inner .newsletter2gether-box .content .newsletter2gether-button:hover::before {
  transform: translateX(0);
}
.dreamtheme .newsletter2gether-twoclicks .newsletter2gether--inner .newsletter2gether-box .content .newsletter2gether-text {
  color: #ffffff;
}
.dreamtheme .newsletter2gether-twoclicks .newsletter2gether--inner .newsletter2gether-box .content .newsletter2gether-text .newsletter-data-privacy-link {
  color: #000;
}
.dreamtheme .newsletter2gether-twoclicks .newsletter2gether--inner .newsletter2gether-box .content .newsletter2gether-form {
  margin: 10px 0 5px 0;
}
.dreamtheme .newsletter2gether-twoclicks .newsletter2gether--inner .newsletter2gether-box .content .newsletter2gether-form .newsletter2gether-form-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dreamtheme .newsletter2gether-twoclicks .newsletter2gether--inner .newsletter2gether-box .content .newsletter2gether-form .newsletter2gether-input {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  font-size: 16px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: var(--g2g-border-radius, 4px);
}
.dreamtheme .newsletter2gether-twoclicks .newsletter2gether--inner .newsletter2gether-box .content .newsletter2gether-form .newsletter2gether-button--submit {
  width: 100%;
  min-height: 52px;
  margin: 0;
  padding: 12px 24px;
  border-radius: var(--g2g-border-radius, 4px);
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
.dreamtheme .newsletter2gether-twoclicks .newsletter2gether--inner .newsletter2gether-box .content .newsletter2gether-form .newsletter2gether-form-privacy {
  margin-top: 12px;
  color: #ffffff;
  font-size: 13px;
  line-height: 1.45;
}
.dreamtheme .newsletter2gether-twoclicks .newsletter2gether--inner .newsletter2gether-box .content .newsletter2gether-form .newsletter2gether-form-privacy .privacy-notice-title {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.dreamtheme .newsletter2gether-twoclicks .newsletter2gether--inner .newsletter2gether-box .content .newsletter2gether-form .newsletter2gether-form-privacy .privacy-notice > br {
  display: none;
}
.dreamtheme .newsletter2gether-twoclicks .newsletter2gether--inner .newsletter2gether-box .content .newsletter2gether-form .newsletter2gether-form-privacy .privacy-notice, .dreamtheme .newsletter2gether-twoclicks .newsletter2gether--inner .newsletter2gether-box .content .newsletter2gether-form .newsletter2gether-form-privacy .data-protection-information, .dreamtheme .newsletter2gether-twoclicks .newsletter2gether--inner .newsletter2gether-box .content .newsletter2gether-form .newsletter2gether-form-privacy .data-protection-information > div {
  margin: 0;
  padding: 0;
  font-size: 13px;
  line-height: 1.45;
}
.dreamtheme .newsletter2gether-twoclicks .newsletter2gether--inner .newsletter2gether-box .content .newsletter2gether-form .newsletter2gether-form-privacy .btn-link-inline {
  display: inline;
  padding: 0;
  margin: 0;
  border: 0;
  background: none;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  vertical-align: baseline;
  color: #000;
  text-decoration: underline;
}
.dreamtheme .newsletter2gether-twoclicks .newsletter2gether--inner .newsletter2gether-box .content .newsletter2gether-form .newsletter2gether-form-privacy a {
  color: #000;
}
.dreamtheme .newsletter2gether-twoclicks .newsletter2gether--inner .newsletter2gether-box .content .newsletter2gether-form .confirm-captcha, .dreamtheme .newsletter2gether-twoclicks .newsletter2gether--inner .newsletter2gether-box .content .newsletter2gether-form .basic-captcha {
  margin-top: 12px;
}
.dreamtheme .newsletter2gether-twoclicks .newsletter2gether--inner .newsletter2gether-box .content .g2g-newsletter-cms-block {
  padding: 0;
  margin: 0;
  background: none;
}
.dreamtheme .newsletter2gether-twoclicks .newsletter2gether--inner .newsletter2gether-box .content .g2g-newsletter-cms-block > .cms-element-form {
  padding: 0;
}
.dreamtheme .newsletter2gether-twoclicks .newsletter2gether--inner .newsletter2gether-box .content .g2g-newsletter-cms-block .confirm-message, .dreamtheme .newsletter2gether-twoclicks .newsletter2gether--inner .newsletter2gether-box .content .g2g-newsletter-cms-block .confirm-alert {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.5;
  padding: 12px 0;
}
.dreamtheme .newsletter2gether-twoclicks .newsletter2gether--inner .newsletter2gether-box .content .g2g-newsletter-cms-block .confirm-message .alert, .dreamtheme .newsletter2gether-twoclicks .newsletter2gether--inner .newsletter2gether-box .content .g2g-newsletter-cms-block .confirm-alert .alert {
  margin: 0;
}
.dreamtheme .newsletter2gether-twoclicks .newsletter2gether--inner .newsletter2gether-box .content .g2g-newsletter-cms-block .confirm-message a, .dreamtheme .newsletter2gether-twoclicks .newsletter2gether--inner .newsletter2gether-box .content .g2g-newsletter-cms-block .confirm-alert a {
  color: #000;
}
@media (min-width: 768px) {
  .dreamtheme .newsletter2gether-twoclicks {
    padding-bottom: 0;
  }
  .dreamtheme .newsletter2gether-twoclicks .newsletter2gether--inner {
    margin: 0 auto;
    padding: 40px 20px 40px 20px;
  }
  .dreamtheme .newsletter2gether-twoclicks .newsletter2gether--inner .newsletter2gether-htext {
    width: 47.25%;
    margin-right: 3.5%;
  }
  .dreamtheme .newsletter2gether-twoclicks .newsletter2gether--inner .newsletter2gether-htext .newsletter2gether-htext-header {
    font-size: 2.5rem;
  }
  .dreamtheme .newsletter2gether-twoclicks .newsletter2gether--inner .newsletter2gether-htext .newsletter2gether-htext-description {
    font-size: 15px;
  }
  .dreamtheme .newsletter2gether-twoclicks .newsletter2gether--inner .newsletter2gether-box {
    float: left;
    clear: none;
    width: 49.25%;
  }
  .dreamtheme .newsletter2gether-twoclicks .newsletter2gether--inner .newsletter2gether-box .newsletter2gether-text {
    font-size: 10px;
  }
  .dreamtheme .newsletter2gether-twoclicks .newsletter2gether--inner .newsletter2gether-box .newsletter2gether-text a {
    font-weight: 600;
  }
}
.dreamtheme .product-box {
  border: none;
  border-radius: var(--g2g-border-radius, 4px);
}
.dreamtheme .product-box .card-body {
  text-align: center;
  padding-top: 10px;
  --bs-card-spacer-y: none;
  --bs-card-spacer-x: none;
  border: none;
  display: flex;
  flex-direction: column;
}
.dreamtheme .product-box .card-body .product-badges .badge.badge-new {
  background: #dadae5;
  font-size: 12px;
  font-weight: 300;
  padding: 4px;
  line-height: 30px;
  height: 30px;
  width: 30px;
  border-radius: 50%;
}
.dreamtheme .product-box .card-body .product-image-wrapper {
  margin-bottom: 5px;
}
.dreamtheme .product-box .card-body .product-info {
  padding: 0 10px 10px 10px;
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
}
.dreamtheme .product-box .card-body .product-info .g2g-product-card-manufacturer {
  font-size: 11px;
  color: var(--g2g-text-muted, #888);
  text-transform: none;
  letter-spacing: 0.03em;
  margin-bottom: 2px;
  line-height: 1.3;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.dreamtheme .product-box .card-body .product-info .g2g-list-variants-hint {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 12px;
  max-width: 100%;
}
.dreamtheme .product-box .card-body .product-info .product-rating {
  margin-bottom: 4px;
  height: 21px;
}
.dreamtheme .product-box .card-body .product-info .product-name.product-name {
  font-size: 14px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: calc(1.4em * 2);
  line-height: 1.4;
}
.dreamtheme .product-box .card-body .product-info .product-variant-characteristics {
  min-height: unset;
}
.dreamtheme .product-box .card-body .product-info .product-variant-characteristics .product-variant-characteristics-text {
  height: 18px;
  -webkit-line-clamp: 1;
  line-clamp: 1;
}
.dreamtheme .product-box .card-body .product-info .refund-system-container {
  display: none;
}
.dreamtheme .product-box .card-body .product-info .badge-sm.subscription-badge {
  display: none;
}
.dreamtheme .product-box .card-body .product-info .product-price-info {
  margin-top: auto;
}
.dreamtheme .product-box .card-body .product-info .product-price-info .product-price-wrapper .g2g-product-price-box-inner {
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  flex-wrap: nowrap;
  gap: 4px;
}
.dreamtheme .product-box .card-body .product-info .product-price-info .product-price-wrapper .g2g-product-price-box-inner .g2g-listing-from-text {
  font-size: 12px;
  flex-shrink: 0;
}
.dreamtheme .product-box .card-body .product-info .product-price-info .product-price-wrapper .g2g-product-price-box-inner .product-price {
  padding-bottom: 20px;
}
.dreamtheme .product-box .card-body .product-info .product-price-info .product-price-wrapper .g2g-product-price-box-inner .product-price.with-list-price {
  padding-bottom: 0;
}
.dreamtheme .product-box .card-body .product-info .product-price-info .product-price-wrapper .g2g-product-price-box-inner .product-price.with-list-price .list-price {
  font-size: 10px;
  width: 100%;
  display: block;
  padding-left: 0;
}
.dreamtheme .product-box .card-body .product-info .product-action .btn-buy, .dreamtheme .product-box .card-body .product-info .product-action .btn-light, .dreamtheme .product-box .card-body .product-info .product-action .btn.btn-block, .dreamtheme .product-box .card-body .product-info .product-action a.btn, .dreamtheme .product-box .card-body .product-info .product-action button.btn {
  padding-top: 7px;
  padding-bottom: 7px;
  min-height: 0;
  line-height: 1.3;
  font-size: 14px;
}
.dreamtheme .product-slider-container.product-slider-container {
  display: flex;
  align-items: stretch;
}
.dreamtheme .product-slider-container.product-slider-container .product-slider-item {
  display: flex;
  flex-direction: column;
}
.dreamtheme .product-slider-container.product-slider-container .product-slider-item > * {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.dreamtheme .product-slider-container .product-slider-item .product-box {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.dreamtheme .product-slider-container .product-slider-item .product-box .card-body .product-info .product-rating {
  margin-bottom: 4px;
  height: 21px;
}
.dreamtheme .product-slider-container .product-slider-item .product-box .card-body .product-info .product-variant-characteristics {
  min-height: unset;
}
.dreamtheme .product-slider-container .product-slider-item .product-box .card-body .product-info .product-variant-characteristics .product-variant-characteristics-text {
  height: 18px;
  -webkit-line-clamp: 1;
  line-clamp: 1;
}
.dreamtheme .product-slider-container .product-slider-item .product-box .card-body .product-info .product-price-unit:not(:has(*)) {
  display: none;
}
.product-box.box-standard .stretched-link::after {
  content: none;
}
.product-price-tax-link {
  display: none;
}
body.dreamtheme .cms-element-product-listing.g2g-manufacturer-case-uppercase .product-box .g2g-product-card-manufacturer, body.dreamtheme .cms-element-product-slider.g2g-manufacturer-case-uppercase .product-box .g2g-product-card-manufacturer {
  text-transform: uppercase;
}
body.dreamtheme .cms-element-product-listing.g2g-manufacturer-case-capitalize .product-box .g2g-product-card-manufacturer, body.dreamtheme .cms-element-product-slider.g2g-manufacturer-case-capitalize .product-box .g2g-product-card-manufacturer {
  text-transform: capitalize;
}
body.dreamtheme .cms-element-product-listing.g2g-manufacturer-case-list-none.g2g-listing-view-list .product-box .g2g-product-card-manufacturer {
  text-transform: none;
}
body.dreamtheme .cms-element-product-listing.g2g-manufacturer-case-list-uppercase.g2g-listing-view-list .product-box .g2g-product-card-manufacturer {
  text-transform: uppercase;
}
body.dreamtheme .cms-element-product-listing.g2g-manufacturer-case-list-capitalize.g2g-listing-view-list .product-box .g2g-product-card-manufacturer {
  text-transform: capitalize;
}
.dreamtheme .checkout .checkout-main .hide2gether-offcanvas-items-in-basket, .dreamtheme .checkout .checkout-main .offcanvas-quantity2gether {
  display: none;
}
.dreamtheme .checkout .checkout-main .line-item-details {
  padding-top: 0;
}
.dreamtheme .checkout .checkout-main .line-item-details .line-item-label {
  text-decoration: none;
}
.dreamtheme .checkout .checkout-main .line-item-details .line-item-label .product-name {
  font-weight: 700;
  margin-bottom: 0px;
  height: auto;
  font-size: 17px;
}
.dreamtheme .cart-offcanvas {
  --bs-offcanvas-box-shadow: var(--g2g-token-cart-drawer-shadow, none);
  box-shadow: var(--g2g-token-cart-drawer-shadow, none);
}
.dreamtheme .cart-offcanvas.cart-offcanvas {
  box-shadow: var(--g2g-token-cart-drawer-shadow, none);
}
.dreamtheme .cart-offcanvas.offcanvas {
  box-shadow: var(--g2g-token-cart-drawer-shadow, none);
}
.dreamtheme .cart-offcanvas .offcanvas-body {
  display: flex;
  flex-direction: column;
}
.dreamtheme .cart-offcanvas .offcanvas-cart {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
@media (min-width: 992px) {
  .dreamtheme .cart-offcanvas {
    width: calc(480px + var(--g2g-cart-drawer-extra-width, 50px));
    max-width: 40vw;
    min-width: 420px;
  }
}
.dreamtheme .cart-offcanvas .hide2gether-offcanvas-items {
  display: none;
}
.dreamtheme .cart-offcanvas .offcanvas-header {
  display: none;
}
.dreamtheme .cart-offcanvas .g2g-offcanvas-cart-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: transparent;
  color: var(--g2g-token-color-neutral-text-default, #1a1a1a);
  border-bottom: 1px solid var(--g2g-token-color-neutral-border, #e5e7eb);
  padding: 0.875rem 1rem;
  margin: 0;
}
.dreamtheme .cart-offcanvas .g2g-offcanvas-cart-meta__spacer {
  flex: 0 0 32px;
  height: 32px;
}
.dreamtheme .cart-offcanvas .g2g-offcanvas-cart-meta__count {
  flex: 1 1 auto;
  text-align: center;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.2;
  color: inherit;
}
.dreamtheme .cart-offcanvas .g2g-offcanvas-cart-meta__close {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: inherit;
  border: 0;
  padding: 0;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.15s ease;
}
.dreamtheme .cart-offcanvas .g2g-offcanvas-cart-meta__close:hover, .dreamtheme .cart-offcanvas .g2g-offcanvas-cart-meta__close:focus-visible {
  opacity: 0.8;
  outline: none;
}
.dreamtheme .cart-offcanvas .offcanvas-summary-list, .dreamtheme .cart-offcanvas .offcanvas-body .row {
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
}
.dreamtheme .cart-offcanvas .offcanvas-cart-actions.g2g-cart-actions-sticky {
  position: sticky;
  bottom: 0;
  z-index: 10;
  background-color: var(--g2g-token-color-neutral-background, #fff);
  margin-top: auto;
  margin-inline: -10px;
  margin-bottom: 0;
  padding: 1rem 10px;
  border-top: 1px solid var(--g2g-token-color-neutral-border, #e2e8f0);
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.04);
}
.dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .offcanvas-cart-items {
  border-bottom: none;
  margin-bottom: 16px;
}
.dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .offcanvas-cart-items .line-item-product {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .offcanvas-cart-items .line-item-product:last-child {
  border: none;
}
.dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .offcanvas-cart-items .line-item-product .line-item-row .line-item-info .line-item-details .line-item-details-container .offcanvas-quantity2gether {
  float: left;
  margin-right: 4px;
  font-weight: 300;
}
.dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .offcanvas-cart-items .line-item-product .line-item-row .line-item-info .line-item-details .line-item-details-container .product-name {
  font-weight: 300;
  margin-bottom: 2px;
  height: auto;
  font-size: 15px;
  display: contents;
}
.dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .offcanvas-cart-items .line-item-product .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-details-characteristics {
  font-size: 11px;
}
.dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .offcanvas-cart-items .line-item-product .line-item-row .line-item-remove .line-item-remove-button {
  padding: 0;
  line-height: normal;
  border: none;
  border-radius: 0;
  width: 30px;
  height: 30px;
  background: none;
  background-color: transparent;
  box-shadow: none;
  transition: none;
}
.dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .offcanvas-cart-items .line-item-product .line-item-row .line-item-remove .line-item-remove-button:hover, .dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .offcanvas-cart-items .line-item-product .line-item-row .line-item-remove .line-item-remove-button:focus, .dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .offcanvas-cart-items .line-item-product .line-item-row .line-item-remove .line-item-remove-button:active, .dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .offcanvas-cart-items .line-item-product .line-item-row .line-item-remove .line-item-remove-button:focus-visible {
  border: none;
  background: none;
  background-color: transparent;
  box-shadow: none;
  outline: none;
}
.dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .offcanvas-cart-items .line-item-product .line-item-row .line-item-remove .line-item-remove-button:hover .icon-x, .dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .offcanvas-cart-items .line-item-product .line-item-row .line-item-remove .line-item-remove-button:focus .icon-x, .dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .offcanvas-cart-items .line-item-product .line-item-row .line-item-remove .line-item-remove-button:active .icon-x, .dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .offcanvas-cart-items .line-item-product .line-item-row .line-item-remove .line-item-remove-button:focus-visible .icon-x {
  color: var(--g2g-token-color-neutral-text-default);
}
.dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .offcanvas-cart-items .line-item-product .line-item-row .line-item-remove .line-item-remove-button .icon-x {
  width: 18px;
  height: 18px;
  position: unset;
  margin: 0;
}
.dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .offcanvas-cart-items .line-item-product.compactcart2gether {
  margin-bottom: 10px;
}
.dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .offcanvas-cart-items .line-item-product.compactcart2gether .line-item-row .line-item-info {
  margin-bottom: 1px;
}
.dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .offcanvas-cart-items .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-row {
  display: block;
}
.dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .offcanvas-cart-items .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-info-img {
  width: max-content;
  float: left;
  margin-right: 5px;
}
.dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .offcanvas-cart-items .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details {
  padding-top: 0;
  margin-left: 25%;
  width: 80%;
}
.dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .offcanvas-cart-items .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-details-characteristics {
  margin: 0;
}
.dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .offcanvas-cart-items .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-product-number {
  margin-bottom: 0;
}
.dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .offcanvas-cart-items .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-unit-price.is-shown {
  display: block;
}
.dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .offcanvas-cart-items .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-unit-price.is-shown.hide2gether-offcanvas-items {
  display: none;
}
.dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .offcanvas-cart-items .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-unit-price .line-item-unit-price-value {
  padding: 4px 0 0 0;
}
.dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .offcanvas-cart-items .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-total-price {
  display: block;
}
.dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .offcanvas-cart-items .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-total-price .line-item-total-price-value {
  text-align: left;
  float: left;
  margin-right: 5px;
}
.dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .offcanvas-cart-items .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-total-price .line-item-total-price-value .line-item-reference-price {
  font-size: 12px;
}
.dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .offcanvas-cart-items .line-item-product.compactcart2gether .line-item-row .line-item-quantity-row .line-item-quantity-label {
  display: none;
}
.dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .offcanvas-cart-items .line-item-product.compactcart2gether .line-item-row .line-item-quantity-row .line-item-quantity-select-wrapper {
  flex: 0 0 auto;
  width: 38.66666667%;
  margin-left: 61.33333333%;
  margin-top: -20px;
}
.dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .offcanvas-cart-items .line-item-product.compactcart2gether .line-item-row.reference2gether .line-item-quantity-row .line-item-quantity-select-wrapper {
  margin-top: -40px;
}
.dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .begin-checkout-btn {
  position: relative;
  overflow: hidden;
  border-color: transparent;
  width: 98%;
  background: #1e293b;
  text-align: center;
  color: var(--g2g-token-color-neutral-background);
  padding: 10px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
}
.dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .begin-checkout-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  will-change: transform;
  width: 100%;
  height: 100%;
  background: #334155;
  z-index: 0;
  transition: transform 0.5s ease-in-out;
}
.dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .begin-checkout-btn span {
  position: relative;
  z-index: 1;
}
.dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .begin-checkout-btn:hover::before {
  transform: translateX(0);
}
.dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .off-canvas-icons2gether .headline-pay2gether {
  color: var(--g2g-token-color-neutral-text-default);
  font-size: 13px;
  margin-top: 5px;
  margin-bottom: 5px;
}
.dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .off-canvas-icons2gether .content-pay2gether .footer-pay2gether ul {
  padding: 0;
  margin: 0;
}
.dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .off-canvas-icons2gether .content-pay2gether .footer-pay2gether ul li {
  display: inline-block;
}
.dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .off-canvas-icons2gether .content-pay2gether .footer-pay2gether ul li img {
  width: 46px;
  margin-right: 1px;
  margin-bottom: 1px;
  float: left;
}
.dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .off-canvas-icons2gether .content-ship2gether .footer-ship2gether ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
}
.dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .off-canvas-icons2gether .content-ship2gether .footer-ship2gether ul li {
  display: inline-flex;
  margin: 0;
}
.dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .off-canvas-icons2gether .content-ship2gether .footer-ship2gether ul li img {
  width: 40px;
  height: 28px;
  object-fit: contain;
  border-radius: 4px;
  margin: 0;
  float: none;
}
.dreamtheme.is-act-checkoutregisterpage .checkout {
  padding-top: 0;
}
.dreamtheme.is-act-cartpage .content-main .container .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether, .dreamtheme.is-act-cartpage .content-main .cms-section .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether, .cms-section .dreamtheme.is-act-cartpage .content-main .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether, .dreamtheme.is-act-confirmpage .content-main .container .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether, .dreamtheme.is-act-confirmpage .content-main .cms-section .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether, .cms-section .dreamtheme.is-act-confirmpage .content-main .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether, .dreamtheme.is-act-finishpage .content-main .container .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether, .dreamtheme.is-act-finishpage .content-main .cms-section .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether, .cms-section .dreamtheme.is-act-finishpage .content-main .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether {
  margin-bottom: 10px;
}
.dreamtheme.is-act-cartpage .content-main .container .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info, .dreamtheme.is-act-cartpage .content-main .cms-section .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info, .cms-section .dreamtheme.is-act-cartpage .content-main .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info, .dreamtheme.is-act-confirmpage .content-main .container .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info, .dreamtheme.is-act-confirmpage .content-main .cms-section .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info, .cms-section .dreamtheme.is-act-confirmpage .content-main .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info, .dreamtheme.is-act-finishpage .content-main .container .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info, .dreamtheme.is-act-finishpage .content-main .cms-section .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info, .cms-section .dreamtheme.is-act-finishpage .content-main .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info {
  margin-bottom: 1px;
}
.dreamtheme.is-act-cartpage .content-main .container .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-row, .dreamtheme.is-act-cartpage .content-main .cms-section .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-row, .cms-section .dreamtheme.is-act-cartpage .content-main .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-row, .dreamtheme.is-act-confirmpage .content-main .container .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-row, .dreamtheme.is-act-confirmpage .content-main .cms-section .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-row, .cms-section .dreamtheme.is-act-confirmpage .content-main .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-row, .dreamtheme.is-act-finishpage .content-main .container .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-row, .dreamtheme.is-act-finishpage .content-main .cms-section .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-row, .cms-section .dreamtheme.is-act-finishpage .content-main .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-row {
  display: block;
}
.dreamtheme.is-act-cartpage .content-main .container .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-info-img, .dreamtheme.is-act-cartpage .content-main .cms-section .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-info-img, .cms-section .dreamtheme.is-act-cartpage .content-main .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-info-img, .dreamtheme.is-act-confirmpage .content-main .container .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-info-img, .dreamtheme.is-act-confirmpage .content-main .cms-section .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-info-img, .cms-section .dreamtheme.is-act-confirmpage .content-main .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-info-img, .dreamtheme.is-act-finishpage .content-main .container .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-info-img, .dreamtheme.is-act-finishpage .content-main .cms-section .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-info-img, .cms-section .dreamtheme.is-act-finishpage .content-main .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-info-img {
  width: max-content;
  float: left;
  margin-right: 5px;
}
.dreamtheme.is-act-cartpage .content-main .container .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details, .dreamtheme.is-act-cartpage .content-main .cms-section .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details, .cms-section .dreamtheme.is-act-cartpage .content-main .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details, .dreamtheme.is-act-confirmpage .content-main .container .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details, .dreamtheme.is-act-confirmpage .content-main .cms-section .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details, .cms-section .dreamtheme.is-act-confirmpage .content-main .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details, .dreamtheme.is-act-finishpage .content-main .container .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details, .dreamtheme.is-act-finishpage .content-main .cms-section .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details, .cms-section .dreamtheme.is-act-finishpage .content-main .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details {
  padding-top: 0;
  margin-left: 25%;
  width: 80%;
}
.dreamtheme.is-act-cartpage .content-main .container .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-details-characteristics, .dreamtheme.is-act-cartpage .content-main .cms-section .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-details-characteristics, .cms-section .dreamtheme.is-act-cartpage .content-main .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-details-characteristics, .dreamtheme.is-act-confirmpage .content-main .container .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-details-characteristics, .dreamtheme.is-act-confirmpage .content-main .cms-section .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-details-characteristics, .cms-section .dreamtheme.is-act-confirmpage .content-main .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-details-characteristics, .dreamtheme.is-act-finishpage .content-main .container .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-details-characteristics, .dreamtheme.is-act-finishpage .content-main .cms-section .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-details-characteristics, .cms-section .dreamtheme.is-act-finishpage .content-main .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-details-characteristics {
  margin: 0;
}
.dreamtheme.is-act-cartpage .content-main .container .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-product-number, .dreamtheme.is-act-cartpage .content-main .cms-section .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-product-number, .cms-section .dreamtheme.is-act-cartpage .content-main .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-product-number, .dreamtheme.is-act-confirmpage .content-main .container .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-product-number, .dreamtheme.is-act-confirmpage .content-main .cms-section .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-product-number, .cms-section .dreamtheme.is-act-confirmpage .content-main .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-product-number, .dreamtheme.is-act-finishpage .content-main .container .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-product-number, .dreamtheme.is-act-finishpage .content-main .cms-section .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-product-number, .cms-section .dreamtheme.is-act-finishpage .content-main .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-product-number {
  margin-bottom: 0;
}
.dreamtheme.is-act-cartpage .content-main .container .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-unit-price.is-shown, .dreamtheme.is-act-cartpage .content-main .cms-section .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-unit-price.is-shown, .cms-section .dreamtheme.is-act-cartpage .content-main .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-unit-price.is-shown, .dreamtheme.is-act-confirmpage .content-main .container .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-unit-price.is-shown, .dreamtheme.is-act-confirmpage .content-main .cms-section .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-unit-price.is-shown, .cms-section .dreamtheme.is-act-confirmpage .content-main .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-unit-price.is-shown, .dreamtheme.is-act-finishpage .content-main .container .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-unit-price.is-shown, .dreamtheme.is-act-finishpage .content-main .cms-section .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-unit-price.is-shown, .cms-section .dreamtheme.is-act-finishpage .content-main .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-unit-price.is-shown {
  display: block;
}
.dreamtheme.is-act-cartpage .content-main .container .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-unit-price.is-shown.hide2gether-offcanvas-items, .dreamtheme.is-act-cartpage .content-main .cms-section .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-unit-price.is-shown.hide2gether-offcanvas-items, .cms-section .dreamtheme.is-act-cartpage .content-main .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-unit-price.is-shown.hide2gether-offcanvas-items, .dreamtheme.is-act-confirmpage .content-main .container .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-unit-price.is-shown.hide2gether-offcanvas-items, .dreamtheme.is-act-confirmpage .content-main .cms-section .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-unit-price.is-shown.hide2gether-offcanvas-items, .cms-section .dreamtheme.is-act-confirmpage .content-main .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-unit-price.is-shown.hide2gether-offcanvas-items, .dreamtheme.is-act-finishpage .content-main .container .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-unit-price.is-shown.hide2gether-offcanvas-items, .dreamtheme.is-act-finishpage .content-main .cms-section .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-unit-price.is-shown.hide2gether-offcanvas-items, .cms-section .dreamtheme.is-act-finishpage .content-main .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-unit-price.is-shown.hide2gether-offcanvas-items {
  display: none;
}
.dreamtheme.is-act-cartpage .content-main .container .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-unit-price .line-item-unit-price-value, .dreamtheme.is-act-cartpage .content-main .cms-section .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-unit-price .line-item-unit-price-value, .cms-section .dreamtheme.is-act-cartpage .content-main .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-unit-price .line-item-unit-price-value, .dreamtheme.is-act-confirmpage .content-main .container .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-unit-price .line-item-unit-price-value, .dreamtheme.is-act-confirmpage .content-main .cms-section .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-unit-price .line-item-unit-price-value, .cms-section .dreamtheme.is-act-confirmpage .content-main .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-unit-price .line-item-unit-price-value, .dreamtheme.is-act-finishpage .content-main .container .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-unit-price .line-item-unit-price-value, .dreamtheme.is-act-finishpage .content-main .cms-section .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-unit-price .line-item-unit-price-value, .cms-section .dreamtheme.is-act-finishpage .content-main .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-unit-price .line-item-unit-price-value {
  padding: 4px 0 0 0;
}
.dreamtheme.is-act-cartpage .content-main .container .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-total-price, .dreamtheme.is-act-cartpage .content-main .cms-section .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-total-price, .cms-section .dreamtheme.is-act-cartpage .content-main .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-total-price, .dreamtheme.is-act-confirmpage .content-main .container .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-total-price, .dreamtheme.is-act-confirmpage .content-main .cms-section .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-total-price, .cms-section .dreamtheme.is-act-confirmpage .content-main .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-total-price, .dreamtheme.is-act-finishpage .content-main .container .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-total-price, .dreamtheme.is-act-finishpage .content-main .cms-section .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-total-price, .cms-section .dreamtheme.is-act-finishpage .content-main .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-total-price {
  display: block;
}
.dreamtheme.is-act-cartpage .content-main .container .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-total-price .line-item-total-price-value, .dreamtheme.is-act-cartpage .content-main .cms-section .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-total-price .line-item-total-price-value, .cms-section .dreamtheme.is-act-cartpage .content-main .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-total-price .line-item-total-price-value, .dreamtheme.is-act-confirmpage .content-main .container .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-total-price .line-item-total-price-value, .dreamtheme.is-act-confirmpage .content-main .cms-section .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-total-price .line-item-total-price-value, .cms-section .dreamtheme.is-act-confirmpage .content-main .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-total-price .line-item-total-price-value, .dreamtheme.is-act-finishpage .content-main .container .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-total-price .line-item-total-price-value, .dreamtheme.is-act-finishpage .content-main .cms-section .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-total-price .line-item-total-price-value, .cms-section .dreamtheme.is-act-finishpage .content-main .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-total-price .line-item-total-price-value {
  text-align: left;
  float: left;
  margin-right: 5px;
}
.dreamtheme.is-act-cartpage .content-main .container .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-total-price .line-item-total-price-value .line-item-reference-price, .dreamtheme.is-act-cartpage .content-main .cms-section .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-total-price .line-item-total-price-value .line-item-reference-price, .cms-section .dreamtheme.is-act-cartpage .content-main .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-total-price .line-item-total-price-value .line-item-reference-price, .dreamtheme.is-act-confirmpage .content-main .container .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-total-price .line-item-total-price-value .line-item-reference-price, .dreamtheme.is-act-confirmpage .content-main .cms-section .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-total-price .line-item-total-price-value .line-item-reference-price, .cms-section .dreamtheme.is-act-confirmpage .content-main .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-total-price .line-item-total-price-value .line-item-reference-price, .dreamtheme.is-act-finishpage .content-main .container .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-total-price .line-item-total-price-value .line-item-reference-price, .dreamtheme.is-act-finishpage .content-main .cms-section .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-total-price .line-item-total-price-value .line-item-reference-price, .cms-section .dreamtheme.is-act-finishpage .content-main .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-info .line-item-details .line-item-details-container .line-item-total-price .line-item-total-price-value .line-item-reference-price {
  font-size: 12px;
}
.dreamtheme.is-act-cartpage .content-main .container .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-price, .dreamtheme.is-act-cartpage .content-main .cms-section .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-price, .cms-section .dreamtheme.is-act-cartpage .content-main .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-price, .dreamtheme.is-act-confirmpage .content-main .container .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-price, .dreamtheme.is-act-confirmpage .content-main .cms-section .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-price, .cms-section .dreamtheme.is-act-confirmpage .content-main .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-price, .dreamtheme.is-act-finishpage .content-main .container .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-price, .dreamtheme.is-act-finishpage .content-main .cms-section .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-price, .cms-section .dreamtheme.is-act-finishpage .content-main .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-price {
  margin-top: -10px;
}
.dreamtheme.is-act-cartpage .content-main .container .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-quantity-row .line-item-quantity-label, .dreamtheme.is-act-cartpage .content-main .cms-section .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-quantity-row .line-item-quantity-label, .cms-section .dreamtheme.is-act-cartpage .content-main .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-quantity-row .line-item-quantity-label, .dreamtheme.is-act-confirmpage .content-main .container .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-quantity-row .line-item-quantity-label, .dreamtheme.is-act-confirmpage .content-main .cms-section .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-quantity-row .line-item-quantity-label, .cms-section .dreamtheme.is-act-confirmpage .content-main .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-quantity-row .line-item-quantity-label, .dreamtheme.is-act-finishpage .content-main .container .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-quantity-row .line-item-quantity-label, .dreamtheme.is-act-finishpage .content-main .cms-section .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-quantity-row .line-item-quantity-label, .cms-section .dreamtheme.is-act-finishpage .content-main .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-quantity-row .line-item-quantity-label {
  display: block;
}
.dreamtheme.is-act-cartpage .content-main .container .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-quantity-row .line-item-quantity-select-wrapper, .dreamtheme.is-act-cartpage .content-main .cms-section .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-quantity-row .line-item-quantity-select-wrapper, .cms-section .dreamtheme.is-act-cartpage .content-main .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-quantity-row .line-item-quantity-select-wrapper, .dreamtheme.is-act-confirmpage .content-main .container .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-quantity-row .line-item-quantity-select-wrapper, .dreamtheme.is-act-confirmpage .content-main .cms-section .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-quantity-row .line-item-quantity-select-wrapper, .cms-section .dreamtheme.is-act-confirmpage .content-main .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-quantity-row .line-item-quantity-select-wrapper, .dreamtheme.is-act-finishpage .content-main .container .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-quantity-row .line-item-quantity-select-wrapper, .dreamtheme.is-act-finishpage .content-main .cms-section .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-quantity-row .line-item-quantity-select-wrapper, .cms-section .dreamtheme.is-act-finishpage .content-main .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row .line-item-quantity-row .line-item-quantity-select-wrapper {
  flex: 0 0 auto;
}
.dreamtheme.is-act-cartpage .content-main .container .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row.reference2gether .line-item-quantity-row .line-item-quantity-select-wrapper, .dreamtheme.is-act-cartpage .content-main .cms-section .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row.reference2gether .line-item-quantity-row .line-item-quantity-select-wrapper, .cms-section .dreamtheme.is-act-cartpage .content-main .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row.reference2gether .line-item-quantity-row .line-item-quantity-select-wrapper, .dreamtheme.is-act-confirmpage .content-main .container .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row.reference2gether .line-item-quantity-row .line-item-quantity-select-wrapper, .dreamtheme.is-act-confirmpage .content-main .cms-section .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row.reference2gether .line-item-quantity-row .line-item-quantity-select-wrapper, .cms-section .dreamtheme.is-act-confirmpage .content-main .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row.reference2gether .line-item-quantity-row .line-item-quantity-select-wrapper, .dreamtheme.is-act-finishpage .content-main .container .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row.reference2gether .line-item-quantity-row .line-item-quantity-select-wrapper, .dreamtheme.is-act-finishpage .content-main .cms-section .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row.reference2gether .line-item-quantity-row .line-item-quantity-select-wrapper, .cms-section .dreamtheme.is-act-finishpage .content-main .boxed .container-main .checkout .checkout-container .checkout-main .line-item-product.compactcart2gether .line-item-row.reference2gether .line-item-quantity-row .line-item-quantity-select-wrapper {
  margin-top: -40px;
}
.g2g-cart-drawer-trust {
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0.75rem 0;
  box-shadow: none;
}
.g2g-cart-drawer-trust__heading {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.g2g-cart-drawer-trust__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.g2g-cart-drawer-trust__item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.g2g-cart-drawer-trust__icon {
  flex-shrink: 0;
  font-size: 1.05rem;
  color: #64748b;
  width: 1.25rem;
  text-align: center;
  margin-top: 0.15rem;
}
.g2g-cart-drawer-trust__content {
  flex: 1 1 auto;
  min-width: 0;
}
.g2g-cart-drawer-trust__title {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #585858;
  margin-bottom: 0.1rem;
}
.g2g-cart-drawer-trust__text {
  display: block;
  font-size: 0.78rem;
  color: #6b6b6b;
  line-height: 1.35;
}
.cart-offcanvas .line-item-img-container, .cart-offcanvas .line-item-img, .cart-offcanvas .offcanvas-cart-item-image, .cart-offcanvas .line-item-img-link {
  border: 0;
  background: var(--g2g-token-color-neutral-surface, #f5f5f5);
  border-radius: var(--g2g-border-radius, 8px);
  overflow: hidden;
}
body.g2g-cart-item-frame .cart-offcanvas .line-item-img-container, body.g2g-cart-item-frame .cart-offcanvas .line-item-img, body.g2g-cart-item-frame .cart-offcanvas .offcanvas-cart-item-image, body.g2g-cart-item-frame .cart-offcanvas .line-item-img-link {
  border: 1px solid var(--g2g-token-color-neutral-border, #e2e8f0);
  background: var(--g2g-token-cart-drawer-item-image-bg, #ffffff);
}
body.dreamtheme .cart-offcanvas .line-item-label.line-item-label, body.dreamtheme .cart-offcanvas .line-item-label.line-item-label a, body.dreamtheme .cart-offcanvas a.line-item-label.line-item-label, body.dreamtheme .cart-offcanvas .line-item-label.line-item-label .product-name, body.dreamtheme .cart-offcanvas a .product-name.product-name {
  text-decoration: none;
  font-weight: 700;
}
.cart-offcanvas .line-item-img-container, .cart-offcanvas .line-item-img, .cart-offcanvas .line-item-img-link, .cart-offcanvas .offcanvas-cart-item-image {
  width: 96px;
  flex: 0 0 96px;
  max-width: 96px;
}
.cart-offcanvas .line-item-img-container img, .cart-offcanvas .line-item-img img, .cart-offcanvas .offcanvas-cart-item-image img {
  max-width: 100%;
  height: auto;
}
.cart-offcanvas .line-item:last-child, .cart-offcanvas .cart-item:last-child, .cart-offcanvas .offcanvas-cart-item:last-child, .cart-offcanvas [class*="line-item"]:last-child {
  border-bottom: 0;
}
.cart-offcanvas .g2g-cart-drawer-promotion {
  border-top: 0;
}
.cart-offcanvas .g2g-cart-drawer-promotion::before, .cart-offcanvas .g2g-cart-drawer-promotion::after {
  display: none;
  content: none;
  border: 0;
}
.cart-offcanvas .g2g-cart-drawer-promotion > hr, .cart-offcanvas .g2g-cart-drawer-promotion > .divider {
  display: none;
}
.cart-offcanvas hr + .g2g-cart-drawer-promotion, .cart-offcanvas .g2g-cart-drawer-promotion ~ hr {
  display: none;
}
.cart-offcanvas .offcanvas-cart-tax, .cart-offcanvas .offcanvas-cart-tax small, .cart-offcanvas .offcanvas-cart-tax .small, .cart-offcanvas .cart-tax, .cart-offcanvas .cart-tax small, .cart-offcanvas .cart-tax .small, .cart-offcanvas .summary-tax, .cart-offcanvas .cart-summary-tax, .cart-offcanvas [class*="summary"] [class*="tax"], .cart-offcanvas .summary-additional .tax-info, .cart-offcanvas .summary-additional, .cart-offcanvas .summary-additional small, .cart-offcanvas .summary-additional .small, .cart-offcanvas .line-item-delivery-date {
  font-size: 12px;
}
.cart-offcanvas .offcanvas-cart .offcanvas-cart-tax, .cart-offcanvas .offcanvas-cart .offcanvas-cart-tax small, .cart-offcanvas .offcanvas-cart .offcanvas-cart-tax .small, .cart-offcanvas .offcanvas-cart .cart-tax, .cart-offcanvas .offcanvas-cart .summary-additional, .cart-offcanvas .offcanvas-cart .line-item-delivery-date, .cart-offcanvas .cart-offcanvas .line-item-delivery-date {
  font-size: 12px;
}
.dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .offcanvas-cart-items .line-item-promotion.compactcart2gether {
  margin-bottom: 10px;
}
.dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .offcanvas-cart-items .line-item-promotion.compactcart2gether .line-item-row {
  flex-wrap: wrap;
  align-items: normal;
}
.dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .offcanvas-cart-items .line-item-promotion.compactcart2gether .line-item-row > .line-item-info {
  display: block;
  flex: 0 0 auto;
  width: calc(100% - 85px);
  max-width: calc(100% - 85px);
  margin-bottom: 0;
  order: 1;
}
.dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .offcanvas-cart-items .line-item-promotion.compactcart2gether .line-item-row > .line-item-quantity {
  display: none;
}
.dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .offcanvas-cart-items .line-item-promotion.compactcart2gether .line-item-label .product-quantity, .dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .offcanvas-cart-items .line-item-promotion.compactcart2gether .line-item-label .offcanvas-quantity2gether {
  display: none;
}
.dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .offcanvas-cart-items .line-item-promotion.compactcart2gether .line-item-row > .line-item-total-price {
  display: block;
  flex: 0 0 100%;
  width: 100%;
  margin: 0;
  padding-left: 104px;
  order: 3;
}
.dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .offcanvas-cart-items .line-item-promotion.compactcart2gether .line-item-row > .line-item-total-price .line-item-total-price-label {
  display: none;
}
.dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .offcanvas-cart-items .line-item-promotion.compactcart2gether .line-item-row > .line-item-total-price .line-item-total-price-value {
  text-align: left;
  font-weight: 600;
  margin: 0;
  padding: 0;
}
.dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .offcanvas-cart-items .line-item-promotion.compactcart2gether:has(.g2g-promo-inline-price) .line-item-row > .line-item-total-price {
  display: none;
}
.dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .offcanvas-cart-items .line-item-promotion.compactcart2gether .g2g-promo-inline-price {
  display: block;
  margin-top: 4px;
  clear: both;
}
.dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .offcanvas-cart-items .line-item-promotion.compactcart2gether .g2g-promo-inline-price .line-item-total-price-value {
  text-align: left;
  font-weight: 600;
  margin: 0;
  padding: 0;
}
.dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .offcanvas-cart-items .line-item-promotion.compactcart2gether .line-item-row > .line-item-remove {
  order: 2;
  flex: 0 0 auto;
}
.dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .offcanvas-cart-items .line-item-promotion.compactcart2gether .line-item-row .line-item-info .line-item-row {
  display: block;
}
.dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .offcanvas-cart-items .line-item-promotion.compactcart2gether .line-item-row .line-item-info .line-item-info-img {
  float: left;
  margin-right: 8px;
  width: 96px;
}
.dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .offcanvas-cart-items .line-item-promotion.compactcart2gether .line-item-row .line-item-info .line-item-img-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 60px;
  background-color: var(--g2g-token-color-neutral-surface, #f5f5f5);
  border-radius: var(--g2g-border-radius, 8px);
  margin-bottom: 0;
}
.dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .offcanvas-cart-items .line-item-promotion.compactcart2gether .line-item-row .line-item-info .line-item-img.line-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .offcanvas-cart-items .line-item-promotion.compactcart2gether .line-item-row .line-item-info .line-item-details {
  display: block;
  padding-top: 0;
  margin-left: 104px;
  margin-top: 0;
  width: auto;
  overflow: hidden;
}
.dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .offcanvas-cart-items .line-item-promotion .line-item-row .line-item-remove .line-item-remove-button, .dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .offcanvas-cart-items .line-item-discount .line-item-row .line-item-remove .line-item-remove-button {
  padding: 0;
  line-height: normal;
  border: none;
  border-radius: 0;
  width: 30px;
  height: 30px;
  background: none transparent;
  box-shadow: none;
}
.dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .offcanvas-cart-items .line-item-promotion .line-item-row .line-item-remove .line-item-remove-button:hover, .dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .offcanvas-cart-items .line-item-promotion .line-item-row .line-item-remove .line-item-remove-button:focus, .dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .offcanvas-cart-items .line-item-promotion .line-item-row .line-item-remove .line-item-remove-button:active, .dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .offcanvas-cart-items .line-item-promotion .line-item-row .line-item-remove .line-item-remove-button:focus-visible, .dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .offcanvas-cart-items .line-item-discount .line-item-row .line-item-remove .line-item-remove-button:hover, .dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .offcanvas-cart-items .line-item-discount .line-item-row .line-item-remove .line-item-remove-button:focus, .dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .offcanvas-cart-items .line-item-discount .line-item-row .line-item-remove .line-item-remove-button:active, .dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .offcanvas-cart-items .line-item-discount .line-item-row .line-item-remove .line-item-remove-button:focus-visible {
  border: none;
  background: none transparent;
  box-shadow: none;
  outline: none;
}
.dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .offcanvas-cart-items .line-item-promotion .line-item-row .line-item-remove .line-item-remove-button .icon-x, .dreamtheme .cart-offcanvas .offcanvas-body .offcanvas-cart .offcanvas-cart-items .line-item-discount .line-item-row .line-item-remove .line-item-remove-button .icon-x {
  width: 18px;
  height: 18px;
  position: unset;
  margin: 0;
}
.g2g-cart-drawer-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  gap: 16px;
  min-height: 360px;
}
.g2g-cart-drawer-empty__icon {
  width: 80px;
  height: 80px;
  color: var(--g2g-token-color-neutral-text-muted, #9ca3af);
  opacity: 0.7;
  margin-bottom: 8px;
}
.g2g-cart-drawer-empty__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.g2g-cart-drawer-empty__headline {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--g2g-token-color-neutral-text-default, #111827);
  margin: 0;
}
.g2g-cart-drawer-empty__text {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--g2g-token-color-neutral-text-muted, #6b7280);
  margin: 0;
  max-width: 280px;
}
.g2g-cart-drawer-empty__cta {
  margin-top: 12px;
  min-width: 180px;
  padding: 0.65rem 1.5rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.g2g-cart-drawer-empty__cta:hover, .g2g-cart-drawer-empty__cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}
.offcanvas.cart-offcanvas .offcanvas-cart {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
body.dreamtheme .offcanvas.cart-offcanvas .offcanvas-cart-actions.offcanvas-cart-actions {
  position: sticky;
  bottom: 0;
  z-index: 10;
  margin-top: auto;
  margin-inline: -10px;
  padding: 1rem 10px;
  background-color: var(--g2g-token-color-neutral-background, #fff);
  border-top: 1px solid var(--g2g-token-color-neutral-border, #e2e8f0);
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.04);
}
body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .line-item-product {
  border-bottom: 1px solid var(--g2g-token-color-neutral-border, #e5e7eb);
  padding: 12px 0;
}
body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .offcanvas-summary, body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .checkout-aside-summary {
  background-color: transparent;
  border: 0;
  border-top: 1px solid var(--g2g-token-color-neutral-border, #e5e7eb);
  border-radius: 0;
  padding: 12px 0;
  box-shadow: none;
}
body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .checkout-aside-shipping-cost, body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .shipping-cost-name, body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas a:not(.btn):not(.line-item-label):not(.btn-primary) {
  color: var(--g2g-token-color-neutral-text-muted, #6b7280);
  font-weight: 500;
  text-decoration: none;
}
body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .g2g-cart-drawer-trust__list {
  gap: 0.5rem;
  margin-top: 0.5rem;
}
body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .g2g-cart-drawer-trust__icon {
  font-size: 0.95rem;
  width: 1.1rem;
  color: var(--g2g-token-color-neutral-text-muted, #6b7280);
}
body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .g2g-cart-drawer-trust__title {
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--g2g-token-color-neutral-text-default, #1a1a1a);
}
body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .g2g-cart-drawer-trust__text {
  font-size: 0.75rem;
  color: var(--g2g-token-color-neutral-text-muted, #6b7280);
  line-height: 1.35;
}
body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .footer-shipping2gether, body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .footer-pay2gether, body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .footer-shipping, body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas [class*="footer-payment"] {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0;
  padding: 0;
  background: transparent;
}
body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .footer-shipping2gether img, body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .footer-shipping2gether .icon, body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .footer-shipping2gether svg, body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .footer-pay2gether img, body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .footer-pay2gether .icon, body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .footer-pay2gether svg, body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .footer-shipping img, body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .footer-shipping .icon, body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .footer-shipping svg, body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas [class*="footer-payment"] img, body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas [class*="footer-payment"] .icon, body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas [class*="footer-payment"] svg {
  max-height: 20px;
  width: auto;
  filter: grayscale(60%);
  opacity: 0.75;
  mix-blend-mode: multiply;
  background: transparent;
}
body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .quantity-selector-group, body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .form-quantity-group {
  display: inline-flex;
  align-items: center;
  background: var(--g2g-token-color-neutral-surface, #f5f5f5);
  border-radius: var(--g2g-border-radius, 999px);
  padding: 2px;
  gap: 0;
  border: 1px solid var(--g2g-token-color-neutral-border, #e5e7eb);
}
body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .quantity-selector-group .btn, body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .quantity-selector-group button, body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .form-quantity-group .btn {
  background: transparent;
  border: 0;
  border-radius: var(--g2g-border-radius, 50%);
  width: 28px;
  height: 28px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--g2g-token-color-neutral-text-default, #1a1a1a);
}
body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .quantity-selector-group .btn:hover, body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .quantity-selector-group .btn:focus, body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .quantity-selector-group button:hover, body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .quantity-selector-group button:focus, body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .form-quantity-group .btn:hover, body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .form-quantity-group .btn:focus {
  background: rgba(0, 0, 0, 0.05);
}
body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .quantity-selector-group input, body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .form-quantity-group input {
  background: transparent;
  border: 0;
  width: 32px;
  text-align: center;
  font-weight: 600;
  padding: 0;
}
body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .offcanvas-cart-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .offcanvas-cart-actions .offcanvas-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  font-size: 1rem;
  font-weight: 700;
  border-top: 1px solid var(--g2g-token-color-neutral-border, #e5e7eb);
  margin-bottom: 4px;
}
body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .g2g-cart-drawer-promotion input[type="text"], body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .g2g-cart-drawer-promotion .form-control {
  border: 0;
  border-bottom: 1px solid var(--g2g-token-color-neutral-border, #d1d5db);
  border-radius: 0;
  padding: 8px 0;
  background: transparent;
  box-shadow: none;
}
body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .g2g-cart-drawer-promotion input[type="text"]:focus, body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .g2g-cart-drawer-promotion .form-control:focus {
  border-bottom-color: var(--g2g-token-color-neutral-text-default, #1a1a1a);
  box-shadow: 0 1px 0 0 var(--g2g-token-color-neutral-text-default, #1a1a1a);
  outline: none;
}
body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .g2g-cart-drawer-promotion .btn[type="submit"], body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas form.cart-promotion .btn-secondary[type="submit"] {
  background: transparent;
  border: 0;
  color: var(--g2g-token-color-neutral-text-default, #1a1a1a);
  font-weight: 600;
  padding: 8px 4px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .g2g-cart-drawer-promotion .btn[type="submit"]:hover, body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas form.cart-promotion .btn-secondary[type="submit"]:hover {
  background: transparent;
  color: var(--g2g-token-color-action-buy, #16a34a);
}
body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .line-item-product .product-name, body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .line-item-product a.product-name {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--g2g-token-color-neutral-text-default, #1a1a1a);
}
body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .line-item-total-price, body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .line-item-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--g2g-token-color-neutral-text-default, #1a1a1a);
}
body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .line-item-product-number, body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .line-item-delivery-date, body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .line-item-details-characteristics {
  font-size: 0.75rem;
  color: var(--g2g-token-color-neutral-text-muted, #6b7280);
  line-height: 1.35;
}
body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .line-item-info-img, body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .line-item-img, body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .line-item-image-container, body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .line-item-image-container > *, body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .line-item-info-img > * {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}
body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .line-item-info-img img, body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .line-item-img img, body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .line-item-image-container img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 80px;
  border: 0;
  border-radius: 0;
}
body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .quantity-selector-group, body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .form-quantity-group, body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .line-item-quantity .input-group, body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .line-item-quantity-group {
  overflow: hidden;
}
body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .quantity-selector-group *, body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .form-quantity-group *, body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .line-item-quantity .input-group *, body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .line-item-quantity-group * {
  border-top: 0;
  border-bottom: 0;
  box-shadow: none;
}
body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .quantity-selector-group input, body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .form-quantity-group input, body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .line-item-quantity input {
  border: 0;
  background: transparent;
  outline: none;
}
body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .quantity-selector-group .btn, body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .form-quantity-group .btn, body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .line-item-quantity .btn {
  border: 0;
  box-shadow: none;
}
body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .offcanvas-body {
  padding-bottom: 0;
}
body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .offcanvas-cart-items {
  padding-top: 8px;
}
body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .quantity-selector-group .btn.btn-outline-light, body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .line-item-quantity-group .btn.btn-outline-light {
  border: 0 none transparent;
  box-shadow: none;
}
body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .quantity-selector-group, body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .line-item-quantity-group {
  padding: 0;
}
body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .quantity-selector-group .btn-plus, body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .line-item-quantity-group .btn-plus {
  border-radius: var(--g2g-border-radius, 4px) var(--g2g-border-radius, 4px) 0 0;
}
body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .quantity-selector-group .btn-minus, body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .line-item-quantity-group .btn-minus {
  border-radius: 0 0 var(--g2g-border-radius, 4px) var(--g2g-border-radius, 4px);
}
body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .line-item-img-container img.line-item-img, body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .line-item-img img, body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .offcanvas-cart-item-image img, body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .line-item-img-link img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
}
body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .line-item-img-container, body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .line-item-img, body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .line-item-img-link, body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .offcanvas-cart-item-image {
  height: 96px;
  aspect-ratio: 1;
  overflow: hidden;
}
body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .hide2gether-offcanvas-items-in-basket {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .hide2gether-offcanvas-items-in-basket .line-item-total-price {
  font-weight: 700;
}
body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .hide2gether-offcanvas-items-in-basket .line-item-unit-price {
  font-size: 0.8125rem;
  color: var(--g2g-token-color-neutral-text-muted, #6b7280);
  line-height: 1.3;
}
body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .hide2gether-offcanvas-items-in-basket .line-item-unit-price-label {
  display: inline;
}
body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .g2g-cart-drawer-promotion {
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
}
body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .g2g-cart-drawer-promotion .input-group {
  background: var(--g2g-token-color-neutral-surface, #f5f5f5);
  border-radius: var(--g2g-border-radius, 8px);
  overflow: hidden;
}
body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .g2g-cart-drawer-promotion .input-group .form-control, body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .g2g-cart-drawer-promotion .input-group input[type="text"] {
  background: transparent;
  border: 0;
}
body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .g2g-cart-drawer-promotion .input-group .btn, body.dreamtheme.dreamtheme .offcanvas.cart-offcanvas .g2g-cart-drawer-promotion .offcanvas-cart-promotion-button {
  background: transparent;
  border: 0;
}
.dreamtheme .cart-offcanvas .offcanvas-body {
  padding-inline: 20px;
}
.dreamtheme .cart-offcanvas .offcanvas-cart-actions.g2g-cart-actions-sticky {
  margin-inline: -20px;
  padding-left: 20px;
  padding-right: 20px;
}
.dreamtheme.is-ctl-search .content-main .cms-page.search-page {
  display: flex;
  flex-direction: column-reverse;
  width: 100%;
  margin-bottom: 6px;
}
.dreamtheme.is-ctl-search .content-main .cms-page.search-page .g2g-search {
  margin-bottom: 30px;
}
.dreamtheme.is-ctl-search .content-main .cms-page.search-page .g2g-search-filter, .dreamtheme.is-ctl-search .content-main .cms-page.search-page .g2g-search-products {
  box-sizing: border-box;
  width: 100%;
}
@media (min-width: 992px) {
  .dreamtheme.is-ctl-search .content-main .cms-page.search-page .g2g-search {
    display: flex;
    align-items: flex-start;
    column-gap: 42px;
  }
  .dreamtheme.is-ctl-search .content-main .cms-page.search-page .g2g-search-filter {
    flex: 0 0 275px;
    width: 275px;
    max-width: 275px;
  }
  .dreamtheme.is-ctl-search .content-main .cms-page.search-page .g2g-search-products {
    flex: 1 1 0;
    min-width: 0;
    padding-top: 32px;
  }
}
body.dreamtheme.dreamtheme.is-ctl-search .g2g-prev-next-edge.g2g-prev-next-edge {
  display: none;
}
body.dreamtheme.dreamtheme .g2g-search-filter > .g2g-glass-sidebar-panel {
  padding-left: 10px;
  padding-right: 10px;
  margin-top: 32px;
}
.dreamtheme.is-ctl-search.g2g-filter-cat-button .content-main .cms-page.search-page .g2g-search-filter .cms-element-sidebar-filter:not(.g2g-filter-megapanel), .dreamtheme.is-ctl-search.g2g-filter-cat-inherit.g2g-filter-flyout-nosidebar-on .content-main .cms-page.search-page .g2g-search-filter .cms-element-sidebar-filter:not(.g2g-filter-megapanel) {
  display: none;
}
.dreamtheme.is-ctl-search.g2g-filter-cat-button .content-main .cms-page.search-page .g2g-search-filter > .g2g-glass-sidebar-panel, .dreamtheme.is-ctl-search.g2g-filter-cat-inherit.g2g-filter-flyout-nosidebar-on .content-main .cms-page.search-page .g2g-search-filter > .g2g-glass-sidebar-panel {
  width: 0;
  min-width: 0;
  margin: 0;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  overflow: visible;
}
@media (min-width: 992px) {
  .dreamtheme.is-ctl-search.g2g-filter-cat-button .content-main .cms-page.search-page .g2g-search, .dreamtheme.is-ctl-search.g2g-filter-cat-inherit.g2g-filter-flyout-nosidebar-on .content-main .cms-page.search-page .g2g-search {
    column-gap: 0;
  }
  .dreamtheme.is-ctl-search.g2g-filter-cat-button .content-main .cms-page.search-page .g2g-search-filter, .dreamtheme.is-ctl-search.g2g-filter-cat-inherit.g2g-filter-flyout-nosidebar-on .content-main .cms-page.search-page .g2g-search-filter {
    flex-basis: 0;
    width: 0;
    max-width: 0;
    overflow: visible;
  }
}
body.dreamtheme.dreamtheme.dreamtheme.is-ctl-search .g2g-search-products .cms-element-product-listing-actions .sorting.form-select, body.dreamtheme.dreamtheme.dreamtheme.is-ctl-search .g2g-search-products .cms-element-product-listing-actions .g2g-per-page-select.form-select {
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  background-color: #fff;
  height: 40px;
  line-height: 1.4;
  padding: 0 14px;
  padding-right: 36px;
}
@media (min-width: 992px) {
  body.is-ctl-search .g2g-search-products .cms-element-product-listing.g2g-listing-cols-5 .cms-listing-row {
    grid-template-columns: repeat(4, 1fr);
  }
  body.is-ctl-search .g2g-search-products .cms-element-product-listing.g2g-listing-cols-4 .cms-listing-row {
    grid-template-columns: repeat(3, 1fr);
  }
  body.is-ctl-search .g2g-search-products .cms-element-product-listing.g2g-listing-cols-3 .cms-listing-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
body.dreamtheme.is-ctl-search .g2g-search-didyoumean {
  margin: 4px 0 20px;
  font-size: 1.05rem;
  color: #4b5563;
}
body.dreamtheme.is-ctl-search .g2g-search-didyoumean .g2g-search-didyoumean__link {
  font-weight: 600;
  color: var(--g2g-token-color-brand-primary, #d81f26);
  text-decoration: underline;
  text-underline-offset: 2px;
}
body.dreamtheme.is-ctl-search .g2g-search-didyoumean .g2g-search-didyoumean__link:hover {
  text-decoration: none;
}
.dreamtheme .cms-section-sidebar-sidebar-content {
  width: var(--g2g-sidebar-width, 245px);
  padding: 0;
}
@media (min-width: 992px) {
  .dreamtheme .cms-section-sidebar-sidebar-content {
    display: block;
    padding-left: calc(var(--bs-gutter-x, 60px) * 0.5);
  }
}
.dreamtheme .cms-section-sidebar-sidebar-content .cms-block-category-navigation .cms-block-container .cms-element-category-navigation {
  border: 1px solid var(--g2g-token-color-neutral-border);
  border-radius: 6px;
  overflow: hidden;
}
.dreamtheme .cms-section-sidebar-main-content {
  padding: 0;
}
.dreamtheme .category-navigation {
  padding: 0;
}
.dreamtheme .category-navigation.level-0 .category-navigation-entry {
  border-bottom: 1px solid var(--g2g-token-color-neutral-border);
}
.dreamtheme .category-navigation.level-0 .category-navigation-entry .category-navigation-link {
  padding-left: 20px;
}
.dreamtheme .category-navigation.level-0 .category-navigation-entry .category-navigation-link:hover {
  background-color: #64748b;
  color: var(--g2g-token-color-neutral-background);
}
.dreamtheme .category-navigation.level-0 .category-navigation-entry:last-child {
  border-bottom: none;
}
.dreamtheme .category-navigation.level-1 .category-navigation-entry {
  border-bottom: none;
}
.dreamtheme .category-navigation.level-1 .category-navigation-entry .category-navigation-link {
  padding-left: 30px;
}
.dreamtheme .category-navigation.level-1 .category-navigation-entry .category-navigation-link:hover {
  background-color: #64748b;
  color: var(--g2g-token-color-neutral-background);
}
.dreamtheme .cms-block-sidebar-filter .filter-panel-wrapper .filter-panel-item-toggle, .dreamtheme .cms-block-sidebar-filter .filter-panel-wrapper .filter-boolean {
  background-color: #d7d7d7;
  border-color: #d7d7d7;
  border-radius: var(--g2g-border-radius, 4px);
  color: #000000;
}
.dreamtheme .cms-block-sidebar-filter .filter-panel-wrapper .filter-panel-item-toggle .custom-control-label::before, .dreamtheme .cms-block-sidebar-filter .filter-panel-wrapper .filter-boolean .custom-control-label::before {
  background: transparent;
}
.dreamtheme .cms-block-sidebar-filter .filter-panel-wrapper .filter-panel-item-toggle .custom-control-input:checked ~ .custom-control-label::before, .dreamtheme .cms-block-sidebar-filter .filter-panel-wrapper .filter-boolean .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #64748b;
}
.dreamtheme .cms-block-sidebar-filter .filter-panel-wrapper .filter-panel-item-toggle .icon, .dreamtheme .cms-block-sidebar-filter .filter-panel-wrapper .filter-boolean .icon {
  color: var(--g2g-token-color-neutral-text-default);
}
.dreamtheme .cms-block-sidebar-filter .filter-panel-wrapper .filter-panel-item-toggle:hover, .dreamtheme .cms-block-sidebar-filter .filter-panel-wrapper .filter-boolean:hover {
  color: #ffffff;
  background-color: #64748b;
  font-weight: 700;
}
.dreamtheme .cms-block-sidebar-filter .filter-panel-wrapper .filter-panel-item-toggle:hover .icon, .dreamtheme .cms-block-sidebar-filter .filter-panel-wrapper .filter-boolean:hover .icon {
  color: var(--g2g-token-color-neutral-background);
}
.dreamtheme .cms-block-sidebar-filter .filter-panel-wrapper .filter-panel-item-dropdown {
  border: none;
}
.dreamtheme .cms-block-sidebar-filter .filter-panel-wrapper .filter-panel-item-toggle[aria-expanded=true] {
  border-bottom: 1px solid #d7d7d7;
}
.dreamtheme .cms-block-sidebar-filter .filter-panel-wrapper .is--sidebar .filter-panel-item-toggle[aria-expanded=true] svg {
  color: var(--g2g-token-color-neutral-background);
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .dreamtheme .cms-section-sidebar-main-content {
    width: 74.7%;
    padding-right: 0;
    padding-left: 10px;
  }
  .dreamtheme .cms-section-sidebar-main-content .cms-block-product-listing {
    padding-left: 10px;
  }
}
@media (min-width: 1200px) {
  .dreamtheme .cms-section-sidebar-main-content {
    width: 78.8%;
    padding-right: 0;
    padding-left: 20px;
  }
  .dreamtheme .cms-section-sidebar-main-content .cms-block-product-listing {
    padding-left: 10px;
  }
}
@media only screen and (max-width: 991px) {
  .dreamtheme .cms-section-sidebar-sidebar-content {
    width: -webkit-fill-available;
  }
}
body.dreamtheme .content-main .cms-page .cms-sections .cms-section .cms-section-sidebar.cms-section-sidebar-mobile-wrap.boxed.boxed {
  max-width: var(--g2g-page-width, 1200px);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
body.dreamtheme.g2g-sidebar-hover-bold .category-navigation-link.is-active:hover {
  font-weight: bold;
}
body.dreamtheme.g2g-sidebar-hover-underline .category-navigation-link.is-active:hover {
  text-decoration: underline;
}
body.dreamtheme .category-navigation-link.is-active:hover {
  color: #ffffff;
}
body.dreamtheme.g2g-sidebar-hide-mobile-fully .cms-section-sidebar-sidebar-content {
  display: none;
}
@media (min-width: 992px) {
  body.dreamtheme.g2g-sidebar-hide-mobile-fully .cms-section-sidebar-sidebar-content {
    display: block;
  }
}
body.dreamtheme.g2g-hide-categories-mobile .cms-section-sidebar-sidebar-content .cms-block-category-navigation {
  display: none;
}
@media (min-width: 992px) {
  body.dreamtheme.g2g-hide-categories-mobile .cms-section-sidebar-sidebar-content .cms-block-category-navigation {
    display: block;
  }
}
body.dreamtheme.g2g-hide-filters-mobile .cms-section-sidebar-sidebar-content .cms-block-sidebar-filter {
  display: none;
}
@media (min-width: 992px) {
  body.dreamtheme.g2g-hide-filters-mobile .cms-section-sidebar-sidebar-content .cms-block-sidebar-filter {
    display: block;
  }
}
body.dreamtheme .g2g-sidebar-html-card {
  margin-top: 16px;
  padding: 16px 20px;
  background: var(--g2g-token-color-neutral-background, #fff);
  border: 1px solid var(--g2g-token-color-neutral-border, #e8e8e8);
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--g2g-token-color-neutral-text-default, #333);
  word-wrap: break-word;
  overflow-wrap: break-word;
}
body.dreamtheme .g2g-sidebar-html-card p:last-child {
  margin-bottom: 0;
}
body.dreamtheme .g2g-sidebar-html-card img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}
body.dreamtheme .g2g-sidebar-html-card a {
  color: #64748b;
  text-decoration: underline;
}
.g2g-caticon {
  display: inline-flex;
  align-items: center;
  margin-right: 0.4em;
  vertical-align: middle;
}
.g2g-caticon img {
  width: var(--g2g-nav-caticon-width, 16px);
  max-height: 1.5em;
  height: auto;
  display: block;
}
@media (min-width: 992px) {
  .cms-element-category-navigation .category-navigation-entry.g2g-hide-inactive-links {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .cms-element-category-navigation .category-navigation-entry.g2g-hide-inactive-links-mobile {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .cms-element-category-navigation .category-navigation-entry.g2g-hide-sidebar-mobile {
    display: none;
  }
}
@media (min-width: 992px) {
  .cms-element-category-navigation .category-navigation-entry.g2g-hide-sidebar-mobile {
    display: block;
  }
}
.btn, .card, .form-control, .form-select, .badge:not(.rounded-circle):not(.rounded-pill), .alert, .modal-content, .dropdown-menu, .input-group-text, .list-group-item, input[type="text"], input[type="email"], input[type="search"], input[type="tel"], input[type="number"], input[type="password"], input[type="url"], textarea {
  border-radius: var(--g2g-border-radius, 4px);
}
.g2g-radius-force .btn, .g2g-radius-force .card, .g2g-radius-force .form-control, .g2g-radius-force .form-select, .g2g-radius-force .badge:not(.rounded-circle):not(.rounded-pill), .g2g-radius-force .alert, .g2g-radius-force .modal-content, .g2g-radius-force .dropdown-menu, .g2g-radius-force .custom-file-label, .g2g-radius-force .custom-select, .g2g-radius-force .input-group-text, .g2g-radius-force .product-detail-quantity, .g2g-radius-force .product-detail-quantity-input, .g2g-radius-force .product-detail-quantity-btn, .g2g-radius-force .quantity-selector-group, .g2g-radius-force .navigation-flyout, .g2g-radius-force .navigation-flyout-bar, .g2g-radius-force .g2g-stock-urgency, .g2g-radius-force .g2g-free-shipping-bar, .g2g-radius-force .g2g-delivery-info, .g2g-radius-force .g2g-sticky-buy__image, .g2g-radius-force .g2g-sticky-buy__btn, .g2g-radius-force input[type="text"], .g2g-radius-force input[type="email"], .g2g-radius-force input[type="search"], .g2g-radius-force input[type="tel"], .g2g-radius-force input[type="number"], .g2g-radius-force input[type="password"], .g2g-radius-force input[type="url"], .g2g-radius-force textarea {
  border-radius: var(--g2g-border-radius, 4px);
}
.g2g-radius-force .rounded, .g2g-radius-force .rounded-1, .g2g-radius-force .rounded-2, .g2g-radius-force .rounded-3, .g2g-radius-force .rounded-top, .g2g-radius-force .rounded-end, .g2g-radius-force .rounded-bottom, .g2g-radius-force .rounded-start {
  border-radius: var(--g2g-border-radius, 4px);
}
body.dreamtheme.dreamtheme .g2g-gl-border.g2g-gl-border {
  border-radius: var(--g2g-border-radius, 4px);
}
.g2g-footer-icons-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.g2g-footer-icons-list li {
  display: inline-block;
  margin: 0;
}
.g2g-footer-icons-list img {
  display: block;
  width: 65px;
  height: auto;
  border: 1px solid var(--g2g-token-color-neutral-text-default);
  border-radius: var(--g2g-border-radius, 4px);
  background: var(--g2g-token-color-neutral-background);
}
@media (min-width: 768px) {
  .g2g-footer-icons-list img {
    width: 50px;
  }
}
@media (min-width: 992px) {
  .g2g-footer-icons-list img {
    width: 65px;
  }
}
.product-detail-quantity, .product-detail-quantity-input, .product-detail-quantity-btn, .product-detail-quantity-group, .product-detail-quantity-select, .quantity-selector-group {
  border-radius: var(--g2g-border-radius, 4px);
}
.product-detail-quantity-btn:first-child {
  border-top-left-radius: var(--g2g-border-radius, 4px);
  border-bottom-left-radius: var(--g2g-border-radius, 4px);
}
.product-detail-quantity-btn:last-child {
  border-top-right-radius: var(--g2g-border-radius, 4px);
  border-bottom-right-radius: var(--g2g-border-radius, 4px);
}
.g2g-product-rating {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.4rem;
  margin: 0.25rem 0 0.5rem;
  font-size: 0.875rem;
  line-height: 1;
  white-space: nowrap;
}
.g2g-product-rating .g2g-rating-stars {
  color: #f59e0b;
  letter-spacing: 0.05em;
  font-size: 1rem;
}
.g2g-product-rating .g2g-rating-stars .star-empty {
  color: #d4d4d4;
}
.g2g-product-rating .g2g-rating-value {
  font-weight: 600;
  color: #6b6b6b;
}
.g2g-product-rating .g2g-rating-count {
  color: #999;
  font-size: 0.8125rem;
  text-decoration: none;
}
.g2g-product-rating .g2g-rating-empty {
  color: #6b6b6b;
  font-style: italic;
  font-size: 0.8125rem;
}
.g2g-manufacturer-rating-row .g2g-product-rating-inline .g2g-rating-stars {
  color: #f59e0b;
  font-size: 13px;
  letter-spacing: 1.5px;
}
.g2g-manufacturer-rating-row .g2g-product-rating-inline .g2g-rating-stars .star-empty {
  color: #d4d4d4;
}
body.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list) .product-box .product-info .g2g-manufacturer-rating-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-align: left;
  min-width: 0;
  max-width: 100%;
}
body.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list) .product-box .product-info .g2g-product-rating-inline {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: 0;
  line-height: 1;
}
body.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list) .product-box .product-info .g2g-rating-value {
  font-size: 12px;
  font-weight: 500;
  color: #6b7280;
}
body.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list) .product-box .product-info .g2g-product-card-manufacturer.g2g-product-card-manufacturer {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.55);
}
body.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list) .product-box .product-info .g2g-sku-row, body.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list) .product-box .product-info .g2g-sku-row .g2g-sku-label, body.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list) .product-box .product-info .g2g-sku-row .g2g-sku-value, body.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list) .product-box .product-info .g2g-ean-row, body.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list) .product-box .product-info .g2g-ean-row .g2g-ean-label, body.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list) .product-box .product-info .g2g-ean-row .g2g-ean-value {
  font-size: 11px;
  color: rgba(15, 23, 42, 0.55);
}
.g2g-icon-override {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.g2g-icon-override svg {
  width: 22px;
  height: 22px;
  display: block;
}
.g2g-stock-urgency {
  display: inline-block;
  padding: 0.3em 0.7em;
  border-radius: var(--g2g-border-radius, 4px);
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 5px;
  white-space: nowrap;
  border: none;
}
.g2g-stock-urgency.is-low {
  background-color: var(--g2g-stock-traffic-low-bg, #fff4e0);
  color: var(--g2g-stock-traffic-low-text, #b35c00);
  border: none;
}
.g2g-stock-urgency.is-critical {
  background-color: var(--g2g-stock-traffic-critical-bg, #ffe6e6);
  color: var(--g2g-stock-traffic-critical-text, #b30000);
  border: none;
  animation: g2g-pulse-critical 2s ease-in-out infinite;
  will-change: transform;
}
.g2g-stock-traffic-border-on .g2g-stock-urgency.is-low {
  border: 1px solid var(--g2g-stock-traffic-low-border, #ffd49a);
}
.g2g-stock-traffic-border-on .g2g-stock-urgency.is-critical {
  border: 1px solid var(--g2g-stock-traffic-critical-border, #ff9999);
}
.g2g-stock-traffic-border-on .badge-stock2gether, .g2g-stock-traffic-border-on .badge-stock2gether.is-good {
  border: 1px solid var(--g2g-stock-traffic-good-border, #128a3f);
}
@keyframes g2g-pulse-critical {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}
.g2g-stock-urgency--pdp {
  display: block;
  text-align: center;
  padding: 0.6em 1em;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}
@media (prefers-reduced-motion: reduce) {
  .g2g-stock-urgency.is-critical {
    animation: none;
  }
}
.g2g-free-shipping-bar {
  margin: 0.75rem 0 1rem;
  padding: 0.75rem 1rem;
  background-color: var(--g2g-fsb-bg, var(--g2g-token-cro-fsb-bg, var(--g2g-token-color-detail-bg-cream)));
  border: 1px solid var(--g2g-fsb-border, var(--g2g-token-cro-fsb-border, var(--g2g-token-color-detail-cream-border)));
  border-radius: var(--g2g-border-radius, 4px);
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--g2g-fsb-text, var(--g2g-token-cro-fsb-text, var(--g2g-token-color-detail-cream-text)));
}
.g2g-free-shipping-bar.is-reached {
  background-color: var(--g2g-fsb-reached-bg, var(--g2g-token-cro-fsb-reached-bg, var(--g2g-token-color-detail-success-bg)));
  border-color: var(--g2g-fsb-reached-border, var(--g2g-token-cro-fsb-reached-border, var(--g2g-token-color-detail-success-border)));
  color: var(--g2g-fsb-reached-text, var(--g2g-token-cro-fsb-reached-text, var(--g2g-token-color-status-success-dark)));
  font-weight: 600;
  text-align: center;
}
.g2g-free-shipping-bar .g2g-fsb-text {
  margin: 0;
}
.g2g-free-shipping-bar .g2g-fsb-text strong {
  color: var(--g2g-fsb-progress, var(--g2g-token-color-brand-primary, #64748b));
  font-weight: 700;
}
.g2g-free-shipping-bar .g2g-fsb-progress {
  height: 8px;
  background-color: rgba(0, 0, 0, 0.06);
  border-radius: var(--g2g-border-radius, 4px);
  overflow: hidden;
  position: relative;
}
.g2g-free-shipping-bar .g2g-fsb-progress .g2g-fsb-fill {
  height: 100%;
  background-color: var(--g2g-fsb-progress, var(--g2g-token-color-brand-primary, #64748b));
  border-radius: var(--g2g-border-radius, 4px);
  transition: width 0.4s ease-out;
  min-width: 0.25rem;
}
.g2g-free-shipping-bar.is-reached .g2g-fsb-progress {
  display: none;
}
.g2g-free-shipping-bar.g2g-fsb--cart-page {
  max-width: none;
  margin: 1rem 0 1.5rem;
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
}
.g2g-delivery-info {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.6em 0.8em;
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  width: 100%;
  flex-basis: 100%;
  grid-column: 1 / -1;
  background-color: var(--g2g-token-color-detail-success-soft);
  border: 1px solid var(--g2g-token-color-detail-success-bg-2);
  border-radius: var(--g2g-border-radius, 4px);
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--g2g-token-color-status-success-darker);
}
.g2g-delivery-info .g2g-delivery-icon {
  font-size: 1.1em;
  line-height: 1;
  flex-shrink: 0;
}
.g2g-delivery-info .g2g-delivery-text strong {
  color: #64748b;
  font-weight: 700;
}
.g2g-delivery-info .g2g-delivery-countdown {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.g2g-sticky-buy {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 12px;
  z-index: 1040;
  background: var(--g2g-token-color-neutral-background);
  border-top: 1px solid var(--g2g-token-color-neutral-border);
  border-radius: 12px;
  margin: 0 12px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08), 0 4px 18px rgba(0, 0, 0, 0.12);
  padding: 0.5rem 0.75rem env(safe-area-inset-bottom, 0.5rem);
  transform: translateY(calc(100% + 12px));
  transition: transform 0.25s ease-out;
  display: none;
}
body.g2g-has-mobile-bottombar .g2g-sticky-buy {
  bottom: calc(66px + 12px + env(safe-area-inset-bottom, 0px));
}
@media (max-width: 767.98px) {
  .g2g-sticky-buy {
    display: block;
  }
}
.g2g-sticky-buy.is-visible {
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .g2g-sticky-buy {
    transition: none;
  }
}
.g2g-sticky-buy .g2g-sticky-buy__inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.g2g-sticky-buy .g2g-sticky-buy__product {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1 1 auto;
  min-width: 0;
}
.g2g-sticky-buy .g2g-sticky-buy__image {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: var(--g2g-border-radius, 4px);
  flex-shrink: 0;
}
.g2g-sticky-buy .g2g-sticky-buy__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.2;
}
.g2g-sticky-buy .g2g-sticky-buy__name {
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.g2g-sticky-buy .g2g-sticky-buy__price {
  font-size: 0.95rem;
  font-weight: 700;
  color: #64748b;
}
.g2g-sticky-buy .g2g-sticky-buy__btn {
  flex-shrink: 0;
  white-space: nowrap;
  min-height: 44px;
  padding: 0.5rem 1rem;
}
body.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list) .product-box .g2g-card-media-link {
  position: relative;
  display: block;
}
body.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list) .product-box .g2g-card-hover-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.12s ease;
  pointer-events: none;
  z-index: 2;
}
body.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list) .product-box .g2g-card-slider {
  position: absolute;
  inset: 0;
  z-index: 2;
}
body.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list) .product-box .g2g-card-slider__track {
  display: flex;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
body.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list) .product-box .g2g-card-slider__track::-webkit-scrollbar {
  display: none;
}
body.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list) .product-box .g2g-card-slider__slide {
  flex: 0 0 100%;
  height: 100%;
  scroll-snap-align: center;
}
body.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list) .product-box .g2g-card-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
body.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list) .product-box .g2g-card-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  color: #a6a6a6;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  opacity: 0;
  transition: opacity 0.15s ease, color 0.15s ease, background 0.15s ease;
  z-index: 3;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.14);
}
body.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list) .product-box .g2g-card-slider__arrow--prev {
  left: 8px;
}
body.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list) .product-box .g2g-card-slider__arrow--next {
  right: 8px;
}
body.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list) .product-box .g2g-card-slider__arrow[hidden], body.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list) .product-box .g2g-card-slider__arrow.is-hidden {
  display: none;
}
body.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list) .product-box .g2g-card-slider__dots {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 5px;
  z-index: 3;
  pointer-events: none;
}
body.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list) .product-box .g2g-card-slider__dot {
  width: 6px;
  height: 6px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.28);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.55);
  cursor: pointer;
  pointer-events: auto;
  transition: transform 0.15s ease, background 0.15s ease;
}
body.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list) .product-box .g2g-card-slider__dot.is-active {
  background: rgba(0, 0, 0, 0.62);
  transform: scale(1.3);
}
body.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-imgmode-slider:not(.g2g-listing-view-list) .product-box .g2g-card-media-link:has(.g2g-card-slider) .product-image-wrapper {
  visibility: hidden;
}
body.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-imgmode-slider:not(.g2g-listing-view-list) .product-box .g2g-card-media-link:has(.g2g-card-slider) .product-image-wrapper > .product-action, body.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-imgmode-slider:not(.g2g-listing-view-list) .product-box .g2g-card-media-link:has(.g2g-card-slider) .product-image-wrapper > .product-badges, body.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-imgmode-slider:not(.g2g-listing-view-list) .product-box .g2g-card-media-link:has(.g2g-card-slider) .product-image-wrapper > .product-wishlist, body.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-imgmode-slider:not(.g2g-listing-view-list) .product-box .g2g-card-media-link:has(.g2g-card-slider) .product-image-wrapper > .product-wishlist-action-circle, body.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-imgmode-slider:not(.g2g-listing-view-list) .product-box .g2g-card-media-link:has(.g2g-card-slider) .product-image-wrapper > [class*="product-wishlist-"] {
  visibility: visible;
}
body.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-imgmode-slider:not(.g2g-listing-view-list) .product-box.g2g-variant-img-active .g2g-card-media-link:has(.g2g-card-slider) .product-image-wrapper {
  visibility: visible;
  z-index: 2;
}
body.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-imgmode-slider:not(.g2g-listing-view-list) .product-box.g2g-variant-img-active .g2g-card-media-link .g2g-card-slider {
  visibility: hidden;
}
body.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-imgmode-slider:not(.g2g-listing-view-list) .product-box.box-standard:hover {
  transform: none;
}
@media (hover: hover) {
  body.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-imgmode-hover-swap:not(.g2g-listing-view-list) .product-box:hover .g2g-card-hover-img {
    opacity: 1;
  }
  body.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-imgmode-slider.g2g-card-slider-arrows-hover:not(.g2g-listing-view-list) .product-box:hover .g2g-card-slider__arrow:not([hidden]):not(.is-hidden) {
    opacity: 1;
  }
  body.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-imgmode-slider:not(.g2g-listing-view-list) .product-box:hover .g2g-card-slider__arrow:not([hidden]):not(.is-hidden) {
    color: #444;
    background: rgba(255, 255, 255, 0.96);
  }
}
body.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-imgmode-slider.g2g-card-slider-arrows-always:not(.g2g-listing-view-list) .product-box .g2g-card-slider__arrow:not([hidden]):not(.is-hidden) {
  opacity: 1;
}
body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .g2g-card-hover-img, body.dreamtheme .cms-element-product-listing.g2g-listing-view-list .g2g-card-slider {
  display: none;
}
.g2g-checkout-header {
  background: var(--g2g-token-color-neutral-background);
  border-bottom: 1px solid var(--g2g-token-color-neutral-border);
  padding: 0.75rem 0;
}
.g2g-checkout-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.g2g-checkout-header__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.g2g-checkout-header__logo img {
  max-height: 40px;
  width: auto;
}
.g2g-checkout-header__badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--g2g-token-color-status-success-dark);
}
.g2g-checkout-header__badge i {
  font-size: 1rem;
}
.g2g-checkout-header__phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  color: inherit;
  font-weight: 600;
}
.g2g-checkout-header__phone-link:hover {
  text-decoration: underline;
}
.g2g-checkout-header__phone-link i {
  color: #64748b;
}
.g2g-checkout-footer {
  background: var(--g2g-token-color-neutral-surface);
  border-top: 1px solid var(--g2g-token-color-neutral-border);
  margin-top: 3rem;
  padding: 1.5rem 0;
}
.g2g-checkout-footer .container, .g2g-checkout-footer .cms-section .boxed, .cms-section .g2g-checkout-footer .boxed {
  max-width: var(--g2g-page-width, 1200px);
}
.g2g-checkout-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.g2g-checkout-footer__payment {
  flex: 0 1 auto;
}
.g2g-checkout-footer__copyright {
  order: 1;
}
.g2g-checkout-footer__legal {
  order: 2;
}
.g2g-checkout-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.g2g-checkout-footer__legal a {
  color: #585858;
  text-decoration: none;
  font-size: 0.875rem;
}
.g2g-checkout-footer__legal a:hover {
  color: #64748b;
  text-decoration: underline;
}
.g2g-checkout-footer__copyright {
  font-size: 0.8rem;
  color: #6b6b6b;
}
.g2g-checkout-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 1.5rem auto;
  max-width: var(--g2g-page-width, 1200px);
}
@media (min-width: 992px) {
  .g2g-checkout-layout {
    grid-template-columns: 1fr 320px;
  }
}
.g2g-checkout-layout__main {
  min-width: 0;
}
@media (min-width: 992px) {
  .g2g-checkout-layout__sidebar {
    position: sticky;
    top: 1rem;
    align-self: start;
  }
}
.g2g-checkout-progress {
  margin: 0 0 2rem;
  --g2g-step-completed: var(--g2g-token-color-status-success);
  --g2g-step-future: var(--g2g-token-color-neutral-border);
  --g2g-step-active: #64748b;
}
.g2g-checkout-progress__list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0;
  position: relative;
}
.g2g-checkout-progress__step {
  flex: 1 1 0;
  text-align: center;
  position: relative;
  z-index: 1;
  cursor: default;
  transition: opacity 0.2s ease;
}
.g2g-checkout-progress__step:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 1.25rem;
  right: calc(50% + 28px);
  left: calc(-50% + 28px);
  height: 2px;
  background: var(--g2g-step-future);
  background-image: linear-gradient(to right, var(--g2g-step-future) 50%, transparent 50%);
  background-size: 8px 2px;
  background-repeat: repeat-x;
  z-index: 0;
  transition: background 0.3s ease;
}
.g2g-checkout-progress__step.is-completed::before, .g2g-checkout-progress__step.is-active::before {
  background: var(--g2g-step-completed);
  background-image: none;
}
.g2g-checkout-progress__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--g2g-step-future);
  color: #6b6b6b;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  margin-bottom: 0.5rem;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  position: relative;
  z-index: 1;
}
.g2g-checkout-progress__step.is-active {
  cursor: default;
}
.g2g-checkout-progress__step.is-active .g2g-checkout-progress__num {
  background: var(--g2g-step-active);
  color: var(--g2g-token-color-neutral-background);
  box-shadow: 0 0 0 4px rgba(100, 116, 139, 0.18), 0 4px 12px rgba(100, 116, 139, 0.25);
  transform: scale(1.06);
}
.g2g-checkout-progress__step.is-active .g2g-checkout-progress__label {
  color: #585858;
  font-weight: 700;
}
.g2g-checkout-progress__step.is-completed {
  cursor: pointer;
}
.g2g-checkout-progress__step.is-completed .g2g-checkout-progress__num {
  background: var(--g2g-step-completed);
  color: var(--g2g-token-color-neutral-background);
  font-size: 0;
}
.g2g-checkout-progress__step.is-completed .g2g-checkout-progress__num::before {
  content: "✓";
  font-size: 1.1rem;
  font-weight: 700;
}
.g2g-checkout-progress__step.is-completed .g2g-checkout-progress__label {
  color: #585858;
  font-weight: 500;
}
.g2g-checkout-progress__step.is-completed:hover .g2g-checkout-progress__num {
  box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.22);
  transform: scale(1.04);
}
.g2g-checkout-progress__step:not(.is-active):not(.is-completed) {
  cursor: default;
}
.g2g-checkout-progress__step:not(.is-active):not(.is-completed) .g2g-checkout-progress__label {
  color: var(--g2g-token-color-neutral-text-muted);
}
.g2g-checkout-progress__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
}
@media (max-width: 575px) {
  .g2g-checkout-progress__label {
    font-size: 0.75rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .g2g-checkout-progress__step, .g2g-checkout-progress__num {
    transition: none;
    transform: none;
  }
}
.g2g-checkout-step {
  background: var(--g2g-token-color-neutral-background);
  border: 1px solid var(--g2g-token-color-neutral-border);
  border-radius: var(--g2g-border-radius, 4px);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}
.g2g-checkout-step__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 1rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.g2g-checkout-step__num {
  color: #64748b;
  font-weight: 700;
}
.g2g-checkout-step__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--g2g-token-color-neutral-surface);
}
.g2g-checkout-step__edit-link {
  color: #585858;
  text-decoration: none;
  font-size: 0.9rem;
}
.g2g-checkout-step__edit-link:hover {
  color: #64748b;
  text-decoration: underline;
}
.g2g-checkout-step__back {
  margin-right: auto;
}
.g2g-checkout-step__next i {
  margin-left: 0.4rem;
}
.g2g-checkout-mode-multistep .g2g-checkout-step {
  display: none;
}
.g2g-cstep-radio {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  margin: 0;
  pointer-events: none;
}
.g2g-checkout-progress__hit {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
body:has(#g2g-cstep-1:checked) .g2g-checkout-step[data-step="1"] {
  display: block;
  animation: g2g-checkout-fade-in 0.3s ease-out;
}
body:has(#g2g-cstep-2:checked) .g2g-checkout-step[data-step="2"] {
  display: block;
  animation: g2g-checkout-fade-in 0.3s ease-out;
}
body:has(#g2g-cstep-3:checked) .g2g-checkout-step[data-step="3"] {
  display: block;
  animation: g2g-checkout-fade-in 0.3s ease-out;
}
body:has(#g2g-cstep-4:checked) .g2g-checkout-step[data-step="4"] {
  display: block;
  animation: g2g-checkout-fade-in 0.3s ease-out;
}
@media (prefers-reduced-motion: reduce) {
  .g2g-checkout-mode-multistep .g2g-checkout-step {
    animation: none;
  }
}
body:has(#g2g-cstep-1:checked) .g2g-checkout-progress__step[data-step="1"] .g2g-checkout-progress__num {
  background: var(--g2g-step-active);
  color: var(--g2g-token-color-neutral-background);
  box-shadow: 0 0 0 4px rgba(100, 116, 139, 0.18), 0 4px 12px rgba(100, 116, 139, 0.25);
  transform: scale(1.06);
}
body:has(#g2g-cstep-1:checked) .g2g-checkout-progress__step[data-step="1"] .g2g-checkout-progress__label {
  color: #585858;
  font-weight: 700;
}
body:has(#g2g-cstep-1:checked) .g2g-checkout-progress__step[data-step="1"]::before {
  background: var(--g2g-step-completed);
  background-image: none;
}
body:has(#g2g-cstep-2:checked) .g2g-checkout-progress__step[data-step="2"] .g2g-checkout-progress__num {
  background: var(--g2g-step-active);
  color: var(--g2g-token-color-neutral-background);
  box-shadow: 0 0 0 4px rgba(100, 116, 139, 0.18), 0 4px 12px rgba(100, 116, 139, 0.25);
  transform: scale(1.06);
}
body:has(#g2g-cstep-2:checked) .g2g-checkout-progress__step[data-step="2"] .g2g-checkout-progress__label {
  color: #585858;
  font-weight: 700;
}
body:has(#g2g-cstep-2:checked) .g2g-checkout-progress__step[data-step="2"]::before {
  background: var(--g2g-step-completed);
  background-image: none;
}
body:has(#g2g-cstep-2:checked) .g2g-checkout-progress__step[data-step="1"] .g2g-checkout-progress__num {
  background: var(--g2g-step-completed);
  color: var(--g2g-token-color-neutral-background);
  font-size: 0;
}
body:has(#g2g-cstep-2:checked) .g2g-checkout-progress__step[data-step="1"] .g2g-checkout-progress__num::before {
  content: "✓";
  font-size: 1.1rem;
  font-weight: 700;
}
body:has(#g2g-cstep-2:checked) .g2g-checkout-progress__step[data-step="1"] .g2g-checkout-progress__label {
  color: #585858;
  font-weight: 500;
}
body:has(#g2g-cstep-2:checked) .g2g-checkout-progress__step[data-step="1"]::before {
  background: var(--g2g-step-completed);
  background-image: none;
}
body:has(#g2g-cstep-3:checked) .g2g-checkout-progress__step[data-step="3"] .g2g-checkout-progress__num {
  background: var(--g2g-step-active);
  color: var(--g2g-token-color-neutral-background);
  box-shadow: 0 0 0 4px rgba(100, 116, 139, 0.18), 0 4px 12px rgba(100, 116, 139, 0.25);
  transform: scale(1.06);
}
body:has(#g2g-cstep-3:checked) .g2g-checkout-progress__step[data-step="3"] .g2g-checkout-progress__label {
  color: #585858;
  font-weight: 700;
}
body:has(#g2g-cstep-3:checked) .g2g-checkout-progress__step[data-step="3"]::before {
  background: var(--g2g-step-completed);
  background-image: none;
}
body:has(#g2g-cstep-3:checked) .g2g-checkout-progress__step[data-step="1"] .g2g-checkout-progress__num {
  background: var(--g2g-step-completed);
  color: var(--g2g-token-color-neutral-background);
  font-size: 0;
}
body:has(#g2g-cstep-3:checked) .g2g-checkout-progress__step[data-step="1"] .g2g-checkout-progress__num::before {
  content: "✓";
  font-size: 1.1rem;
  font-weight: 700;
}
body:has(#g2g-cstep-3:checked) .g2g-checkout-progress__step[data-step="1"] .g2g-checkout-progress__label {
  color: #585858;
  font-weight: 500;
}
body:has(#g2g-cstep-3:checked) .g2g-checkout-progress__step[data-step="1"]::before {
  background: var(--g2g-step-completed);
  background-image: none;
}
body:has(#g2g-cstep-3:checked) .g2g-checkout-progress__step[data-step="2"] .g2g-checkout-progress__num {
  background: var(--g2g-step-completed);
  color: var(--g2g-token-color-neutral-background);
  font-size: 0;
}
body:has(#g2g-cstep-3:checked) .g2g-checkout-progress__step[data-step="2"] .g2g-checkout-progress__num::before {
  content: "✓";
  font-size: 1.1rem;
  font-weight: 700;
}
body:has(#g2g-cstep-3:checked) .g2g-checkout-progress__step[data-step="2"] .g2g-checkout-progress__label {
  color: #585858;
  font-weight: 500;
}
body:has(#g2g-cstep-3:checked) .g2g-checkout-progress__step[data-step="2"]::before {
  background: var(--g2g-step-completed);
  background-image: none;
}
body:has(#g2g-cstep-4:checked) .g2g-checkout-progress__step[data-step="4"] .g2g-checkout-progress__num {
  background: var(--g2g-step-active);
  color: var(--g2g-token-color-neutral-background);
  box-shadow: 0 0 0 4px rgba(100, 116, 139, 0.18), 0 4px 12px rgba(100, 116, 139, 0.25);
  transform: scale(1.06);
}
body:has(#g2g-cstep-4:checked) .g2g-checkout-progress__step[data-step="4"] .g2g-checkout-progress__label {
  color: #585858;
  font-weight: 700;
}
body:has(#g2g-cstep-4:checked) .g2g-checkout-progress__step[data-step="4"]::before {
  background: var(--g2g-step-completed);
  background-image: none;
}
body:has(#g2g-cstep-4:checked) .g2g-checkout-progress__step[data-step="1"] .g2g-checkout-progress__num {
  background: var(--g2g-step-completed);
  color: var(--g2g-token-color-neutral-background);
  font-size: 0;
}
body:has(#g2g-cstep-4:checked) .g2g-checkout-progress__step[data-step="1"] .g2g-checkout-progress__num::before {
  content: "✓";
  font-size: 1.1rem;
  font-weight: 700;
}
body:has(#g2g-cstep-4:checked) .g2g-checkout-progress__step[data-step="1"] .g2g-checkout-progress__label {
  color: #585858;
  font-weight: 500;
}
body:has(#g2g-cstep-4:checked) .g2g-checkout-progress__step[data-step="1"]::before {
  background: var(--g2g-step-completed);
  background-image: none;
}
body:has(#g2g-cstep-4:checked) .g2g-checkout-progress__step[data-step="2"] .g2g-checkout-progress__num {
  background: var(--g2g-step-completed);
  color: var(--g2g-token-color-neutral-background);
  font-size: 0;
}
body:has(#g2g-cstep-4:checked) .g2g-checkout-progress__step[data-step="2"] .g2g-checkout-progress__num::before {
  content: "✓";
  font-size: 1.1rem;
  font-weight: 700;
}
body:has(#g2g-cstep-4:checked) .g2g-checkout-progress__step[data-step="2"] .g2g-checkout-progress__label {
  color: #585858;
  font-weight: 500;
}
body:has(#g2g-cstep-4:checked) .g2g-checkout-progress__step[data-step="2"]::before {
  background: var(--g2g-step-completed);
  background-image: none;
}
body:has(#g2g-cstep-4:checked) .g2g-checkout-progress__step[data-step="3"] .g2g-checkout-progress__num {
  background: var(--g2g-step-completed);
  color: var(--g2g-token-color-neutral-background);
  font-size: 0;
}
body:has(#g2g-cstep-4:checked) .g2g-checkout-progress__step[data-step="3"] .g2g-checkout-progress__num::before {
  content: "✓";
  font-size: 1.1rem;
  font-weight: 700;
}
body:has(#g2g-cstep-4:checked) .g2g-checkout-progress__step[data-step="3"] .g2g-checkout-progress__label {
  color: #585858;
  font-weight: 500;
}
body:has(#g2g-cstep-4:checked) .g2g-checkout-progress__step[data-step="3"]::before {
  background: var(--g2g-step-completed);
  background-image: none;
}
body.dreamtheme.is-act-confirmpage.g2g-checkout-mode-multistep:not(:has(#g2g-cstep-4:checked)) .checkout-aside-container .checkout-aside-action:not(.g2g-aside-next) {
  display: none;
}
body.dreamtheme.is-act-confirmpage .checkout-aside-container .g2g-aside-next {
  display: none;
}
body:has(#g2g-cstep-1:checked) .checkout-aside-container .g2g-aside-next--s1, body:has(#g2g-cstep-2:checked) .checkout-aside-container .g2g-aside-next--s2, body:has(#g2g-cstep-3:checked) .checkout-aside-container .g2g-aside-next--s3 {
  display: grid;
}
@media (min-width: 768px) {
  body.dreamtheme.is-act-confirmpage .confirm-product .line-item-row > .line-item-info {
    flex: 0 0 41.667%;
    max-width: 41.667%;
  }
  body.dreamtheme.is-act-confirmpage .confirm-product .line-item-total-price-label {
    display: none;
  }
}
@keyframes g2g-checkout-fade-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.g2g-checkout-mode-onepage .g2g-checkout-step {
  display: block;
}
.g2g-checkout-mode-onepage .g2g-checkout-step__next, .g2g-checkout-mode-onepage .g2g-checkout-step__back {
  display: none;
}
.g2g-checkout-mode-onepage .g2g-checkout-step__edit-link {
  display: inline-flex;
}
.g2g-checkout-mode-onepage .g2g-checkout-step__title {
  font-size: 1.1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--g2g-token-color-neutral-surface);
  margin-bottom: 1rem;
}
.g2g-checkout-trust {
  background: var(--g2g-token-color-neutral-surface);
  border: 1px solid var(--g2g-token-color-neutral-border);
  border-radius: var(--g2g-border-radius, 4px);
  padding: 1.25rem;
}
.g2g-checkout-trust__heading {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 1rem;
  color: #585858;
}
.g2g-checkout-trust__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.g2g-checkout-trust__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.g2g-checkout-trust__icon {
  flex-shrink: 0;
  font-size: 1.25rem;
  color: #64748b;
  width: 1.5rem;
  text-align: center;
  margin-top: 0.15rem;
}
.g2g-checkout-trust__content {
  flex: 1 1 auto;
  min-width: 0;
}
.g2g-checkout-trust__title {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #585858;
  margin-bottom: 0.15rem;
}
.g2g-checkout-trust__text {
  display: block;
  font-size: 0.8125rem;
  color: #6b6b6b;
  line-height: 1.4;
}
.g2g-checkout-mode-multistep .g2g-checkout-step .card, .g2g-checkout-mode-multistep .g2g-checkout-step .checkout-card, .g2g-checkout-mode-onepage .g2g-checkout-step .card, .g2g-checkout-mode-onepage .g2g-checkout-step .checkout-card {
  background: var(--g2g-token-color-neutral-background);
  border: 1px solid var(--g2g-token-color-neutral-border);
  box-shadow: none;
  border-radius: var(--g2g-border-radius, 4px);
}
.g2g-checkout-mode-multistep .g2g-checkout-step .card-header, .g2g-checkout-mode-onepage .g2g-checkout-step .card-header {
  background: var(--g2g-token-color-neutral-background);
  border-bottom: 1px solid var(--g2g-token-color-neutral-surface);
  padding: 0.85rem 1rem;
  font-weight: 700;
  color: #585858;
}
.g2g-checkout-mode-multistep .g2g-checkout-step .card-header::before, .g2g-checkout-mode-onepage .g2g-checkout-step .card-header::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 1em;
  background: #64748b;
  margin-right: 0.6rem;
  vertical-align: -2px;
  border-radius: 1px;
}
.g2g-checkout-mode-multistep .g2g-checkout-step .card-title, .g2g-checkout-mode-onepage .g2g-checkout-step .card-title {
  font-weight: 700;
  color: #585858;
  margin-bottom: 0.85rem;
}
.g2g-checkout-mode-multistep .g2g-checkout-step .address-card, .g2g-checkout-mode-multistep .g2g-checkout-step .checkout-address-card, .g2g-checkout-mode-onepage .g2g-checkout-step .address-card, .g2g-checkout-mode-onepage .g2g-checkout-step .checkout-address-card {
  background: var(--g2g-token-color-neutral-background);
}
.g2g-checkout-mode-multistep .g2g-checkout-step .address-card .card-header, .g2g-checkout-mode-multistep .g2g-checkout-step .address-card .card-title, .g2g-checkout-mode-multistep .g2g-checkout-step .checkout-address-card .card-header, .g2g-checkout-mode-multistep .g2g-checkout-step .checkout-address-card .card-title, .g2g-checkout-mode-onepage .g2g-checkout-step .address-card .card-header, .g2g-checkout-mode-onepage .g2g-checkout-step .address-card .card-title, .g2g-checkout-mode-onepage .g2g-checkout-step .checkout-address-card .card-header, .g2g-checkout-mode-onepage .g2g-checkout-step .checkout-address-card .card-title {
  background: transparent;
  border-bottom: 1px solid var(--g2g-token-color-neutral-surface);
}
.g2g-checkout-mode-multistep .g2g-checkout-step .btn-light, .g2g-checkout-mode-onepage .g2g-checkout-step .btn-light {
  background: transparent;
  border: 1px solid var(--g2g-token-color-neutral-border);
  color: #585858;
  font-weight: 500;
  transition: all 0.18s ease;
}
.g2g-checkout-mode-multistep .g2g-checkout-step .btn-light:hover, .g2g-checkout-mode-multistep .g2g-checkout-step .btn-light:focus-visible, .g2g-checkout-mode-onepage .g2g-checkout-step .btn-light:hover, .g2g-checkout-mode-onepage .g2g-checkout-step .btn-light:focus-visible {
  background: #64748b;
  border-color: #64748b;
  color: var(--g2g-token-color-neutral-background);
}
.g2g-checkout-mode-multistep .g2g-checkout-step #confirmFormSubmit, .g2g-checkout-mode-multistep .g2g-checkout-step .btn-primary[type="submit"], .g2g-checkout-mode-onepage .g2g-checkout-step #confirmFormSubmit, .g2g-checkout-mode-onepage .g2g-checkout-step .btn-primary[type="submit"] {
  font-weight: 700;
  letter-spacing: 0.2px;
}
.g2g-checkout-trust {
  background: var(--g2g-token-color-neutral-background);
  border: 1px solid var(--g2g-token-color-neutral-border);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}
.g2g-checkout-trust__heading {
  font-weight: 700;
  color: #585858;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #64748b;
  display: inline-block;
}
.g2g-checkout-newsletter-inline {
  margin-top: 1.5rem;
  padding: 1rem;
  background: var(--g2g-token-color-detail-bg-cream);
  border: 1px dashed var(--g2g-token-color-detail-cream-border);
  border-radius: var(--g2g-border-radius, 4px);
}
.g2g-checkout-newsletter-inline .form-check-label {
  font-size: 0.9rem;
  cursor: pointer;
}
.g2g-checkout-newsletter-inline__hint {
  display: block;
  margin-top: 0.4rem;
  margin-left: 1.75rem;
  font-size: 0.8rem;
  color: #6b6b6b;
}
.g2g-checkout-mode-multistep .g2g-checkout-step[data-step="1"] .cart-header, .g2g-checkout-mode-multistep .g2g-checkout-step[data-step="1"] .checkout-cart-header, .g2g-checkout-mode-multistep .g2g-checkout-step[data-step="1"] thead, .g2g-checkout-mode-onepage .g2g-checkout-step[data-step="1"] .cart-header, .g2g-checkout-mode-onepage .g2g-checkout-step[data-step="1"] .checkout-cart-header, .g2g-checkout-mode-onepage .g2g-checkout-step[data-step="1"] thead {
  background: var(--g2g-token-color-neutral-background);
  border-bottom: 2px solid #64748b;
}
.g2g-checkout-mode-multistep .g2g-checkout-step[data-step="1"] .cart-header th, .g2g-checkout-mode-multistep .g2g-checkout-step[data-step="1"] .cart-header .cart-header-name, .g2g-checkout-mode-multistep .g2g-checkout-step[data-step="1"] .cart-header .cart-header-quantity, .g2g-checkout-mode-multistep .g2g-checkout-step[data-step="1"] .cart-header .cart-header-tax-price, .g2g-checkout-mode-multistep .g2g-checkout-step[data-step="1"] .cart-header .cart-header-subtotal, .g2g-checkout-mode-multistep .g2g-checkout-step[data-step="1"] .checkout-cart-header th, .g2g-checkout-mode-multistep .g2g-checkout-step[data-step="1"] .checkout-cart-header .cart-header-name, .g2g-checkout-mode-multistep .g2g-checkout-step[data-step="1"] .checkout-cart-header .cart-header-quantity, .g2g-checkout-mode-multistep .g2g-checkout-step[data-step="1"] .checkout-cart-header .cart-header-tax-price, .g2g-checkout-mode-multistep .g2g-checkout-step[data-step="1"] .checkout-cart-header .cart-header-subtotal, .g2g-checkout-mode-multistep .g2g-checkout-step[data-step="1"] thead th, .g2g-checkout-mode-multistep .g2g-checkout-step[data-step="1"] thead .cart-header-name, .g2g-checkout-mode-multistep .g2g-checkout-step[data-step="1"] thead .cart-header-quantity, .g2g-checkout-mode-multistep .g2g-checkout-step[data-step="1"] thead .cart-header-tax-price, .g2g-checkout-mode-multistep .g2g-checkout-step[data-step="1"] thead .cart-header-subtotal, .g2g-checkout-mode-onepage .g2g-checkout-step[data-step="1"] .cart-header th, .g2g-checkout-mode-onepage .g2g-checkout-step[data-step="1"] .cart-header .cart-header-name, .g2g-checkout-mode-onepage .g2g-checkout-step[data-step="1"] .cart-header .cart-header-quantity, .g2g-checkout-mode-onepage .g2g-checkout-step[data-step="1"] .cart-header .cart-header-tax-price, .g2g-checkout-mode-onepage .g2g-checkout-step[data-step="1"] .cart-header .cart-header-subtotal, .g2g-checkout-mode-onepage .g2g-checkout-step[data-step="1"] .checkout-cart-header th, .g2g-checkout-mode-onepage .g2g-checkout-step[data-step="1"] .checkout-cart-header .cart-header-name, .g2g-checkout-mode-onepage .g2g-checkout-step[data-step="1"] .checkout-cart-header .cart-header-quantity, .g2g-checkout-mode-onepage .g2g-checkout-step[data-step="1"] .checkout-cart-header .cart-header-tax-price, .g2g-checkout-mode-onepage .g2g-checkout-step[data-step="1"] .checkout-cart-header .cart-header-subtotal, .g2g-checkout-mode-onepage .g2g-checkout-step[data-step="1"] thead th, .g2g-checkout-mode-onepage .g2g-checkout-step[data-step="1"] thead .cart-header-name, .g2g-checkout-mode-onepage .g2g-checkout-step[data-step="1"] thead .cart-header-quantity, .g2g-checkout-mode-onepage .g2g-checkout-step[data-step="1"] thead .cart-header-tax-price, .g2g-checkout-mode-onepage .g2g-checkout-step[data-step="1"] thead .cart-header-subtotal {
  background: var(--g2g-token-color-neutral-background);
  font-weight: 700;
  color: #585858;
  padding: 0.85rem 0.75rem;
  text-transform: none;
  letter-spacing: 0;
}
.g2g-checkout-mode-multistep .g2g-checkout-step[data-step="1"] .quantity-selector-group, .g2g-checkout-mode-multistep .g2g-checkout-step[data-step="1"] .product-quantity-form, .g2g-checkout-mode-multistep .g2g-checkout-step[data-step="1"] .input-group, .g2g-checkout-mode-onepage .g2g-checkout-step[data-step="1"] .quantity-selector-group, .g2g-checkout-mode-onepage .g2g-checkout-step[data-step="1"] .product-quantity-form, .g2g-checkout-mode-onepage .g2g-checkout-step[data-step="1"] .input-group {
  flex-wrap: nowrap;
  align-items: stretch;
}
.g2g-checkout-mode-multistep .g2g-checkout-step[data-step="1"] .quantity-selector-group > input, .g2g-checkout-mode-multistep .g2g-checkout-step[data-step="1"] .quantity-selector-group > .form-control, .g2g-checkout-mode-multistep .g2g-checkout-step[data-step="1"] .quantity-selector-group > .input-group-text, .g2g-checkout-mode-multistep .g2g-checkout-step[data-step="1"] .quantity-selector-group > button, .g2g-checkout-mode-multistep .g2g-checkout-step[data-step="1"] .quantity-selector-group > .btn, .g2g-checkout-mode-multistep .g2g-checkout-step[data-step="1"] .product-quantity-form > input, .g2g-checkout-mode-multistep .g2g-checkout-step[data-step="1"] .product-quantity-form > .form-control, .g2g-checkout-mode-multistep .g2g-checkout-step[data-step="1"] .product-quantity-form > .input-group-text, .g2g-checkout-mode-multistep .g2g-checkout-step[data-step="1"] .product-quantity-form > button, .g2g-checkout-mode-multistep .g2g-checkout-step[data-step="1"] .product-quantity-form > .btn, .g2g-checkout-mode-multistep .g2g-checkout-step[data-step="1"] .input-group > input, .g2g-checkout-mode-multistep .g2g-checkout-step[data-step="1"] .input-group > .form-control, .g2g-checkout-mode-multistep .g2g-checkout-step[data-step="1"] .input-group > .input-group-text, .g2g-checkout-mode-multistep .g2g-checkout-step[data-step="1"] .input-group > button, .g2g-checkout-mode-multistep .g2g-checkout-step[data-step="1"] .input-group > .btn, .g2g-checkout-mode-onepage .g2g-checkout-step[data-step="1"] .quantity-selector-group > input, .g2g-checkout-mode-onepage .g2g-checkout-step[data-step="1"] .quantity-selector-group > .form-control, .g2g-checkout-mode-onepage .g2g-checkout-step[data-step="1"] .quantity-selector-group > .input-group-text, .g2g-checkout-mode-onepage .g2g-checkout-step[data-step="1"] .quantity-selector-group > button, .g2g-checkout-mode-onepage .g2g-checkout-step[data-step="1"] .quantity-selector-group > .btn, .g2g-checkout-mode-onepage .g2g-checkout-step[data-step="1"] .product-quantity-form > input, .g2g-checkout-mode-onepage .g2g-checkout-step[data-step="1"] .product-quantity-form > .form-control, .g2g-checkout-mode-onepage .g2g-checkout-step[data-step="1"] .product-quantity-form > .input-group-text, .g2g-checkout-mode-onepage .g2g-checkout-step[data-step="1"] .product-quantity-form > button, .g2g-checkout-mode-onepage .g2g-checkout-step[data-step="1"] .product-quantity-form > .btn, .g2g-checkout-mode-onepage .g2g-checkout-step[data-step="1"] .input-group > input, .g2g-checkout-mode-onepage .g2g-checkout-step[data-step="1"] .input-group > .form-control, .g2g-checkout-mode-onepage .g2g-checkout-step[data-step="1"] .input-group > .input-group-text, .g2g-checkout-mode-onepage .g2g-checkout-step[data-step="1"] .input-group > button, .g2g-checkout-mode-onepage .g2g-checkout-step[data-step="1"] .input-group > .btn {
  flex: 0 0 auto;
}
.g2g-checkout-mode-multistep .g2g-checkout-step[data-step="1"] .quantity-selector-group > input, .g2g-checkout-mode-multistep .g2g-checkout-step[data-step="1"] .quantity-selector-group > .form-control, .g2g-checkout-mode-multistep .g2g-checkout-step[data-step="1"] .product-quantity-form > input, .g2g-checkout-mode-multistep .g2g-checkout-step[data-step="1"] .product-quantity-form > .form-control, .g2g-checkout-mode-multistep .g2g-checkout-step[data-step="1"] .input-group > input, .g2g-checkout-mode-multistep .g2g-checkout-step[data-step="1"] .input-group > .form-control, .g2g-checkout-mode-onepage .g2g-checkout-step[data-step="1"] .quantity-selector-group > input, .g2g-checkout-mode-onepage .g2g-checkout-step[data-step="1"] .quantity-selector-group > .form-control, .g2g-checkout-mode-onepage .g2g-checkout-step[data-step="1"] .product-quantity-form > input, .g2g-checkout-mode-onepage .g2g-checkout-step[data-step="1"] .product-quantity-form > .form-control, .g2g-checkout-mode-onepage .g2g-checkout-step[data-step="1"] .input-group > input, .g2g-checkout-mode-onepage .g2g-checkout-step[data-step="1"] .input-group > .form-control {
  flex: 1 1 auto;
  min-width: 3rem;
}
.g2g-checkout-mode-multistep .g2g-checkout-step[data-step="1"] .line-item-total-price, .g2g-checkout-mode-multistep .g2g-checkout-step[data-step="1"] .line-item-unit-price, .g2g-checkout-mode-multistep .g2g-checkout-step[data-step="1"] .cart-item-total-price, .g2g-checkout-mode-multistep .g2g-checkout-step[data-step="1"] .cart-item-unit-price, .g2g-checkout-mode-multistep .g2g-checkout-step[data-step="1"] .price, .g2g-checkout-mode-multistep .g2g-checkout-step[data-step="1"] td.line-item-price, .g2g-checkout-mode-multistep .g2g-checkout-step[data-step="1"] .col-subtotal, .g2g-checkout-mode-multistep .g2g-checkout-step[data-step="1"] .col-price, .g2g-checkout-mode-onepage .g2g-checkout-step[data-step="1"] .line-item-total-price, .g2g-checkout-mode-onepage .g2g-checkout-step[data-step="1"] .line-item-unit-price, .g2g-checkout-mode-onepage .g2g-checkout-step[data-step="1"] .cart-item-total-price, .g2g-checkout-mode-onepage .g2g-checkout-step[data-step="1"] .cart-item-unit-price, .g2g-checkout-mode-onepage .g2g-checkout-step[data-step="1"] .price, .g2g-checkout-mode-onepage .g2g-checkout-step[data-step="1"] td.line-item-price, .g2g-checkout-mode-onepage .g2g-checkout-step[data-step="1"] .col-subtotal, .g2g-checkout-mode-onepage .g2g-checkout-step[data-step="1"] .col-price {
  white-space: nowrap;
}
@media (min-width: 768px) {
  .g2g-checkout-mode-multistep .g2g-checkout-step[data-step="1"] .line-item .col-name, .g2g-checkout-mode-multistep .g2g-checkout-step[data-step="1"] .line-item-info, .g2g-checkout-mode-onepage .g2g-checkout-step[data-step="1"] .line-item .col-name, .g2g-checkout-mode-onepage .g2g-checkout-step[data-step="1"] .line-item-info {
    flex: 1 1 auto;
    min-width: 0;
  }
  .g2g-checkout-mode-multistep .g2g-checkout-step[data-step="1"] .line-item .col-quantity, .g2g-checkout-mode-onepage .g2g-checkout-step[data-step="1"] .line-item .col-quantity {
    flex: 0 0 9rem;
  }
  .g2g-checkout-mode-multistep .g2g-checkout-step[data-step="1"] .line-item .col-price, .g2g-checkout-mode-multistep .g2g-checkout-step[data-step="1"] .line-item .col-subtotal, .g2g-checkout-mode-onepage .g2g-checkout-step[data-step="1"] .line-item .col-price, .g2g-checkout-mode-onepage .g2g-checkout-step[data-step="1"] .line-item .col-subtotal {
    flex: 0 0 auto;
    text-align: right;
  }
}
@media (max-width: 767.98px) {
  .product-detail-buy .g2g-addp, .product-detail-buy .g2g-addp-list, .product-detail-buy .additional-product-content, .product-detail-buy [class*="addp"] ul, .product-detail .g2g-addp, .product-detail .g2g-addp-list, .product-detail .additional-product-content, .product-detail [class*="addp"] ul, .product-page .g2g-addp, .product-page .g2g-addp-list, .product-page .additional-product-content, .product-page [class*="addp"] ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    padding: 0;
    margin: 0.75rem 0;
  }
  .product-detail-buy .g2g-addp > li, .product-detail-buy .g2g-addp .additional-product-content-item, .product-detail-buy .g2g-addp [class*="addp"] li, .product-detail-buy .g2g-addp-list > li, .product-detail-buy .g2g-addp-list .additional-product-content-item, .product-detail-buy .g2g-addp-list [class*="addp"] li, .product-detail-buy .additional-product-content > li, .product-detail-buy .additional-product-content .additional-product-content-item, .product-detail-buy .additional-product-content [class*="addp"] li, .product-detail-buy [class*="addp"] ul > li, .product-detail-buy [class*="addp"] ul .additional-product-content-item, .product-detail-buy [class*="addp"] ul [class*="addp"] li, .product-detail .g2g-addp > li, .product-detail .g2g-addp .additional-product-content-item, .product-detail .g2g-addp [class*="addp"] li, .product-detail .g2g-addp-list > li, .product-detail .g2g-addp-list .additional-product-content-item, .product-detail .g2g-addp-list [class*="addp"] li, .product-detail .additional-product-content > li, .product-detail .additional-product-content .additional-product-content-item, .product-detail .additional-product-content [class*="addp"] li, .product-detail [class*="addp"] ul > li, .product-detail [class*="addp"] ul .additional-product-content-item, .product-detail [class*="addp"] ul [class*="addp"] li, .product-page .g2g-addp > li, .product-page .g2g-addp .additional-product-content-item, .product-page .g2g-addp [class*="addp"] li, .product-page .g2g-addp-list > li, .product-page .g2g-addp-list .additional-product-content-item, .product-page .g2g-addp-list [class*="addp"] li, .product-page .additional-product-content > li, .product-page .additional-product-content .additional-product-content-item, .product-page .additional-product-content [class*="addp"] li, .product-page [class*="addp"] ul > li, .product-page [class*="addp"] ul .additional-product-content-item, .product-page [class*="addp"] ul [class*="addp"] li {
    list-style: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: var(--g2g-token-color-neutral-surface);
    color: #585858;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    font-size: 0.825rem;
    line-height: 1.2;
    font-weight: 500;
    white-space: nowrap;
  }
  .product-detail-buy .g2g-addp > li i, .product-detail-buy .g2g-addp > li svg, .product-detail-buy .g2g-addp .additional-product-content-item i, .product-detail-buy .g2g-addp .additional-product-content-item svg, .product-detail-buy .g2g-addp [class*="addp"] li i, .product-detail-buy .g2g-addp [class*="addp"] li svg, .product-detail-buy .g2g-addp-list > li i, .product-detail-buy .g2g-addp-list > li svg, .product-detail-buy .g2g-addp-list .additional-product-content-item i, .product-detail-buy .g2g-addp-list .additional-product-content-item svg, .product-detail-buy .g2g-addp-list [class*="addp"] li i, .product-detail-buy .g2g-addp-list [class*="addp"] li svg, .product-detail-buy .additional-product-content > li i, .product-detail-buy .additional-product-content > li svg, .product-detail-buy .additional-product-content .additional-product-content-item i, .product-detail-buy .additional-product-content .additional-product-content-item svg, .product-detail-buy .additional-product-content [class*="addp"] li i, .product-detail-buy .additional-product-content [class*="addp"] li svg, .product-detail-buy [class*="addp"] ul > li i, .product-detail-buy [class*="addp"] ul > li svg, .product-detail-buy [class*="addp"] ul .additional-product-content-item i, .product-detail-buy [class*="addp"] ul .additional-product-content-item svg, .product-detail-buy [class*="addp"] ul [class*="addp"] li i, .product-detail-buy [class*="addp"] ul [class*="addp"] li svg, .product-detail .g2g-addp > li i, .product-detail .g2g-addp > li svg, .product-detail .g2g-addp .additional-product-content-item i, .product-detail .g2g-addp .additional-product-content-item svg, .product-detail .g2g-addp [class*="addp"] li i, .product-detail .g2g-addp [class*="addp"] li svg, .product-detail .g2g-addp-list > li i, .product-detail .g2g-addp-list > li svg, .product-detail .g2g-addp-list .additional-product-content-item i, .product-detail .g2g-addp-list .additional-product-content-item svg, .product-detail .g2g-addp-list [class*="addp"] li i, .product-detail .g2g-addp-list [class*="addp"] li svg, .product-detail .additional-product-content > li i, .product-detail .additional-product-content > li svg, .product-detail .additional-product-content .additional-product-content-item i, .product-detail .additional-product-content .additional-product-content-item svg, .product-detail .additional-product-content [class*="addp"] li i, .product-detail .additional-product-content [class*="addp"] li svg, .product-detail [class*="addp"] ul > li i, .product-detail [class*="addp"] ul > li svg, .product-detail [class*="addp"] ul .additional-product-content-item i, .product-detail [class*="addp"] ul .additional-product-content-item svg, .product-detail [class*="addp"] ul [class*="addp"] li i, .product-detail [class*="addp"] ul [class*="addp"] li svg, .product-page .g2g-addp > li i, .product-page .g2g-addp > li svg, .product-page .g2g-addp .additional-product-content-item i, .product-page .g2g-addp .additional-product-content-item svg, .product-page .g2g-addp [class*="addp"] li i, .product-page .g2g-addp [class*="addp"] li svg, .product-page .g2g-addp-list > li i, .product-page .g2g-addp-list > li svg, .product-page .g2g-addp-list .additional-product-content-item i, .product-page .g2g-addp-list .additional-product-content-item svg, .product-page .g2g-addp-list [class*="addp"] li i, .product-page .g2g-addp-list [class*="addp"] li svg, .product-page .additional-product-content > li i, .product-page .additional-product-content > li svg, .product-page .additional-product-content .additional-product-content-item i, .product-page .additional-product-content .additional-product-content-item svg, .product-page .additional-product-content [class*="addp"] li i, .product-page .additional-product-content [class*="addp"] li svg, .product-page [class*="addp"] ul > li i, .product-page [class*="addp"] ul > li svg, .product-page [class*="addp"] ul .additional-product-content-item i, .product-page [class*="addp"] ul .additional-product-content-item svg, .product-page [class*="addp"] ul [class*="addp"] li i, .product-page [class*="addp"] ul [class*="addp"] li svg {
    font-size: 0.85rem;
    color: var(--g2g-addp-icon-color, var(--g2g-token-color-neutral-text-default));
  }
}
body.is-act-checkout-cart-page .login-form h1, body.is-act-checkout-cart-page .login-form .h1, body.is-act-checkout-cart-page .login-form h2, body.is-act-checkout-cart-page .login-form .h2, body.is-act-checkout-cart-page .login-form .card-title, body.is-act-checkout-cart-page .register-form h1, body.is-act-checkout-cart-page .register-form .h1, body.is-act-checkout-cart-page .register-form h2, body.is-act-checkout-cart-page .register-form .h2, body.is-act-checkout-cart-page .register-form .card-title, body.is-act-checkout-cart-page .checkout-aside h1, body.is-act-checkout-cart-page .checkout-aside .h1, body.is-act-checkout-cart-page .checkout-aside h2, body.is-act-checkout-cart-page .checkout-aside .h2, body.is-act-checkout-cart-page .checkout-aside .card-title, body.is-act-checkout-cart-page .cart-item-list h1, body.is-act-checkout-cart-page .cart-item-list .h1, body.is-act-checkout-cart-page .cart-item-list h2, body.is-act-checkout-cart-page .cart-item-list .h2, body.is-act-checkout-cart-page .cart-item-list .card-title, body.is-act-checkout-cart-page .cart-table h1, body.is-act-checkout-cart-page .cart-table .h1, body.is-act-checkout-cart-page .cart-table h2, body.is-act-checkout-cart-page .cart-table .h2, body.is-act-checkout-cart-page .cart-table .card-title, body.is-act-checkout-cart-page .checkout-confirm-tos h1, body.is-act-checkout-cart-page .checkout-confirm-tos .h1, body.is-act-checkout-cart-page .checkout-confirm-tos h2, body.is-act-checkout-cart-page .checkout-confirm-tos .h2, body.is-act-checkout-cart-page .checkout-confirm-tos .card-title, body.is-ctl-checkout .login-form h1, body.is-ctl-checkout .login-form .h1, body.is-ctl-checkout .login-form h2, body.is-ctl-checkout .login-form .h2, body.is-ctl-checkout .login-form .card-title, body.is-ctl-checkout .register-form h1, body.is-ctl-checkout .register-form .h1, body.is-ctl-checkout .register-form h2, body.is-ctl-checkout .register-form .h2, body.is-ctl-checkout .register-form .card-title, body.is-ctl-checkout .checkout-aside h1, body.is-ctl-checkout .checkout-aside .h1, body.is-ctl-checkout .checkout-aside h2, body.is-ctl-checkout .checkout-aside .h2, body.is-ctl-checkout .checkout-aside .card-title, body.is-ctl-checkout .cart-item-list h1, body.is-ctl-checkout .cart-item-list .h1, body.is-ctl-checkout .cart-item-list h2, body.is-ctl-checkout .cart-item-list .h2, body.is-ctl-checkout .cart-item-list .card-title, body.is-ctl-checkout .cart-table h1, body.is-ctl-checkout .cart-table .h1, body.is-ctl-checkout .cart-table h2, body.is-ctl-checkout .cart-table .h2, body.is-ctl-checkout .cart-table .card-title, body.is-ctl-checkout .checkout-confirm-tos h1, body.is-ctl-checkout .checkout-confirm-tos .h1, body.is-ctl-checkout .checkout-confirm-tos h2, body.is-ctl-checkout .checkout-confirm-tos .h2, body.is-ctl-checkout .checkout-confirm-tos .card-title {
  font-size: clamp(1.125rem, calc(1.2vw + 0.875rem), 1.5rem);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
body.is-act-checkout-cart-page > .container > h1, .cms-section body.is-act-checkout-cart-page > .boxed > h1, body.is-act-checkout-cart-page > .container > .h1, .cms-section body.is-act-checkout-cart-page > .boxed > .h1, body.is-act-checkout-cart-page > .container > h2, .cms-section body.is-act-checkout-cart-page > .boxed > h2, body.is-act-checkout-cart-page > .container > .h2, .cms-section body.is-act-checkout-cart-page > .boxed > .h2, body.is-act-checkout-cart-page .checkout-main > h1, body.is-act-checkout-cart-page .checkout-main > .h1, body.is-act-checkout-cart-page .checkout-main > h2, body.is-act-checkout-cart-page .checkout-main > .h2, body.is-act-checkout-cart-page .summary-headline, body.is-act-checkout-cart-page .cart-headline, body.is-act-checkout-cart-page .checkout-cart-headline, body.is-ctl-checkout > .container > h1, .cms-section body.is-ctl-checkout > .boxed > h1, body.is-ctl-checkout > .container > .h1, .cms-section body.is-ctl-checkout > .boxed > .h1, body.is-ctl-checkout > .container > h2, .cms-section body.is-ctl-checkout > .boxed > h2, body.is-ctl-checkout > .container > .h2, .cms-section body.is-ctl-checkout > .boxed > .h2, body.is-ctl-checkout .checkout-main > h1, body.is-ctl-checkout .checkout-main > .h1, body.is-ctl-checkout .checkout-main > h2, body.is-ctl-checkout .checkout-main > .h2, body.is-ctl-checkout .summary-headline, body.is-ctl-checkout .cart-headline, body.is-ctl-checkout .checkout-cart-headline {
  font-size: clamp(1.25rem, calc(1.5vw + 0.875rem), 1.625rem);
  font-weight: 600;
  line-height: 1.3;
}
.dreamtheme .badge-stock2gether {
  color: #ffffff;
  background-color: var(--g2g-stock-traffic-good-bg, #15803d);
  border: none;
  border-radius: var(--g2g-border-radius, 4px);
  width: max-content;
  padding: 3px 10px 3px 10px;
  margin: 0 0 5px 0;
  font-size: 13px;
  font-weight: 500;
  z-index: 96;
  position: relative;
  top: 2px;
  left: 10px;
}
.dreamtheme .badge-stock2gether .fa-solid {
  font-size: 14px;
}
.dreamtheme .badge-stock2gether.is-good {
  color: var(--g2g-stock-traffic-good-text, #ffffff);
  background-color: var(--g2g-stock-traffic-good-bg, #15803d);
  border: none;
}
.dreamtheme .badge-stock2gether.is-out {
  color: var(--g2g-stock-traffic-out-text, #b91c1c);
  background-color: var(--g2g-stock-traffic-out-bg, #fee2e2);
  border: none;
}
.dreamtheme .badge-stock2gether.is-low {
  color: #ffffff;
  background-color: var(--g2g-stock-traffic-low-bg, #f59e0b);
  border: none;
}
.dreamtheme .g2g-pdp-delivery-promise {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  padding: 4px 10px;
  margin-top: 6px;
  border-radius: var(--g2g-border-radius, 4px);
}
.dreamtheme .g2g-pdp-delivery-promise.is-available {
  color: var(--g2g-token-color-status-success, #15803d);
  background-color: var(--g2g-stock-delivery-good-bg, #ecfdf5);
}
.dreamtheme .g2g-pdp-delivery-promise.is-out {
  color: var(--g2g-token-color-status-error, #dc2626);
  background-color: var(--g2g-stock-delivery-out-bg, #fef2f2);
}
.dreamtheme .g2g-pdp-delivery-promise__icon {
  font-size: 14px;
  line-height: 1;
}
.dreamtheme .g2g-pdp-delivery-promise__text {
  line-height: 1.3;
}
.dreamtheme:not(.g2g-stock-traffic-on) .badge-stock2gether, .dreamtheme:not(.g2g-stock-traffic-on) .badge-stock2gether.is-good {
  color: #1a1a1a;
  background-color: #e6e6e6;
}
.dreamtheme .card-body .badge-stock2gether {
  left: 0;
}
.dreamtheme .cms-element-image-gallery .gallery-slider-item-container .badge-stock2gether {
  display: none;
}
.dreamtheme .cms-element-image-gallery .gallery-slider-item-container.tns-slide-active .badge-stock2gether {
  display: block;
}
:root {
  --g2g-topbar-offset: -40px;
  --g2g-nav-offset: -50px;
}
.dreamtheme .g2g-sticky-container {
  position: sticky;
  top: calc(var(--g2g-topbar-offset, -40px) + var(--g2g-nav-offset, -50px));
  z-index: 99;
}
@media (max-width: 991.98px) {
  .dreamtheme .g2g-sticky-container {
    top: 0;
  }
}
.dreamtheme .g2g-sticky-container.g2g-sticky-navi-active {
  top: var(--g2g-topbar-offset, -40px);
}
@media (max-width: 991.98px) {
  .dreamtheme .g2g-sticky-container.g2g-sticky-navi-active {
    top: 0;
  }
}
@property --g2g-hdr-open {
  syntax: "<number>";
  inherits: true;
  initial-value: 1;
}
@property --g2g-hdr-padding {
  syntax: "<length>";
  inherits: true;
  initial-value: 10px;
}
.g2g-hdr {
  --g2g-hdr-open: 1;
  --g2g-hdr-padding: 10px;
  --g2g-hdr-range: 200px;
  transition: transform 0.3s ease, box-shadow 0.25s ease;
}
.g2g-hdr.g2g-hdr--down-hide, .g2g-hdr.g2g-hdr--down-shrinkThenHide {
  will-change: transform;
}
.dreamtheme .g2g-sticky-container.g2g-hdr.g2g-hdr--down-stick, .dreamtheme .g2g-sticky-container.g2g-hdr.g2g-hdr--down-shrink, .dreamtheme .g2g-sticky-container.g2g-hdr.g2g-hdr--down-hide, .dreamtheme .g2g-sticky-container.g2g-hdr.g2g-hdr--down-shrinkThenHide {
  top: 0;
}
.dreamtheme .g2g-sticky-container.g2g-hdr.g2g-hdr--down-off {
  position: static;
}
.g2g-hdr.g2g-hdr--hidden {
  transform: translateY(-100%);
  pointer-events: none;
}
@supports (animation-timeline: scroll()) {
  .g2g-hdr.g2g-hdr--down-shrink, .g2g-hdr.g2g-hdr--down-shrinkThenHide {
    animation: g2g-hdr-shrink linear both;
    animation-timeline: scroll(root);
    animation-range: 0 var(--g2g-hdr-range, 200px);
  }
  @keyframes g2g-hdr-shrink {
    from {
      --g2g-hdr-open: 1;
      --g2g-hdr-padding: 10px;
    }
    to {
      --g2g-hdr-open: 0;
      --g2g-hdr-padding: 2px;
    }
  }
}
.g2g-hdr.g2g-hdr--compact {
  --g2g-hdr-open: 0;
  --g2g-hdr-padding: 2px;
}
.g2g-hdr .header-logo-main {
  transform: scale(calc(var(--g2g-hdr-logo-min, 0.7) + (1 - var(--g2g-hdr-logo-min, 0.7)) * var(--g2g-hdr-open, 1)));
  transform-origin: left center;
  transition: transform 0.1s ease;
}
.dreamtheme .g2g-hdr .header-main .header-row.header-row {
  padding-top: var(--g2g-hdr-padding, 10px);
  padding-bottom: var(--g2g-hdr-padding, 10px);
  transition: padding 0.1s ease, background-color var(--g2g-hdr-switch, 0.2s) var(--g2g-hdr-switch-ease, cubic-bezier(0.455, 0.03, 0.515, 0.955));
}
.g2g-hdr.g2g-hdr--hide-topbar .top-bar {
  max-height: 6rem;
  overflow: hidden;
  transition: max-height 0.2s ease, opacity 0.2s ease;
}
.g2g-hdr.g2g-hdr--hide-topbar.g2g-hdr--compact .top-bar {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
}
.g2g-hdr.g2g-hdr--compact .nav-main {
  transition: max-height 0.2s ease, opacity 0.2s ease;
}
.g2g-hdr.g2g-hdr--hide-nav.g2g-hdr--compact .nav-main {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}
.g2g-hdr.g2g-hdr--hide-search .header-search-col {
  overflow: hidden;
  transition: max-width 0.25s ease, opacity 0.25s ease, padding 0.25s ease;
}
.g2g-hdr.g2g-hdr--hide-search.g2g-hdr--compact .header-search-col {
  max-width: 0;
  padding-left: 0;
  padding-right: 0;
  opacity: 0;
  pointer-events: none;
}
.g2g-hdr.g2g-hdr--shadow-soft.g2g-hdr--scrolled {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.g2g-hdr.g2g-hdr--shadow-strong.g2g-hdr--scrolled {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
}
.g2g-hdr.g2g-hdr--down-off {
  box-shadow: none;
}
.g2g-hdr.g2g-hdr--has-navbg .nav-main {
  background-color: var(--g2g-hdr-nav-bg);
  transition: background-color 0.25s ease;
}
.g2g-hdr.g2g-hdr--has-navtext .nav-main a, .g2g-hdr.g2g-hdr--has-navtext .nav-link.nav-link, .g2g-hdr.g2g-hdr--has-navtext .navbar-nav .nav-link {
  color: var(--g2g-hdr-nav-text);
  transition: color 0.25s ease;
}
.g2g-hdr.g2g-hdr--has-hover a:hover, .g2g-hdr.g2g-hdr--has-hover .nav-link.nav-link:hover, .g2g-hdr.g2g-hdr--has-hover .navbar-nav .nav-link:hover {
  color: var(--g2g-hdr-link-hover);
}
.g2g-hdr.g2g-hdr--has-searchborder .header-search .input-group {
  border: 1px solid var(--g2g-hdr-search-border);
}
.g2g-hdr.g2g-hdr--has-searchradius .header-search .input-group {
  border-radius: var(--g2g-hdr-search-radius);
  overflow: hidden;
}
.g2g-hdr.g2g-hdr--has-searchradius .header-search .input-group > * {
  border-radius: 0;
}
.dreamtheme .g2g-hdr--magic {
  background-color: var(--g2g-hdr-bg-top, transparent);
  transition: transform 0.3s ease, box-shadow 0.25s ease, background-color var(--g2g-hdr-switch, 0.2s) var(--g2g-hdr-switch-ease, cubic-bezier(0.455, 0.03, 0.515, 0.955));
  --g2g-token-header-main-bg: var(--g2g-hdr-bg-top, transparent);
  --g2g-token-header-main-text: var(--g2g-hdr-text-top, #fff);
  --g2g-token-header-main-border: var(--g2g-hdr-border-top, transparent);
  --g2g-token-header-topbar-bg: transparent;
  --g2g-token-header-topbar-text: var(--g2g-hdr-text-top, #fff);
  --g2g-token-header-navi-link-default: var(--g2g-hdr-text-top, #fff);
  --g2g-token-header-navi-link-hover: var(--g2g-hdr-link-hover, rgba(255, 255, 255, 0.7));
  --g2g-token-header-navi-link-active: var(--g2g-hdr-text-top, #fff);
  --g2g-token-header-navi-link-bg-hover: transparent;
  --g2g-token-header-search-bg: var(--g2g-hdr-search-top, rgba(255, 255, 255, 0.12));
  --g2g-token-header-search-text: var(--g2g-hdr-text-top, #fff);
  --g2g-token-header-search-border: var(--g2g-hdr-border-top, transparent);
}
.dreamtheme .g2g-hdr--magic .header-main, .dreamtheme .g2g-hdr--magic .header-row {
  transition: background-color var(--g2g-hdr-switch, 0.2s) var(--g2g-hdr-switch-ease, cubic-bezier(0.455, 0.03, 0.515, 0.955));
}
.dreamtheme .g2g-hdr--magic a, .dreamtheme .g2g-hdr--magic .header-actions-btn, .dreamtheme .g2g-hdr--magic .header-cart-total, .dreamtheme .g2g-hdr--magic .header-search button {
  color: var(--g2g-hdr-text-top, inherit);
  transition: color var(--g2g-hdr-switch, 0.2s) var(--g2g-hdr-switch-ease, cubic-bezier(0.455, 0.03, 0.515, 0.955));
}
.dreamtheme .g2g-hdr--magic .icon svg, .dreamtheme .g2g-hdr--magic .icon svg path, .dreamtheme .g2g-hdr--magic .icon svg use {
  fill: var(--g2g-hdr-text-top, currentColor);
  transition: fill 0.25s ease;
}
.dreamtheme .g2g-hdr--magic .top-bar, .dreamtheme .g2g-hdr--magic .top-bar a, .dreamtheme .g2g-hdr--magic .top-bar button, .dreamtheme .g2g-hdr--magic .top-bar .btn, .dreamtheme .g2g-hdr--magic .top-bar .dropdown-toggle {
  color: var(--g2g-hdr-text-top, inherit);
}
.dreamtheme .g2g-hdr--magic .top-bar-list-icon {
  border-color: var(--g2g-hdr-flag-top, currentColor);
  transition: border-color 0.25s ease;
}
.dreamtheme .g2g-hdr--magic .main-navigation-link-text.main-navigation-link-text, .dreamtheme .g2g-hdr--magic .nav-link.active .main-navigation-link-text, .dreamtheme .g2g-hdr--magic .is-active .main-navigation-link-text {
  border-bottom-color: var(--g2g-hdr-text-top, currentColor);
}
.dreamtheme .g2g-hdr--magic .nav-main {
  background-color: var(--g2g-hdr-nav-bg-top, var(--g2g-hdr-bg-top, transparent));
  transition: background-color var(--g2g-hdr-switch, 0.2s) var(--g2g-hdr-switch-ease, cubic-bezier(0.455, 0.03, 0.515, 0.955));
}
.dreamtheme .g2g-hdr--magic .header-search .input-group {
  background: var(--g2g-hdr-search-top, #fff);
  border: 1px solid var(--g2g-hdr-border-top, var(--g2g-hdr-search-border, transparent));
}
.dreamtheme .g2g-hdr--magic .header-search .input-group > *, .dreamtheme .g2g-hdr--magic .header-search .input-group .header-search-input, .dreamtheme .g2g-hdr--magic .header-search .input-group .header-search-btn {
  border: 0;
  background: transparent;
  color: var(--g2g-hdr-text-top, inherit);
}
.dreamtheme .g2g-hdr--magic .header-search input::placeholder, .dreamtheme .g2g-hdr--magic .header-search .form-control::placeholder {
  color: var(--g2g-hdr-placeholder-top, rgba(255, 255, 255, 0.55));
  opacity: 1;
}
.dreamtheme .g2g-hdr--magic.g2g-hdr--switched {
  background-color: var(--g2g-hdr-bg-scrolled, transparent);
  --g2g-token-header-main-bg: var(--g2g-hdr-bg-scrolled, #fff);
  --g2g-token-header-main-text: var(--g2g-hdr-text-scrolled, #222);
  --g2g-token-header-main-border: var(--g2g-hdr-border-scrolled, #e2e8f0);
  --g2g-token-header-topbar-bg: var(--g2g-hdr-bg-scrolled, #fff);
  --g2g-token-header-topbar-text: var(--g2g-hdr-text-scrolled, #222);
  --g2g-token-header-navi-link-default: var(--g2g-hdr-text-scrolled, #222);
  --g2g-token-header-navi-link-hover: var(--g2g-hdr-link-hover, var(--g2g-token-color-brand-primary));
  --g2g-token-header-navi-link-active: var(--g2g-hdr-text-scrolled, #222);
  --g2g-token-header-navi-link-bg-hover: #f8fafc;
  --g2g-token-header-search-bg: var(--g2g-hdr-search-scrolled, #fff);
  --g2g-token-header-search-text: var(--g2g-hdr-text-scrolled, #222);
  --g2g-token-header-search-border: var(--g2g-hdr-border-scrolled, #ccc);
}
.dreamtheme .g2g-hdr--magic.g2g-hdr--switched a, .dreamtheme .g2g-hdr--magic.g2g-hdr--switched .header-actions-btn, .dreamtheme .g2g-hdr--magic.g2g-hdr--switched .header-cart-total, .dreamtheme .g2g-hdr--magic.g2g-hdr--switched .header-search button {
  color: var(--g2g-hdr-text-scrolled, inherit);
}
.dreamtheme .g2g-hdr--magic.g2g-hdr--switched .icon svg, .dreamtheme .g2g-hdr--magic.g2g-hdr--switched .icon svg path, .dreamtheme .g2g-hdr--magic.g2g-hdr--switched .icon svg use {
  fill: var(--g2g-hdr-text-scrolled, currentColor);
}
.dreamtheme .g2g-hdr--magic.g2g-hdr--switched .top-bar, .dreamtheme .g2g-hdr--magic.g2g-hdr--switched .top-bar a, .dreamtheme .g2g-hdr--magic.g2g-hdr--switched .top-bar button, .dreamtheme .g2g-hdr--magic.g2g-hdr--switched .top-bar .btn, .dreamtheme .g2g-hdr--magic.g2g-hdr--switched .top-bar .dropdown-toggle {
  color: var(--g2g-hdr-text-scrolled, inherit);
}
.dreamtheme .g2g-hdr--magic.g2g-hdr--switched .top-bar-list-icon {
  border-color: var(--g2g-hdr-flag-scrolled, currentColor);
}
.dreamtheme .g2g-hdr--magic.g2g-hdr--switched .main-navigation-link-text.main-navigation-link-text, .dreamtheme .g2g-hdr--magic.g2g-hdr--switched .nav-link.active .main-navigation-link-text, .dreamtheme .g2g-hdr--magic.g2g-hdr--switched .is-active .main-navigation-link-text {
  border-bottom-color: var(--g2g-hdr-text-scrolled, currentColor);
}
.dreamtheme .g2g-hdr--magic.g2g-hdr--switched .nav-main {
  background-color: var(--g2g-hdr-nav-bg-scrolled, var(--g2g-hdr-bg-scrolled, transparent));
}
.dreamtheme .g2g-hdr--magic.g2g-hdr--switched .header-search .input-group {
  background: var(--g2g-hdr-search-scrolled, #fff);
  border-color: var(--g2g-hdr-border-scrolled, var(--g2g-hdr-search-border, transparent));
}
.dreamtheme .g2g-hdr--magic.g2g-hdr--switched .header-search .input-group > *, .dreamtheme .g2g-hdr--magic.g2g-hdr--switched .header-search .input-group .header-search-input, .dreamtheme .g2g-hdr--magic.g2g-hdr--switched .header-search .input-group .header-search-btn {
  color: var(--g2g-hdr-text-scrolled, inherit);
}
.dreamtheme .g2g-hdr--magic.g2g-hdr--switched .header-search input::placeholder, .dreamtheme .g2g-hdr--magic.g2g-hdr--switched .header-search .form-control::placeholder {
  color: var(--g2g-hdr-placeholder-scrolled, rgba(0, 0, 0, 0.5));
}
.dreamtheme .g2g-hdr--magic.g2g-hdr--magic .header-search-form .input-group {
  background: var(--g2g-hdr-search-top, #fff);
  border-color: var(--g2g-hdr-border-top, var(--g2g-hdr-search-border, transparent));
}
.dreamtheme .g2g-hdr--magic.g2g-hdr--magic .main-navigation-link.root.active .main-navigation-link-text, .dreamtheme .g2g-hdr--magic.g2g-hdr--magic .main-navigation-link.active .main-navigation-link-text {
  border-bottom-color: var(--g2g-hdr-text-top, currentColor);
}
.dreamtheme .g2g-hdr--magic.g2g-hdr--magic.g2g-hdr--switched .header-search-form .input-group {
  background: var(--g2g-hdr-search-scrolled, #fff);
  border-color: var(--g2g-hdr-border-scrolled, var(--g2g-hdr-search-border, transparent));
}
.dreamtheme .g2g-hdr--magic.g2g-hdr--magic.g2g-hdr--switched .main-navigation-link.root.active .main-navigation-link-text, .dreamtheme .g2g-hdr--magic.g2g-hdr--magic.g2g-hdr--switched .main-navigation-link.active .main-navigation-link-text {
  border-bottom-color: var(--g2g-hdr-text-scrolled, currentColor);
}
.dreamtheme .g2g-hdr--magic .navigation-flyout, .dreamtheme .g2g-hdr--magic .navigation-flyouts {
  --g2g-token-header-navi-link-default: var(--g2g-token-header-flyout-text);
  --g2g-token-header-navi-link-hover: var(--g2g-token-header-flyout-heading);
  --g2g-token-header-navi-link-active: var(--g2g-token-header-flyout-heading);
  --g2g-token-header-navi-link-bg-hover: rgba(0, 0, 0, 0.04);
  --g2g-token-header-main-text: var(--g2g-token-header-flyout-text);
  --g2g-token-header-search-text: var(--g2g-token-header-flyout-text);
}
.dreamtheme .g2g-hdr--magic .header-main .header-row.header-row .g2g-hdr__logo-col {
  position: relative;
}
.g2g-hdr__logo-stack {
  display: none;
}
.g2g-hdr--magic .g2g-hdr__logo-stack {
  display: block;
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.g2g-hdr--magic .g2g-hdr__logo-col .header-logo-main {
  visibility: hidden;
}
.g2g-hdr__logo-stack .g2g-hdr__logo {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: center;
  transition: opacity 0.25s ease;
}
.g2g-hdr__logo-stack .g2g-hdr__logo--top {
  opacity: 1;
}
.g2g-hdr__logo-stack .g2g-hdr__logo--scrolled {
  opacity: 0;
}
.g2g-hdr--magic.g2g-hdr--switched .g2g-hdr__logo--top {
  opacity: 0;
}
.g2g-hdr--magic.g2g-hdr--switched .g2g-hdr__logo--scrolled {
  opacity: 1;
}
body:has(.g2g-hdr--magic):has(.cms-section.pos-0.bg-color) .container-main {
  padding-top: 0;
}
@media (prefers-reduced-motion: reduce) {
  .g2g-hdr, .g2g-hdr--magic, .g2g-hdr--magic a, .g2g-hdr--magic .nav-main, .g2g-hdr .header-logo-main, .g2g-hdr .header-row, .g2g-hdr__logo-stack .g2g-hdr__logo--top, .g2g-hdr__logo-stack .g2g-hdr__logo--scrolled {
    transition: none;
  }
  .g2g-hdr.g2g-hdr--down-shrink, .g2g-hdr.g2g-hdr--down-shrinkThenHide {
    animation: none;
  }
  .g2g-hdr.g2g-hdr--compact {
    --g2g-hdr-open: 1;
    --g2g-hdr-padding: 10px;
  }
}
@media (max-width: 767px) {
  .g2g-hdr.g2g-hdr--no-mobile {
    animation: none;
  }
  .g2g-hdr.g2g-hdr--no-mobile.g2g-hdr--hidden {
    transform: none;
    pointer-events: auto;
  }
  .g2g-hdr.g2g-hdr--no-mobile.g2g-hdr--compact {
    --g2g-hdr-open: 1;
    --g2g-hdr-padding: 10px;
  }
  .dreamtheme .g2g-sticky-container.g2g-hdr.g2g-hdr--no-mobile.g2g-hdr--down-off {
    position: sticky;
    top: 0;
  }
}
/* Animation für Phone Font Awesome Icon */
@keyframes phoneRing {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(-5deg);
  }
  20% {
    transform: rotate(5deg);
  }
  30% {
    transform: rotate(-5deg);
  }
  40% {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(-5deg);
  }
  60% {
    transform: rotate(5deg);
  }
  70% {
    transform: rotate(-5deg);
  }
  80% {
    transform: rotate(5deg);
  }
  90% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.dreamtheme .header-main .container, .dreamtheme .header-main .cms-section .boxed, .cms-section .dreamtheme .header-main .boxed {
  max-width: 100%;
  padding: 0;
}
.dreamtheme .header-main .container .top-bar, .dreamtheme .header-main .cms-section .boxed .top-bar, .cms-section .dreamtheme .header-main .boxed .top-bar {
  background: var(--g2g-token-header-topbar-bg);
}
@media (min-width: 576px) {
  .dreamtheme .header-main .container .top-bar.d-none, .dreamtheme .header-main .cms-section .boxed .top-bar.d-none, .cms-section .dreamtheme .header-main .boxed .top-bar.d-none {
    display: block;
  }
}
.dreamtheme .header-main .container .top-bar .top-bar-nav.top2gether, .dreamtheme .header-main .cms-section .boxed .top-bar .top-bar-nav.top2gether, .cms-section .dreamtheme .header-main .boxed .top-bar .top-bar-nav.top2gether {
  display: flow-root;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 13px;
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
}
.dreamtheme .header-main .container .top-bar .top-bar-nav.top2gether i, .dreamtheme .header-main .cms-section .boxed .top-bar .top-bar-nav.top2gether i, .cms-section .dreamtheme .header-main .boxed .top-bar .top-bar-nav.top2gether i {
  color: var(--g2g-token-header-topbar-text);
  margin-right: 5px;
}
.dreamtheme .header-main .container .top-bar .top-bar-nav.top2gether i.fa-star, .dreamtheme .header-main .cms-section .boxed .top-bar .top-bar-nav.top2gether i.fa-star, .cms-section .dreamtheme .header-main .boxed .top-bar .top-bar-nav.top2gether i.fa-star, .dreamtheme .header-main .container .top-bar .top-bar-nav.top2gether i.fa-star-half, .dreamtheme .header-main .cms-section .boxed .top-bar .top-bar-nav.top2gether i.fa-star-half, .cms-section .dreamtheme .header-main .boxed .top-bar .top-bar-nav.top2gether i.fa-star-half {
  margin-right: unset;
  color: var(--g2g-token-color-status-warning-dark);
}
.dreamtheme .header-main .container .top-bar .top-bar-nav.top2gether a, .dreamtheme .header-main .cms-section .boxed .top-bar .top-bar-nav.top2gether a, .cms-section .dreamtheme .header-main .boxed .top-bar .top-bar-nav.top2gether a {
  color: var(--g2g-token-header-topbar-text);
  font-size: 12px;
  text-decoration: none;
}
.dreamtheme .header-main .container .top-bar .top-bar-nav.top2gether a:hover, .dreamtheme .header-main .cms-section .boxed .top-bar .top-bar-nav.top2gether a:hover, .cms-section .dreamtheme .header-main .boxed .top-bar .top-bar-nav.top2gether a:hover {
  color: var(--g2g-token-header-topbar-link-hover);
  text-decoration: none;
}
@media (min-width: 992px) {
  .dreamtheme .header-main .container .top-bar .top-bar-nav.top2gether a, .dreamtheme .header-main .cms-section .boxed .top-bar .top-bar-nav.top2gether a, .cms-section .dreamtheme .header-main .boxed .top-bar .top-bar-nav.top2gether a {
    font-size: 13px;
  }
}
.dreamtheme .header-main .container .top-bar .top-bar-nav.top2gether .top2gether-usps, .dreamtheme .header-main .cms-section .boxed .top-bar .top-bar-nav.top2gether .top2gether-usps, .cms-section .dreamtheme .header-main .boxed .top-bar .top-bar-nav.top2gether .top2gether-usps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
}
.dreamtheme .header-main .container .top-bar .top-bar-nav.top2gether .top2gether-usps-left, .dreamtheme .header-main .cms-section .boxed .top-bar .top-bar-nav.top2gether .top2gether-usps-left, .cms-section .dreamtheme .header-main .boxed .top-bar .top-bar-nav.top2gether .top2gether-usps-left, .dreamtheme .header-main .container .top-bar .top-bar-nav.top2gether .top2gether-usps-right, .dreamtheme .header-main .cms-section .boxed .top-bar .top-bar-nav.top2gether .top2gether-usps-right, .cms-section .dreamtheme .header-main .boxed .top-bar .top-bar-nav.top2gether .top2gether-usps-right {
  display: flex;
  align-items: center;
  gap: 22px;
}
.dreamtheme .header-main .container .top-bar .top-bar-nav.top2gether .top2gether-usps-right .top2gether-box5-currency:empty, .dreamtheme .header-main .cms-section .boxed .top-bar .top-bar-nav.top2gether .top2gether-usps-right .top2gether-box5-currency:empty, .cms-section .dreamtheme .header-main .boxed .top-bar .top-bar-nav.top2gether .top2gether-usps-right .top2gether-box5-currency:empty {
  display: none;
}
.dreamtheme .header-main .container .top-bar .top-bar-nav.top2gether .top2gether-box1 a, .dreamtheme .header-main .cms-section .boxed .top-bar .top-bar-nav.top2gether .top2gether-box1 a, .cms-section .dreamtheme .header-main .boxed .top-bar .top-bar-nav.top2gether .top2gether-box1 a {
  text-decoration: none;
  font-weight: 400;
}
.dreamtheme .header-main .container .top-bar .top-bar-nav.top2gether .top2gether-box1 i, .dreamtheme .header-main .cms-section .boxed .top-bar .top-bar-nav.top2gether .top2gether-box1 i, .cms-section .dreamtheme .header-main .boxed .top-bar .top-bar-nav.top2gether .top2gether-box1 i {
  transition: transform 0.3s ease-in-out;
}
.dreamtheme .header-main .container .top-bar .top-bar-nav.top2gether .top2gether-box1:hover i, .dreamtheme .header-main .cms-section .boxed .top-bar .top-bar-nav.top2gether .top2gether-box1:hover i, .cms-section .dreamtheme .header-main .boxed .top-bar .top-bar-nav.top2gether .top2gether-box1:hover i {
  animation: phoneRing 1s ease-in-out;
}
.dreamtheme .header-main .container .top-bar .top-bar-nav.top2gether .top2gether-box5 .top-bar-language, .dreamtheme .header-main .cms-section .boxed .top-bar .top-bar-nav.top2gether .top2gether-box5 .top-bar-language, .cms-section .dreamtheme .header-main .boxed .top-bar .top-bar-nav.top2gether .top2gether-box5 .top-bar-language {
  height: 22px;
}
.dreamtheme .header-main .container .top-bar .top-bar-nav.top2gether .top2gether-language, .dreamtheme .header-main .cms-section .boxed .top-bar .top-bar-nav.top2gether .top2gether-language, .cms-section .dreamtheme .header-main .boxed .top-bar .top-bar-nav.top2gether .top2gether-language {
  display: flex;
  align-items: center;
}
.dreamtheme .header-main .container .top-bar .top-bar-nav.top2gether .top2gether-language .top-bar-nav-item.top-bar-language, .dreamtheme .header-main .cms-section .boxed .top-bar .top-bar-nav.top2gether .top2gether-language .top-bar-nav-item.top-bar-language, .cms-section .dreamtheme .header-main .boxed .top-bar .top-bar-nav.top2gether .top2gether-language .top-bar-nav-item.top-bar-language {
  background: transparent;
  height: auto;
}
.dreamtheme .header-main .container .top-bar .top-bar-nav.top2gether .top2gether-language .languages-menu, .dreamtheme .header-main .cms-section .boxed .top-bar .top-bar-nav.top2gether .top2gether-language .languages-menu, .cms-section .dreamtheme .header-main .boxed .top-bar .top-bar-nav.top2gether .top2gether-language .languages-menu {
  background: transparent;
}
.dreamtheme .header-main .container .top-bar .top-bar-nav.top2gether .top2gether-language .top-bar-nav-btn, .dreamtheme .header-main .cms-section .boxed .top-bar .top-bar-nav.top2gether .top2gether-language .top-bar-nav-btn, .cms-section .dreamtheme .header-main .boxed .top-bar .top-bar-nav.top2gether .top2gether-language .top-bar-nav-btn {
  padding: 2px 8px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--g2g-token-header-topbar-text);
  background: transparent;
  border: 0;
}
.dreamtheme .header-main .container .top-bar .top-bar-nav.top2gether .top2gether-language .top-bar-nav-btn:hover, .dreamtheme .header-main .cms-section .boxed .top-bar .top-bar-nav.top2gether .top2gether-language .top-bar-nav-btn:hover, .cms-section .dreamtheme .header-main .boxed .top-bar .top-bar-nav.top2gether .top2gether-language .top-bar-nav-btn:hover, .dreamtheme .header-main .container .top-bar .top-bar-nav.top2gether .top2gether-language .top-bar-nav-btn:focus, .dreamtheme .header-main .cms-section .boxed .top-bar .top-bar-nav.top2gether .top2gether-language .top-bar-nav-btn:focus, .cms-section .dreamtheme .header-main .boxed .top-bar .top-bar-nav.top2gether .top2gether-language .top-bar-nav-btn:focus {
  background: transparent;
  opacity: 0.7;
}
.dreamtheme .header-main .container .top-bar .top-bar-nav.top2gether .top2gether-language .top-bar-list-icon, .dreamtheme .header-main .cms-section .boxed .top-bar .top-bar-nav.top2gether .top2gether-language .top-bar-list-icon, .cms-section .dreamtheme .header-main .boxed .top-bar .top-bar-nav.top2gether .top2gether-language .top-bar-list-icon {
  margin-right: 4px;
}
.dreamtheme .header-main .container .top-bar .top-bar-nav.top2gether .top2gether-language .top-bar-list.dropdown-menu, .dreamtheme .header-main .cms-section .boxed .top-bar .top-bar-nav.top2gether .top2gether-language .top-bar-list.dropdown-menu, .cms-section .dreamtheme .header-main .boxed .top-bar .top-bar-nav.top2gether .top2gether-language .top-bar-list.dropdown-menu {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: rgba(0, 0, 0, 0.06) 0 4px 12px 0;
  padding: 8px 0;
}
.dreamtheme .header-main .container .top-bar .top-bar-nav.top2gether .g2g-service-dropdown-container, .dreamtheme .header-main .cms-section .boxed .top-bar .top-bar-nav.top2gether .g2g-service-dropdown-container, .cms-section .dreamtheme .header-main .boxed .top-bar .top-bar-nav.top2gether .g2g-service-dropdown-container {
  position: relative;
}
.dreamtheme .header-main .container .top-bar .top-bar-nav.top2gether .g2g-service-dropdown-container .g2g-service-dropdown-toggle, .dreamtheme .header-main .cms-section .boxed .top-bar .top-bar-nav.top2gether .g2g-service-dropdown-container .g2g-service-dropdown-toggle, .cms-section .dreamtheme .header-main .boxed .top-bar .top-bar-nav.top2gether .g2g-service-dropdown-container .g2g-service-dropdown-toggle {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  list-style: none;
}
.dreamtheme .header-main .container .top-bar .top-bar-nav.top2gether .g2g-service-dropdown-container .g2g-service-dropdown-toggle::-webkit-details-marker, .dreamtheme .header-main .cms-section .boxed .top-bar .top-bar-nav.top2gether .g2g-service-dropdown-container .g2g-service-dropdown-toggle::-webkit-details-marker, .cms-section .dreamtheme .header-main .boxed .top-bar .top-bar-nav.top2gether .g2g-service-dropdown-container .g2g-service-dropdown-toggle::-webkit-details-marker {
  display: none;
}
.dreamtheme .header-main .container .top-bar .top-bar-nav.top2gether .g2g-service-dropdown-container .g2g-service-dropdown-toggle::marker, .dreamtheme .header-main .cms-section .boxed .top-bar .top-bar-nav.top2gether .g2g-service-dropdown-container .g2g-service-dropdown-toggle::marker, .cms-section .dreamtheme .header-main .boxed .top-bar .top-bar-nav.top2gether .g2g-service-dropdown-container .g2g-service-dropdown-toggle::marker {
  content: "";
}
.dreamtheme .header-main .container .top-bar .top-bar-nav.top2gether .g2g-service-dropdown-container .g2g-service-dropdown-toggle::after, .dreamtheme .header-main .cms-section .boxed .top-bar .top-bar-nav.top2gether .g2g-service-dropdown-container .g2g-service-dropdown-toggle::after, .cms-section .dreamtheme .header-main .boxed .top-bar .top-bar-nav.top2gether .g2g-service-dropdown-container .g2g-service-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;
}
.dreamtheme .header-main .container .top-bar .top-bar-nav.top2gether .g2g-service-dropdown-container .g2g-service-dropdown-menu, .dreamtheme .header-main .cms-section .boxed .top-bar .top-bar-nav.top2gether .g2g-service-dropdown-container .g2g-service-dropdown-menu, .cms-section .dreamtheme .header-main .boxed .top-bar .top-bar-nav.top2gether .g2g-service-dropdown-container .g2g-service-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: rgba(0, 0, 0, 0.06) 0 4px 12px 0;
  z-index: 1000;
  list-style: none;
  padding: 8px 0;
  margin: 0;
  margin-top: 10px;
}
.dreamtheme .header-main .container .top-bar .top-bar-nav.top2gether .g2g-service-dropdown-container .g2g-service-dropdown-menu .g2g-service-dropdown-item, .dreamtheme .header-main .cms-section .boxed .top-bar .top-bar-nav.top2gether .g2g-service-dropdown-container .g2g-service-dropdown-menu .g2g-service-dropdown-item, .cms-section .dreamtheme .header-main .boxed .top-bar .top-bar-nav.top2gether .g2g-service-dropdown-container .g2g-service-dropdown-menu .g2g-service-dropdown-item {
  padding: 10px;
}
.dreamtheme .header-main .container .top-bar .top-bar-nav.top2gether .g2g-service-dropdown-container .g2g-service-dropdown-menu .g2g-service-dropdown-item:hover, .dreamtheme .header-main .cms-section .boxed .top-bar .top-bar-nav.top2gether .g2g-service-dropdown-container .g2g-service-dropdown-menu .g2g-service-dropdown-item:hover, .cms-section .dreamtheme .header-main .boxed .top-bar .top-bar-nav.top2gether .g2g-service-dropdown-container .g2g-service-dropdown-menu .g2g-service-dropdown-item:hover {
  background: #64748b;
}
.dreamtheme .header-main .container .top-bar .top-bar-nav.top2gether .g2g-service-dropdown-container .g2g-service-dropdown-menu .g2g-service-dropdown-item:hover .g2g-service-dropdown-link, .dreamtheme .header-main .cms-section .boxed .top-bar .top-bar-nav.top2gether .g2g-service-dropdown-container .g2g-service-dropdown-menu .g2g-service-dropdown-item:hover .g2g-service-dropdown-link, .cms-section .dreamtheme .header-main .boxed .top-bar .top-bar-nav.top2gether .g2g-service-dropdown-container .g2g-service-dropdown-menu .g2g-service-dropdown-item:hover .g2g-service-dropdown-link {
  color: var(--g2g-token-color-neutral-background);
}
.dreamtheme .header-main .container .top-bar .top-bar-nav.top2gether .g2g-service-dropdown-container .g2g-service-dropdown-menu .g2g-service-dropdown-item .g2g-service-dropdown-link, .dreamtheme .header-main .cms-section .boxed .top-bar .top-bar-nav.top2gether .g2g-service-dropdown-container .g2g-service-dropdown-menu .g2g-service-dropdown-item .g2g-service-dropdown-link, .cms-section .dreamtheme .header-main .boxed .top-bar .top-bar-nav.top2gether .g2g-service-dropdown-container .g2g-service-dropdown-menu .g2g-service-dropdown-item .g2g-service-dropdown-link {
  text-decoration: none;
  display: block;
}
.dreamtheme .header-main .container .top-bar .top-bar-nav.top2gether .g2g-service-dropdown-container[open] .g2g-service-dropdown-menu, .dreamtheme .header-main .cms-section .boxed .top-bar .top-bar-nav.top2gether .g2g-service-dropdown-container[open] .g2g-service-dropdown-menu, .cms-section .dreamtheme .header-main .boxed .top-bar .top-bar-nav.top2gether .g2g-service-dropdown-container[open] .g2g-service-dropdown-menu {
  display: block;
  left: -60px;
}
.dreamtheme .header-main .container .top-bar .top-bar-nav.top2gether .g2g-service-dropdown-container[open] .g2g-service-dropdown-toggle::after, .dreamtheme .header-main .cms-section .boxed .top-bar .top-bar-nav.top2gether .g2g-service-dropdown-container[open] .g2g-service-dropdown-toggle::after, .cms-section .dreamtheme .header-main .boxed .top-bar .top-bar-nav.top2gether .g2g-service-dropdown-container[open] .g2g-service-dropdown-toggle::after {
  transform: rotate(180deg);
}
@media (max-width: 991.98px) {
  .dreamtheme .top2gether-usps-left .top2gether-box2:not(.top2gether-service) {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .dreamtheme .top2gether-usps-left .top2gether-box3 {
    display: none;
  }
}
.g2g-error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 16px;
  background: var(--g2g-token-color-neutral-surface, #fafafa);
  position: relative;
}
.g2g-error-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.8) 0%, rgba(250, 250, 250, 0) 70%);
  pointer-events: none;
  z-index: 0;
}
.g2g-error-page__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.g2g-error-page__icon {
  width: 96px;
  height: 96px;
  color: var(--g2g-token-color-brand-primary-text, #64748b);
  /* Waltraud — WCAG AA Error-Page-Icon */
  opacity: 0.85;
  margin-bottom: 8px;
  animation: g2gErrorIconFloat 6s ease-in-out infinite;
}
.g2g-error-page__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
@keyframes g2gErrorIconFloat {
  0%, 100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-6px) rotate(2deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .g2g-error-page__icon {
    animation: none;
  }
}
.g2g-error-page__code {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--g2g-token-color-neutral-text-muted, #6b7280);
  margin: 0;
}
.g2g-error-page__headline {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--g2g-token-color-neutral-text-default, #111827);
  margin: 0;
}
.g2g-error-page__text {
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--g2g-token-color-neutral-text-muted, #4b5563);
  margin: 0;
  max-width: 460px;
}
.g2g-error-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  justify-content: center;
}
.g2g-error-page__cta-primary, .g2g-error-page__cta-secondary {
  min-width: 200px;
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.g2g-error-page__cta-primary:hover, .g2g-error-page__cta-primary:focus-visible, .g2g-error-page__cta-secondary:hover, .g2g-error-page__cta-secondary:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}
@media (max-width: 575.98px) {
  .g2g-error-page {
    padding: 32px 12px;
  }
  .g2g-error-page__icon {
    width: 72px;
    height: 72px;
  }
  .g2g-error-page__actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }
  .g2g-error-page__cta-primary, .g2g-error-page__cta-secondary {
    width: 100%;
  }
}
.dreamtheme.is-ctl-checkout .header-minimal .container, .dreamtheme.is-ctl-checkout .header-minimal .cms-section .boxed, .cms-section .dreamtheme.is-ctl-checkout .header-minimal .boxed, .dreamtheme.is-ctl-register .header-minimal .container, .dreamtheme.is-ctl-register .header-minimal .cms-section .boxed, .cms-section .dreamtheme.is-ctl-register .header-minimal .boxed {
  max-width: var(--g2g-page-width, 1200px);
}
.dreamtheme.is-ctl-checkout .content-main .container .container-main, .dreamtheme.is-ctl-checkout .content-main .cms-section .boxed .container-main, .cms-section .dreamtheme.is-ctl-checkout .content-main .boxed .container-main, .dreamtheme.is-ctl-register .content-main .container .container-main, .dreamtheme.is-ctl-register .content-main .cms-section .boxed .container-main, .cms-section .dreamtheme.is-ctl-register .content-main .boxed .container-main {
  max-width: var(--g2g-page-width, 1200px);
  width: 100%;
}
.dreamtheme.is-ctl-checkout .content-main .container .container-main .checkout .checkout-container, .dreamtheme.is-ctl-checkout .content-main .cms-section .boxed .container-main .checkout .checkout-container, .cms-section .dreamtheme.is-ctl-checkout .content-main .boxed .container-main .checkout .checkout-container, .dreamtheme.is-ctl-register .content-main .container .container-main .checkout .checkout-container, .dreamtheme.is-ctl-register .content-main .cms-section .boxed .container-main .checkout .checkout-container, .cms-section .dreamtheme.is-ctl-register .content-main .boxed .container-main .checkout .checkout-container {
  margin: 0 auto;
}
.dreamtheme .footer-main .container, .dreamtheme .footer-main .cms-section .boxed, .cms-section .dreamtheme .footer-main .boxed {
  max-width: var(--g2g-page-width, 1200px);
}
.dreamtheme .header-main .container, .dreamtheme .header-main .cms-section .boxed, .cms-section .dreamtheme .header-main .boxed {
  max-width: 100%;
  padding: 0;
}
.dreamtheme .header-main .container .top-bar .top-bar-nav.top2gether, .dreamtheme .header-main .cms-section .boxed .top-bar .top-bar-nav.top2gether, .cms-section .dreamtheme .header-main .boxed .top-bar .top-bar-nav.top2gether {
  max-width: var(--g2g-page-width, 1200px);
}
.dreamtheme .header-main .container .header-row, .dreamtheme .header-main .cms-section .boxed .header-row, .cms-section .dreamtheme .header-main .boxed .header-row {
  max-width: var(--g2g-page-width, 1200px);
  margin: 0 auto;
}
.dreamtheme .content-main .container-main .container.cms-breadcrumb, .dreamtheme .content-main .container-main .cms-section .cms-breadcrumb.boxed, .cms-section .dreamtheme .content-main .container-main .cms-breadcrumb.boxed {
  max-width: var(--g2g-page-width-inner, 1160px);
  background: transparent;
}
.dreamtheme .content-main .container-main .container .cms-section .cms-breadcrumb, .dreamtheme .content-main .container-main .cms-section .boxed .cms-section .cms-breadcrumb, .cms-section .dreamtheme .content-main .container-main .boxed .cms-section .cms-breadcrumb, .dreamtheme .content-main .container-main .container .cms-section .cms-breadcrumb.boxed, .dreamtheme .content-main .container-main .cms-section .boxed .cms-section .cms-breadcrumb.boxed, .cms-section .dreamtheme .content-main .container-main .boxed .cms-section .cms-breadcrumb.boxed {
  max-width: var(--g2g-page-width-inner, 1160px);
  background: transparent;
}
.dreamtheme .content-main .cms-page .cms-sections .cms-section .cms-section-default.boxed, .dreamtheme .content-main .cms-page .cms-sections .cms-section .cms-section-sidebar.boxed {
  max-width: var(--g2g-page-width, 1200px);
  padding-right: 0;
  padding-left: 0;
  background: var(--g2g-token-color-neutral-background);
}
@media (min-width: 1200px) {
  .dreamtheme .content-main .cms-page .cms-sections .cms-section .cms-section-default.boxed, .dreamtheme .content-main .cms-page .cms-sections .cms-section .cms-section-sidebar.boxed {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.dreamtheme .content-main .cms-page .cms-sections .cms-section .cms-section-default.full-width, .dreamtheme .content-main .cms-page .cms-sections .cms-section .cms-section-sidebar.full-width {
  --bs-gutter-x: 0;
}
.dreamtheme .nav-main .main-navigation .container, .dreamtheme .nav-main .main-navigation .cms-section .boxed, .cms-section .dreamtheme .nav-main .main-navigation .boxed {
  max-width: var(--g2g-page-width-inner, 1160px);
  padding: 0;
}
@media (min-width: 992px) {
  .dreamtheme .nav-main .main-navigation .container, .dreamtheme .nav-main .main-navigation .cms-section .boxed, .cms-section .dreamtheme .nav-main .main-navigation .boxed {
    padding: 0;
  }
}
.dreamtheme .nav-main .main-navigation .navigation-flyouts .navigation-flyout {
  max-width: var(--g2g-page-width-inner, 1160px);
}
.dreamtheme .nav-main .main-navigation .navigation-flyouts .navigation-flyout .container, .dreamtheme .nav-main .main-navigation .navigation-flyouts .navigation-flyout .cms-section .boxed, .cms-section .dreamtheme .nav-main .main-navigation .navigation-flyouts .navigation-flyout .boxed {
  padding: 0 20px;
}
.dreamtheme .newsletter2gether-twoclicks .newsletter2gether--inner {
  max-width: var(--g2g-page-width, 1200px);
}
.dreamtheme .newsletter2gether-twoclicks .newsletter2gether--inner::after {
  max-width: var(--g2g-page-width-inner, 1160px);
}
.dreamtheme.is-ctl-product .content-main .cms-breadcrumb {
  max-width: 100%;
  padding: 0;
}
.dreamtheme.is-ctl-product .content-main .cms-breadcrumb .breadcrumb {
  max-width: var(--g2g-page-width, 1200px);
}
.dreamtheme.is-ctl-manufacturer .content-main .container, .dreamtheme.is-ctl-manufacturer .content-main .cms-section .boxed, .cms-section .dreamtheme.is-ctl-manufacturer .content-main .boxed, .dreamtheme.is-ctl-checkout .content-main .container, .dreamtheme.is-ctl-checkout .content-main .cms-section .boxed, .cms-section .dreamtheme.is-ctl-checkout .content-main .boxed, .dreamtheme.is-act-loginpage .content-main .container, .dreamtheme.is-act-loginpage .content-main .cms-section .boxed, .cms-section .dreamtheme.is-act-loginpage .content-main .boxed, .dreamtheme.is-ctl-accountprofile .content-main .container, .dreamtheme.is-ctl-accountprofile .content-main .cms-section .boxed, .cms-section .dreamtheme.is-ctl-accountprofile .content-main .boxed, .dreamtheme.is-ctl-address .content-main .container, .dreamtheme.is-ctl-address .content-main .cms-section .boxed, .cms-section .dreamtheme.is-ctl-address .content-main .boxed, .dreamtheme.is-ctl-accountpayment .content-main .container, .dreamtheme.is-ctl-accountpayment .content-main .cms-section .boxed, .cms-section .dreamtheme.is-ctl-accountpayment .content-main .boxed, .dreamtheme.is-ctl-register .content-main .container, .dreamtheme.is-ctl-register .content-main .cms-section .boxed, .cms-section .dreamtheme.is-ctl-register .content-main .boxed, .dreamtheme.is-act-orderoverview .content-main .container, .dreamtheme.is-act-orderoverview .content-main .cms-section .boxed, .cms-section .dreamtheme.is-act-orderoverview .content-main .boxed, .dreamtheme.is-ctl-search .content-main .container, .dreamtheme.is-ctl-search .content-main .cms-section .boxed, .cms-section .dreamtheme.is-ctl-search .content-main .boxed {
  max-width: var(--g2g-page-width, 1200px);
  margin-top: 10px;
}
.dreamtheme .cookie-permission-container .container, .dreamtheme .cookie-permission-container .cms-section .boxed, .cms-section .dreamtheme .cookie-permission-container .boxed {
  max-width: none;
  width: 100%;
}
@media (max-width: 767.98px) {
  .dreamtheme .cookie-permission-container .cookie-permission-button .btn, .dreamtheme .cookie-permission-container .btn {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    width: 100%;
    text-align: center;
  }
}
body.dreamtheme .flashbags.flashbags.container, body.dreamtheme .cms-section .flashbags.boxed, .cms-section body.dreamtheme .flashbags.boxed {
  max-width: var(--g2g-page-width, 1200px);
  margin-top: 0;
}
body.dreamtheme .flashbags.flashbags.container > .alert, body.dreamtheme .cms-section .flashbags.boxed > .alert, .cms-section body.dreamtheme .flashbags.boxed > .alert {
  margin-top: 16px;
}
.dreamtheme .newsletter2gether-button::before, .dreamtheme .begin-checkout-btn::before, .dreamtheme .btn-buy::before, .dreamtheme .btn-primary::before {
  display: none;
  transition: none;
}
.newsletter2gether-button > span, .begin-checkout-btn > span, .btn-buy > span, .btn-primary > span {
  position: static;
}
.btn-primary, .newsletter2gether-button, .begin-checkout-btn:not(.disabled) {
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}
.btn-primary:hover, .btn-primary:focus-visible, .newsletter2gether-button:hover, .newsletter2gether-button:focus-visible, .begin-checkout-btn:not(.disabled):hover, .begin-checkout-btn:not(.disabled):focus-visible {
  background-color: var(--g2g-btn-hover-bg, #536073);
  border-color: var(--g2g-btn-hover-bg, #536073);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.btn-primary:active, .newsletter2gether-button:active, .begin-checkout-btn:not(.disabled):active {
  transform: translateY(0);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}
.btn-buy {
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}
.btn-buy:hover, .btn-buy:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.btn-buy:active {
  transform: translateY(0);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}
@media (prefers-reduced-motion: reduce) {
  .btn-primary, .newsletter2gether-button, .btn-buy, .begin-checkout-btn {
    transition: none;
  }
  .btn-primary:hover, .btn-primary:focus-visible, .newsletter2gether-button:hover, .newsletter2gether-button:focus-visible, .btn-buy:hover, .btn-buy:focus-visible, .begin-checkout-btn:hover, .begin-checkout-btn:focus-visible {
    transform: none;
  }
}
.product-detail-configurator-group, .product-detail-configurator, .product-configurator-options {
  margin-bottom: calc(0.75rem + 3px);
}
.product-detail-form-container .form-group + .product-detail-quantity-group, .product-detail-form-container .form-group + .product-detail-buy-container, .product-detail-form-container .form-group ~ .product-detail-quantity-group, .product-configurator-option + .product-detail-quantity-group, .product-configurator-option + .product-detail-buy-container, .product-configurator-option ~ .product-detail-quantity-group {
  margin-top: 0.5rem;
}
@media (max-width: 767.98px) {
  .g2g-addp-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 0.75rem 0;
  }
  .g2g-addp-list .g2g-addp-content {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: var(--g2g-token-color-neutral-surface);
    color: #585858;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    font-size: 0.825rem;
    line-height: 1.2;
    font-weight: 500;
    white-space: nowrap;
    margin: 0;
  }
  .g2g-addp-list .g2g-addp-content i, .g2g-addp-list .g2g-addp-content svg, .g2g-addp-list .g2g-addp-content .icon {
    font-size: 0.85rem;
    width: 0.85rem;
    height: 0.85rem;
    color: var(--g2g-addp-icon-color, var(--g2g-token-color-neutral-text-default));
  }
}
.g2g-checkout-mode-multistep .g2g-checkout-step .card-title, .g2g-checkout-mode-onepage .g2g-checkout-step .card-title {
  background: var(--g2g-token-color-neutral-background);
  color: #585858;
  font-weight: 700;
  padding: 0.85rem 1rem;
  margin-bottom: 0.85rem;
  border-bottom: 1px solid var(--g2g-token-color-neutral-surface);
  position: relative;
}
.g2g-checkout-mode-multistep .g2g-checkout-step .card-title::before, .g2g-checkout-mode-onepage .g2g-checkout-step .card-title::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 1em;
  background: #64748b;
  margin-right: 0.6rem;
  vertical-align: -2px;
  border-radius: 1px;
}
.g2g-checkout-mode-multistep .g2g-checkout-step .card-body > .card-title:first-child, .g2g-checkout-mode-onepage .g2g-checkout-step .card-body > .card-title:first-child {
  margin-top: -0.5rem;
}
.dreamtheme .btn, .dreamtheme .btn-primary, .dreamtheme .btn-secondary, .dreamtheme .btn-outline-primary, .dreamtheme .btn-buy {
  padding: var(--g2g-token-button-padding-y) var(--g2g-token-button-padding-x);
  border-radius: var(--g2g-token-button-radius);
  font-weight: var(--g2g-token-button-font-weight);
}
.dreamtheme .btn-primary {
  background-color: var(--g2g-token-button-primary-bg-default);
  color: var(--g2g-token-button-primary-text-default);
  border-color: var(--g2g-token-button-primary-border-default);
}
.dreamtheme .btn-primary:hover {
  background-color: var(--g2g-token-button-primary-bg-hover);
  color: var(--g2g-token-button-primary-text-hover);
  border-color: var(--g2g-token-button-primary-border-hover);
}
.dreamtheme .btn-primary:focus, .dreamtheme .btn-primary:focus-visible {
  background-color: var(--g2g-token-button-primary-bg-focus);
  color: var(--g2g-token-button-primary-text-focus);
  border-color: var(--g2g-token-button-primary-border-focus);
}
.dreamtheme .btn-primary:active, .dreamtheme .btn-primary.active {
  background-color: var(--g2g-token-button-primary-bg-active);
  color: var(--g2g-token-button-primary-text-active);
  border-color: var(--g2g-token-button-primary-border-active);
}
.dreamtheme .btn-primary:disabled, .dreamtheme .btn-primary.disabled {
  background-color: var(--g2g-token-button-primary-bg-disabled);
  color: var(--g2g-token-button-primary-text-disabled);
  border-color: var(--g2g-token-button-primary-border-disabled);
}
.dreamtheme .btn-secondary {
  background-color: var(--g2g-token-button-secondary-bg-default);
  color: var(--g2g-token-button-secondary-text-default);
  border-color: var(--g2g-token-button-secondary-border-default);
}
.dreamtheme .btn-secondary:hover {
  background-color: var(--g2g-token-button-secondary-bg-hover);
  color: var(--g2g-token-button-secondary-text-hover);
  border-color: var(--g2g-token-button-secondary-border-hover);
}
.dreamtheme .btn-secondary:focus, .dreamtheme .btn-secondary:focus-visible {
  background-color: var(--g2g-token-button-secondary-bg-focus);
  color: var(--g2g-token-button-secondary-text-focus);
  border-color: var(--g2g-token-button-secondary-border-focus);
}
.dreamtheme .btn-secondary:active, .dreamtheme .btn-secondary.active {
  background-color: var(--g2g-token-button-secondary-bg-active);
  color: var(--g2g-token-button-secondary-text-active);
  border-color: var(--g2g-token-button-secondary-border-active);
}
.dreamtheme .btn-secondary:disabled, .dreamtheme .btn-secondary.disabled {
  background-color: var(--g2g-token-button-secondary-bg-disabled);
  color: var(--g2g-token-button-secondary-text-disabled);
  border-color: var(--g2g-token-button-secondary-border-disabled);
}
.dreamtheme .btn-outline-primary, .dreamtheme .g2g-btn-ghost {
  background-color: var(--g2g-token-button-ghost-bg-default);
  color: var(--g2g-token-button-ghost-text-default);
  border-color: var(--g2g-token-button-ghost-border-default);
}
.dreamtheme .btn-outline-primary:hover, .dreamtheme .g2g-btn-ghost:hover {
  background-color: var(--g2g-token-button-ghost-bg-hover);
  color: var(--g2g-token-button-ghost-text-hover);
  border-color: var(--g2g-token-button-ghost-border-hover);
}
.dreamtheme .btn-outline-primary:focus, .dreamtheme .btn-outline-primary:focus-visible, .dreamtheme .g2g-btn-ghost:focus, .dreamtheme .g2g-btn-ghost:focus-visible {
  background-color: var(--g2g-token-button-ghost-bg-focus);
  color: var(--g2g-token-button-ghost-text-focus);
  border-color: var(--g2g-token-button-ghost-border-focus);
}
.dreamtheme .btn-outline-primary:active, .dreamtheme .btn-outline-primary.active, .dreamtheme .g2g-btn-ghost:active, .dreamtheme .g2g-btn-ghost.active {
  background-color: var(--g2g-token-button-ghost-bg-active);
  color: var(--g2g-token-button-ghost-text-active);
  border-color: var(--g2g-token-button-ghost-border-active);
}
.dreamtheme .btn-outline-primary:disabled, .dreamtheme .btn-outline-primary.disabled, .dreamtheme .g2g-btn-ghost:disabled, .dreamtheme .g2g-btn-ghost.disabled {
  background-color: var(--g2g-token-button-ghost-bg-disabled);
  color: var(--g2g-token-button-ghost-text-disabled);
  border-color: var(--g2g-token-button-ghost-border-disabled);
}
.dreamtheme .btn-buy {
  background-color: var(--g2g-token-button-buy-bg-default);
  color: var(--g2g-token-button-buy-text-default);
  border-color: var(--g2g-token-button-buy-border-default);
}
.dreamtheme .btn-buy:hover {
  background-color: var(--g2g-token-button-buy-bg-hover);
  color: var(--g2g-token-button-buy-text-hover);
  border-color: var(--g2g-token-button-buy-border-hover);
}
.dreamtheme .btn-buy:focus, .dreamtheme .btn-buy:focus-visible {
  background-color: var(--g2g-token-button-buy-bg-focus);
  color: var(--g2g-token-button-buy-text-focus);
  border-color: var(--g2g-token-button-buy-border-focus);
}
.dreamtheme .btn-buy:active, .dreamtheme .btn-buy.active {
  background-color: var(--g2g-token-button-buy-bg-active);
  color: var(--g2g-token-button-buy-text-active);
  border-color: var(--g2g-token-button-buy-border-active);
}
.dreamtheme .btn-buy:disabled, .dreamtheme .btn-buy.disabled {
  background-color: var(--g2g-token-button-buy-bg-disabled);
  color: var(--g2g-token-button-buy-text-disabled);
  border-color: var(--g2g-token-button-buy-border-disabled);
}
.dreamtheme .form-control, .dreamtheme .form-select, .dreamtheme input[type="text"], .dreamtheme input[type="email"], .dreamtheme input[type="search"], .dreamtheme input[type="tel"], .dreamtheme input[type="number"], .dreamtheme input[type="password"], .dreamtheme input[type="url"], .dreamtheme textarea {
  padding: var(--g2g-token-form-input-padding-y) var(--g2g-token-form-input-padding-x);
  border-radius: var(--g2g-token-form-input-radius);
  font-size: var(--g2g-token-form-input-font-size);
  background-color: var(--g2g-token-form-input-bg-default);
  color: var(--g2g-token-form-input-text-default);
  border-color: var(--g2g-token-form-input-border-default);
}
.dreamtheme .form-control:hover, .dreamtheme .form-select:hover, .dreamtheme input[type="text"]:hover, .dreamtheme input[type="email"]:hover, .dreamtheme input[type="search"]:hover, .dreamtheme input[type="tel"]:hover, .dreamtheme input[type="number"]:hover, .dreamtheme input[type="password"]:hover, .dreamtheme input[type="url"]:hover, .dreamtheme textarea:hover {
  background-color: var(--g2g-token-form-input-bg-hover);
  color: var(--g2g-token-form-input-text-hover);
  border-color: var(--g2g-token-form-input-border-hover);
}
.dreamtheme .form-control:focus, .dreamtheme .form-control:focus-visible, .dreamtheme .form-select:focus, .dreamtheme .form-select:focus-visible, .dreamtheme input[type="text"]:focus, .dreamtheme input[type="text"]:focus-visible, .dreamtheme input[type="email"]:focus, .dreamtheme input[type="email"]:focus-visible, .dreamtheme input[type="search"]:focus, .dreamtheme input[type="search"]:focus-visible, .dreamtheme input[type="tel"]:focus, .dreamtheme input[type="tel"]:focus-visible, .dreamtheme input[type="number"]:focus, .dreamtheme input[type="number"]:focus-visible, .dreamtheme input[type="password"]:focus, .dreamtheme input[type="password"]:focus-visible, .dreamtheme input[type="url"]:focus, .dreamtheme input[type="url"]:focus-visible, .dreamtheme textarea:focus, .dreamtheme textarea:focus-visible {
  background-color: var(--g2g-token-form-input-bg-focus);
  color: var(--g2g-token-form-input-text-focus);
  border-color: var(--g2g-token-form-input-border-focus);
  outline: var(--g2g-token-form-focus-ring-width) solid var(--g2g-token-form-focus-ring-color);
  outline-offset: -1px;
}
.dreamtheme .form-control:disabled, .dreamtheme .form-control[readonly], .dreamtheme .form-select:disabled, .dreamtheme .form-select[readonly], .dreamtheme input[type="text"]:disabled, .dreamtheme input[type="text"][readonly], .dreamtheme input[type="email"]:disabled, .dreamtheme input[type="email"][readonly], .dreamtheme input[type="search"]:disabled, .dreamtheme input[type="search"][readonly], .dreamtheme input[type="tel"]:disabled, .dreamtheme input[type="tel"][readonly], .dreamtheme input[type="number"]:disabled, .dreamtheme input[type="number"][readonly], .dreamtheme input[type="password"]:disabled, .dreamtheme input[type="password"][readonly], .dreamtheme input[type="url"]:disabled, .dreamtheme input[type="url"][readonly], .dreamtheme textarea:disabled, .dreamtheme textarea[readonly] {
  background-color: var(--g2g-token-form-input-bg-disabled);
  color: var(--g2g-token-form-input-text-disabled);
  border-color: var(--g2g-token-form-input-border-disabled);
}
.dreamtheme .form-control::placeholder, .dreamtheme .form-select::placeholder, .dreamtheme input[type="text"]::placeholder, .dreamtheme input[type="email"]::placeholder, .dreamtheme input[type="search"]::placeholder, .dreamtheme input[type="tel"]::placeholder, .dreamtheme input[type="number"]::placeholder, .dreamtheme input[type="password"]::placeholder, .dreamtheme input[type="url"]::placeholder, .dreamtheme textarea::placeholder {
  color: var(--g2g-token-form-input-placeholder);
}
.dreamtheme label, .dreamtheme .form-label {
  color: var(--g2g-token-form-label-text);
}
.dreamtheme .invalid-feedback, .dreamtheme .text-danger, .dreamtheme .form-feedback-error {
  color: var(--g2g-token-form-feedback-error);
}
.dreamtheme .valid-feedback, .dreamtheme .text-success, .dreamtheme .form-feedback-success {
  color: var(--g2g-token-form-feedback-success);
}
.dreamtheme .text-warning, .dreamtheme .form-feedback-warning {
  color: var(--g2g-token-form-feedback-warning);
}
.dreamtheme .form-check-input {
  background-color: var(--g2g-token-form-checkbox-bg-default);
  border-color: var(--g2g-token-form-checkbox-border);
}
.dreamtheme .form-check-input:checked {
  background-color: var(--g2g-token-form-checkbox-bg-checked);
  border-color: var(--g2g-token-form-checkbox-bg-checked);
}
.dreamtheme .form-check-input:focus {
  border-color: var(--g2g-token-form-focus-ring-color);
  box-shadow: 0 0 0 var(--g2g-token-form-focus-ring-width) rgba(0, 0, 0, 0.15);
}
.dreamtheme .card {
  background-color: var(--g2g-token-card-bg);
  border-color: var(--g2g-token-card-border);
  border-radius: var(--g2g-token-card-radius);
  box-shadow: var(--g2g-token-card-shadow);
}
.dreamtheme .card .card-header {
  background: transparent;
  color: var(--g2g-token-card-header-text);
  border-bottom-color: var(--g2g-token-card-header-border);
}
.dreamtheme .card .card-body {
  padding: var(--g2g-token-card-padding-y) var(--g2g-token-card-padding-x);
}
.dreamtheme .product-box, .dreamtheme .product-card, .dreamtheme .g2g-product-card {
  background-color: var(--g2g-token-card-product-bg);
  border-color: var(--g2g-token-card-product-border);
  border-radius: var(--g2g-token-card-radius);
  box-shadow: var(--g2g-token-card-product-shadow-default);
  transition: box-shadow 200ms ease;
}
.dreamtheme .product-box:hover, .dreamtheme .product-card:hover, .dreamtheme .g2g-product-card:hover {
  box-shadow: var(--g2g-token-card-product-shadow-hover);
}
.dreamtheme .modal-backdrop, .dreamtheme .offcanvas-backdrop {
  background-color: var(--g2g-token-modal-overlay-bg);
  backdrop-filter: blur(var(--g2g-token-modal-overlay-blur));
}
.dreamtheme .modal-content, .dreamtheme .offcanvas {
  background-color: var(--g2g-token-modal-content-bg);
  border-color: var(--g2g-token-modal-content-border);
  border-radius: var(--g2g-token-modal-content-radius);
  box-shadow: var(--g2g-token-modal-content-shadow);
}
.dreamtheme .modal-header, .dreamtheme .offcanvas-header {
  background-color: var(--g2g-token-modal-header-bg);
  color: var(--g2g-token-modal-header-text);
  border-bottom-color: var(--g2g-token-modal-header-border);
}
.dreamtheme .modal-body, .dreamtheme .swag-custom-notifications-newsletter-popup__content .confirm-message, .swag-custom-notifications-newsletter-popup__content .dreamtheme .confirm-message, .dreamtheme .modal-footer {
  padding: var(--g2g-token-modal-padding) 0;
}
.dreamtheme .offcanvas-body {
  padding: 0 10px;
}
.dreamtheme .offcanvas.navigation-offcanvas, .dreamtheme .offcanvas .offcanvas-header, .dreamtheme .offcanvas .offcanvas-header .btn, .dreamtheme .offcanvas .offcanvas-header .btn.btn-secondary, .dreamtheme .offcanvas .offcanvas-header .offcanvas-close, .dreamtheme .offcanvas .offcanvas-header .js-offcanvas-close, .dreamtheme .offcanvas .offcanvas-header button, .dreamtheme .menu-offcanvas .offcanvas-header, .dreamtheme .offcanvas-menu-close-back, .dreamtheme .offcanvas-menu-back, .dreamtheme .js-offcanvas-close-trigger {
  border-radius: 0;
}
.dreamtheme .offcanvas .offcanvas-header .btn.btn-secondary.offcanvas-close.js-offcanvas-close, .dreamtheme .navigation-offcanvas .offcanvas-header .btn.offcanvas-close {
  background-color: var(--g2g-token-color-neutral-surface, #fafafa);
  background: var(--g2g-token-color-neutral-surface, #fafafa);
  color: var(--g2g-token-color-neutral-text-default, #1a1a1a);
  font-weight: 600;
  border: none;
  border-bottom: 1px solid var(--g2g-token-color-neutral-border, #e5e7eb);
}
.dreamtheme .offcanvas.navigation-offcanvas .offcanvas-header {
  background: var(--g2g-token-color-brand-primary, #64748b);
  background-color: var(--g2g-token-color-brand-primary, #64748b);
}
.dreamtheme .offcanvas.navigation-offcanvas .offcanvas-header, .dreamtheme .offcanvas.navigation-offcanvas .offcanvas-header .offcanvas-title, .dreamtheme .offcanvas.navigation-offcanvas .offcanvas-header .btn, .dreamtheme .offcanvas.navigation-offcanvas .offcanvas-header .btn.btn-secondary.offcanvas-close.js-offcanvas-close, .dreamtheme .offcanvas.navigation-offcanvas .offcanvas-header .offcanvas-close, .dreamtheme .offcanvas.navigation-offcanvas .offcanvas-header button, .dreamtheme .offcanvas.navigation-offcanvas .offcanvas-header .icon {
  color: #fff;
  border-bottom-color: transparent;
}
.dreamtheme .offcanvas.navigation-offcanvas .offcanvas-header .btn.offcanvas-close, .dreamtheme .offcanvas.navigation-offcanvas .offcanvas-header .btn.btn-secondary.offcanvas-close.js-offcanvas-close {
  background: transparent;
  background-color: transparent;
}
.dreamtheme .offcanvas.navigation-offcanvas .offcanvas-header .icon svg, .dreamtheme .offcanvas.navigation-offcanvas .offcanvas-header .offcanvas-close svg {
  color: #fff;
  fill: currentColor;
}
.dreamtheme .offcanvas.navigation-offcanvas .offcanvas-menu-back, .dreamtheme .offcanvas.navigation-offcanvas .offcanvas-menu-close-back, .dreamtheme .offcanvas.navigation-offcanvas .js-offcanvas-back, .dreamtheme .offcanvas.navigation-offcanvas [class*="menu-back"] {
  color: #fff;
  background: transparent;
  background-color: transparent;
  box-shadow: none;
}
.dreamtheme .offcanvas.navigation-offcanvas .offcanvas-menu-back:hover, .dreamtheme .offcanvas.navigation-offcanvas .offcanvas-menu-back:focus, .dreamtheme .offcanvas.navigation-offcanvas .offcanvas-menu-back:focus-visible, .dreamtheme .offcanvas.navigation-offcanvas .offcanvas-menu-close-back:hover, .dreamtheme .offcanvas.navigation-offcanvas .offcanvas-menu-close-back:focus, .dreamtheme .offcanvas.navigation-offcanvas [class*="menu-back"]:hover, .dreamtheme .offcanvas.navigation-offcanvas [class*="menu-back"]:focus {
  color: #fff;
  background: transparent;
  background-color: transparent;
  box-shadow: none;
  outline: none;
}
.dreamtheme .offcanvas .navigation-offcanvas-link, .dreamtheme .offcanvas .navigation-offcanvas-link.nav-item.nav-link, .dreamtheme .navigation-offcanvas .nav-link {
  color: var(--g2g-token-color-neutral-text-default, #1a1a1a);
}
.dreamtheme .offcanvas .navigation-offcanvas-link:hover, .dreamtheme .offcanvas .navigation-offcanvas-link:focus, .dreamtheme .offcanvas .navigation-offcanvas-link.nav-item.nav-link:hover, .dreamtheme .offcanvas .navigation-offcanvas-link.nav-item.nav-link:focus, .dreamtheme .navigation-offcanvas .nav-link:hover, .dreamtheme .navigation-offcanvas .nav-link:focus {
  color: var(--g2g-token-color-action-buy, #1a1a1a);
}
.dreamtheme .offcanvas .top-bar-nav-item, .dreamtheme .offcanvas .top-bar-nav-item.top-bar-language, .dreamtheme .offcanvas .top-bar-nav-item.top-bar-currency, .dreamtheme .offcanvas .top-bar-language, .dreamtheme .offcanvas .top-bar-currency {
  color: var(--g2g-token-color-neutral-text-default, #1a1a1a);
}
.dreamtheme .offcanvas .navigation-offcanvas-actions, .dreamtheme .offcanvas .navigation-offcanvas-actions .top-bar-nav-item, .dreamtheme .offcanvas .navigation-offcanvas-actions .top-bar-language, .dreamtheme .offcanvas .navigation-offcanvas-actions .top-bar-currency, .dreamtheme .offcanvas .navigation-offcanvas-actions .btn, .dreamtheme .offcanvas .navigation-offcanvas-actions .btn-light, .dreamtheme .offcanvas .navigation-offcanvas-actions form, .dreamtheme .offcanvas .top-bar, .dreamtheme .offcanvas .top-bar-list, .dreamtheme .offcanvas .top-bar-list-language, .dreamtheme .offcanvas .top-bar-list-currency, .dreamtheme .offcanvas .top-bar form, .dreamtheme .offcanvas .top-bar .btn, .dreamtheme .offcanvas .top-bar .btn-light, .dreamtheme .offcanvas .top-bar [data-form-csrf-handler], .dreamtheme .offcanvas .top-bar-nav, .dreamtheme .offcanvas .top-bar-nav .nav-item, .dreamtheme .offcanvas .top-bar-nav .nav-link {
  background: transparent;
  background-color: transparent;
  box-shadow: none;
}
.dreamtheme .offcanvas .navigation-offcanvas-actions .top-bar-nav-btn, .dreamtheme .offcanvas .navigation-offcanvas-actions .currency-trigger, .dreamtheme .offcanvas .navigation-offcanvas-actions .language-form .btn, .dreamtheme .offcanvas .navigation-offcanvas-actions .currency-form .btn {
  padding: 0.25rem 0.5rem;
  min-width: 0;
  height: auto;
}
.dreamtheme .offcanvas.navigation-offcanvas .offcanvas-body {
  position: relative;
  padding-top: 0;
}
.dreamtheme .offcanvas.navigation-offcanvas .navigation-offcanvas-container {
  position: static;
}
.dreamtheme .offcanvas.navigation-offcanvas .navigation-offcanvas-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  padding: 8px 11px 8px 16px;
  margin: 0;
  min-height: 48px;
  height: 48px;
}
.dreamtheme .offcanvas.navigation-offcanvas .navigation-offcanvas-content > a.is-home-link {
  position: absolute;
  top: 5px;
  left: 16px;
  width: auto;
  height: 48px;
  max-width: calc(100% - 200px);
  border-bottom: none;
  background: transparent;
  z-index: 5;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
}
.dreamtheme .offcanvas.navigation-offcanvas .navigation-offcanvas-actions .top-bar-language {
  order: 1;
}
.dreamtheme .offcanvas.navigation-offcanvas .navigation-offcanvas-actions .top-bar-currency {
  order: 2;
}
.dreamtheme .offcanvas.navigation-offcanvas .navigation-offcanvas-content > a.is-home-link {
  font-size: 0;
  line-height: 1;
  gap: 0;
}
.dreamtheme .offcanvas.navigation-offcanvas .navigation-offcanvas-content > a.is-home-link .navigation-offcanvas-link-icon, .dreamtheme .offcanvas.navigation-offcanvas .navigation-offcanvas-content > a.is-home-link .icon, .dreamtheme .offcanvas.navigation-offcanvas .navigation-offcanvas-content > a.is-home-link svg {
  font-size: 1rem;
}
.dreamtheme .offcanvas.navigation-offcanvas .top-bar-currency .currency-menu > .dropdown-menu.show, .dreamtheme .offcanvas.navigation-offcanvas .top-bar-currency .dropdown-menu.show {
  position: fixed;
  inset: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: none;
  width: 100vw;
  height: 100vh;
  max-width: none;
  max-height: none;
  min-width: 0;
  margin: 0;
  border-radius: 0;
  border: none;
  background-color: #ffffff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 3rem 2rem;
  overflow-y: auto;
  gap: 0.5rem;
}
.dreamtheme .offcanvas.navigation-offcanvas .top-bar-currency .currency-menu > .dropdown-menu.show > li, .dreamtheme .offcanvas.navigation-offcanvas .top-bar-currency .dropdown-menu.show > li {
  list-style: none;
  width: 100%;
  max-width: 360px;
}
.dreamtheme .offcanvas.navigation-offcanvas .top-bar-currency .currency-menu > .dropdown-menu.show .dropdown-item, .dreamtheme .offcanvas.navigation-offcanvas .top-bar-currency .currency-menu > .dropdown-menu.show > li > .dropdown-item, .dreamtheme .offcanvas.navigation-offcanvas .top-bar-currency .currency-menu > .dropdown-menu.show > li button.dropdown-item, .dreamtheme .offcanvas.navigation-offcanvas .top-bar-currency .dropdown-menu.show .dropdown-item, .dreamtheme .offcanvas.navigation-offcanvas .top-bar-currency .dropdown-menu.show > li > .dropdown-item, .dreamtheme .offcanvas.navigation-offcanvas .top-bar-currency .dropdown-menu.show > li button.dropdown-item {
  font-size: 1.25rem;
  padding: 1rem 2rem;
  text-align: center;
  background: transparent;
  border: none;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  color: var(--g2g-token-color-neutral-text-default);
}
.dreamtheme .offcanvas.navigation-offcanvas .top-bar-currency .currency-menu > .dropdown-menu.show .dropdown-item:hover, .dreamtheme .offcanvas.navigation-offcanvas .top-bar-currency .currency-menu > .dropdown-menu.show .dropdown-item:focus, .dreamtheme .offcanvas.navigation-offcanvas .top-bar-currency .currency-menu > .dropdown-menu.show > li > .dropdown-item:hover, .dreamtheme .offcanvas.navigation-offcanvas .top-bar-currency .currency-menu > .dropdown-menu.show > li > .dropdown-item:focus, .dreamtheme .offcanvas.navigation-offcanvas .top-bar-currency .currency-menu > .dropdown-menu.show > li button.dropdown-item:hover, .dreamtheme .offcanvas.navigation-offcanvas .top-bar-currency .currency-menu > .dropdown-menu.show > li button.dropdown-item:focus, .dreamtheme .offcanvas.navigation-offcanvas .top-bar-currency .dropdown-menu.show .dropdown-item:hover, .dreamtheme .offcanvas.navigation-offcanvas .top-bar-currency .dropdown-menu.show .dropdown-item:focus, .dreamtheme .offcanvas.navigation-offcanvas .top-bar-currency .dropdown-menu.show > li > .dropdown-item:hover, .dreamtheme .offcanvas.navigation-offcanvas .top-bar-currency .dropdown-menu.show > li > .dropdown-item:focus, .dreamtheme .offcanvas.navigation-offcanvas .top-bar-currency .dropdown-menu.show > li button.dropdown-item:hover, .dreamtheme .offcanvas.navigation-offcanvas .top-bar-currency .dropdown-menu.show > li button.dropdown-item:focus {
  background: rgba(0, 0, 0, 0.04);
  color: var(--g2g-token-color-neutral-text-default);
}
.dreamtheme .offcanvas.navigation-offcanvas .top-bar-currency .currency-menu > .dropdown-menu.show .dropdown-item.is-active, .dreamtheme .offcanvas.navigation-offcanvas .top-bar-currency .currency-menu > .dropdown-menu.show .dropdown-item.active, .dreamtheme .offcanvas.navigation-offcanvas .top-bar-currency .currency-menu > .dropdown-menu.show > li > .dropdown-item.is-active, .dreamtheme .offcanvas.navigation-offcanvas .top-bar-currency .currency-menu > .dropdown-menu.show > li > .dropdown-item.active, .dreamtheme .offcanvas.navigation-offcanvas .top-bar-currency .currency-menu > .dropdown-menu.show > li button.dropdown-item.is-active, .dreamtheme .offcanvas.navigation-offcanvas .top-bar-currency .currency-menu > .dropdown-menu.show > li button.dropdown-item.active, .dreamtheme .offcanvas.navigation-offcanvas .top-bar-currency .dropdown-menu.show .dropdown-item.is-active, .dreamtheme .offcanvas.navigation-offcanvas .top-bar-currency .dropdown-menu.show .dropdown-item.active, .dreamtheme .offcanvas.navigation-offcanvas .top-bar-currency .dropdown-menu.show > li > .dropdown-item.is-active, .dreamtheme .offcanvas.navigation-offcanvas .top-bar-currency .dropdown-menu.show > li > .dropdown-item.active, .dreamtheme .offcanvas.navigation-offcanvas .top-bar-currency .dropdown-menu.show > li button.dropdown-item.is-active, .dreamtheme .offcanvas.navigation-offcanvas .top-bar-currency .dropdown-menu.show > li button.dropdown-item.active {
  background: var(--g2g-token-color-brand-primary);
  color: #ffffff;
}
.dreamtheme .g2g-fs-close-btn {
  display: none;
}
.dreamtheme .offcanvas.navigation-offcanvas .top-bar-currency:has(.dropdown-menu.show) .g2g-fs-close-btn {
  display: flex;
  position: fixed;
  top: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.06);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--g2g-token-color-neutral-text-default);
  cursor: pointer;
  padding: 0;
  z-index: 10001;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, transform 0.15s ease;
}
.dreamtheme .offcanvas.navigation-offcanvas .top-bar-currency:has(.dropdown-menu.show) .g2g-fs-close-btn:hover, .dreamtheme .offcanvas.navigation-offcanvas .top-bar-currency:has(.dropdown-menu.show) .g2g-fs-close-btn:focus {
  background: rgba(0, 0, 0, 0.12);
}
.dreamtheme .offcanvas.navigation-offcanvas .top-bar-currency:has(.dropdown-menu.show) .g2g-fs-close-btn:active {
  transform: scale(0.95);
}
.dreamtheme .offcanvas.navigation-offcanvas .top-bar-language {
  padding: 0;
  margin: 0;
}
.dreamtheme .offcanvas.navigation-offcanvas .top-bar-language .language-form {
  padding: 0;
  margin: 0;
}
.dreamtheme .offcanvas.navigation-offcanvas .top-bar-language .languages-menu {
  display: flex;
  align-items: center;
}
.dreamtheme .offcanvas.navigation-offcanvas .top-bar-language .languages-menu > .dropdown-toggle {
  display: none;
}
.dreamtheme .offcanvas.navigation-offcanvas .top-bar-language .languages-menu > .dropdown-menu {
  position: static;
  display: flex;
  flex-direction: row;
  align-items: center;
  transform: none;
  inset: auto;
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  min-width: 0;
  gap: 0;
}
.dreamtheme .offcanvas.navigation-offcanvas .top-bar-language .languages-menu > .dropdown-menu > li {
  list-style: none;
}
.dreamtheme .offcanvas.navigation-offcanvas .top-bar-language .languages-menu > .dropdown-menu > li > .dropdown-item, .dreamtheme .offcanvas.navigation-offcanvas .top-bar-language .languages-menu > .dropdown-menu > .dropdown-item {
  padding: 0 1px;
  background: transparent;
  border: none;
  display: inline-flex;
  align-items: center;
  font-size: 0;
  line-height: 1;
}
.dreamtheme .offcanvas.navigation-offcanvas .top-bar-language .languages-menu > .dropdown-menu > li > .dropdown-item .language-flag, .dreamtheme .offcanvas.navigation-offcanvas .top-bar-language .languages-menu > .dropdown-menu > li > .dropdown-item .top-bar-list-icon, .dreamtheme .offcanvas.navigation-offcanvas .top-bar-language .languages-menu > .dropdown-menu > .dropdown-item .language-flag, .dreamtheme .offcanvas.navigation-offcanvas .top-bar-language .languages-menu > .dropdown-menu > .dropdown-item .top-bar-list-icon {
  font-size: 1rem;
}
.dreamtheme .offcanvas.navigation-offcanvas .top-bar-currency {
  padding: 0;
  margin: 0;
}
.dreamtheme .offcanvas.navigation-offcanvas .top-bar-currency .currency-form {
  padding: 0;
  margin: 0;
}
@media (min-width: 576px) {
  .dreamtheme .header-search-col .header-close-btn, .dreamtheme .header-close-btn.js-search-close-btn {
    display: none;
  }
}
.dreamtheme .alert-success {
  background-color: var(--g2g-token-alert-success-bg);
  color: var(--g2g-token-alert-success-text);
  border-color: var(--g2g-token-alert-success-border);
}
.dreamtheme .alert-info, .dreamtheme .alert-primary {
  background-color: var(--g2g-token-alert-info-bg);
  color: var(--g2g-token-alert-info-text);
  border-color: var(--g2g-token-alert-info-border);
}
.dreamtheme .alert-warning {
  background-color: var(--g2g-token-alert-warning-bg);
  color: var(--g2g-token-alert-warning-text);
  border-color: var(--g2g-token-alert-warning-border);
}
.dreamtheme .alert-danger, .dreamtheme .alert-error {
  background-color: var(--g2g-token-alert-error-bg);
  color: var(--g2g-token-alert-error-text);
  border-color: var(--g2g-token-alert-error-border);
}
.dreamtheme .table {
  background-color: var(--g2g-token-table-bg);
  color: var(--g2g-token-table-text);
  border-color: var(--g2g-token-table-border);
}
.dreamtheme .table th, .dreamtheme .table td {
  padding: var(--g2g-token-table-cell-padding);
  border-color: var(--g2g-token-table-border);
}
.dreamtheme .table thead th, .dreamtheme .table .table-thead th {
  background-color: var(--g2g-token-table-header-bg);
  color: var(--g2g-token-table-header-text);
}
.dreamtheme .table.table-hover tbody tr:hover {
  background-color: var(--g2g-token-table-row-hover-bg);
}
.dreamtheme .table.table-striped tbody tr:nth-of-type(odd) {
  background-color: var(--g2g-token-table-row-stripe-bg);
}
.dreamtheme .header-top-bar, .dreamtheme .topbar, .dreamtheme .header-topbar {
  background-color: var(--g2g-token-header-topbar-bg);
  color: var(--g2g-token-header-topbar-text);
}
.dreamtheme .header-top-bar a:hover, .dreamtheme .topbar a:hover, .dreamtheme .header-topbar a:hover {
  color: var(--g2g-token-header-topbar-link-hover);
}
.dreamtheme .header-main, .dreamtheme .header-row, .dreamtheme .header-logo-col + * {
  background-color: var(--g2g-token-header-main-bg);
  color: var(--g2g-token-header-main-text);
}
.dreamtheme .header-main {
  border-bottom: 1px solid var(--g2g-token-header-main-border);
  min-height: var(--g2g-token-header-main-height);
}
.dreamtheme .mobile-header, .dreamtheme .header-main--mobile {
  background-color: var(--g2g-token-header-mobile-bg);
  color: var(--g2g-token-header-mobile-text);
}
.dreamtheme .mobile-header .icon, .dreamtheme .mobile-header svg, .dreamtheme .mobile-header i, .dreamtheme .header-main--mobile .icon, .dreamtheme .header-main--mobile svg, .dreamtheme .header-main--mobile i {
  color: var(--g2g-token-header-mobile-icon);
}
.dreamtheme .navigation-flyout-link, .dreamtheme .main-navigation-link, .dreamtheme .category-navigation-link {
  color: var(--g2g-token-header-navi-link-default);
}
.dreamtheme .navigation-flyout-link:hover, .dreamtheme .main-navigation-link:hover, .dreamtheme .category-navigation-link:hover {
  color: var(--g2g-token-header-navi-link-hover);
  background-color: var(--g2g-token-header-navi-link-bg-hover);
}
.dreamtheme .navigation-flyout-link.is-active, .dreamtheme .navigation-flyout-link.active, .dreamtheme .main-navigation-link.is-active, .dreamtheme .main-navigation-link.active, .dreamtheme .category-navigation-link.is-active, .dreamtheme .category-navigation-link.active {
  color: var(--g2g-token-header-navi-link-active);
}
.dreamtheme .navigation-flyout, .dreamtheme .navigation-flyouts {
  background-color: var(--g2g-token-header-flyout-bg);
  color: var(--g2g-token-header-flyout-text);
  box-shadow: var(--g2g-token-header-flyout-shadow);
}
.dreamtheme .navigation-flyout .navigation-flyout-headline, .dreamtheme .navigation-flyout .navigation-flyout-category > a, .dreamtheme .navigation-flyouts .navigation-flyout-headline, .dreamtheme .navigation-flyouts .navigation-flyout-category > a {
  color: var(--g2g-token-header-flyout-heading);
}
.dreamtheme .header-search-form .form-control, .dreamtheme .header-search-input {
  background-color: var(--g2g-token-header-search-bg);
  border-color: var(--g2g-token-header-search-border);
  color: var(--g2g-token-header-search-text);
}
.dreamtheme .header-search-form .form-control:focus, .dreamtheme .header-search-input:focus {
  border-color: var(--g2g-token-header-search-border-focus);
}
.dreamtheme .footer-main, .dreamtheme footer.footer {
  background-color: var(--g2g-token-footer-bg);
  color: var(--g2g-token-footer-text);
  border: none;
}
.dreamtheme .footer-main .container, .dreamtheme .footer-main .cms-section .boxed, .cms-section .dreamtheme .footer-main .boxed, .dreamtheme .footer-main .container-fluid, .dreamtheme .footer-main .container-xs, .dreamtheme .footer-main .row, .dreamtheme .footer-main .footer-column, .dreamtheme .footer-main .footer-column-content, .dreamtheme .footer-main .footer-newsletter, .dreamtheme footer.footer .container, .dreamtheme footer.footer .cms-section .boxed, .cms-section .dreamtheme footer.footer .boxed, .dreamtheme footer.footer .container-fluid, .dreamtheme footer.footer .container-xs, .dreamtheme footer.footer .row, .dreamtheme footer.footer .footer-column, .dreamtheme footer.footer .footer-column-content, .dreamtheme footer.footer .footer-newsletter {
  border: none;
}
.dreamtheme .footer-main .footer-headline, .dreamtheme .footer-main .footer-column-headline, .dreamtheme .footer-main h3, .dreamtheme .footer-main .h3, .dreamtheme .footer-main h4, .dreamtheme .footer-main .h4, .dreamtheme footer.footer .footer-headline, .dreamtheme footer.footer .footer-column-headline, .dreamtheme footer.footer h3, .dreamtheme footer.footer .h3, .dreamtheme footer.footer h4, .dreamtheme footer.footer .h4 {
  color: var(--g2g-token-footer-heading);
}
.dreamtheme .footer-main a, .dreamtheme footer.footer a {
  color: var(--g2g-token-footer-link-default);
}
.dreamtheme .footer-main a:hover, .dreamtheme footer.footer a:hover {
  color: var(--g2g-token-footer-link-hover);
}
.dreamtheme .newsletter-component, .dreamtheme .newsletter2gether, .dreamtheme .footer-newsletter {
  background-color: var(--g2g-token-footer-newsletter-bg);
  color: var(--g2g-token-footer-newsletter-text);
}
.dreamtheme .newsletter-button, .dreamtheme .newsletter2gether-button, .dreamtheme .btn.newsletter2gether-button, .dreamtheme button.newsletter2gether-button {
  background-color: var(--g2g-token-footer-newsletter-button-bg);
  color: var(--g2g-token-footer-newsletter-button-text);
  border-color: var(--g2g-token-footer-newsletter-button-bg);
}
.dreamtheme .footer-social-icon, .dreamtheme .g2g-social-icon {
  color: var(--g2g-token-footer-social-icon);
}
.dreamtheme .footer-social-icon:hover, .dreamtheme .g2g-social-icon:hover {
  color: var(--g2g-token-footer-social-icon-hover);
}
.dreamtheme .footer-payment img, .dreamtheme .g2g-footer-icons-list img {
  background-color: var(--g2g-token-footer-payment-icon-bg);
}
.dreamtheme .g2g-country-switcher, .dreamtheme .top-bar-language {
  background-color: var(--g2g-token-footer-country-bg);
  color: var(--g2g-token-footer-country-text);
}
.dreamtheme .g2g-app-banner {
  background-color: var(--g2g-token-footer-app-banner-bg);
  color: var(--g2g-token-footer-app-banner-text);
}
.dreamtheme .g2g-app-banner .g2g-app-banner__btn {
  background-color: var(--g2g-token-footer-app-banner-button);
}
.dreamtheme .filter-panel, .dreamtheme .filter-multi-select-content, .dreamtheme .cms-element-product-listing-filters {
  background-color: var(--g2g-token-listing-filter-bg);
  border-color: var(--g2g-token-listing-filter-border);
}
.dreamtheme .filter-panel .filter-panel-item-toggle, .dreamtheme .filter-panel .filter-multi-select-toggle, .dreamtheme .filter-panel label, .dreamtheme .filter-multi-select-content .filter-panel-item-toggle, .dreamtheme .filter-multi-select-content .filter-multi-select-toggle, .dreamtheme .filter-multi-select-content label, .dreamtheme .cms-element-product-listing-filters .filter-panel-item-toggle, .dreamtheme .cms-element-product-listing-filters .filter-multi-select-toggle, .dreamtheme .cms-element-product-listing-filters label {
  color: var(--g2g-token-listing-filter-label);
}
.dreamtheme .filter-panel .filter-active, .dreamtheme .filter-panel .filter-multi-select-list-item.is-active, .dreamtheme .filter-multi-select-content .filter-active, .dreamtheme .filter-multi-select-content .filter-multi-select-list-item.is-active, .dreamtheme .cms-element-product-listing-filters .filter-active, .dreamtheme .cms-element-product-listing-filters .filter-multi-select-list-item.is-active {
  background-color: var(--g2g-token-listing-filter-active-bg);
  color: var(--g2g-token-listing-filter-active-text);
}
.dreamtheme .cms-element-product-listing-filters .filter-panel-item-toggle, .dreamtheme .cms-element-product-listing-filters .filter-multi-select-toggle, .dreamtheme .cms-element-product-listing-filters button.filter-panel-item-toggle, .dreamtheme .cms-element-product-listing-filters button.filter-multi-select-toggle, .dreamtheme .filter-panel .filter-panel-item-toggle, .dreamtheme .filter-panel .filter-multi-select-toggle, .dreamtheme .filter-panel button.filter-panel-item-toggle, .dreamtheme .filter-panel button.filter-multi-select-toggle, .dreamtheme .filter-multi-select .filter-panel-item-toggle, .dreamtheme .filter-multi-select .filter-multi-select-toggle, .dreamtheme .filter-multi-select button.filter-panel-item-toggle, .dreamtheme .filter-multi-select button.filter-multi-select-toggle {
  padding-top: 6px;
  padding-bottom: 6px;
  min-height: 0;
  line-height: 1.3;
}
.dreamtheme .filter-panel-active-container .filter-active {
  background-color: var(--g2g-token-listing-filter-badge-bg);
  color: var(--g2g-token-listing-filter-badge-text);
}
.dreamtheme .pagination {
  background-color: var(--g2g-token-listing-pagination-bg);
}
.dreamtheme .pagination .page-item .page-link {
  color: var(--g2g-token-listing-pagination-text);
  border-color: var(--g2g-token-listing-pagination-border);
  background-color: transparent;
  border-radius: var(--g2g-border-radius-global, 6px);
}
.dreamtheme .pagination .page-item .page-link:hover {
  background-color: var(--g2g-token-listing-pagination-hover-bg);
}
.dreamtheme .pagination .page-item.active .page-link {
  background-color: var(--g2g-token-listing-pagination-active-bg);
  color: var(--g2g-token-listing-pagination-active-text);
  border-color: var(--g2g-token-listing-pagination-active-bg);
  border-radius: var(--g2g-border-radius-global, 6px);
}
.dreamtheme .sorting, .dreamtheme .listing-sorting select {
  background-color: var(--g2g-token-listing-sort-bg);
  border-color: var(--g2g-token-listing-sort-border);
  color: var(--g2g-token-listing-sort-text);
}
.dreamtheme .sidebar-main, .dreamtheme .cms-section-sidebar .cms-section-sidebar-sidebar {
  background-color: var(--g2g-token-listing-sidebar-bg);
}
.dreamtheme .sidebar-main h3, .dreamtheme .sidebar-main .h3, .dreamtheme .sidebar-main h4, .dreamtheme .sidebar-main .h4, .dreamtheme .sidebar-main .sidebar-main-headline, .dreamtheme .cms-section-sidebar .cms-section-sidebar-sidebar h3, .dreamtheme .cms-section-sidebar .cms-section-sidebar-sidebar .h3, .dreamtheme .cms-section-sidebar .cms-section-sidebar-sidebar h4, .dreamtheme .cms-section-sidebar .cms-section-sidebar-sidebar .h4, .dreamtheme .cms-section-sidebar .cms-section-sidebar-sidebar .sidebar-main-headline {
  color: var(--g2g-token-listing-sidebar-heading);
}
.dreamtheme .sidebar-main a, .dreamtheme .sidebar-main .nav-item, .dreamtheme .cms-section-sidebar .cms-section-sidebar-sidebar a, .dreamtheme .cms-section-sidebar .cms-section-sidebar-sidebar .nav-item {
  color: var(--g2g-token-listing-sidebar-item-text);
}
.dreamtheme .sidebar-main a.is-active, .dreamtheme .sidebar-main a.active, .dreamtheme .sidebar-main .nav-item.is-active, .dreamtheme .sidebar-main .nav-item.active, .dreamtheme .cms-section-sidebar .cms-section-sidebar-sidebar a.is-active, .dreamtheme .cms-section-sidebar .cms-section-sidebar-sidebar a.active, .dreamtheme .cms-section-sidebar .cms-section-sidebar-sidebar .nav-item.is-active, .dreamtheme .cms-section-sidebar .cms-section-sidebar-sidebar .nav-item.active {
  color: var(--g2g-token-listing-sidebar-item-active);
}
.dreamtheme .listing-empty-state, .dreamtheme .empty-state {
  background-color: var(--g2g-token-listing-empty-state-bg);
  color: var(--g2g-token-listing-empty-state-text);
}
.dreamtheme .listing-results-count, .dreamtheme .product-listing-information {
  color: var(--g2g-token-listing-results-count-text);
}
.dreamtheme .breadcrumb-item, .dreamtheme .breadcrumb {
  color: var(--g2g-token-listing-breadcrumb-text);
}
.dreamtheme .gallery-slider, .dreamtheme .product-detail-media {
  background-color: var(--g2g-token-pdp-gallery-bg);
}
.dreamtheme .gallery-slider-thumbnails .gallery-slider-thumbnail, .dreamtheme .product-detail-thumbnails img, .dreamtheme .gallery-slider-thumbnails-item-inner {
  border-color: var(--g2g-token-pdp-gallery-thumb-border);
}
.dreamtheme .gallery-slider-indicator-list .gallery-slider-indicator.is-active {
  background-color: var(--g2g-token-pdp-gallery-indicator);
}
.dreamtheme .magnifier-zoom-image {
  background-color: var(--g2g-token-pdp-gallery-zoom-overlay);
}
.dreamtheme .product-detail-price {
  color: var(--g2g-token-pdp-price-default);
}
.dreamtheme .product-detail-price-list-price, .dreamtheme .product-detail-list-price {
  color: var(--g2g-token-pdp-price-old);
}
.dreamtheme .product-detail-price-discount, .dreamtheme .product-badges .badge-discount {
  background-color: var(--g2g-token-pdp-price-discount-bg);
  color: var(--g2g-token-pdp-price-discount-text);
}
.dreamtheme .product-detail-tax, .dreamtheme .price-tax {
  color: var(--g2g-token-pdp-price-tax-info);
}
.dreamtheme .product-detail-savings, .dreamtheme .price-savings {
  color: var(--g2g-token-pdp-price-savings);
}
.dreamtheme .product-detail-buy-container, .dreamtheme .product-detail-form-container {
  background-color: var(--g2g-token-pdp-buy-box-bg);
  border-color: var(--g2g-token-pdp-buy-box-border);
  padding: var(--g2g-token-pdp-buy-box-padding);
}
.dreamtheme .product-detail-quantity-input, .dreamtheme .product-detail-quantity-group {
  background-color: var(--g2g-token-pdp-qty-bg);
  border-color: var(--g2g-token-pdp-qty-border);
}
.dreamtheme .product-detail-quantity-btn, .dreamtheme .quantity-selector-group .btn {
  background-color: var(--g2g-token-pdp-qty-button-bg);
  color: var(--g2g-token-pdp-qty-button-text);
}
.dreamtheme .product-detail-quantity-btn:hover, .dreamtheme .quantity-selector-group .btn:hover {
  background-color: var(--g2g-token-pdp-qty-button-hover-bg);
}
.dreamtheme .g2g-addp-content, .dreamtheme .g2g-addp-list .g2g-addp-content {
  background: transparent;
  border-color: var(--g2g-token-pdp-usp-border);
  color: var(--g2g-token-pdp-usp-text);
}
.dreamtheme .g2g-addp-content i, .dreamtheme .g2g-addp-content svg, .dreamtheme .g2g-addp-content .icon, .dreamtheme .g2g-addp-list .g2g-addp-content i, .dreamtheme .g2g-addp-list .g2g-addp-content svg, .dreamtheme .g2g-addp-list .g2g-addp-content .icon {
  color: var(--g2g-token-pdp-usp-icon);
}
.dreamtheme .product-detail-tabs .nav-link, .dreamtheme .nav-tabs .nav-link {
  background-color: var(--g2g-token-pdp-tab-bg);
  color: var(--g2g-token-pdp-tab-text);
}
.dreamtheme .product-detail-tabs .nav-link.active, .dreamtheme .nav-tabs .nav-link.active {
  color: var(--g2g-token-pdp-tab-active-text);
  border-bottom-color: var(--g2g-token-pdp-tab-active-border);
}
.dreamtheme .tab-content, .dreamtheme .product-detail-description {
  background-color: var(--g2g-token-pdp-tab-content-bg);
  border-color: var(--g2g-token-pdp-tab-content-border);
}
.dreamtheme .product-detail-review-item, .dreamtheme .review-list-item {
  background-color: var(--g2g-token-pdp-review-bg);
  border-color: var(--g2g-token-pdp-review-border);
}
.dreamtheme .product-detail-review-item .review-author, .dreamtheme .product-detail-review-item .product-detail-review-author, .dreamtheme .review-list-item .review-author, .dreamtheme .review-list-item .product-detail-review-author {
  color: var(--g2g-token-pdp-review-author);
}
.dreamtheme .product-detail-review-item .review-date, .dreamtheme .product-detail-review-item .product-detail-review-date, .dreamtheme .review-list-item .review-date, .dreamtheme .review-list-item .product-detail-review-date {
  color: var(--g2g-token-pdp-review-date);
}
.dreamtheme .product-detail-configurator-option-label, .dreamtheme .product-configurator-option {
  background-color: var(--g2g-token-pdp-configurator-bg);
  border-color: var(--g2g-token-pdp-configurator-border);
}
.dreamtheme .product-detail-configurator-option-label.is-combinable.is-selected, .dreamtheme .product-detail-configurator-option-label.active, .dreamtheme .product-configurator-option.is-combinable.is-selected, .dreamtheme .product-configurator-option.active {
  background-color: var(--g2g-token-pdp-configurator-active-bg);
  color: var(--g2g-token-pdp-configurator-active-text);
}
.dreamtheme .product-wishlist-action, .dreamtheme .product-wishlist {
  color: var(--g2g-token-pdp-wishlist-icon-default);
}
.dreamtheme .product-wishlist-action.is-active, .dreamtheme .product-wishlist-action.product-wishlist-active, .dreamtheme .product-wishlist.is-active, .dreamtheme .product-wishlist.product-wishlist-active {
  color: var(--g2g-token-pdp-wishlist-icon-active);
}
.dreamtheme .product-detail-delivery-information.is-instock, .dreamtheme .delivery-status-instock {
  color: var(--g2g-token-pdp-stock-info-default);
}
.dreamtheme .product-detail-delivery-information.is-low-stock, .dreamtheme .delivery-status-low {
  color: var(--g2g-token-pdp-stock-info-low);
}
.dreamtheme .g2g-free-shipping-bar {
  background-color: var(--g2g-token-cro-fsb-bg);
  border-color: var(--g2g-token-cro-fsb-border);
  color: var(--g2g-token-cro-fsb-text);
}
.dreamtheme .g2g-free-shipping-bar .g2g-fsb-fill {
  background-color: var(--g2g-token-cro-fsb-progress);
}
.dreamtheme .g2g-free-shipping-bar .g2g-fsb-text strong {
  color: var(--g2g-token-cro-fsb-progress);
}
.dreamtheme .g2g-free-shipping-bar.is-reached {
  background-color: var(--g2g-token-cro-fsb-reached-bg);
  border-color: var(--g2g-token-cro-fsb-reached-border);
  color: var(--g2g-token-cro-fsb-reached-text);
}
.dreamtheme .g2g-sticky-buy {
  background-color: var(--g2g-token-cro-sticky-buy-bg);
  border-color: var(--g2g-token-cro-sticky-buy-border);
  box-shadow: var(--g2g-token-cro-sticky-buy-shadow);
}
.dreamtheme .g2g-delivery-info {
  background-color: var(--g2g-token-cro-delivery-bg);
  border-color: var(--g2g-token-cro-delivery-border);
  color: var(--g2g-token-cro-delivery-text);
}
.dreamtheme .g2g-delivery-info strong, .dreamtheme .g2g-delivery-info .g2g-delivery-info__accent {
  color: var(--g2g-token-cro-delivery-accent);
}
.dreamtheme .g2g-trust-slot {
  background-color: var(--g2g-token-cro-trust-bg);
  border-color: var(--g2g-token-cro-trust-border);
  color: var(--g2g-token-cro-trust-text);
}
.dreamtheme .g2g-trust-slot i, .dreamtheme .g2g-trust-slot svg, .dreamtheme .g2g-trust-slot .icon {
  color: var(--g2g-token-cro-trust-icon);
}
.dreamtheme .g2g-sticky-atc-bar {
  background-color: var(--g2g-token-cro-sticky-atc-bg);
  box-shadow: var(--g2g-token-cro-sticky-atc-shadow);
}
.dreamtheme .product-badge-new, .dreamtheme .badge-new {
  background-color: var(--g2g-token-cro-badge-new-bg);
  color: var(--g2g-token-cro-badge-new-text);
}
.dreamtheme .product-badge-sale, .dreamtheme .badge-sale {
  background-color: var(--g2g-token-cro-badge-sale-bg);
  color: var(--g2g-token-cro-badge-sale-text);
}
.dreamtheme .product-badge-bestseller, .dreamtheme .badge-bestseller {
  background-color: var(--g2g-token-cro-badge-bestseller-bg);
  color: var(--g2g-token-cro-badge-bestseller-text);
}
.dreamtheme .g2g-checkout-step-bar .g2g-checkout-step, .dreamtheme .checkout-progress-step {
  background-color: var(--g2g-token-checkout-step-bg-inactive);
  color: var(--g2g-token-checkout-step-text-inactive);
  border-color: var(--g2g-token-checkout-step-border);
}
.dreamtheme .g2g-checkout-step-bar .g2g-checkout-step.is-active, .dreamtheme .g2g-checkout-step-bar .g2g-checkout-step.active, .dreamtheme .checkout-progress-step.is-active, .dreamtheme .checkout-progress-step.active {
  background-color: var(--g2g-token-checkout-step-bg-active);
  color: var(--g2g-token-checkout-step-text-active);
}
.dreamtheme .g2g-checkout-step-bar .g2g-checkout-step.is-completed, .dreamtheme .g2g-checkout-step-bar .g2g-checkout-step.completed, .dreamtheme .checkout-progress-step.is-completed, .dreamtheme .checkout-progress-step.completed {
  background-color: var(--g2g-token-checkout-step-bg-completed);
  color: var(--g2g-token-checkout-step-text-completed);
}
.dreamtheme .g2g-checkout-step-connector, .dreamtheme .checkout-progress-connector {
  background-color: var(--g2g-token-checkout-step-connector-default);
}
.dreamtheme .g2g-checkout-step-connector.is-active, .dreamtheme .checkout-progress-connector.is-active {
  background-color: var(--g2g-token-checkout-step-connector-active);
}
.dreamtheme .checkout-customer-address-card, .dreamtheme .checkout-address-form-card {
  background-color: var(--g2g-token-checkout-address-bg);
  border-color: var(--g2g-token-checkout-address-border);
}
.dreamtheme .checkout-customer-address-card.is-selected, .dreamtheme .checkout-customer-address-card.selected, .form-check-input:checked + .dreamtheme .checkout-customer-address-card, .dreamtheme .checkout-address-form-card.is-selected, .dreamtheme .checkout-address-form-card.selected, .form-check-input:checked + .dreamtheme .checkout-address-form-card {
  background-color: var(--g2g-token-checkout-address-selected-bg);
  border-color: var(--g2g-token-checkout-address-selected-border);
}
.dreamtheme .payment-method-row, .dreamtheme .checkout-payment-method {
  background-color: var(--g2g-token-checkout-payment-bg);
  border-color: var(--g2g-token-checkout-payment-border);
}
.dreamtheme .payment-method-row.is-selected, .dreamtheme .payment-method-row.selected, .dreamtheme .payment-method-row:has(input:checked), .dreamtheme .checkout-payment-method.is-selected, .dreamtheme .checkout-payment-method.selected, .dreamtheme .checkout-payment-method:has(input:checked) {
  background-color: var(--g2g-token-checkout-payment-selected-bg);
  border-color: var(--g2g-token-checkout-payment-selected-border);
}
.dreamtheme .checkout-aside-summary, .dreamtheme .cart-aside-summary {
  background-color: var(--g2g-token-checkout-summary-bg);
  border-color: var(--g2g-token-checkout-summary-border);
}
.dreamtheme .checkout-aside-summary hr, .dreamtheme .checkout-aside-summary .summary-divider, .dreamtheme .cart-aside-summary hr, .dreamtheme .cart-aside-summary .summary-divider {
  border-color: var(--g2g-token-checkout-summary-divider);
}
.dreamtheme .checkout-aside-summary .summary-total, .dreamtheme .checkout-aside-summary .checkout-aside-summary-total, .dreamtheme .cart-aside-summary .summary-total, .dreamtheme .cart-aside-summary .checkout-aside-summary-total {
  background-color: var(--g2g-token-checkout-summary-total-bg);
  color: var(--g2g-token-checkout-summary-total-text);
}
.dreamtheme .g2g-checkout-mode-multistep .g2g-checkout-step .card-title, .dreamtheme .g2g-checkout-mode-onepage .g2g-checkout-step .card-title {
  background-color: var(--g2g-token-checkout-confirm-card-title-bg);
  color: var(--g2g-token-checkout-confirm-card-title-text);
}
.dreamtheme .g2g-checkout-mode-multistep .g2g-checkout-step .card-title::before, .dreamtheme .g2g-checkout-mode-onepage .g2g-checkout-step .card-title::before {
  background-color: var(--g2g-token-checkout-confirm-accent);
}
.dreamtheme .offcanvas-cart, .dreamtheme .cart-offcanvas, .dreamtheme #offcanvasCart {
  background-color: var(--g2g-token-cart-drawer-bg);
  border-color: var(--g2g-token-cart-drawer-border);
  border-radius: 0;
  box-shadow: var(--g2g-token-cart-drawer-shadow);
}
.dreamtheme .offcanvas-cart-item, .dreamtheme .cart-item {
  background-color: var(--g2g-token-cart-drawer-item-bg);
  border-bottom-color: var(--g2g-token-cart-drawer-item-divider);
}
.dreamtheme .offcanvas-cart-item .cart-item-image, .dreamtheme .offcanvas-cart-item .offcanvas-cart-item-image, .dreamtheme .cart-item .cart-item-image, .dreamtheme .cart-item .offcanvas-cart-item-image {
  background-color: var(--g2g-token-cart-drawer-item-image-bg);
}
.dreamtheme .offcanvas-cart-item .cart-item-details-link, .dreamtheme .offcanvas-cart-item .offcanvas-cart-item-label, .dreamtheme .offcanvas-cart-item .cart-item-title, .dreamtheme .cart-item .cart-item-details-link, .dreamtheme .cart-item .offcanvas-cart-item-label, .dreamtheme .cart-item .cart-item-title {
  color: var(--g2g-token-cart-drawer-item-title);
}
.dreamtheme .offcanvas-cart-item .cart-item-price, .dreamtheme .offcanvas-cart-item .offcanvas-cart-item-price, .dreamtheme .cart-item .cart-item-price, .dreamtheme .cart-item .offcanvas-cart-item-price {
  color: var(--g2g-token-cart-drawer-item-price);
}
.dreamtheme .offcanvas-cart-item .cart-item-counter, .dreamtheme .offcanvas-cart-item .cart-item-meta, .dreamtheme .offcanvas-cart-item .offcanvas-cart-item-quantity, .dreamtheme .cart-item .cart-item-counter, .dreamtheme .cart-item .cart-item-meta, .dreamtheme .cart-item .offcanvas-cart-item-quantity {
  color: var(--g2g-token-cart-drawer-item-meta);
}
.dreamtheme .g2g-summary-wrap {
  background-color: var(--g2g-token-cart-drawer-footer-bg);
  border: 0;
  border-radius: 12px;
  padding: 1.25rem;
  margin: 0.75rem 0 0;
}
.dreamtheme .g2g-summary-wrap .offcanvas-summary {
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
}
.dreamtheme .g2g-summary-wrap .summary-total, .dreamtheme .g2g-summary-wrap .cart-offcanvas-total {
  color: var(--g2g-token-cart-drawer-total-text);
}
.dreamtheme .g2g-summary-wrap .summary-total-amount, .dreamtheme .g2g-summary-wrap .cart-offcanvas-total-amount {
  color: var(--g2g-token-cart-drawer-total-amount);
}
.dreamtheme .g2g-summary-wrap .tax-info, .dreamtheme .g2g-summary-wrap .offcanvas-summary-tax, .dreamtheme .g2g-summary-wrap p:last-child {
  font-size: 0.85em;
  color: var(--g2g-token-pdp-price-tax-info, #94a3b8);
  margin: 0;
}
.dreamtheme .cart-offcanvas-footer, .dreamtheme .offcanvas-footer {
  background-color: var(--g2g-token-cart-drawer-footer-bg);
  border: 0;
  border-radius: 12px;
  padding: 1.25rem;
  margin: 0.75rem 0 0;
}
.dreamtheme .offcanvas-cart-empty, .dreamtheme .cart-empty {
  background-color: var(--g2g-token-cart-drawer-empty-bg);
  color: var(--g2g-token-cart-drawer-empty-text);
}
.dreamtheme.is-ctl-product .gallery-slider-thumbnails-item.tns-nav-active .gallery-slider-thumbnails-item-inner, .dreamtheme.is-ctl-product .gallery-slider-thumbnails-item.tns-slide-active .gallery-slider-thumbnails-item-inner, .dreamtheme .gallery-slider-thumbnails-item.tns-nav-active .gallery-slider-thumbnails-item-inner, .dreamtheme .gallery-slider-thumbnails-item.tns-slide-active .gallery-slider-thumbnails-item-inner {
  border-color: var(--g2g-token-pdp-gallery-thumb-active);
}
body.dreamtheme {
  font-family: var(--g2g-token-typo-font-body);
  font-size: var(--g2g-token-typo-font-size-body);
  font-weight: var(--g2g-token-typo-weight-normal);
  line-height: var(--g2g-token-typo-line-height-body);
  color: var(--g2g-token-typo-text-default);
}
.dreamtheme h1, .dreamtheme .h1 {
  font-family: var(--g2g-token-typo-font-headings);
  font-size: var(--g2g-token-typo-font-size-h1);
  font-weight: var(--g2g-token-typo-weight-bold);
  line-height: var(--g2g-token-typo-line-height-heading);
}
.dreamtheme h2, .dreamtheme .h2 {
  font-family: var(--g2g-token-typo-font-headings);
  font-size: var(--g2g-token-typo-font-size-h2);
  font-weight: var(--g2g-token-typo-weight-bold);
  line-height: var(--g2g-token-typo-line-height-heading);
}
.dreamtheme h3, .dreamtheme .h3 {
  font-family: var(--g2g-token-typo-font-headings);
  font-size: var(--g2g-token-typo-font-size-h3);
  font-weight: var(--g2g-token-typo-weight-bold);
  line-height: var(--g2g-token-typo-line-height-heading);
}
.dreamtheme h4, .dreamtheme .h4 {
  font-family: var(--g2g-token-typo-font-headings);
  font-size: var(--g2g-token-typo-font-size-h4);
  font-weight: var(--g2g-token-typo-weight-bold);
  line-height: var(--g2g-token-typo-line-height-heading);
}
.dreamtheme h5, .dreamtheme .h5 {
  font-family: var(--g2g-token-typo-font-headings);
  font-size: var(--g2g-token-typo-font-size-h5);
  font-weight: var(--g2g-token-typo-weight-bold);
  line-height: var(--g2g-token-typo-line-height-heading);
}
.dreamtheme h6, .dreamtheme .h6 {
  font-family: var(--g2g-token-typo-font-headings);
  font-size: var(--g2g-token-typo-font-size-h6);
  font-weight: var(--g2g-token-typo-weight-bold);
  line-height: var(--g2g-token-typo-line-height-heading);
}
.dreamtheme a {
  color: var(--g2g-token-typo-link-color);
}
.dreamtheme a:hover {
  color: var(--g2g-token-typo-link-color-hover);
}
.dreamtheme .text-muted, .dreamtheme small, .dreamtheme .small {
  color: var(--g2g-token-typo-text-muted);
  font-size: var(--g2g-token-typo-font-size-small);
}
.dreamtheme .g2g-flex-suggestions, .dreamtheme .flexsearch-suggestions {
  background-color: var(--g2g-token-flexsearch-bg);
  border: 1px solid var(--g2g-token-flexsearch-border);
  border-radius: var(--g2g-token-flexsearch-radius);
  box-shadow: var(--g2g-token-flexsearch-shadow);
}
.dreamtheme .g2g-flex-suggestions .g2g-flex-suggestion-item, .dreamtheme .g2g-flex-suggestions .flexsearch-suggestion-item, .dreamtheme .flexsearch-suggestions .g2g-flex-suggestion-item, .dreamtheme .flexsearch-suggestions .flexsearch-suggestion-item {
  background-color: var(--g2g-token-flexsearch-item-bg);
  color: var(--g2g-token-flexsearch-item-text);
}
.dreamtheme .g2g-flex-suggestions .g2g-flex-suggestion-item:hover, .dreamtheme .g2g-flex-suggestions .g2g-flex-suggestion-item.is-active, .dreamtheme .g2g-flex-suggestions .g2g-flex-suggestion-item.active, .dreamtheme .g2g-flex-suggestions .flexsearch-suggestion-item:hover, .dreamtheme .g2g-flex-suggestions .flexsearch-suggestion-item.is-active, .dreamtheme .g2g-flex-suggestions .flexsearch-suggestion-item.active, .dreamtheme .flexsearch-suggestions .g2g-flex-suggestion-item:hover, .dreamtheme .flexsearch-suggestions .g2g-flex-suggestion-item.is-active, .dreamtheme .flexsearch-suggestions .g2g-flex-suggestion-item.active, .dreamtheme .flexsearch-suggestions .flexsearch-suggestion-item:hover, .dreamtheme .flexsearch-suggestions .flexsearch-suggestion-item.is-active, .dreamtheme .flexsearch-suggestions .flexsearch-suggestion-item.active {
  background-color: var(--g2g-token-flexsearch-item-bg-hover);
}
.dreamtheme .g2g-flex-suggestions .g2g-flex-suggestion-item .g2g-flex-suggestion-meta, .dreamtheme .g2g-flex-suggestions .g2g-flex-suggestion-item .flexsearch-meta, .dreamtheme .g2g-flex-suggestions .g2g-flex-suggestion-item .item-sku, .dreamtheme .g2g-flex-suggestions .g2g-flex-suggestion-item .item-manufacturer, .dreamtheme .g2g-flex-suggestions .flexsearch-suggestion-item .g2g-flex-suggestion-meta, .dreamtheme .g2g-flex-suggestions .flexsearch-suggestion-item .flexsearch-meta, .dreamtheme .g2g-flex-suggestions .flexsearch-suggestion-item .item-sku, .dreamtheme .g2g-flex-suggestions .flexsearch-suggestion-item .item-manufacturer, .dreamtheme .flexsearch-suggestions .g2g-flex-suggestion-item .g2g-flex-suggestion-meta, .dreamtheme .flexsearch-suggestions .g2g-flex-suggestion-item .flexsearch-meta, .dreamtheme .flexsearch-suggestions .g2g-flex-suggestion-item .item-sku, .dreamtheme .flexsearch-suggestions .g2g-flex-suggestion-item .item-manufacturer, .dreamtheme .flexsearch-suggestions .flexsearch-suggestion-item .g2g-flex-suggestion-meta, .dreamtheme .flexsearch-suggestions .flexsearch-suggestion-item .flexsearch-meta, .dreamtheme .flexsearch-suggestions .flexsearch-suggestion-item .item-sku, .dreamtheme .flexsearch-suggestions .flexsearch-suggestion-item .item-manufacturer {
  color: var(--g2g-token-flexsearch-item-meta);
}
.dreamtheme .g2g-flex-suggestions .g2g-flex-suggestion-item mark, .dreamtheme .g2g-flex-suggestions .g2g-flex-suggestion-item .mark, .dreamtheme .g2g-flex-suggestions .g2g-flex-suggestion-item .highlight, .dreamtheme .g2g-flex-suggestions .g2g-flex-suggestion-item .flexsearch-match, .dreamtheme .g2g-flex-suggestions .flexsearch-suggestion-item mark, .dreamtheme .g2g-flex-suggestions .flexsearch-suggestion-item .mark, .dreamtheme .g2g-flex-suggestions .flexsearch-suggestion-item .highlight, .dreamtheme .g2g-flex-suggestions .flexsearch-suggestion-item .flexsearch-match, .dreamtheme .flexsearch-suggestions .g2g-flex-suggestion-item mark, .dreamtheme .flexsearch-suggestions .g2g-flex-suggestion-item .mark, .dreamtheme .flexsearch-suggestions .g2g-flex-suggestion-item .highlight, .dreamtheme .flexsearch-suggestions .g2g-flex-suggestion-item .flexsearch-match, .dreamtheme .flexsearch-suggestions .flexsearch-suggestion-item mark, .dreamtheme .flexsearch-suggestions .flexsearch-suggestion-item .mark, .dreamtheme .flexsearch-suggestions .flexsearch-suggestion-item .highlight, .dreamtheme .flexsearch-suggestions .flexsearch-suggestion-item .flexsearch-match {
  background-color: var(--g2g-token-flexsearch-highlight-bg);
  color: var(--g2g-token-flexsearch-highlight-text);
}
.dreamtheme .g2g-flex-empty, .dreamtheme .flexsearch-empty {
  background-color: var(--g2g-token-flexsearch-empty-bg);
  color: var(--g2g-token-flexsearch-empty-text);
}
.dreamtheme .g2g-chat-fab, .dreamtheme .g2g-chat-trigger__fab {
  background-color: var(--g2g-token-chat-fab-bg);
  color: var(--g2g-token-chat-fab-icon);
  box-shadow: var(--g2g-token-chat-fab-shadow);
}
.dreamtheme .g2g-chat-fab:hover, .dreamtheme .g2g-chat-trigger__fab:hover {
  background-color: var(--g2g-token-chat-fab-bg-hover);
}
.dreamtheme .g2g-chat-fab i, .dreamtheme .g2g-chat-fab svg, .dreamtheme .g2g-chat-trigger__fab i, .dreamtheme .g2g-chat-trigger__fab svg {
  color: var(--g2g-token-chat-fab-icon);
}
.dreamtheme .g2g-chat-greeting, .dreamtheme .g2g-chat-trigger__greeting {
  background-color: var(--g2g-token-chat-greeting-bg);
  color: var(--g2g-token-chat-greeting-text);
  border: 1px solid var(--g2g-token-chat-greeting-border);
  box-shadow: var(--g2g-token-chat-greeting-shadow);
}
.dreamtheme .g2g-chat-panel, .dreamtheme .g2g-chat-trigger__panel {
  background-color: var(--g2g-token-chat-panel-bg);
  border: 1px solid var(--g2g-token-chat-panel-border);
}
.g2g-search-suggest {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1050;
  background: var(--g2g-token-color-neutral-background);
  border: 1px solid var(--g2g-token-color-neutral-border);
  border-radius: var(--g2g-border-radius, 4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  margin-top: 0.25rem;
  max-height: 70vh;
  overflow-y: auto;
}
.g2g-search-suggest__section {
  padding: 0.5rem 0;
}
.g2g-search-suggest__section + .g2g-search-suggest__section {
  margin-top: 0.25rem;
}
.g2g-search-suggest__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #94a3b8;
  padding: 0.4rem 1rem 0.5rem;
}
.g2g-search-suggest__clear-recent {
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  font-size: 0.68rem;
  text-transform: none;
  letter-spacing: 0;
  color: #64748b;
}
.g2g-search-suggest__clear-recent:hover, .g2g-search-suggest__clear-recent:focus-visible {
  text-decoration: underline;
}
.g2g-search-suggest__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.g2g-search-suggest__taglist {
  list-style: none;
  padding: 0.25rem 1rem 0.6rem;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.g2g-search-suggest__taglist a {
  display: inline-flex;
  background: var(--g2g-token-color-neutral-surface);
  color: #585858;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.825rem;
  text-decoration: none;
  transition: background 0.15s ease;
}
.g2g-search-suggest__taglist a:hover, .g2g-search-suggest__taglist a:focus-visible {
  background: #64748b;
  color: var(--g2g-token-color-neutral-background);
}
.g2g-search-suggest__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1rem;
  text-decoration: none;
  color: #585858;
  transition: background 0.12s ease;
}
.g2g-search-suggest__item:hover, .g2g-search-suggest__item:focus-visible, .g2g-search-suggest__item.is-active {
  background: var(--g2g-token-color-detail-bg-cream);
  color: #585858;
  outline: 0;
}
.g2g-search-suggest__item img {
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: var(--g2g-border-radius, 4px);
  background: var(--g2g-token-color-neutral-surface);
}
.g2g-search-suggest__text {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.g2g-search-suggest__manu {
  font-size: 0.72rem;
  font-weight: 600;
  color: #6b6b6b;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.g2g-search-suggest__name {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.g2g-search-suggest__name mark, .g2g-search-suggest__name .mark {
  background: rgba(100, 116, 139, 0.2);
  color: inherit;
  padding: 0 1px;
  border-radius: 2px;
}
.g2g-search-suggest__category {
  font-size: 0.78rem;
  color: #6b6b6b;
}
.g2g-search-suggest__item--facet {
  padding-top: 0.45rem;
  padding-bottom: 0.45rem;
  justify-content: space-between;
}
.g2g-search-suggest__facet-icon {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  color: #6b6b6b;
  opacity: 0.75;
}
.g2g-search-suggest__facet-label {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #585858;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.g2g-search-suggest__facet-label mark, .g2g-search-suggest__facet-label .mark {
  background: rgba(100, 116, 139, 0.2);
  color: inherit;
  padding: 0 1px;
  border-radius: 2px;
}
.g2g-search-suggest__facet-count {
  flex: 0 0 auto;
  font-size: 0.72rem;
  font-weight: 700;
  color: #6b6b6b;
  background: var(--g2g-token-color-neutral-surface);
  border-radius: 999px;
  padding: 0.05rem 0.5rem;
}
.g2g-search-suggest__rating {
  display: inline-flex;
  gap: 1px;
  margin-top: 0.15rem;
  font-size: 0.8rem;
  line-height: 1;
}
.g2g-search-suggest__rating .g2g-star {
  color: var(--g2g-token-color-neutral-border, #d9d9d9);
}
.g2g-search-suggest__rating .g2g-star.is-full {
  color: #f5a623;
}
.g2g-search-suggest__price {
  flex: 0 0 auto;
  font-weight: 700;
  color: #64748b;
  white-space: nowrap;
}
.g2g-search-suggest__viewall {
  padding: 0.6rem 1rem;
  background: var(--g2g-token-color-neutral-background);
  border-top: 1px solid var(--g2g-token-color-neutral-surface);
  text-align: center;
}
.g2g-search-suggest__viewall a {
  color: #64748b;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.875rem;
}
.g2g-search-suggest__viewall a:hover, .g2g-search-suggest__viewall a:focus-visible {
  text-decoration: underline;
}
.g2g-search-suggest__no-results {
  padding: 1rem;
  text-align: center;
  color: #6b6b6b;
}
.g2g-search-suggest__no-results strong {
  display: block;
  font-size: 0.95rem;
  color: #585858;
  margin-bottom: 0.25rem;
}
.g2g-search-suggest__no-results p {
  font-size: 0.825rem;
  margin: 0;
}
@media (max-width: 767.98px) {
  .g2g-search-suggest {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: auto;
    max-height: calc(100vh - 120px);
    background-color: #ffffff;
    border: none;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 16px 30px -6px rgba(15, 23, 42, 0.16);
    margin-top: 5px;
    padding-left: 0;
    padding-right: 0;
    z-index: 1040;
  }
}
@media (max-width: 767.98px) {
  .g2g-search-suggest .g2g-search-suggest__section, .g2g-search-suggest .g2g-search-suggest__heading, .g2g-search-suggest .g2g-search-suggest__taglist, .g2g-search-suggest .g2g-search-suggest__item, .g2g-search-suggest .g2g-search-suggest__product, .g2g-search-suggest .g2g-search-suggest__view-all, .g2g-search-suggest > a, .g2g-search-suggest > li, .g2g-search-suggest > div {
    padding-left: 18px;
    padding-right: 18px;
  }
}
.dreamtheme .header-main .header-search-input:focus, .dreamtheme .header-main .header-search-input:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--g2g-token-color-brand-primary) 22%, transparent);
  border-color: var(--g2g-token-color-brand-primary);
}
[data-flex-search], .header-search-form, .header-search {
  position: relative;
}
body.g2g-flex-active .g2g-native-suggest-killed, body.g2g-flex-active form.header-search-form ~ .search-suggest-container, body.g2g-flex-active form.header-search-form .search-suggest, body.g2g-flex-active form.header-search-form .js-search-result {
  display: none;
  visibility: hidden;
  pointer-events: none;
}
.g2g-search-hl {
  background: rgba(100, 116, 139, 0.2);
  color: inherit;
  padding: 0 1px;
  border-radius: 2px;
}
.g2g-footer-faq {
  width: 100%;
  background: #f1ece2;
  border-radius: var(--g2g-faq-border-radius, 12px);
}
.g2g-footer-faq-inner {
  background: transparent;
  padding: 2.5rem 0 0.75rem;
  margin: 0 auto;
  box-sizing: border-box;
  max-width: var(--g2g-page-width, 1200px);
}
.g2g-footer-faq-inner *, .g2g-footer-faq-inner *::before, .g2g-footer-faq-inner *::after {
  box-sizing: border-box;
}
.g2g-footer-faq-inner__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  min-width: 0;
}
@media (min-width: 768px) {
  .g2g-footer-faq-inner__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    gap: 3rem;
    align-items: start;
  }
}
.g2g-footer-faq-inner__intro {
  padding: 16px 24px 16px 20px;
  min-width: 0;
}
.g2g-footer-faq-inner__eyebrow {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--g2g-token-color-brand-primary-text, #64748b);
  /* Waltraud — WCAG AA */
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.g2g-footer-faq-inner__heading, .g2g-footer-faq-inner h2.g2g-footer-faq-inner__heading, .g2g-footer-faq-inner .g2g-footer-faq-inner__heading.h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.g2g-footer-faq-inner__list {
  list-style: none;
  padding: 0 20px 0 0;
  margin: 0 0 0 auto;
  min-width: 0;
  width: 100%;
  max-width: 696px;
}
.g2g-footer-faq-inner__item {
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  margin: 0;
  min-width: 0;
  width: 100%;
}
.g2g-footer-faq-inner__item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.g2g-footer-faq-inner__question {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 1.25rem 0.5rem;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 500;
  color: #1a1a1a;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s ease;
}
.g2g-footer-faq-inner__question > span:first-child {
  flex: 1 1 auto;
}
.g2g-footer-faq-inner__question:hover, .g2g-footer-faq-inner__question:focus-visible {
  color: var(--g2g-token-color-brand-primary-text, #64748b);
  /* Waltraud — WCAG AA */
  outline: 0;
}
.g2g-footer-faq-inner__toggle {
  flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--g2g-token-color-brand-primary-text, #64748b);
  /* Waltraud — WCAG AA (Plus-Symbol als Text-equivalent) */
  transition: transform 0.2s ease;
  width: 1.5rem;
  text-align: center;
}
.g2g-footer-faq-inner__question[aria-expanded="true"] {
  color: var(--g2g-token-color-brand-primary-text, #64748b);
  /* Waltraud — WCAG AA */
}
.g2g-footer-faq-inner__question[aria-expanded="true"] .g2g-footer-faq-inner__toggle {
  transform: rotate(45deg);
}
.g2g-footer-faq-inner__answer {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-wrap: break-word;
  /* Waltraud — WCAG AA Link in Answer */
}
.g2g-footer-faq-inner__answer a {
  color: var(--g2g-token-color-brand-primary-text, #64748b);
}
.g2g-footer-faq-inner__answer-inner {
  padding: 0 0.5rem 1.25rem;
}
html:not(.g2g-has-js) .g2g-footer-faq-inner__answer.collapse {
  display: block;
}
.g2g-footer-bottom-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  padding: 3px 0;
}
.g2g-footer-app-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.75rem 0 20px;
}
.g2g-footer-app-badges__link {
  display: inline-block;
  line-height: 0;
  text-decoration: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.g2g-footer-app-badges__link:hover {
  opacity: 0.85;
  transform: scale(1.03);
}
.g2g-footer-app-badges__link img {
  height: 32px;
  width: auto;
  display: block;
}
.g2g-footer-cookie-reopen {
  background: transparent;
  border: 1px solid var(--g2g-token-color-neutral-border);
  border-radius: var(--g2g-border-radius, 4px);
  padding: 0.4rem 0.85rem;
  font-size: 0.825rem;
  color: #585858;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.g2g-footer-cookie-reopen i {
  color: #6b6b6b;
}
.g2g-footer-cookie-reopen:hover, .g2g-footer-cookie-reopen:focus-visible {
  background: var(--g2g-token-color-neutral-surface);
  border-color: #64748b;
  color: #64748b;
  outline: 0;
}
.g2g-footer-cookie-reopen:hover i, .g2g-footer-cookie-reopen:focus-visible i {
  color: #64748b;
}
.g2g-footer-cookie-reopen--floating {
  position: fixed;
  bottom: 16px;
  left: 16px;
  z-index: 100;
  background: var(--g2g-token-color-neutral-background, #fff);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}
@media (min-width: 768px) {
  .g2g-mobile-only {
    display: none;
  }
}
.cms-element-great-faq-list--fifty-fifty .text-warning {
  color: var(--g2g-token-color-brand-primary-text, #64748b);
}
.cms-element-great-faq-list--fifty-fifty summary::marker {
  color: var(--g2g-token-color-brand-primary-text, #64748b);
}
.g2g-footer-country-switcher.g2g-country-position-right {
  margin-left: auto;
}
.g2g-footer-country-switcher {
  position: relative;
  display: inline-block;
}
.g2g-footer-country-switcher__toggle {
  background: transparent;
  border: 1px solid var(--g2g-token-color-neutral-border);
  border-radius: var(--g2g-border-radius, 4px);
  padding: 0.4rem 0.85rem;
  font-size: 0.875rem;
  color: #585858;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: background 0.15s ease;
}
.g2g-footer-country-switcher__toggle:hover, .g2g-footer-country-switcher__toggle[aria-expanded="true"] {
  background: var(--g2g-token-color-neutral-surface);
}
.g2g-footer-country-switcher__flag {
  font-size: 1.1rem;
  line-height: 1;
}
.g2g-footer-country-switcher__code {
  font-weight: 600;
  letter-spacing: 0.05em;
}
.g2g-footer-country-switcher__list {
  position: absolute;
  bottom: calc(100% + 4px);
  right: 0;
  min-width: 180px;
  background: var(--g2g-token-color-neutral-background);
  border: 1px solid var(--g2g-token-color-neutral-border);
  border-radius: var(--g2g-border-radius, 4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 0.25rem 0;
  margin: 0;
  z-index: 50;
}
.g2g-footer-country-switcher__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  text-decoration: none;
  color: #585858;
  font-size: 0.875rem;
}
.g2g-footer-country-switcher__item:hover, .g2g-footer-country-switcher__item:focus-visible {
  background: var(--g2g-token-color-detail-bg-cream);
  outline: 0;
}
.g2g-app-banner {
  position: fixed;
  bottom: 60px;
  left: 0;
  right: 0;
  z-index: 1020;
  background: var(--g2g-token-color-neutral-background);
  border-top: 1px solid var(--g2g-token-color-neutral-border);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
  padding: 0.85rem 5.5rem 0.85rem 3rem;
  display: none;
}
@media (max-width: 767px) {
  .g2g-app-banner--mobile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: g2g-app-banner-slide-up 0.4s ease-out;
  }
}
.g2g-app-banner--desktop_mobile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: g2g-app-banner-slide-up 0.4s ease-out;
}
.g2g-app-banner.is-dismissed {
  animation: g2g-app-banner-slide-down 0.3s ease-in forwards;
}
.g2g-app-banner__close {
  position: absolute;
  top: 50%;
  left: 0.5rem;
  right: auto;
  transform: translateY(-50%);
  background: transparent;
  border: 0;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--g2g-token-color-neutral-text-muted);
  cursor: pointer;
  padding: 0.4rem 0.6rem;
  border-radius: 4px;
  z-index: 2;
}
.g2g-app-banner__close:hover, .g2g-app-banner__close:focus-visible {
  background: var(--g2g-token-color-neutral-surface);
  color: var(--g2g-token-color-neutral-text-default);
  outline: 0;
}
.g2g-app-banner__content {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.g2g-app-banner__headline {
  font-size: 0.9rem;
  font-weight: 700;
  color: #585858;
  line-height: 1.2;
}
.g2g-app-banner__subline {
  font-size: 0.78rem;
  color: #6b6b6b;
  line-height: 1.3;
}
.g2g-app-banner__actions {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.g2g-app-banner__badge {
  display: inline-block;
  line-height: 0;
  text-decoration: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.g2g-app-banner__badge:hover {
  opacity: 0.85;
  transform: scale(1.03);
}
.g2g-app-banner__badge img {
  height: 36px;
  width: auto;
  display: block;
}
@keyframes g2g-app-banner-slide-up {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes g2g-app-banner-slide-down {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(100%);
    opacity: 0;
  }
}
body.dreamtheme.dreamtheme .scroll-up-button {
  width: 40px;
  height: 40px;
  min-width: 0;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  bottom: 1.2rem;
  right: 1.2rem;
  overflow: hidden;
}
body.dreamtheme.dreamtheme .scroll-up-button.scroll-up-button > .btn, body.dreamtheme.dreamtheme .scroll-up-button.scroll-up-button > .btn-primary, body.dreamtheme.dreamtheme .scroll-up-button.scroll-up-button > button, body.dreamtheme.dreamtheme .scroll-up-button.scroll-up-button > button.btn, body.dreamtheme.dreamtheme .scroll-up-button.scroll-up-button > button.btn-primary, body.dreamtheme.dreamtheme .scroll-up-button.scroll-up-button .btn.btn-primary, body.dreamtheme.dreamtheme .scroll-up-button.scroll-up-button button.btn-primary {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  padding: 0 0 10px 0;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
body.dreamtheme.dreamtheme .scroll-up-button .icon, body.dreamtheme.dreamtheme .scroll-up-button svg, body.dreamtheme.dreamtheme .scroll-up-button i {
  width: 18px;
  height: 18px;
  font-size: 18px;
  margin: 0 auto;
  display: block;
  vertical-align: middle;
  line-height: 1;
  padding: 0;
}
body.dreamtheme.dreamtheme .scroll-up-button svg use, body.dreamtheme.dreamtheme .scroll-up-button .icon svg {
  display: block;
  margin: 0 auto;
}
body.g2g-preset-tech-minimal {
  --g2g-token-color-brand-primary:        #06b6d4;
  --g2g-token-color-brand-primary-hover:  #0891b2;
  --g2g-token-color-brand-secondary:      #1e293b;
  --g2g-token-color-action-buy:           #06b6d4;
  --g2g-token-color-action-buy-hover:     #0891b2;
  --g2g-token-color-action-buy-active:    #0e7490;
  --g2g-token-color-neutral-background:   #ffffff;
  --g2g-token-color-neutral-surface:      #f1f5f9;
  --g2g-token-color-neutral-border:       #cbd5e1;
  --g2g-token-color-neutral-text-default: #0f172a;
  --g2g-token-color-neutral-text-muted:   #475569;
  --g2g-token-color-rating-star-filled:   #06b6d4;
}
body.g2g-preset-luxury-gold {
  --g2g-token-color-brand-primary:        #b8860b;
  --g2g-token-color-brand-primary-hover:  #a16207;
  --g2g-token-color-brand-secondary:      #1a1a1a;
  --g2g-token-color-action-buy:           #1a1a1a;
  --g2g-token-color-action-buy-hover:     #404040;
  --g2g-token-color-action-buy-active:    #595959;
  --g2g-token-color-neutral-background:   #fafaf7;
  --g2g-token-color-neutral-surface:      #f5f0e8;
  --g2g-token-color-neutral-border:       #d4c5a0;
  --g2g-token-color-neutral-text-default: #1a1a1a;
  --g2g-token-color-neutral-text-muted:   #5c5c5c;
  --g2g-token-color-rating-star-filled:   #b8860b;
  --g2g-token-color-rating-star-empty:    #e0d4b0;
}
body.g2g-preset-eco-green {
  --g2g-token-color-brand-primary:        #15803d;
  --g2g-token-color-brand-primary-hover:  #166534;
  --g2g-token-color-brand-secondary:      #365314;
  --g2g-token-color-action-buy:           #15803d;
  --g2g-token-color-action-buy-hover:     #166534;
  --g2g-token-color-action-buy-active:    #14532d;
  --g2g-token-color-neutral-background:   #fefdf9;
  --g2g-token-color-neutral-surface:      #f4f1e8;
  --g2g-token-color-neutral-border:       #d4d0bf;
  --g2g-token-color-neutral-text-default: #1a2e1a;
  --g2g-token-color-neutral-text-muted:   #4a5d4a;
  --g2g-token-color-status-success:       #14532d;
  --g2g-token-color-rating-star-filled:   #b8860b;
}
body.g2g-preset-bold-pop {
  --g2g-token-color-brand-primary:        #c026d3;
  --g2g-token-color-brand-primary-hover:  #a21caf;
  --g2g-token-color-brand-secondary:      #1e1e1e;
  --g2g-token-color-action-buy:           #15803d;
  --g2g-token-color-action-buy-hover:     #166534;
  --g2g-token-color-action-buy-active:    #14532d;
  --g2g-token-color-neutral-background:   #ffffff;
  --g2g-token-color-neutral-surface:      #fdf4ff;
  --g2g-token-color-neutral-border:       #d8b4e6;
  --g2g-token-color-neutral-text-default: #18181b;
  --g2g-token-color-neutral-text-muted:   #52525b;
  --g2g-token-color-rating-star-filled:   #c026d3;
}
body.g2g-preset-dark-mode {
  --g2g-token-color-brand-primary:        #60a5fa;
  --g2g-token-color-brand-primary-hover:  #93c5fd;
  --g2g-token-color-brand-secondary:      #94a3b8;
  --g2g-token-color-neutral-background:   #0f172a;
  --g2g-token-color-neutral-surface:      #1e293b;
  --g2g-token-color-neutral-border:       #334155;
  --g2g-token-color-neutral-text-default: #f1f5f9;
  --g2g-token-color-neutral-text-muted:   #94a3b8;
  --g2g-token-color-action-buy:           #22c55e;
  --g2g-token-color-action-buy-hover:     #4ade80;
  --g2g-token-color-action-buy-active:    #16a34a;
  --g2g-token-color-status-success:       #4ade80;
  --g2g-token-color-status-info:          #60a5fa;
  --g2g-token-color-status-warning:       #facc15;
  --g2g-token-color-status-error:         #f87171;
  --g2g-token-card-bg:                    #1e293b;
  --g2g-token-card-border:                #334155;
  --g2g-token-modal-content-bg:           #1e293b;
  --g2g-token-modal-content-border:       #334155;
  --g2g-token-header-main-bg:             #0f172a;
  --g2g-token-header-main-text:           #f1f5f9;
  --g2g-token-header-main-border:         #334155;
  --g2g-token-header-topbar-bg:           #1e293b;
  --g2g-token-header-topbar-text:         #cbd5e1;
  --g2g-token-header-mobile-bg:           #0f172a;
  --g2g-token-header-mobile-text:         #f1f5f9;
  --g2g-token-header-mobile-icon:         #f1f5f9;
  --g2g-token-header-navi-link-default:   #f1f5f9;
  --g2g-token-header-navi-link-bg-hover:  #1e293b;
  --g2g-token-header-flyout-bg:           #1e293b;
  --g2g-token-header-flyout-text:         #f1f5f9;
  --g2g-token-header-search-bg:           #1e293b;
  --g2g-token-header-search-text:         #f1f5f9;
  --g2g-token-header-search-border:       #475569;
  --g2g-token-form-input-bg-default:      #1e293b;
  --g2g-token-form-input-bg-hover:        #334155;
  --g2g-token-form-input-bg-focus:        #1e293b;
  --g2g-token-form-input-text-default:    #f1f5f9;
  --g2g-token-form-input-text-hover:      #f1f5f9;
  --g2g-token-form-input-text-focus:      #f1f5f9;
  --g2g-token-form-input-border-default:  #475569;
  --g2g-token-form-input-placeholder:     #94a3b8;
  --g2g-token-form-label-text:            #f1f5f9;
  --g2g-token-color-rating-star-filled:   #fbbf24;
  --g2g-token-color-rating-star-empty:    #475569;
  --g2g-token-table-text:                 #f1f5f9;
  --g2g-token-table-border:               #334155;
  --g2g-token-table-header-bg:            #1e293b;
  --g2g-token-table-header-text:          #f1f5f9;
}
body.g2g-dark-mode {
  --g2g-dm-bg: #0f172a;
  --g2g-dm-surface: #1e293b;
  --g2g-dm-text: #f1f5f9;
  --g2g-dm-muted: rgba(241, 245, 249, 0.65);
  --g2g-dm-border: #313849;
  --g2g-dm-elevated: #21293b;
  --g2g-dm-input-bg: #0f172a;
  --g2g-dm-hover: rgba(241, 245, 249, 0.05);
  --g2g-dm-accent: var(--bs-primary, #ec5f00);
  --g2g-dm-accent-hover: var(--bs-primary-hover, #d45500);
}
body.g2g-dark-mode {
  --g2g-token-color-neutral-background: var(--g2g-dm-bg);
  --g2g-token-color-neutral-surface: var(--g2g-dm-surface);
  --g2g-token-color-neutral-border: var(--g2g-dm-border);
  --g2g-token-color-neutral-text-default: var(--g2g-dm-text);
  --g2g-token-color-neutral-text-muted: var(--g2g-dm-muted);
  --g2g-token-color-brand-primary: var(--g2g-dm-accent);
  --g2g-token-color-brand-primary-hover: var(--g2g-dm-accent-hover);
  --g2g-token-color-brand-secondary: #94a3b8;
  --g2g-token-color-action-buy: #22c55e;
  --g2g-token-color-action-buy-hover: #4ade80;
  --g2g-token-color-action-buy-active: #16a34a;
  --g2g-token-color-status-success: #4ade80;
  --g2g-token-color-status-info: var(--g2g-dm-accent);
  --g2g-token-color-status-warning: #facc15;
  --g2g-token-color-status-error: #f87171;
  --g2g-token-card-bg: var(--g2g-dm-surface);
  --g2g-token-card-border: var(--g2g-dm-border);
  --g2g-token-card-product-bg: var(--g2g-dm-surface);
  --g2g-token-card-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  --g2g-token-modal-content-bg: var(--g2g-dm-surface);
  --g2g-token-modal-content-border: var(--g2g-dm-border);
  --g2g-token-header-main-bg: var(--g2g-dm-bg);
  --g2g-token-header-main-text: var(--g2g-dm-text);
  --g2g-token-header-main-border: var(--g2g-dm-border);
  --g2g-token-header-topbar-bg: var(--g2g-dm-surface);
  --g2g-token-header-topbar-text: #cbd5e1;
  --g2g-token-header-mobile-bg: var(--g2g-dm-bg);
  --g2g-token-header-mobile-text: var(--g2g-dm-text);
  --g2g-token-header-mobile-icon: var(--g2g-dm-text);
  --g2g-token-header-navi-link-default: var(--g2g-dm-text);
  --g2g-token-header-navi-link-bg-hover: var(--g2g-dm-surface);
  --g2g-token-header-flyout-bg: var(--g2g-dm-surface);
  --g2g-token-header-flyout-text: var(--g2g-dm-text);
  --g2g-token-header-search-bg: var(--g2g-dm-surface);
  --g2g-token-header-search-text: var(--g2g-dm-text);
  --g2g-token-header-search-border: #475569;
  --g2g-token-footer-bg: var(--g2g-dm-bg);
  --g2g-token-footer-text: var(--g2g-dm-muted);
  --g2g-token-footer-link-default: var(--g2g-dm-muted);
  --g2g-token-footer-link-hover: var(--g2g-dm-text);
  --g2g-token-footer-heading-text: var(--g2g-dm-text);
  --g2g-token-footer-border: var(--g2g-dm-border);
  --g2g-token-form-input-bg-default: var(--g2g-dm-input-bg);
  --g2g-token-form-input-bg-hover: var(--g2g-dm-border);
  --g2g-token-form-input-bg-focus: var(--g2g-dm-input-bg);
  --g2g-token-form-input-text-default: var(--g2g-dm-text);
  --g2g-token-form-input-text-hover: var(--g2g-dm-text);
  --g2g-token-form-input-text-focus: var(--g2g-dm-text);
  --g2g-token-form-input-border-default: #475569;
  --g2g-token-form-input-placeholder: var(--g2g-dm-muted);
  --g2g-token-form-label-text: var(--g2g-dm-text);
  --g2g-token-color-rating-star-filled: #fbbf24;
  --g2g-token-color-rating-star-empty: #475569;
  --g2g-token-table-text: var(--g2g-dm-text);
  --g2g-token-table-border: var(--g2g-dm-border);
  --g2g-token-table-header-bg: var(--g2g-dm-surface);
  --g2g-token-table-header-text: var(--g2g-dm-text);
  --g2g-token-listing-filter-bg: var(--g2g-dm-surface);
  --g2g-token-listing-filter-text: var(--g2g-dm-text);
  --g2g-token-listing-filter-border: var(--g2g-dm-border);
  --g2g-token-listing-box: var(--g2g-dm-surface);
}
body.g2g-dark-mode {
  --bs-body-bg: var(--g2g-dm-bg);
  --bs-body-color: var(--g2g-dm-text);
  --bs-card-bg: var(--g2g-dm-surface);
  --bs-card-border-color: var(--g2g-dm-border);
  --bs-border-color: var(--g2g-dm-border);
  --bs-secondary-bg: var(--g2g-dm-surface);
  --bs-tertiary-bg: var(--g2g-dm-elevated);
  --bs-emphasis-color: var(--g2g-dm-text);
  --bs-heading-color: var(--g2g-dm-text);
  --bs-link-color: var(--g2g-dm-accent);
  --bs-link-hover-color: var(--g2g-dm-accent-hover);
}
body.dreamtheme.dreamtheme.g2g-dark-mode {
  background-color: #0f172a;
  color: #f1f5f9;
}
body.g2g-dark-mode .sticky-container, body.g2g-dark-mode .g2g-sticky-container {
  background-color: var(--g2g-dm-bg);
}
body.g2g-dark-mode .content-main, body.g2g-dark-mode .container-main, body.g2g-dark-mode main {
  background-color: transparent;
}
body.dreamtheme.dreamtheme.g2g-dark-mode .header-main, body.dreamtheme.dreamtheme.g2g-dark-mode .header-row {
  background-color: var(--g2g-dm-bg);
  color: var(--g2g-dm-text);
}
body.dreamtheme.dreamtheme.g2g-dark-mode .g2g-header-top-bar, body.dreamtheme.dreamtheme.g2g-dark-mode .top-bar, body.dreamtheme.dreamtheme.g2g-dark-mode .g2g-header-topbar {
  background-color: var(--g2g-dm-surface);
  color: #cbd5e1;
  border-color: var(--g2g-dm-border);
}
body.dreamtheme.dreamtheme.g2g-dark-mode .nav-main, body.dreamtheme.dreamtheme.g2g-dark-mode .main-navigation {
  background-color: var(--g2g-dm-bg);
  border-color: var(--g2g-dm-border);
}
body.dreamtheme.dreamtheme.g2g-dark-mode .g2g-usp-bar, body.dreamtheme.dreamtheme.g2g-dark-mode .g2g-header-usp-bar {
  background-color: var(--g2g-dm-surface);
  color: #cbd5e1;
  border-color: var(--g2g-dm-border);
}
body.g2g-dark-mode .header-search-input {
  background-color: var(--g2g-dm-surface);
  border-color: var(--g2g-dm-border);
  color: var(--g2g-dm-text);
}
body.g2g-dark-mode .header-actions-btn, body.g2g-dark-mode .header-cart-btn, body.g2g-dark-mode .main-navigation-link {
  color: var(--g2g-dm-text);
}
body.g2g-dark-mode .header-actions-btn .icon, body.g2g-dark-mode .header-cart-btn .icon, body.g2g-dark-mode .main-navigation-link .icon {
  color: var(--g2g-dm-text);
}
body.g2g-dark-mode .header-actions-btn svg, body.g2g-dark-mode .header-cart-btn svg, body.g2g-dark-mode .main-navigation-link svg {
  fill: currentColor;
}
body.g2g-dark-mode .navigation-flyout {
  background-color: var(--g2g-dm-surface);
  border-color: var(--g2g-dm-border);
}
body.g2g-dark-mode .navigation-flyout-content {
  background-color: var(--g2g-dm-surface);
}
body.g2g-dark-mode .navigation-flyout-link {
  color: var(--g2g-dm-text);
}
body.g2g-dark-mode .search-suggest-container {
  background-color: var(--g2g-dm-surface);
  border-color: var(--g2g-dm-border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
}
body.g2g-dark-mode .search-suggest-product-name {
  color: var(--g2g-dm-text);
}
body.g2g-dark-mode .search-suggest-product-price {
  color: var(--g2g-dm-muted);
}
body.g2g-dark-mode .account-menu-dropdown {
  background-color: var(--g2g-dm-surface);
  border-color: var(--g2g-dm-border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
}
body.dreamtheme.dreamtheme.g2g-dark-mode .cms-section, body.dreamtheme.dreamtheme.g2g-dark-mode .cms-section-default {
  background-color: transparent;
  color: var(--g2g-dm-text);
}
body.g2g-dark-mode .cms-element-text h1, body.g2g-dark-mode .cms-element-text .h1, body.g2g-dark-mode .cms-element-text h2, body.g2g-dark-mode .cms-element-text .h2, body.g2g-dark-mode .cms-element-text h3, body.g2g-dark-mode .cms-element-text .h3, body.g2g-dark-mode .cms-element-text h4, body.g2g-dark-mode .cms-element-text .h4 {
  color: #fff;
}
body.g2g-dark-mode .cms-element-text p, body.g2g-dark-mode .cms-element-text span, body.g2g-dark-mode .cms-element-text li {
  color: var(--g2g-dm-text);
}
body.dreamtheme.dreamtheme.g2g-dark-mode .product-box {
  background-color: var(--g2g-dm-surface);
  border-color: var(--g2g-dm-border);
  color: var(--g2g-dm-text);
}
body.dreamtheme.dreamtheme.g2g-dark-mode .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .product-box.box-standard {
  background: var(--g2g-dm-surface);
  border-color: var(--g2g-dm-border);
  color: var(--g2g-dm-text);
  --g2g-card-text: #f1f5f9;
  --g2g-card-subtle-text: rgba(241, 245, 249, 0.7);
  --g2g-card-stock-track: #0f172a;
  --g2g-card-bestseller-bg: #0f172a;
  --g2g-card-bestseller-border: var(--g2g-dm-border);
  --g2g-card-bestseller-text: #f1f5f9;
}
body.dreamtheme.dreamtheme.g2g-dark-mode .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .product-box .card-body > a:not(.product-name), body.dreamtheme.dreamtheme.g2g-dark-mode .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .product-box .product-image-wrapper {
  background: var(--g2g-dm-surface);
}
body.dreamtheme.dreamtheme.g2g-dark-mode .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .product-box .product-wishlist-action-circle {
  background: rgba(30, 41, 59, 0.92);
  border-color: var(--g2g-dm-border);
  color: var(--g2g-dm-text);
}
body.dreamtheme.dreamtheme.g2g-dark-mode .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .product-box .product-wishlist-action-circle .icon {
  color: var(--g2g-dm-text);
}
body.dreamtheme.dreamtheme.g2g-dark-mode .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .product-box .product-wishlist-action-circle svg {
  fill: currentColor;
}
body.dreamtheme.dreamtheme.g2g-dark-mode .cms-element-product-listing .product-box.box-standard {
  background: var(--g2g-dm-surface);
  border-color: var(--g2g-dm-border);
}
body.dreamtheme.dreamtheme.g2g-dark-mode .product-box .product-info {
  background: var(--g2g-dm-surface);
  color: var(--g2g-dm-text);
}
body.dreamtheme.dreamtheme.g2g-dark-mode .product-box .product-name, body.dreamtheme.dreamtheme.g2g-dark-mode .product-box .product-name a, body.dreamtheme.dreamtheme.g2g-dark-mode .product-box .product-name-headline {
  color: var(--g2g-dm-text);
}
body.dreamtheme.dreamtheme.g2g-dark-mode .product-box .product-price, body.dreamtheme.dreamtheme.g2g-dark-mode .product-box .product-price-wrapper, body.dreamtheme.dreamtheme.g2g-dark-mode .product-box .g2g-product-price-box {
  color: var(--g2g-dm-text);
}
body.dreamtheme.dreamtheme.g2g-dark-mode .product-box .product-description {
  color: #cbd5e1;
}
body.dreamtheme.dreamtheme.g2g-dark-mode .product-box .product-manufacturer-link, body.dreamtheme.dreamtheme.g2g-dark-mode .product-box .g2g-product-card-manufacturer {
  color: var(--g2g-dm-muted);
}
body.dreamtheme.dreamtheme.g2g-dark-mode .product-box .g2g-stock-meta, body.dreamtheme.dreamtheme.g2g-dark-mode .product-box .g2g-stock-meta__label, body.dreamtheme.dreamtheme.g2g-dark-mode .product-box .g2g-stock-meta__count {
  color: var(--g2g-dm-muted);
}
body.dreamtheme.dreamtheme.g2g-dark-mode .product-box .product-action {
  color: var(--g2g-dm-text);
}
body.dreamtheme.dreamtheme.g2g-dark-mode .cms-element-product-listing:not(.g2g-listing-view-list) .product-box .product-info .g2g-product-card-manufacturer.g2g-product-card-manufacturer {
  color: var(--g2g-dm-muted);
}
body.dreamtheme.dreamtheme.g2g-dark-mode .cms-element-product-listing:not(.g2g-listing-view-list) .product-box .g2g-card-slider__arrow {
  background: rgba(30, 41, 59, 0.82);
  color: var(--g2g-dm-text);
}
body.dreamtheme.dreamtheme.g2g-dark-mode .cms-element-product-listing:not(.g2g-listing-view-list) .product-box .g2g-card-slider__dot {
  background: rgba(241, 245, 249, 0.28);
}
body.dreamtheme.dreamtheme.g2g-dark-mode .cms-element-product-listing:not(.g2g-listing-view-list) .product-box .g2g-card-slider__dot.is-active {
  background: rgba(241, 245, 249, 0.62);
}
body.dreamtheme.dreamtheme.g2g-dark-mode .cms-element-product-listing .product-box .g2g-list-variants__chip {
  background: rgba(51, 65, 85, 0.9);
  color: var(--g2g-dm-text);
  border-color: #475569;
}
body.dreamtheme.dreamtheme.g2g-dark-mode .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box.box-standard, body.dreamtheme.dreamtheme.g2g-dark-mode .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box.box-standard, body.dreamtheme.dreamtheme.g2g-dark-mode .g2g-cs-layout-add-on-image .product-slider-container .product-slider-item .product-box.box-standard {
  background: var(--g2g-dm-surface);
  border-color: var(--g2g-dm-border);
}
body.dreamtheme.dreamtheme.g2g-dark-mode .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box .product-image-wrapper, body.dreamtheme.dreamtheme.g2g-dark-mode .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .product-image-wrapper, body.dreamtheme.dreamtheme.g2g-dark-mode .g2g-cs-layout-add-on-image .product-slider-container .product-slider-item .product-box .product-image-wrapper {
  background: var(--g2g-dm-surface);
}
body.dreamtheme.dreamtheme.g2g-dark-mode .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box .card-body > a:not(.product-name), body.dreamtheme.dreamtheme.g2g-dark-mode .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .card-body > a:not(.product-name), body.dreamtheme.dreamtheme.g2g-dark-mode .g2g-cs-layout-add-on-image .product-slider-container .product-slider-item .product-box .card-body > a:not(.product-name) {
  background: var(--g2g-dm-surface);
}
body.g2g-dark-mode .g2g-stock-urgency {
  background-color: rgba(30, 41, 59, 0.85);
  color: var(--g2g-dm-text);
}
body.g2g-dark-mode .badge.badge-new {
  background: var(--g2g-dm-border);
  color: var(--g2g-dm-text);
}
body.dreamtheme.dreamtheme.g2g-dark-mode .g2g-listing-toolbar {
  background-color: var(--g2g-dm-bg);
  color: var(--g2g-dm-text);
  border-color: var(--g2g-dm-border);
}
body.g2g-dark-mode .sorting .btn, body.g2g-dark-mode .cms-element-product-listing-wrapper .btn-outline-secondary {
  background-color: var(--g2g-dm-surface);
  border-color: var(--g2g-dm-border);
  color: var(--g2g-dm-text);
}
body.g2g-dark-mode .filter-panel {
  background-color: var(--g2g-dm-surface);
  border-color: var(--g2g-dm-border);
}
body.g2g-dark-mode .filter-panel-item {
  border-color: var(--g2g-dm-border);
}
body.g2g-dark-mode .filter-panel-item .filter-panel-item-toggle {
  color: var(--g2g-dm-text);
}
body.g2g-dark-mode .pagination .page-link {
  background-color: transparent;
  border-color: var(--g2g-dm-border);
  color: var(--g2g-dm-text);
}
body.g2g-dark-mode .pagination .page-item.active .page-link {
  background-color: var(--g2g-dm-accent);
  border-color: var(--g2g-dm-accent);
  color: #fff;
}
body.g2g-dark-mode .breadcrumb-link, body.g2g-dark-mode .breadcrumb-item {
  color: var(--g2g-dm-muted);
}
body.g2g-dark-mode .g2g-listing-count {
  color: var(--g2g-dm-text);
}
body.g2g-dark-mode .filter-range-unit {
  background-color: var(--g2g-dm-surface);
  color: var(--g2g-dm-text);
}
body.g2g-dark-mode .filter-multi-select-item-label, body.g2g-dark-mode .filter-multi-select-item-label.form-check-label {
  color: var(--g2g-dm-text);
  background-color: var(--g2g-dm-surface);
}
body.g2g-dark-mode .filter-multi-select-checkbox, body.g2g-dark-mode .form-check-input {
  background-color: var(--g2g-dm-input-bg);
  border-color: var(--g2g-dm-border);
}
body.g2g-dark-mode .filter-range-slider-label, body.g2g-dark-mode .filter-range-slider .filter-range-slider-value {
  color: var(--g2g-dm-text);
}
body.g2g-dark-mode .header-search-form {
  background-color: transparent;
}
body.g2g-dark-mode .scroll-arrow {
  background-color: var(--g2g-dm-surface);
  color: var(--g2g-dm-text);
}
body.dreamtheme.dreamtheme.g2g-dark-mode .cms-element-sidebar-filter.g2g-filter-megapanel {
  background: var(--g2g-dm-surface);
  border-color: var(--g2g-dm-border);
  color: var(--g2g-dm-text);
}
body.dreamtheme.dreamtheme.g2g-dark-mode .g2g-filter-megapanel__footer {
  background-color: var(--g2g-dm-surface);
  border-color: var(--g2g-dm-border);
}
body.dreamtheme.dreamtheme.g2g-dark-mode .g2g-filter-megapanel-trigger, body.dreamtheme.dreamtheme.g2g-dark-mode .g2g-list-menu__trigger {
  background-color: var(--g2g-dm-surface);
  border-color: var(--g2g-dm-border);
  color: var(--g2g-dm-text);
}
body.dreamtheme.dreamtheme.g2g-dark-mode .g2g-glass-sidebar-panel .filter-multi-select-list-item .form-check-label.form-check-label, body.dreamtheme.dreamtheme.g2g-dark-mode .g2g-glass-sidebar-panel .filter-multi-select-list-item label.filter-multi-select-item-label.filter-multi-select-item-label {
  background-color: var(--g2g-dm-surface);
  color: var(--g2g-dm-text);
}
body.dreamtheme.dreamtheme.g2g-dark-mode .g2g-glass-sidebar-panel .filter-multi-select-list-item .form-check-input:checked + .form-check-label.form-check-label {
  background-color: var(--g2g-dm-accent);
  color: #fff;
}
body.dreamtheme.dreamtheme.g2g-dark-mode .g2g-glass-sidebar-panel .filter-range-min, body.dreamtheme.dreamtheme.g2g-dark-mode .g2g-glass-sidebar-panel .filter-range-max {
  background-color: var(--g2g-dm-surface);
  color: var(--g2g-dm-text);
  border-color: var(--g2g-dm-border);
}
body.dreamtheme.dreamtheme.g2g-dark-mode .cms-element-product-listing-actions .g2g-listing-view-toggle {
  background: var(--g2g-dm-surface);
  border-color: var(--g2g-dm-border);
  color: var(--g2g-dm-text);
}
body.dreamtheme.g2g-dark-mode .header-search-form {
  background-color: transparent;
  border-color: var(--g2g-dm-border);
}
body.dreamtheme.dreamtheme.g2g-dark-mode .footer-main, body.dreamtheme.dreamtheme.g2g-dark-mode footer {
  background-color: var(--g2g-dm-bg);
  color: var(--g2g-dm-muted);
}
body.dreamtheme.dreamtheme.g2g-dark-mode .footer-bottom {
  border-top-color: var(--g2g-dm-border);
  background-color: var(--g2g-dm-bg);
}
body.g2g-dark-mode .footer-column-headline {
  color: var(--g2g-dm-text);
}
body.g2g-dark-mode .footer-main a {
  color: var(--g2g-dm-muted);
}
body.g2g-dark-mode .footer-main a:hover {
  color: var(--g2g-dm-text);
}
body.g2g-dark-mode .g2g-service-bar {
  background-color: var(--g2g-dm-bg);
  border-color: var(--g2g-dm-border);
}
body.g2g-dark-mode .g2g-service-bar .g2g-service-title {
  color: var(--g2g-dm-text);
}
body.g2g-dark-mode .g2g-service-bar .g2g-service-sub {
  color: var(--g2g-dm-muted);
}
body.g2g-dark-mode .newsletter2gether-twoclicks {
  background-color: var(--g2g-dm-bg);
}
body.g2g-dark-mode .newsletter2gether-twoclicks .newsletter-headline {
  color: var(--g2g-dm-text);
}
body.g2g-dark-mode .newsletter2gether-twoclicks .newsletter2gether--inner .newsletter2gether-htext .newsletter2gether-htext-header {
  color: var(--g2g-dm-text);
}
body.g2g-dark-mode .newsletter2gether-twoclicks .newsletter2gether--inner .newsletter2gether-htext .newsletter2gether-htext-description {
  color: var(--g2g-dm-muted);
}
body.g2g-dark-mode .newsletter2gether-twoclicks .newsletter2gether--inner .newsletter2gether-box .content .newsletter2gether-form .newsletter2gether-form-privacy {
  color: var(--g2g-dm-muted);
}
body.g2g-dark-mode .newsletter2gether-twoclicks .newsletter2gether--inner .newsletter2gether-box .content .newsletter2gether-form .newsletter2gether-form-privacy .btn-link-inline {
  color: var(--g2g-dm-muted);
}
body.g2g-dark-mode .newsletter2gether-twoclicks .newsletter2gether--inner .newsletter2gether-box .content .newsletter2gether-form .newsletter2gether-input {
  background-color: var(--g2g-dm-surface);
  border-color: var(--g2g-dm-border);
}
body.g2g-dark-mode .g2g-footer-faq {
  background-color: var(--g2g-dm-bg);
}
body.g2g-dark-mode .g2g-footer-faq .g2g-faq-question, body.g2g-dark-mode .g2g-footer-faq-inner__question, body.g2g-dark-mode .g2g-footer-faq-inner__heading {
  color: var(--g2g-dm-text);
  border-color: var(--g2g-dm-border);
}
body.g2g-dark-mode .g2g-footer-faq .g2g-faq-answer {
  color: var(--g2g-dm-muted);
}
body.g2g-dark-mode .g2g-footer-cookie-reopen {
  color: var(--g2g-dm-muted);
}
body.g2g-dark-mode .gmn-fs-card__title {
  color: var(--g2g-dm-text);
}
body.g2g-dark-mode .gmn-fs-card {
  color: var(--g2g-dm-muted);
}
body.g2g-dark-mode .form-control, body.g2g-dark-mode .form-select {
  background-color: var(--g2g-dm-input-bg);
  border-color: var(--g2g-dm-border);
  color: var(--g2g-dm-text);
}
body.g2g-dark-mode .form-control:focus, body.g2g-dark-mode .form-select:focus {
  border-color: var(--g2g-dm-accent);
  box-shadow: 0 0 0 3px rgba(var(--bs-primary-rgb, 236, 95, 0), 0.15);
}
body.g2g-dark-mode .form-label {
  color: var(--g2g-dm-text);
}
body.g2g-dark-mode .form-text {
  color: var(--g2g-dm-muted);
}
body.g2g-dark-mode .card {
  background-color: var(--g2g-dm-surface);
  border-color: var(--g2g-dm-border);
  color: var(--g2g-dm-text);
}
body.g2g-dark-mode .card-header {
  background-color: var(--g2g-dm-elevated);
  border-color: var(--g2g-dm-border);
}
body.g2g-dark-mode .modal-content {
  background-color: var(--g2g-dm-surface);
  color: var(--g2g-dm-text);
}
body.g2g-dark-mode .modal-header, body.g2g-dark-mode .modal-footer {
  border-color: var(--g2g-dm-border);
}
body.g2g-dark-mode .modal-header .btn-close {
  filter: invert(1);
}
body.g2g-dark-mode .offcanvas {
  background-color: var(--g2g-dm-surface);
  color: var(--g2g-dm-text);
}
body.g2g-dark-mode .offcanvas-header {
  border-color: var(--g2g-dm-border);
}
body.g2g-dark-mode .offcanvas .btn-close {
  filter: invert(1);
}
body.g2g-dark-mode.is-act-loginpage h1, body.g2g-dark-mode.is-act-loginpage .h1, body.g2g-dark-mode.is-act-loginpage h2, body.g2g-dark-mode.is-act-loginpage .h2, body.g2g-dark-mode.is-act-loginpage h5, body.g2g-dark-mode.is-act-loginpage .h5, body.g2g-dark-mode.is-act-registerpage h1, body.g2g-dark-mode.is-act-registerpage .h1, body.g2g-dark-mode.is-act-registerpage h2, body.g2g-dark-mode.is-act-registerpage .h2, body.g2g-dark-mode.is-act-registerpage h5, body.g2g-dark-mode.is-act-registerpage .h5, body.g2g-dark-mode.is-ctl-register h1, body.g2g-dark-mode.is-ctl-register .h1, body.g2g-dark-mode.is-ctl-register h2, body.g2g-dark-mode.is-ctl-register .h2, body.g2g-dark-mode.is-ctl-register h5, body.g2g-dark-mode.is-ctl-register .h5, body.g2g-dark-mode.is-ctl-auth h1, body.g2g-dark-mode.is-ctl-auth .h1, body.g2g-dark-mode.is-ctl-auth h2, body.g2g-dark-mode.is-ctl-auth .h2, body.g2g-dark-mode.is-ctl-auth h5, body.g2g-dark-mode.is-ctl-auth .h5 {
  color: #fff;
}
body.g2g-dark-mode.is-act-loginpage label, body.g2g-dark-mode.is-act-loginpage .form-text, body.g2g-dark-mode.is-act-registerpage label, body.g2g-dark-mode.is-act-registerpage .form-text, body.g2g-dark-mode.is-ctl-register label, body.g2g-dark-mode.is-ctl-register .form-text, body.g2g-dark-mode.is-ctl-auth label, body.g2g-dark-mode.is-ctl-auth .form-text {
  color: var(--g2g-dm-muted);
}
body.g2g-dark-mode.is-act-loginpage .account-register, body.g2g-dark-mode.is-act-registerpage .account-register, body.g2g-dark-mode.is-ctl-register .account-register, body.g2g-dark-mode.is-ctl-auth .account-register {
  background-color: var(--g2g-dm-bg);
  color: var(--g2g-dm-text);
}
body.g2g-dark-mode.is-act-loginpage .card-title, body.g2g-dark-mode.is-act-loginpage legend.card-title, body.g2g-dark-mode.is-act-loginpage legend, body.g2g-dark-mode.is-act-registerpage .card-title, body.g2g-dark-mode.is-act-registerpage legend.card-title, body.g2g-dark-mode.is-act-registerpage legend, body.g2g-dark-mode.is-ctl-register .card-title, body.g2g-dark-mode.is-ctl-register legend.card-title, body.g2g-dark-mode.is-ctl-register legend, body.g2g-dark-mode.is-ctl-auth .card-title, body.g2g-dark-mode.is-ctl-auth legend.card-title, body.g2g-dark-mode.is-ctl-auth legend {
  color: var(--g2g-dm-text);
  border-bottom-color: var(--g2g-dm-border);
}
body.g2g-dark-mode.is-act-checkoutregisterpage .header-minimal {
  background-color: var(--g2g-dm-bg);
  color: #fff;
  border-bottom-color: var(--g2g-dm-border);
}
body.g2g-dark-mode.is-act-checkoutregisterpage h2, body.g2g-dark-mode.is-act-checkoutregisterpage .h2, body.g2g-dark-mode.is-act-checkoutregisterpage h3, body.g2g-dark-mode.is-act-checkoutregisterpage .h3 {
  color: var(--g2g-dm-text);
}
body.g2g-dark-mode.is-act-checkoutregisterpage label {
  color: var(--g2g-dm-muted);
}
body.g2g-dark-mode .checkout-aside-summary {
  background-color: var(--g2g-dm-elevated);
  border-color: var(--g2g-dm-border);
  color: var(--g2g-dm-text);
}
body.g2g-dark-mode.is-act-cartpage .cart-table-header {
  color: var(--g2g-dm-text);
}
body.g2g-dark-mode.is-act-cartpage .checkout-product-table {
  background-color: var(--g2g-dm-surface);
}
body.g2g-dark-mode.is-act-cartpage .line-item-label {
  color: var(--g2g-dm-muted);
}
body.g2g-dark-mode.is-act-confirmpage .cart-table-header {
  background-color: var(--g2g-dm-surface);
  color: var(--g2g-dm-muted);
}
body.g2g-dark-mode.is-act-finishpage .finish-info .card {
  background-color: var(--g2g-dm-surface);
  border-color: var(--g2g-dm-border);
}
body.g2g-dark-mode.is-act-finishpage p {
  color: var(--g2g-dm-muted);
}
body.dreamtheme.dreamtheme.g2g-dark-mode .content-main .container-main .account-content .account-content-aside .account-aside {
  background-color: var(--g2g-dm-surface);
  border-color: transparent;
}
body.dreamtheme.dreamtheme.g2g-dark-mode .content-main .container-main .account-content .account-content-main .account-welcome {
  background-color: var(--g2g-dm-surface);
}
body.g2g-dark-mode .account-aside .account-aside-item {
  color: var(--g2g-dm-muted);
}
body.g2g-dark-mode .account-aside .account-aside-item.is-active {
  color: var(--g2g-dm-accent);
  border-left-color: var(--g2g-dm-accent);
}
body.g2g-dark-mode .account-welcome h1, body.g2g-dark-mode .account-welcome .h1 {
  color: var(--g2g-dm-accent);
}
body.g2g-dark-mode .order-table {
  background-color: var(--g2g-dm-surface);
}
body.g2g-dark-mode .order-table-header-heading {
  color: #fff;
}
body.g2g-dark-mode .address {
  color: var(--g2g-dm-muted);
}
body.g2g-dark-mode.is-act-recoveraccountform h1, body.g2g-dark-mode.is-act-recoveraccountform .h1 {
  color: #fff;
}
body.g2g-dark-mode.is-act-recoveraccountform .card-text {
  color: var(--g2g-dm-muted);
}
body.g2g-dark-mode .product-detail-buy {
  color: var(--g2g-dm-text);
}
body.g2g-dark-mode .product-detail-name {
  color: #fff;
}
body.g2g-dark-mode .product-detail-price {
  color: var(--g2g-dm-text);
}
body.g2g-dark-mode .product-detail-description-text {
  color: var(--g2g-dm-muted);
}
body.g2g-dark-mode .product-detail-media {
  background-color: transparent;
}
body.g2g-dark-mode .gallery-slider, body.g2g-dark-mode .base-slider.gallery-slider {
  background-color: transparent;
}
body.g2g-dark-mode .product-detail-form-container {
  background-color: transparent;
  color: var(--g2g-dm-text);
}
body.g2g-dark-mode .product-detail-configurator-option label {
  border-color: #475569;
  color: var(--g2g-dm-text);
}
body.g2g-dark-mode .quantity-selector-group.quantity-selector-group {
  border-bottom-color: rgba(241, 245, 249, 0.3);
}
body.g2g-dark-mode .quantity-selector-input {
  color: var(--g2g-dm-text);
}
body.g2g-dark-mode .product-detail-delivery, body.g2g-dark-mode .delivery-information {
  color: var(--g2g-dm-muted);
}
body.g2g-dark-mode .product-detail-delivery .icon, body.g2g-dark-mode .delivery-information .icon {
  color: var(--g2g-dm-muted);
}
body.g2g-dark-mode .product-detail-delivery svg, body.g2g-dark-mode .delivery-information svg {
  fill: currentColor;
}
body.g2g-dark-mode .g2g-additional-info-header-title {
  color: var(--g2g-dm-muted);
}
body.g2g-dark-mode .g2g-addp-list {
  color: var(--g2g-dm-text);
}
body.dreamtheme.dreamtheme.g2g-dark-mode.is-ctl-product .product-detail-buy .g2g-addp-list .g2g-addp-content {
  background: rgba(241, 245, 249, 0.08);
  color: var(--g2g-dm-text);
}
body.dreamtheme.dreamtheme.g2g-dark-mode.is-ctl-product .product-detail-buy .g2g-addp-list .g2g-addp-content .icon {
  color: var(--g2g-dm-text);
}
body.dreamtheme.dreamtheme.g2g-dark-mode.is-ctl-product .product-detail-buy .g2g-addp-list .g2g-addp-content svg {
  fill: currentColor;
}
body.dreamtheme.dreamtheme.g2g-dark-mode.is-ctl-product .product-detail-tabs.cms-element-product-description-reviews .nav-item .nav-link.product-detail-tab-navigation-link, body.dreamtheme.dreamtheme.g2g-dark-mode.is-ctl-product .product-detail-tabs.cms-element-product-description-reviews .nav-item .nav-link.description-tab, body.dreamtheme.dreamtheme.g2g-dark-mode.is-ctl-product .product-detail-tabs.cms-element-product-description-reviews .nav-item .nav-link.review-tab {
  color: var(--g2g-dm-muted);
  background: var(--g2g-dm-surface);
  border-color: var(--g2g-dm-border);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
body.dreamtheme.dreamtheme.g2g-dark-mode.is-ctl-product .product-detail-tabs.cms-element-product-description-reviews .nav-item .nav-link.product-detail-tab-navigation-link:hover:not(.active), body.dreamtheme.dreamtheme.g2g-dark-mode.is-ctl-product .product-detail-tabs.cms-element-product-description-reviews .nav-item .nav-link.description-tab:hover:not(.active), body.dreamtheme.dreamtheme.g2g-dark-mode.is-ctl-product .product-detail-tabs.cms-element-product-description-reviews .nav-item .nav-link.review-tab:hover:not(.active) {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
body.dreamtheme.dreamtheme.g2g-dark-mode.is-ctl-product .product-detail-tabs.cms-element-product-description-reviews .nav-item .nav-link.product-detail-tab-navigation-link.active, body.dreamtheme.dreamtheme.g2g-dark-mode.is-ctl-product .product-detail-tabs.cms-element-product-description-reviews .nav-item .nav-link.description-tab.active, body.dreamtheme.dreamtheme.g2g-dark-mode.is-ctl-product .product-detail-tabs.cms-element-product-description-reviews .nav-item .nav-link.review-tab.active {
  color: #fff;
  background: var(--bs-primary, #ec5f00);
  border-color: var(--bs-primary, #ec5f00);
}
body.dreamtheme.dreamtheme.g2g-dark-mode.is-ctl-product .product-detail-tabs.cms-element-product-description-reviews .product-detail-tabs-content, body.dreamtheme.dreamtheme.g2g-dark-mode.is-ctl-product .cms-element-product-description-reviews .product-detail-tabs-content {
  background: var(--g2g-dm-surface);
  color: var(--g2g-dm-muted);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(241, 245, 249, 0.06);
}
body.dreamtheme.dreamtheme.g2g-dark-mode.is-ctl-product .product-detail-tabs .nav-link {
  color: var(--g2g-dm-muted);
  border-color: var(--g2g-dm-border);
  background-color: transparent;
}
body.dreamtheme.dreamtheme.g2g-dark-mode.is-ctl-product .product-detail-tabs .nav-link.active {
  color: var(--g2g-dm-text);
  border-bottom-color: var(--g2g-dm-accent);
  background-color: transparent;
}
body.dreamtheme.dreamtheme.g2g-dark-mode.is-ctl-product .product-detail-tab-content, body.dreamtheme.dreamtheme.g2g-dark-mode.is-ctl-product .tab-content {
  background-color: transparent;
  color: var(--g2g-dm-muted);
}
body.dreamtheme.dreamtheme.g2g-dark-mode.is-ctl-product .product-detail-description.tab-pane-container {
  background-color: transparent;
  color: var(--g2g-dm-muted);
}
body.dreamtheme.dreamtheme.g2g-dark-mode.is-ctl-product .product-detail-cross-selling .nav-link {
  color: var(--g2g-dm-muted);
  background: var(--g2g-dm-surface);
  border-color: var(--g2g-dm-border);
}
body.dreamtheme.dreamtheme.g2g-dark-mode.is-ctl-product .product-detail-cross-selling .nav-link.active {
  color: #fff;
  background: var(--bs-primary, #ec5f00);
  border-color: var(--bs-primary, #ec5f00);
}
body.g2g-dark-mode .g2g-details-card__row {
  background-color: transparent;
  color: var(--g2g-dm-muted);
  border-color: var(--g2g-dm-border);
}
body.g2g-dark-mode .g2g-pdp-properties, body.g2g-dark-mode .product-detail-properties-table, body.g2g-dark-mode .product-properties-table {
  color: var(--g2g-dm-muted);
  background-color: transparent;
}
body.g2g-dark-mode .g2g-pdp-properties td, body.g2g-dark-mode .g2g-pdp-properties th, body.g2g-dark-mode .g2g-pdp-properties tr, body.g2g-dark-mode .product-detail-properties-table td, body.g2g-dark-mode .product-detail-properties-table th, body.g2g-dark-mode .product-detail-properties-table tr, body.g2g-dark-mode .product-properties-table td, body.g2g-dark-mode .product-properties-table th, body.g2g-dark-mode .product-properties-table tr {
  border-color: var(--g2g-dm-border);
}
body.g2g-dark-mode .g2g-pdp-properties th, body.g2g-dark-mode .product-detail-properties-table th, body.g2g-dark-mode .product-properties-table th {
  color: var(--g2g-dm-text);
}
body.g2g-dark-mode .g2g-pdp-properties td, body.g2g-dark-mode .product-detail-properties-table td, body.g2g-dark-mode .product-properties-table td {
  color: var(--g2g-dm-muted);
}
body.g2g-dark-mode .g2g-pdp-prop-row {
  color: var(--g2g-dm-muted);
  border-color: var(--g2g-dm-border);
}
body.g2g-dark-mode .g2g-pdp-desc-card, body.g2g-dark-mode .g2g-properties-card {
  background-color: var(--g2g-dm-surface);
  border-color: var(--g2g-dm-border);
  color: var(--g2g-dm-muted);
}
body.g2g-dark-mode .g2g-pdp-icon-grid-wrapper, body.g2g-dark-mode .g2g-pdp-usp {
  color: var(--g2g-dm-text);
  background-color: transparent;
}
body.g2g-dark-mode .g2g-pdp-icon-grid-wrapper .icon, body.g2g-dark-mode .g2g-pdp-usp .icon {
  color: var(--g2g-dm-text);
}
body.g2g-dark-mode .g2g-pdp-icon-grid-wrapper svg, body.g2g-dark-mode .g2g-pdp-usp svg {
  fill: currentColor;
}
body.g2g-dark-mode .g2g-pdp-icon-grid__item {
  color: var(--g2g-dm-muted);
  border-color: var(--g2g-dm-border);
}
body.g2g-dark-mode .g2g-pdp-icon-grid__title {
  color: var(--g2g-dm-text);
}
body.g2g-dark-mode .g2g-trust-banner {
  background-color: var(--g2g-dm-surface);
  border-color: var(--g2g-dm-border);
  color: var(--g2g-dm-text);
}
body.g2g-dark-mode .g2g-pdp-configurator .g2g-pill-chip {
  background: var(--g2g-dm-surface);
  border-color: var(--g2g-dm-border);
  color: var(--g2g-dm-text);
}
body.g2g-dark-mode .g2g-pdp-configurator .g2g-pill-chip.is-active {
  border-color: var(--g2g-dm-accent);
}
body.g2g-dark-mode .g2g-pdp-configurator .g2g-pill-chip.is-soldout {
  opacity: 0.45;
}
body.g2g-dark-mode .g2g-pdp-wishlist-overlay {
  background: rgba(30, 41, 59, 0.85);
  border-color: var(--g2g-dm-border);
  color: var(--g2g-dm-text);
}
body.g2g-dark-mode .g2g-pdp-wishlist-overlay .icon {
  color: var(--g2g-dm-text);
}
body.g2g-dark-mode .g2g-pdp-wishlist-overlay svg {
  fill: currentColor;
}
body.g2g-dark-mode .g2g-stock-overlay {
  background: rgba(30, 41, 59, 0.9);
  color: var(--g2g-dm-text);
}
body.g2g-dark-mode .g2g-staffel-toggle {
  color: var(--g2g-dm-muted);
  border-color: var(--g2g-dm-border);
}
body.g2g-dark-mode .g2g-staffel-body {
  background: var(--g2g-dm-surface);
  border-color: var(--g2g-dm-border);
  color: var(--g2g-dm-text);
}
body.g2g-dark-mode .btn-primary {
  background-color: var(--g2g-dm-text);
  color: var(--g2g-dm-bg);
  border-color: var(--g2g-dm-text);
}
body.g2g-dark-mode .btn-primary:hover {
  background-color: var(--g2g-dm-accent);
  color: #fff;
  border-color: var(--g2g-dm-accent);
}
body.g2g-dark-mode .btn-outline-primary {
  color: #fff;
  border-color: #fff;
}
body.g2g-dark-mode .btn-outline-primary:hover {
  background-color: var(--g2g-dm-accent);
  border-color: var(--g2g-dm-accent);
}
body.g2g-dark-mode .btn-outline-secondary {
  color: var(--g2g-dm-text);
  border-color: var(--g2g-dm-border);
}
body.g2g-dark-mode .list-group-item {
  background-color: transparent;
  border-color: var(--g2g-dm-border);
  color: var(--g2g-dm-text);
}
body.g2g-dark-mode .table {
  color: var(--g2g-dm-text);
  border-color: var(--g2g-dm-border);
}
body.g2g-dark-mode .table thead th {
  background-color: var(--g2g-dm-surface);
  color: var(--g2g-dm-text);
  border-color: var(--g2g-dm-border);
}
body.g2g-dark-mode .alert-info {
  background-color: rgba(var(--bs-primary-rgb, 236, 95, 0), 0.1);
  color: var(--g2g-dm-accent);
}
body.g2g-dark-mode .alert-success {
  background-color: rgba(34, 197, 94, 0.1);
  color: #4ade80;
}
body.g2g-dark-mode .alert-warning {
  background-color: rgba(250, 204, 21, 0.1);
  color: #fbbf24;
}
body.g2g-dark-mode .alert-danger {
  background-color: rgba(248, 113, 113, 0.1);
  color: #f87171;
}
body.g2g-dark-mode hr {
  border-color: var(--g2g-dm-border);
}
body.g2g-dark-mode .text-body-secondary {
  color: var(--g2g-dm-muted);
}
body.g2g-dark-mode .dropdown-menu {
  background-color: var(--g2g-dm-surface);
  border-color: var(--g2g-dm-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
body.g2g-dark-mode .dropdown-item {
  color: var(--g2g-dm-text);
}
body.g2g-dark-mode .dropdown-item:hover {
  background-color: var(--g2g-dm-hover);
  color: var(--g2g-dm-text);
}
body.g2g-dark-mode .dropdown-divider {
  border-color: var(--g2g-dm-border);
}
body.g2g-dark-mode .cookie-permission-container {
  background-color: var(--g2g-dm-surface);
  border-color: var(--g2g-dm-border);
}
body.g2g-dark-mode .g2g-mobile-bottombar__item {
  color: var(--g2g-dm-muted);
}
body.g2g-dark-mode .scroll-up-button, body.g2g-dark-mode .btn-scroll-top {
  background-color: var(--g2g-dm-surface);
  color: var(--g2g-dm-text);
  border-color: var(--g2g-dm-border);
}
body.dreamtheme.dreamtheme.dreamtheme.g2g-dark-mode .cms-element-product-listing.g2g-card-layout-cart-in-image:not(.g2g-listing-view-list) .product-box.box-standard {
  background: transparent;
}
body.dreamtheme.dreamtheme.dreamtheme.g2g-dark-mode .cms-element-product-listing.g2g-card-layout-cart-in-image:not(.g2g-listing-view-list) .product-box .product-info {
  background: transparent;
  color: var(--g2g-dm-text);
}
body.dreamtheme.dreamtheme.dreamtheme.g2g-dark-mode .cms-element-product-listing.g2g-card-layout-cart-in-image:not(.g2g-listing-view-list) .product-box .product-name-headline, body.dreamtheme.dreamtheme.dreamtheme.g2g-dark-mode .cms-element-product-listing.g2g-card-layout-cart-in-image:not(.g2g-listing-view-list) .product-box .product-name {
  color: var(--g2g-dm-text);
}
body.dreamtheme.dreamtheme.dreamtheme.g2g-dark-mode .cms-element-product-listing.g2g-card-layout-cart-in-image:not(.g2g-listing-view-list) .product-box .product-price, body.dreamtheme.dreamtheme.dreamtheme.g2g-dark-mode .cms-element-product-listing.g2g-card-layout-cart-in-image:not(.g2g-listing-view-list) .product-box .product-cheapest-price-price {
  color: var(--g2g-dm-text);
}
body.dreamtheme.dreamtheme.dreamtheme.g2g-dark-mode .cms-element-product-listing.g2g-card-layout-cart-in-image:not(.g2g-listing-view-list) .product-box .g2g-product-rating {
  color: var(--g2g-dm-muted);
}
body.dreamtheme.dreamtheme.dreamtheme.g2g-dark-mode .cms-element-product-listing.g2g-card-layout-cart-in-image:not(.g2g-listing-view-list) .product-box .product-image-wrapper > .product-wishlist {
  background: rgba(30, 41, 59, 0.85);
  color: var(--g2g-dm-text);
}
body.dreamtheme.dreamtheme.dreamtheme.g2g-dark-mode .cms-element-product-listing.g2g-card-layout-cart-in-image:not(.g2g-listing-view-list) .product-box .product-image-wrapper > .product-wishlist .btn, body.dreamtheme.dreamtheme.dreamtheme.g2g-dark-mode .cms-element-product-listing.g2g-card-layout-cart-in-image:not(.g2g-listing-view-list) .product-box .product-image-wrapper > .product-wishlist-action-circle .btn {
  color: var(--g2g-dm-text);
}
body.dreamtheme.dreamtheme.dreamtheme.g2g-dark-mode .cms-element-product-listing.g2g-card-layout-quantity-cart:not(.g2g-listing-view-list) .product-box.box-standard {
  background: var(--g2g-dm-surface);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), 0 0 1px rgba(0, 0, 0, 0.2);
}
body.dreamtheme.dreamtheme.dreamtheme.g2g-dark-mode .cms-element-product-listing.g2g-card-layout-quantity-cart:not(.g2g-listing-view-list) .product-box .product-info {
  background: transparent;
  color: var(--g2g-dm-text);
}
body.dreamtheme.dreamtheme.dreamtheme.g2g-dark-mode .cms-element-product-listing.g2g-card-layout-quantity-cart:not(.g2g-listing-view-list) .product-box .product-name-headline, body.dreamtheme.dreamtheme.dreamtheme.g2g-dark-mode .cms-element-product-listing.g2g-card-layout-quantity-cart:not(.g2g-listing-view-list) .product-box .product-name {
  color: var(--g2g-dm-text);
}
body.dreamtheme.dreamtheme.dreamtheme.g2g-dark-mode .cms-element-product-listing.g2g-card-layout-quantity-cart:not(.g2g-listing-view-list) .product-box .product-price, body.dreamtheme.dreamtheme.dreamtheme.g2g-dark-mode .cms-element-product-listing.g2g-card-layout-quantity-cart:not(.g2g-listing-view-list) .product-box .product-cheapest-price-price {
  color: var(--g2g-dm-text);
}
body.dreamtheme.dreamtheme.dreamtheme.g2g-dark-mode .cms-element-product-listing.g2g-card-layout-quantity-cart:not(.g2g-listing-view-list) .product-box .product-cheapest-price-from {
  color: var(--g2g-dm-muted);
}
body.dreamtheme.dreamtheme.dreamtheme.g2g-dark-mode .cms-element-product-listing.g2g-card-layout-quantity-cart:not(.g2g-listing-view-list) .product-box .g2g-product-rating {
  color: var(--g2g-dm-muted);
}
body.dreamtheme.dreamtheme.dreamtheme.g2g-dark-mode .cms-element-product-listing.g2g-card-layout-add-on-image:not(.g2g-listing-view-list) .product-box.box-standard {
  background: var(--g2g-dm-surface);
}
body.dreamtheme.dreamtheme.dreamtheme.g2g-dark-mode .cms-element-product-listing.g2g-card-layout-add-on-image:not(.g2g-listing-view-list) .product-box .product-image-wrapper {
  background: var(--g2g-dm-bg);
}
body.dreamtheme.dreamtheme.dreamtheme.g2g-dark-mode .cms-element-product-listing.g2g-card-layout-add-on-image:not(.g2g-listing-view-list) .product-box .product-info {
  background: transparent;
  color: var(--g2g-dm-text);
}
body.dreamtheme.dreamtheme.dreamtheme.g2g-dark-mode .cms-element-product-listing.g2g-card-layout-add-on-image:not(.g2g-listing-view-list) .product-box .product-name-headline, body.dreamtheme.dreamtheme.dreamtheme.g2g-dark-mode .cms-element-product-listing.g2g-card-layout-add-on-image:not(.g2g-listing-view-list) .product-box .product-name {
  color: var(--g2g-dm-text);
}
body.dreamtheme.dreamtheme.dreamtheme.g2g-dark-mode .cms-element-product-listing.g2g-card-layout-add-on-image:not(.g2g-listing-view-list) .product-box .product-price, body.dreamtheme.dreamtheme.dreamtheme.g2g-dark-mode .cms-element-product-listing.g2g-card-layout-add-on-image:not(.g2g-listing-view-list) .product-box .product-cheapest-price-price {
  color: var(--g2g-dm-text);
}
body.dreamtheme.dreamtheme.dreamtheme.g2g-dark-mode .cms-element-product-listing.g2g-card-layout-add-on-image:not(.g2g-listing-view-list) .product-box .product-cheapest-price-from {
  color: var(--g2g-dm-muted);
}
body.dreamtheme.dreamtheme.dreamtheme.g2g-dark-mode .cms-element-product-listing.g2g-card-layout-add-on-image:not(.g2g-listing-view-list) .product-box .product-price-unit {
  color: var(--g2g-dm-muted);
}
body.dreamtheme.dreamtheme.g2g-dark-mode .cms-element-product-listing.g2g-card-layout-classic .product-box .product-action .g2g-buy-row .g2g-classic-stepper-wrap {
  background: rgba(241, 245, 249, 0.12);
}
body.dreamtheme.dreamtheme.g2g-dark-mode .cms-element-product-listing.g2g-card-layout-classic .product-box .product-action .g2g-buy-row .g2g-classic-stepper-wrap .g2g-qty-minus, body.dreamtheme.dreamtheme.g2g-dark-mode .cms-element-product-listing.g2g-card-layout-classic .product-box .product-action .g2g-buy-row .g2g-classic-stepper-wrap .g2g-qty-plus {
  background: rgba(241, 245, 249, 0.18);
  color: var(--g2g-dm-text);
}
body.dreamtheme.dreamtheme.g2g-dark-mode .cms-element-product-listing.g2g-card-layout-classic .product-box .product-action .g2g-buy-row .g2g-classic-stepper-wrap .g2g-qty-minus:hover, body.dreamtheme.dreamtheme.g2g-dark-mode .cms-element-product-listing.g2g-card-layout-classic .product-box .product-action .g2g-buy-row .g2g-classic-stepper-wrap .g2g-qty-plus:hover {
  background: rgba(241, 245, 249, 0.28);
}
body.dreamtheme.dreamtheme.g2g-dark-mode .cms-element-product-listing.g2g-card-layout-classic .product-box .product-action .g2g-buy-row .g2g-classic-stepper-wrap .g2g-qty-display {
  color: var(--g2g-dm-text);
}
body.dreamtheme.dreamtheme.g2g-dark-mode .cms-element-product-listing.g2g-card-layout-classic .product-box .product-action .g2g-buy-row .g2g-classic-stepper-wrap .g2g-qty-unit-inline {
  color: var(--g2g-dm-muted);
}
body.dreamtheme.dreamtheme.g2g-dark-mode .cms-element-product-listing.g2g-card-layout-classic .product-box .product-action .btn.btn-detail {
  --bs-btn-color: var(--g2g-dm-text);
  color: var(--g2g-dm-text);
  background-color: rgba(241, 245, 249, 0.12);
  border-color: rgba(241, 245, 249, 0.12);
}
.g2g-dark-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}
.g2g-dark-toggle svg {
  width: 22px;
  height: 22px;
}
body:not(.g2g-dark-mode) .g2g-dark-toggle__icon-sun {
  display: none;
}
body:not(.g2g-dark-mode) .g2g-dark-toggle__icon-moon {
  display: inline-flex;
}
body.g2g-dark-mode .g2g-dark-toggle__icon-sun {
  display: inline-flex;
}
body.g2g-dark-mode .g2g-dark-toggle__icon-moon {
  display: none;
}
@supports (animation-timeline: view()) {
  body.g2g-wow-material-reveals .product-detail-tabs .tab-pane, body.g2g-wow-material-reveals .product-detail-properties .product-detail-properties-table, body.g2g-wow-material-reveals .product-detail-description-text, body.g2g-wow-material-reveals .product-cross-selling, body.g2g-wow-material-reveals .product-detail-review-list, body.g2g-wow-material-reveals .g2g-material-card {
    opacity: 0;
    transform: translateY(var(--g2g-reveal-distance, 30px));
    animation: g2g-material-reveal linear both;
    animation-timeline: view();
    animation-range: entry 10% cover 25%;
  }
  @media (prefers-reduced-motion: reduce) {
    body.g2g-wow-material-reveals .product-detail-tabs .tab-pane, body.g2g-wow-material-reveals .product-detail-properties .product-detail-properties-table, body.g2g-wow-material-reveals .product-detail-description-text, body.g2g-wow-material-reveals .product-cross-selling, body.g2g-wow-material-reveals .product-detail-review-list, body.g2g-wow-material-reveals .g2g-material-card {
      animation: none;
      opacity: 1;
      transform: none;
    }
  }
}
@keyframes g2g-material-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.g2g-material-card {
  background: var(--g2g-token-color-neutral-surface, #f8fafc);
  border: 1px solid var(--g2g-token-color-neutral-border, #e2e8f0);
  border-radius: var(--g2g-token-radius-md, 0.5rem);
  padding: var(--g2g-token-spacing-lg, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: var(--g2g-token-spacing-sm, 0.5rem);
}
.g2g-material-card__icon {
  width: 32px;
  height: 32px;
  color: var(--g2g-token-color-brand-primary-text, #64748b);
  /* Waltraud — WCAG AA Icon */
}
.g2g-material-card__title {
  font-size: 0.95rem;
  font-weight: var(--g2g-token-typo-weight-bold, 600);
  color: var(--g2g-token-color-neutral-text-default, #0f172a);
  margin: 0;
}
.g2g-material-card__value {
  font-size: 1.5rem;
  font-weight: var(--g2g-token-typo-weight-bold, 700);
  color: var(--g2g-token-color-brand-primary-text, #64748b);
  /* Waltraud — WCAG AA Headline-Value */
  margin: 0;
  line-height: 1;
}
.g2g-material-card__description {
  font-size: 0.85rem;
  color: var(--g2g-token-color-neutral-text-muted, #64748b);
  margin: 0;
}
.g2g-material-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--g2g-token-spacing-md, 1rem);
  margin: var(--g2g-token-spacing-xl, 2rem) 0;
}
body.g2g-wow-text-wrap-balance h1, body.g2g-wow-text-wrap-balance .h1, body.g2g-wow-text-wrap-balance h2, body.g2g-wow-text-wrap-balance .h2, body.g2g-wow-text-wrap-balance h3, body.g2g-wow-text-wrap-balance .h3, body.g2g-wow-text-wrap-balance h4, body.g2g-wow-text-wrap-balance .h4, body.g2g-wow-text-wrap-balance h5, body.g2g-wow-text-wrap-balance .h5, body.g2g-wow-text-wrap-balance h6, body.g2g-wow-text-wrap-balance .h6 {
  text-wrap: balance;
}
body.g2g-wow-css-magnetic-buttons .btn-primary, body.g2g-wow-css-magnetic-buttons .btn-buy, body.g2g-wow-css-magnetic-buttons .btn-detail, body.g2g-wow-css-magnetic-buttons [data-magnetic] {
  transition: transform 0.18s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  body.g2g-wow-css-magnetic-buttons .btn-primary, body.g2g-wow-css-magnetic-buttons .btn-buy, body.g2g-wow-css-magnetic-buttons .btn-detail, body.g2g-wow-css-magnetic-buttons [data-magnetic] {
    transition: none;
  }
}
body.g2g-wow-noise-grain::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.04;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.6'/></svg>");
}
.g2g-cursor-trail-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--g2g-token-color-brand-primary, #64748b);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.2s;
}
@media (hover: none) {
  .g2g-cursor-trail-dot {
    display: none;
  }
}
body.g2g-wow-ar-quick-look .g2g-ar-button {
  display: inline-flex;
  align-items: center;
  gap: var(--g2g-token-spacing-sm, 0.5rem);
  padding: var(--g2g-token-spacing-sm, 0.5rem) var(--g2g-token-spacing-lg, 1.5rem);
  background: var(--g2g-token-color-neutral-text-default, #0f172a);
  color: var(--g2g-token-color-neutral-background, #ffffff);
  border: 1px solid var(--g2g-token-color-neutral-text-default, #0f172a);
  border-radius: var(--g2g-token-radius-md, 0.5rem);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
}
body.g2g-wow-ar-quick-look .g2g-ar-button::before {
  content: "◐";
  font-size: 1.2em;
  line-height: 1;
}
body.g2g-wow-ar-quick-look .g2g-ar-button:hover {
  background: var(--g2g-token-color-brand-primary, #64748b);
  border-color: var(--g2g-token-color-brand-primary, #64748b);
  color: #ffffff;
}
body.g2g-wow-ar-quick-look model-viewer {
  width: 100%;
  height: 400px;
  background-color: var(--g2g-token-color-neutral-surface, #f8fafc);
  --poster-color: transparent;
  border-radius: var(--g2g-token-radius-md, 0.5rem);
}
.cms-page.g2g-glass {
  background: var(--g2g-glass-gradient, linear-gradient(135deg, #667eea, #764ba2));
  background-attachment: fixed;
}
.cms-page.g2g-glass .cms-section:not([style*="background-color"]):not([style*="background-image"]) {
  background: transparent;
}
.g2g-glass .cms-breadcrumb, .g2g-glass .breadcrumb-container {
  background-color: rgba(255, 255, 255, 0.15);
}
.g2g-glass .sidebar-main, .g2g-glass .cms-section-sidebar-sidebar, .g2g-glass .cms-section-sidebar .cms-section-sidebar-sidebar {
  background-color: transparent;
}
.g2g-glass .cms-section-sidebar-mobile-wrap, .g2g-glass .cms-section-sidebar-mobile-wrap.boxed {
  background-color: transparent;
}
.g2g-glass .cms-element-category-navigation {
  background-color: transparent;
  border-color: transparent;
}
.g2g-glass .category-navigation-entry {
  border-bottom: none;
}
.g2g-glass .filter-panel, .g2g-glass .filter-multi-select-content, .g2g-glass .cms-element-product-listing-filters {
  background-color: transparent;
}
.g2g-glass .sorting, .g2g-glass .listing-sorting select {
  background-color: transparent;
  border: none;
  box-shadow: none;
}
.g2g-glass .sorting.form-select, .g2g-glass .g2g-per-page-select.form-select {
  background: rgba(255, 255, 255, calc(var(--g2g-glass-alpha, 15) / 100));
  backdrop-filter: blur(var(--g2g-glass-blur, 20px)) saturate(var(--g2g-glass-saturate, 160%));
  -webkit-backdrop-filter: blur(var(--g2g-glass-blur, 20px)) saturate(var(--g2g-glass-saturate, 160%));
  border: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.g2g-glass .sorting.form-select::before, .g2g-glass .g2g-per-page-select.form-select::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.06) 45%, rgba(255, 255, 255, 0.18) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}
.g2g-glass .g2g-listing-view-toggle__btn {
  background: rgba(255, 255, 255, calc(var(--g2g-glass-alpha, 15) / 100));
  backdrop-filter: blur(var(--g2g-glass-blur, 20px)) saturate(var(--g2g-glass-saturate, 160%));
  -webkit-backdrop-filter: blur(var(--g2g-glass-blur, 20px)) saturate(var(--g2g-glass-saturate, 160%));
  border: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-radius: 10px;
}
.g2g-glass .cms-section-sidebar-main-content, .g2g-glass .cms-section-default {
  background-color: transparent;
}
.g2g-glass .card {
  background-color: transparent;
}
.g2g-glass .product-box.box-standard {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
  background: transparent;
  border: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.g2g-glass .product-box.box-standard::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.06) 45%, rgba(255, 255, 255, 0.18) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}
.g2g-glass .product-box.box-standard .card-body {
  padding: 0;
}
.g2g-glass .product-box.box-standard .product-image-wrapper {
  background-color: #fff;
  margin-bottom: 0;
}
.g2g-glass .product-box.box-standard .product-image-link {
  background-color: #fff;
}
.g2g-glass .product-box.box-standard .product-info {
  background: rgba(255, 255, 255, calc(var(--g2g-glass-alpha, 15) / 100));
  backdrop-filter: blur(var(--g2g-glass-blur, 20px)) saturate(var(--g2g-glass-saturate, 160%));
  -webkit-backdrop-filter: blur(var(--g2g-glass-blur, 20px)) saturate(var(--g2g-glass-saturate, 160%));
  border: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
}
.g2g-glass .product-box.box-standard .product-info::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, transparent 40%);
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
  transition: opacity 0.35s ease;
}
.g2g-glass .product-box.box-standard .product-info .g2g-product-rating, .g2g-glass .product-box.box-standard .product-info .product-name-headline {
  width: 100%;
  flex-shrink: 0;
}
.g2g-glass .product-box.box-standard .product-price-info {
  text-align: center;
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.g2g-glass .product-box.box-standard .product-action {
  flex-shrink: 0;
  width: 100%;
}
.g2g-glass .product-box.box-standard .product-badges {
  z-index: 3;
}
.g2g-glass .product-box.box-standard .badge, .g2g-glass .product-box.box-standard .badge-stock2gether {
  background: rgba(20, 40, 32, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 99px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  font-size: 12px;
}
.g2g-glass .product-box.box-standard .badge-stock2gether.is-out {
  background: rgba(180, 40, 40, 0.4);
}
.g2g-glass .product-box.box-standard .product-price {
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 99px;
  padding: 10px 26px;
  height: 44px;
  line-height: 1;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.g2g-glass .product-box.box-standard .product-name, .g2g-glass .product-box.box-standard .product-name a {
  color: #fff;
}
.g2g-glass .product-box.box-standard .product-info .g2g-product-sku, .g2g-glass .product-box.box-standard .product-info .g2g-sku-row, .g2g-glass .product-box.box-standard .product-info .g2g-product-card-manufacturer, .g2g-glass .product-box.box-standard .product-info .product-description-short, .g2g-glass .product-box.box-standard .product-info .g2g-grid-description, .g2g-glass .product-box.box-standard .product-info .g2g-rating-value, .g2g-glass .product-box.box-standard .product-info .g2g-rating-count, .g2g-glass .product-box.box-standard .product-info .g2g-list-variants__label, .g2g-glass .product-box.box-standard .product-info .g2g-list-variants__more {
  color: #fff;
}
.g2g-glass .product-box.box-standard .g2g-list-variants__pill {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.g2g-glass .product-box.box-standard .star-empty {
  color: rgba(255, 255, 255, 0.35);
}
.g2g-glass .product-box.box-standard:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2), 0 0 40px rgba(100, 150, 255, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.g2g-glass .product-box.box-standard:hover .product-info::after {
  opacity: 1;
}
.g2g-glass .cms-block-category-navigation .cms-element-category-navigation {
  background: rgba(255, 255, 255, calc(var(--g2g-glass-alpha, 15) / 100));
  backdrop-filter: blur(var(--g2g-glass-blur, 20px)) saturate(var(--g2g-glass-saturate, 160%));
  -webkit-backdrop-filter: blur(var(--g2g-glass-blur, 20px)) saturate(var(--g2g-glass-saturate, 160%));
  border: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.g2g-glass .cms-block-category-navigation .cms-element-category-navigation::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.06) 45%, rgba(255, 255, 255, 0.18) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}
.g2g-glass .filter-panel-wrapper, .g2g-glass .cms-element-product-listing-filters {
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.g2g-glass .filter-multi-select-checkbox, .g2g-glass .form-check-input {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: transparent;
}
.g2g-glass .filter-range-slider .min-input, .g2g-glass .filter-range-slider .max-input, .g2g-glass input.min-input, .g2g-glass input.max-input {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: transparent;
}
.g2g-glass .filter-range-unit {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: transparent;
}
.g2g-glass .filter-panel-item-dropdown, .g2g-glass .filter-multi-select-list {
  background-color: transparent;
}
.g2g-glass [data-g2g-glass], .g2g-glass .g2g-glass-element {
  background: rgba(255, 255, 255, calc(var(--g2g-glass-alpha, 15) / 100));
  backdrop-filter: blur(var(--g2g-glass-blur, 20px)) saturate(var(--g2g-glass-saturate, 160%));
  -webkit-backdrop-filter: blur(var(--g2g-glass-blur, 20px)) saturate(var(--g2g-glass-saturate, 160%));
  border: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  position: relative;
  border-radius: var(--g2g-token-radius-lg, 1rem);
  overflow: hidden;
}
.g2g-glass [data-g2g-glass]::before, .g2g-glass .g2g-glass-element::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.06) 45%, rgba(255, 255, 255, 0.18) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}
.dreamtheme .content-main .cms-page.g2g-glass .cms-sections .cms-section .cms-section-default.boxed, .dreamtheme .content-main .cms-page.g2g-glass .cms-sections .cms-section .cms-section-sidebar.boxed {
  background-color: transparent;
}
.container-main:has(.cms-page.g2g-glass) > .cms-breadcrumb {
  background-color: rgba(255, 255, 255, 0.15);
}
.dreamtheme .cms-page.g2g-glass .product-box .product-info .product-price-info .product-price-wrapper .product-price {
  padding: 10px 26px;
}
.dreamtheme .cms-page.g2g-glass .product-box .product-info .product-name.product-name, .dreamtheme .cms-page.g2g-glass .product-box .product-info .product-name.product-name a {
  color: var(--g2g-token-color-neutral-text-default, #000);
}
.dreamtheme .cms-page.g2g-glass .cms-block-category-navigation .cms-block-container .cms-element-category-navigation {
  border: none;
}
.dreamtheme .cms-page.g2g-glass .cms-block-sidebar-filter .filter-panel-wrapper .filter-panel-item-toggle, .dreamtheme .cms-page.g2g-glass .cms-block-sidebar-filter .filter-panel-wrapper .filter-boolean {
  background: rgba(255, 255, 255, calc(var(--g2g-glass-alpha, 15) / 100));
  backdrop-filter: blur(var(--g2g-glass-blur, 20px)) saturate(var(--g2g-glass-saturate, 160%));
  -webkit-backdrop-filter: blur(var(--g2g-glass-blur, 20px)) saturate(var(--g2g-glass-saturate, 160%));
  border: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.dreamtheme .cms-page.g2g-glass .cms-block-sidebar-filter .filter-panel-wrapper .filter-panel-item-toggle::before, .dreamtheme .cms-page.g2g-glass .cms-block-sidebar-filter .filter-panel-wrapper .filter-boolean::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.06) 45%, rgba(255, 255, 255, 0.18) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}
.dreamtheme .cms-page.g2g-glass .cms-block-sidebar-filter .filter-panel-wrapper .filter-panel-item-toggle:hover, .dreamtheme .cms-page.g2g-glass .cms-block-sidebar-filter .filter-panel-wrapper .filter-boolean:hover {
  background: rgba(255, 255, 255, 0.25);
  color: inherit;
}
.dreamtheme .cms-page.g2g-glass .category-navigation-link.is-active {
  border-bottom: none;
}
.dreamtheme .cms-page.g2g-glass .cms-block-sidebar-filter .filter-panel-wrapper .filter-panel-item-toggle .icon, .dreamtheme .cms-page.g2g-glass .cms-block-sidebar-filter .filter-panel-wrapper .filter-boolean .icon {
  color: var(--g2g-token-color-neutral-text-default);
}
.dreamtheme .cms-page.g2g-glass .cms-block-sidebar-filter .filter-panel-wrapper .filter-panel-item-toggle[aria-expanded="true"] svg {
  color: var(--g2g-token-color-neutral-text-default);
}
.dreamtheme .cms-page.g2g-glass .cms-block-sidebar-filter .filter-panel-wrapper .filter-panel-item-toggle:hover .icon, .dreamtheme .cms-page.g2g-glass .cms-block-sidebar-filter .filter-panel-wrapper .filter-boolean:hover .icon {
  color: #64748b;
}
body:has(.cms-page.g2g-glass) > .g2g-prev-next-edge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  color: #fff;
}
body:has(.cms-page.g2g-glass) > .g2g-prev-next-edge .g2g-prev-next-edge__preview, body:has(.cms-page.g2g-glass) > .g2g-prev-next-edge .g2g-prev-next-edge__name {
  color: #fff;
}
body:has(.cms-page.g2g-glass) > .g2g-prev-next-edge .g2g-prev-next-edge__preview::before {
  color: #fff;
}
@supports not (backdrop-filter: blur(1px)) {
  .g2g-glass .product-box.box-standard, .g2g-glass .cms-block-category-navigation .cms-element-category-navigation, .g2g-glass [data-g2g-glass], .g2g-glass .g2g-glass-element {
    background: rgba(255, 255, 255, 0.85);
  }
}
@keyframes g2g-ripple-expand {
  to {
    transform: scale(1);
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .g2g-ripple-wave {
    display: none;
  }
}
body.g2g-wow-flip-animations [data-g2g-flip] > * {
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  body.g2g-wow-flip-animations [data-g2g-flip] > * {
    will-change: auto;
  }
}
body.g2g-wow-scramble-text [data-g2g-scramble] {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}
body.g2g-wow-scramble-text [data-g2g-scramble][data-g2g-scrambling="1"] {
  color: var(--g2g-scramble-active-color, var(--g2g-token-color-brand-primary, #64748b));
}
body.g2g-wow-bento-grid [data-g2g-bento] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  grid-auto-rows: minmax(180px, auto);
  grid-auto-flow: dense;
  gap: var(--g2g-token-spacing-md, 1rem);
}
body.g2g-wow-bento-grid [data-g2g-bento] > * {
  background: var(--g2g-token-color-neutral-surface, #f8fafc);
  border: 1px solid var(--g2g-token-color-neutral-border, #e2e8f0);
  border-radius: var(--g2g-token-radius-lg, 1rem);
  padding: var(--g2g-token-spacing-lg, 1.5rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
body.g2g-wow-bento-grid [data-g2g-bento] > *:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}
body.g2g-wow-bento-grid [data-g2g-bento] [data-g2g-bento-size="lg"] {
  grid-column: span 2;
  grid-row: span 2;
}
body.g2g-wow-bento-grid [data-g2g-bento] [data-g2g-bento-size="wide"] {
  grid-column: span 2;
}
body.g2g-wow-bento-grid [data-g2g-bento] [data-g2g-bento-size="tall"] {
  grid-row: span 2;
}
@media (max-width: 575.98px) {
  body.g2g-wow-bento-grid [data-g2g-bento] {
    grid-template-columns: 1fr;
  }
  body.g2g-wow-bento-grid [data-g2g-bento] [data-g2g-bento-size] {
    grid-column: auto;
    grid-row: auto;
  }
}
.g2g-gsap-nav-bar {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: currentColor;
  pointer-events: none;
  border-radius: 2px;
}
.g2g-gsap-nav-link {
  position: relative;
}
body.dreamtheme.g2g-nav-hover-bg-off.g2g-nav-hover-bg-off .main-navigation-link:hover, body.dreamtheme.g2g-nav-hover-bg-off.g2g-nav-hover-bg-off .main-navigation-link:focus, body.dreamtheme.g2g-nav-hover-bg-off.g2g-nav-hover-bg-off .main-navigation-link:focus-visible, body.dreamtheme.g2g-nav-hover-bg-off.g2g-nav-hover-bg-off .main-navigation-link.is-active, body.dreamtheme.g2g-nav-hover-bg-off.g2g-nav-hover-bg-off .main-navigation-link.active, body.dreamtheme.g2g-nav-hover-bg-off.g2g-nav-hover-bg-off .main-navigation-menu .nav-link:hover, body.dreamtheme.g2g-nav-hover-bg-off.g2g-nav-hover-bg-off .main-navigation-menu .nav-link:focus, body.dreamtheme.g2g-nav-hover-bg-off.g2g-nav-hover-bg-off .main-navigation-menu .nav-link:focus-visible, body.dreamtheme.g2g-nav-hover-bg-off.g2g-nav-hover-bg-off .main-navigation-menu .nav-link.is-active, body.dreamtheme.g2g-nav-hover-bg-off.g2g-nav-hover-bg-off .main-navigation-menu .nav-link.active, body.dreamtheme.g2g-nav-hover-bg-off.g2g-nav-hover-bg-off .main-navigation-menu-link:hover, body.dreamtheme.g2g-nav-hover-bg-off.g2g-nav-hover-bg-off .main-navigation-menu-link:focus, body.dreamtheme.g2g-nav-hover-bg-off.g2g-nav-hover-bg-off .main-navigation-menu-link:focus-visible, body.dreamtheme.g2g-nav-hover-bg-off.g2g-nav-hover-bg-off .main-navigation-menu-link.is-active, body.dreamtheme.g2g-nav-hover-bg-off.g2g-nav-hover-bg-off .main-navigation-menu-link.active, body.dreamtheme.g2g-nav-hover-bg-off.g2g-nav-hover-bg-off .navbar-nav > .nav-item > .nav-link:hover, body.dreamtheme.g2g-nav-hover-bg-off.g2g-nav-hover-bg-off .navbar-nav > .nav-item > .nav-link:focus, body.dreamtheme.g2g-nav-hover-bg-off.g2g-nav-hover-bg-off .navbar-nav > .nav-item > .nav-link:focus-visible, body.dreamtheme.g2g-nav-hover-bg-off.g2g-nav-hover-bg-off .navbar-nav > .nav-item > .nav-link.is-active, body.dreamtheme.g2g-nav-hover-bg-off.g2g-nav-hover-bg-off .navbar-nav > .nav-item > .nav-link.active, body.dreamtheme.g2g-nav-hover-bg-off.g2g-nav-hover-bg-off .header-main .nav-link:hover, body.dreamtheme.g2g-nav-hover-bg-off.g2g-nav-hover-bg-off .header-main .nav-link:focus, body.dreamtheme.g2g-nav-hover-bg-off.g2g-nav-hover-bg-off .header-main .nav-link:focus-visible, body.dreamtheme.g2g-nav-hover-bg-off.g2g-nav-hover-bg-off .header-main .nav-link.is-active, body.dreamtheme.g2g-nav-hover-bg-off.g2g-nav-hover-bg-off .header-main .nav-link.active, body.dreamtheme.g2g-nav-hover-bg-off.g2g-nav-hover-bg-off .header-main .top-bar-nav a:hover, body.dreamtheme.g2g-nav-hover-bg-off.g2g-nav-hover-bg-off .header-main .top-bar-nav a:focus, body.dreamtheme.g2g-nav-hover-bg-off.g2g-nav-hover-bg-off .header-main .top-bar-nav a:focus-visible, body.dreamtheme.g2g-nav-hover-bg-off.g2g-nav-hover-bg-off .header-main .top-bar-nav a.is-active, body.dreamtheme.g2g-nav-hover-bg-off.g2g-nav-hover-bg-off .header-main .top-bar-nav a.active, body.dreamtheme.g2g-nav-hover-bg-off.g2g-nav-hover-bg-off [data-g2g-gsap-nav-hover]:hover, body.dreamtheme.g2g-nav-hover-bg-off.g2g-nav-hover-bg-off [data-g2g-gsap-nav-hover]:focus, body.dreamtheme.g2g-nav-hover-bg-off.g2g-nav-hover-bg-off [data-g2g-gsap-nav-hover]:focus-visible, body.dreamtheme.g2g-nav-hover-bg-off.g2g-nav-hover-bg-off [data-g2g-gsap-nav-hover].is-active, body.dreamtheme.g2g-nav-hover-bg-off.g2g-nav-hover-bg-off [data-g2g-gsap-nav-hover].active {
  background: transparent;
  background-color: transparent;
  box-shadow: none;
}
body.dreamtheme.g2g-nav-hover-bg-off.g2g-nav-hover-bg-off .main-navigation-menu .nav-item:hover, body.dreamtheme.g2g-nav-hover-bg-off.g2g-nav-hover-bg-off .main-navigation-menu .nav-item:focus, body.dreamtheme.g2g-nav-hover-bg-off.g2g-nav-hover-bg-off .main-navigation-menu .nav-item:focus-within, body.dreamtheme.g2g-nav-hover-bg-off.g2g-nav-hover-bg-off .main-navigation-menu-item:hover, body.dreamtheme.g2g-nav-hover-bg-off.g2g-nav-hover-bg-off .main-navigation-menu-item:focus, body.dreamtheme.g2g-nav-hover-bg-off.g2g-nav-hover-bg-off .main-navigation-menu-item:focus-within, body.dreamtheme.g2g-nav-hover-bg-off.g2g-nav-hover-bg-off .navbar-nav > .nav-item:hover, body.dreamtheme.g2g-nav-hover-bg-off.g2g-nav-hover-bg-off .navbar-nav > .nav-item:focus, body.dreamtheme.g2g-nav-hover-bg-off.g2g-nav-hover-bg-off .navbar-nav > .nav-item:focus-within, body.dreamtheme.g2g-nav-hover-bg-off.g2g-nav-hover-bg-off .header-main .top-bar-nav > li:hover, body.dreamtheme.g2g-nav-hover-bg-off.g2g-nav-hover-bg-off .header-main .top-bar-nav > li:focus, body.dreamtheme.g2g-nav-hover-bg-off.g2g-nav-hover-bg-off .header-main .top-bar-nav > li:focus-within {
  background: transparent;
  background-color: transparent;
  box-shadow: none;
}
.g2g-goo-filter-wrap {
  position: absolute;
  width: 0;
  height: 0;
  visibility: hidden;
}
.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content {
  padding-right: 0;
}
@media (min-width: 992px) {
  .dreamtheme.dreamtheme .cms-section-sidebar .cms-section-sidebar-sidebar-content {
    flex: 0 0 auto;
    width: 275px;
    max-width: 275px;
  }
  .dreamtheme.dreamtheme .cms-section-sidebar .cms-section-sidebar-main-content {
    flex: 1 1 0;
    max-width: none;
    width: auto;
  }
}
@media (min-width: 992px) {
  body.dreamtheme.g2g-listing-sidebar-sticky .cms-section.cms-section-sidebar {
    overflow: visible;
  }
  body.dreamtheme.g2g-listing-sidebar-sticky .cms-section-sidebar-sidebar-content.g2g-sidebar-fits-viewport > .g2g-glass-sidebar-panel {
    position: sticky;
    top: var(--g2g-sidebar-sticky-top, 191px);
  }
}
.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel, .dreamtheme.dreamtheme .g2g-search-filter > .g2g-glass-sidebar-panel {
  position: relative;
  margin-top: 20px;
  margin-right: -12px;
  padding: 12px 2px 14px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: none;
}
.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .cms-block-text, .dreamtheme.dreamtheme .g2g-search-filter > .g2g-glass-sidebar-panel .cms-block-text {
  display: none;
}
.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .cms-block, .dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .cms-block-container, .dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .cms-block-container-row, .dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .filter-panel-wrapper, .dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .filter-panel, .dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .filter-panel-items-container, .dreamtheme.dreamtheme .g2g-search-filter > .g2g-glass-sidebar-panel .cms-block, .dreamtheme.dreamtheme .g2g-search-filter > .g2g-glass-sidebar-panel .cms-block-container, .dreamtheme.dreamtheme .g2g-search-filter > .g2g-glass-sidebar-panel .cms-block-container-row, .dreamtheme.dreamtheme .g2g-search-filter > .g2g-glass-sidebar-panel .filter-panel-wrapper, .dreamtheme.dreamtheme .g2g-search-filter > .g2g-glass-sidebar-panel .filter-panel, .dreamtheme.dreamtheme .g2g-search-filter > .g2g-glass-sidebar-panel .filter-panel-items-container {
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 3;
}
.dreamtheme .g2g-eyebrow-injected {
  display: block;
  color: #334155;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.3;
  margin: 0 0 6px 0;
  text-align: left;
  position: relative;
  z-index: 3;
}
.dreamtheme .g2g-eyebrow-prefix {
  color: var(--g2g-token-color-brand-primary, #64748b);
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-right: 4px;
  text-transform: none;
}
.dreamtheme .g2g-eyebrow-filter {
  margin-bottom: 11px;
}
.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .cms-element-category-navigation {
  position: relative;
  z-index: 3;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .category-navigation {
  margin: 0;
  padding: 0;
  list-style: none;
}
.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .category-navigation-entry {
  margin: 1px 0;
  border-bottom: none;
}
.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .category-navigation-link {
  display: block;
  padding: 6px 2px;
  border-radius: 6px;
  background: transparent;
  color: #0f172a;
  border: none;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.15s ease;
}
.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .category-navigation-link:hover {
  background: #f1f5f9;
  color: #0f172a;
}
.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .category-navigation-link.is-active {
  background: var(--g2g-token-color-brand-primary, #64748b);
  color: #fff;
  font-weight: 700;
  border-bottom: none;
  padding-left: 8px;
  padding-right: 8px;
}
.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .category-navigation.level-1, .dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .category-navigation.level-2, .dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .category-navigation.level-3 {
  margin: 2px 0 4px;
  padding: 0;
  list-style: none;
  border: none;
  background: transparent;
  box-shadow: none;
}
.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .category-navigation.level-1 .category-navigation-link, .dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .category-navigation.level-2 .category-navigation-link, .dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .category-navigation.level-3 .category-navigation-link {
  padding-left: 18px;
  font-size: 14.5px;
  color: rgba(15, 23, 42, 0.78);
  position: relative;
}
.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .category-navigation.level-1 .category-navigation-link::before, .dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .category-navigation.level-2 .category-navigation-link::before, .dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .category-navigation.level-3 .category-navigation-link::before {
  content: "›";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-52%);
  color: rgba(15, 23, 42, 0.35);
  font-size: 14px;
  line-height: 1;
}
.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .category-navigation.level-1 .category-navigation-link.is-active, .dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .category-navigation.level-2 .category-navigation-link.is-active, .dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .category-navigation.level-3 .category-navigation-link.is-active {
  padding-left: 18px;
}
.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .category-navigation.level-1 .category-navigation-link.is-active::before, .dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .category-navigation.level-2 .category-navigation-link.is-active::before, .dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .category-navigation.level-3 .category-navigation-link.is-active::before {
  color: rgba(255, 255, 255, 0.85);
}
.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .cms-block.cms-block-sidebar-filter, .dreamtheme.dreamtheme .g2g-search-filter > .g2g-glass-sidebar-panel .cms-block.cms-block-sidebar-filter {
  margin-top: 18px;
}
.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .filter-panel.is--sidebar .filter-panel-item, .dreamtheme.dreamtheme .g2g-search-filter > .g2g-glass-sidebar-panel .filter-panel.is--sidebar .filter-panel-item {
  background: transparent;
  border: none;
  padding: 0;
  margin-top: 22px;
  margin-bottom: 0;
}
.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .filter-panel.is--sidebar .filter-panel-item:first-child, .dreamtheme.dreamtheme .g2g-search-filter > .g2g-glass-sidebar-panel .filter-panel.is--sidebar .filter-panel-item:first-child {
  margin-top: 0;
}
.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .filter-panel.is--sidebar .filter-panel-item .collapse:not(.show), .dreamtheme.dreamtheme .g2g-search-filter > .g2g-glass-sidebar-panel .filter-panel.is--sidebar .filter-panel-item .collapse:not(.show) {
  display: block;
}
.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .filter-panel.is--sidebar .filter-panel-item-toggle, .dreamtheme.dreamtheme .g2g-search-filter > .g2g-glass-sidebar-panel .filter-panel.is--sidebar .filter-panel-item-toggle {
  overflow: visible;
  height: auto;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 0;
  text-align: left;
  width: 100%;
  cursor: default;
  display: block;
  color: #334155;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.3;
}
.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .filter-panel.is--sidebar .filter-panel-item-toggle::before, .dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .filter-panel.is--sidebar .filter-panel-item-toggle::after, .dreamtheme.dreamtheme .g2g-search-filter > .g2g-glass-sidebar-panel .filter-panel.is--sidebar .filter-panel-item-toggle::before, .dreamtheme.dreamtheme .g2g-search-filter > .g2g-glass-sidebar-panel .filter-panel.is--sidebar .filter-panel-item-toggle::after {
  content: none;
  display: none;
  background: none;
  mask: none;
  -webkit-mask: none;
  padding: 0;
  border-radius: 0;
  position: static;
  inset: auto;
}
.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .filter-panel.is--sidebar .icon-filter-panel-item-toggle, .dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .filter-panel.is--sidebar .filter-multi-select-count, .dreamtheme.dreamtheme .g2g-search-filter > .g2g-glass-sidebar-panel .filter-panel.is--sidebar .icon-filter-panel-item-toggle, .dreamtheme.dreamtheme .g2g-search-filter > .g2g-glass-sidebar-panel .filter-panel.is--sidebar .filter-multi-select-count {
  display: none;
}
.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .filter-panel.is--sidebar .filter-panel-item-dropdown, .dreamtheme.dreamtheme .g2g-search-filter > .g2g-glass-sidebar-panel .filter-panel.is--sidebar .filter-panel-item-dropdown {
  border: none;
}
.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .filter-property-select-list-item:has(.filter-property-select-preview) .filter-multi-select-item-label, .dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .filter-property-select-list-item:has(.filter-property-select-preview) label.form-check-label, .dreamtheme.dreamtheme .g2g-search-filter > .g2g-glass-sidebar-panel .filter-property-select-list-item:has(.filter-property-select-preview) .filter-multi-select-item-label, .dreamtheme.dreamtheme .g2g-search-filter > .g2g-glass-sidebar-panel .filter-property-select-list-item:has(.filter-property-select-preview) label.form-check-label {
  display: none;
}
.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .filter-multi-select-properties:has(.filter-property-select-preview) .filter-multi-select-list, .dreamtheme.dreamtheme .g2g-search-filter > .g2g-glass-sidebar-panel .filter-multi-select-properties:has(.filter-property-select-preview) .filter-multi-select-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .filter-multi-select-properties:has(.filter-property-select-preview) .filter-multi-select-list-item.filter-multi-select-list-item, .dreamtheme.dreamtheme .g2g-search-filter > .g2g-glass-sidebar-panel .filter-multi-select-properties:has(.filter-property-select-preview) .filter-multi-select-list-item.filter-multi-select-list-item {
  padding: 0;
  margin: 0;
}
.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .filter-property-select-preview, .dreamtheme.dreamtheme .g2g-search-filter > .g2g-glass-sidebar-panel .filter-property-select-preview {
  display: inline-block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .filter-property-select-checkbox, .dreamtheme.dreamtheme .g2g-search-filter > .g2g-glass-sidebar-panel .filter-property-select-checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .filter-property-select-preview-checkmark, .dreamtheme.dreamtheme .g2g-search-filter > .g2g-glass-sidebar-panel .filter-property-select-preview-checkmark {
  display: none;
}
.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .filter-multi-select:not(.filter-multi-select-properties) .filter-multi-select-list, .dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .filter-multi-select-properties:not(:has(.filter-property-select-preview)) .filter-multi-select-list, .dreamtheme.dreamtheme .g2g-search-filter > .g2g-glass-sidebar-panel .filter-multi-select:not(.filter-multi-select-properties) .filter-multi-select-list, .dreamtheme.dreamtheme .g2g-search-filter > .g2g-glass-sidebar-panel .filter-multi-select-properties:not(:has(.filter-property-select-preview)) .filter-multi-select-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 6px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .filter-multi-select .filter-multi-select-list-item, .dreamtheme.dreamtheme .g2g-search-filter > .g2g-glass-sidebar-panel .filter-multi-select .filter-multi-select-list-item {
  padding: 0;
  margin: 0;
}
.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .filter-multi-select .filter-multi-select-list-item:last-child, .dreamtheme.dreamtheme .g2g-search-filter > .g2g-glass-sidebar-panel .filter-multi-select .filter-multi-select-list-item:last-child {
  margin-bottom: 5px;
}
.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .filter-multi-select .filter-multi-select-list-item.g2g-filter-item-hidden, .dreamtheme.dreamtheme .g2g-search-filter > .g2g-glass-sidebar-panel .filter-multi-select .filter-multi-select-list-item.g2g-filter-item-hidden {
  display: none;
}
.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .g2g-filter-more-pill, .dreamtheme.dreamtheme .g2g-search-filter > .g2g-glass-sidebar-panel .g2g-filter-more-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--g2g-token-color-brand-primary, #64748b);
  background: transparent;
  border: 1px dashed rgba(100, 116, 139, 0.45);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  list-style: none;
  margin: 0;
}
.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .g2g-filter-more-pill:hover, .dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .g2g-filter-more-pill.is-expanded, .dreamtheme.dreamtheme .g2g-search-filter > .g2g-glass-sidebar-panel .g2g-filter-more-pill:hover, .dreamtheme.dreamtheme .g2g-search-filter > .g2g-glass-sidebar-panel .g2g-filter-more-pill.is-expanded {
  background: var(--g2g-token-color-brand-primary, #64748b);
  color: #fff;
  border-style: solid;
  border-color: var(--g2g-token-color-brand-primary, #64748b);
}
.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .g2g-filter-more-pill:focus-visible, .dreamtheme.dreamtheme .g2g-search-filter > .g2g-glass-sidebar-panel .g2g-filter-more-pill:focus-visible {
  outline: 2px solid var(--g2g-token-color-brand-primary, #64748b);
  outline-offset: 2px;
}
.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .filter-panel-item .collapse, .dreamtheme.dreamtheme .g2g-search-filter > .g2g-glass-sidebar-panel .filter-panel-item .collapse {
  padding: 0;
  max-height: none;
  overflow: visible;
}
.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .filter-multi-select-list-item:not(:has(.filter-property-select-preview)) .form-check, .dreamtheme.dreamtheme .g2g-search-filter > .g2g-glass-sidebar-panel .filter-multi-select-list-item:not(:has(.filter-property-select-preview)) .form-check {
  margin: 0;
  padding: 0;
  min-height: 0;
  position: relative;
  display: inline-block;
}
.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .filter-multi-select-list-item:not(:has(.filter-property-select-preview)) .form-check-input, .dreamtheme.dreamtheme .g2g-search-filter > .g2g-glass-sidebar-panel .filter-multi-select-list-item:not(:has(.filter-property-select-preview)) .form-check-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  margin: 0;
}
.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .filter-multi-select-list-item:not(:has(.filter-property-select-preview)) .form-check-label, .dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .filter-multi-select-list-item:not(:has(.filter-property-select-preview)) label.filter-multi-select-item-label, .dreamtheme.dreamtheme .g2g-search-filter > .g2g-glass-sidebar-panel .filter-multi-select-list-item:not(:has(.filter-property-select-preview)) .form-check-label, .dreamtheme.dreamtheme .g2g-search-filter > .g2g-glass-sidebar-panel .filter-multi-select-list-item:not(:has(.filter-property-select-preview)) label.filter-multi-select-item-label {
  display: inline-block;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 600;
  color: #0f172a;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  cursor: pointer;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
  vertical-align: middle;
}
.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .filter-multi-select-list-item:not(:has(.filter-property-select-preview)) .form-check-input:checked + .form-check-label, .dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .filter-multi-select-list-item:not(:has(.filter-property-select-preview)) .form-check-input:checked + label.filter-multi-select-item-label, .dreamtheme.dreamtheme .g2g-search-filter > .g2g-glass-sidebar-panel .filter-multi-select-list-item:not(:has(.filter-property-select-preview)) .form-check-input:checked + .form-check-label, .dreamtheme.dreamtheme .g2g-search-filter > .g2g-glass-sidebar-panel .filter-multi-select-list-item:not(:has(.filter-property-select-preview)) .form-check-input:checked + label.filter-multi-select-item-label {
  background: var(--g2g-token-color-brand-primary, #64748b);
  border-color: var(--g2g-token-color-brand-primary, #64748b);
  color: #fff;
}
.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .filter-range-container, .dreamtheme.dreamtheme .g2g-search-filter > .g2g-glass-sidebar-panel .filter-range-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  flex-wrap: nowrap;
}
.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .filter-range-min, .dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .filter-range-max, .dreamtheme.dreamtheme .g2g-search-filter > .g2g-glass-sidebar-panel .filter-range-min, .dreamtheme.dreamtheme .g2g-search-filter > .g2g-glass-sidebar-panel .filter-range-max {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 1 auto;
  max-width: 90px;
  overflow: hidden;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 2px 4px 2px 8px;
  font-size: 0;
  margin: 0;
  color: #0f172a;
  gap: 2px;
}
.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .filter-range-min .form-control, .dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .filter-range-max .form-control, .dreamtheme.dreamtheme .g2g-search-filter > .g2g-glass-sidebar-panel .filter-range-min .form-control, .dreamtheme.dreamtheme .g2g-search-filter > .g2g-glass-sidebar-panel .filter-range-max .form-control {
  flex: 0 0 auto;
  width: 26px;
  min-width: 26px;
  max-width: 26px;
  background: transparent;
  border: none;
  box-shadow: none;
  color: #0f172a;
  font-size: 12px;
  font-weight: 500;
  padding: 2px 0;
  margin: 0;
  text-align: right;
}
.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .filter-range-min .form-control::placeholder, .dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .filter-range-max .form-control::placeholder, .dreamtheme.dreamtheme .g2g-search-filter > .g2g-glass-sidebar-panel .filter-range-min .form-control::placeholder, .dreamtheme.dreamtheme .g2g-search-filter > .g2g-glass-sidebar-panel .filter-range-max .form-control::placeholder {
  color: rgba(15, 23, 42, 0.4);
}
.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .filter-range-min .form-control::-webkit-outer-spin-button, .dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .filter-range-min .form-control::-webkit-inner-spin-button, .dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .filter-range-max .form-control::-webkit-outer-spin-button, .dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .filter-range-max .form-control::-webkit-inner-spin-button, .dreamtheme.dreamtheme .g2g-search-filter > .g2g-glass-sidebar-panel .filter-range-min .form-control::-webkit-outer-spin-button, .dreamtheme.dreamtheme .g2g-search-filter > .g2g-glass-sidebar-panel .filter-range-min .form-control::-webkit-inner-spin-button, .dreamtheme.dreamtheme .g2g-search-filter > .g2g-glass-sidebar-panel .filter-range-max .form-control::-webkit-outer-spin-button, .dreamtheme.dreamtheme .g2g-search-filter > .g2g-glass-sidebar-panel .filter-range-max .form-control::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .filter-range-unit, .dreamtheme.dreamtheme .g2g-search-filter > .g2g-glass-sidebar-panel .filter-range-unit {
  font-size: 12px;
  color: rgba(15, 23, 42, 0.5);
  margin-left: 2px;
  background: transparent;
  padding: 0 6px 0 0;
  display: inline-flex;
  align-items: center;
  height: 28px;
}
.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .filter-range-divider, .dreamtheme.dreamtheme .g2g-search-filter > .g2g-glass-sidebar-panel .filter-range-divider {
  font-size: 13px;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.5);
  flex: 0 0 auto;
  width: auto;
  min-width: 0;
  padding: 0;
  margin: 0;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .filter-panel-active-container, .dreamtheme.dreamtheme .g2g-search-filter > .g2g-glass-sidebar-panel .filter-panel-active-container {
  margin-top: 16px;
  gap: 6px;
  align-items: center;
}
.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .filter-panel-active-container .filter-active.btn, .dreamtheme.dreamtheme .g2g-search-filter > .g2g-glass-sidebar-panel .filter-panel-active-container .filter-active.btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  border-radius: 999px;
  background: var(--g2g-token-color-brand-primary, #64748b);
  border: 1px solid var(--g2g-token-color-brand-primary, #64748b);
  color: #fff;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: none;
  text-transform: none;
  letter-spacing: 0;
}
.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .filter-panel-active-container .filter-active.btn > .ms-1.fs-4, .dreamtheme.dreamtheme .g2g-search-filter > .g2g-glass-sidebar-panel .filter-panel-active-container .filter-active.btn > .ms-1.fs-4 {
  font-size: 14px;
  font-weight: 400;
  margin-left: 4px;
  line-height: 1;
}
.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .filter-panel-active-container .filter-active.btn:hover, .dreamtheme.dreamtheme .g2g-search-filter > .g2g-glass-sidebar-panel .filter-panel-active-container .filter-active.btn:hover {
  background: #d54f00;
  border-color: #d54f00;
  color: #fff;
}
.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .filter-panel-active-container .filter-reset-all.btn, .dreamtheme.dreamtheme .g2g-search-filter > .g2g-glass-sidebar-panel .filter-panel-active-container .filter-reset-all.btn {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  border-radius: 999px;
  background: transparent;
  border: 1px solid #e2e8f0;
  color: rgba(15, 23, 42, 0.7);
  text-transform: none;
  letter-spacing: 0;
  box-shadow: none;
}
.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .filter-panel-active-container .filter-reset-all.btn:hover, .dreamtheme.dreamtheme .g2g-search-filter > .g2g-glass-sidebar-panel .filter-panel-active-container .filter-reset-all.btn:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #0f172a;
}
.dreamtheme.dreamtheme .cms-element-product-listing .product-box.box-standard {
  border-radius: var(--g2g-border-radius, 16px);
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
.dreamtheme.dreamtheme.dreamtheme.is-act-index .content-main .container-main .cms-sections .cms-section-sidebar .cms-section-sidebar-main-content .cms-block-product-listing .cms-element-product-listing-actions .sorting.form-select, .dreamtheme.dreamtheme.dreamtheme.is-act-index .content-main .container-main .cms-sections .cms-section-sidebar .cms-section-sidebar-main-content .cms-block-product-listing .cms-element-product-listing-actions .g2g-per-page-select.form-select {
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  background-color: #fff;
  height: 40px;
  line-height: 1.4;
  padding: 0 14px;
  padding-right: 36px;
}
.dreamtheme.dreamtheme .cms-element-product-listing-actions .g2g-listing-view-toggle {
  display: inline-flex;
  align-items: stretch;
  height: 40px;
  border-radius: var(--g2g-border-radius-global, 16px);
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  background: #fff;
  overflow: hidden;
}
.dreamtheme.dreamtheme .cms-element-product-listing-actions .g2g-listing-view-toggle .g2g-listing-view-toggle__btn {
  height: 100%;
  border-radius: 0;
  border: none;
  box-shadow: none;
  background: transparent;
  color: rgba(15, 23, 42, 0.55);
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.dreamtheme.dreamtheme .cms-element-product-listing-actions .g2g-listing-view-toggle .g2g-listing-view-toggle__btn svg, .dreamtheme.dreamtheme .cms-element-product-listing-actions .g2g-listing-view-toggle .g2g-listing-view-toggle__btn .icon {
  color: inherit;
  fill: currentColor;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.dreamtheme.dreamtheme .cms-element-product-listing-actions .g2g-listing-view-toggle .g2g-listing-view-toggle__btn:hover {
  background: #e2e8f0;
  color: #0f172a;
}
.dreamtheme.dreamtheme .cms-element-product-listing-actions .g2g-listing-view-toggle .g2g-listing-view-toggle__btn.is-active {
  background: #f1f5f9;
  color: #0f172a;
}
.dreamtheme.dreamtheme.dreamtheme .content-main .container-main .cms-page.g2g-glass.g2g-glass .cms-sections .cms-section-sidebar-main-content .cms-block-product-listing .cms-element-product-listing-actions .sorting.form-select, .dreamtheme.dreamtheme.dreamtheme .content-main .container-main .cms-page.g2g-glass.g2g-glass .cms-sections .cms-section-sidebar-main-content .cms-block-product-listing .cms-element-product-listing-actions .g2g-per-page-select.form-select {
  background: rgba(255, 255, 255, calc(var(--g2g-glass-alpha, 15) / 100));
  backdrop-filter: blur(var(--g2g-glass-blur, 20px)) saturate(var(--g2g-glass-saturate, 160%));
  -webkit-backdrop-filter: blur(var(--g2g-glass-blur, 20px)) saturate(var(--g2g-glass-saturate, 160%));
  border: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  color: #fff;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px 12px;
}
.dreamtheme.dreamtheme .g2g-glass .cms-element-product-listing-actions .g2g-listing-view-toggle {
  background: rgba(255, 255, 255, calc(var(--g2g-glass-alpha, 15) / 100));
  backdrop-filter: blur(var(--g2g-glass-blur, 20px)) saturate(var(--g2g-glass-saturate, 160%));
  -webkit-backdrop-filter: blur(var(--g2g-glass-blur, 20px)) saturate(var(--g2g-glass-saturate, 160%));
  border: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.dreamtheme.dreamtheme .g2g-glass .cms-element-product-listing-actions .g2g-listing-view-toggle .g2g-listing-view-toggle__btn {
  color: rgba(255, 255, 255, 0.7);
}
.dreamtheme.dreamtheme .g2g-glass .cms-element-product-listing-actions .g2g-listing-view-toggle .g2g-listing-view-toggle__btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.dreamtheme.dreamtheme .g2g-glass .cms-element-product-listing-actions .g2g-listing-view-toggle .g2g-listing-view-toggle__btn.is-active {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}
.dreamtheme.dreamtheme .g2g-glass .g2g-list-menu__trigger {
  background: rgba(255, 255, 255, calc(var(--g2g-glass-alpha, 15) / 100));
  backdrop-filter: blur(var(--g2g-glass-blur, 20px)) saturate(var(--g2g-glass-saturate, 160%));
  -webkit-backdrop-filter: blur(var(--g2g-glass-blur, 20px)) saturate(var(--g2g-glass-saturate, 160%));
  border: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  color: #fff;
}
.dreamtheme.dreamtheme .g2g-glass .g2g-list-menu__trigger .g2g-list-menu__caret {
  border-top-color: #fff;
}
.dreamtheme.dreamtheme .g2g-glass .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel, .dreamtheme.dreamtheme .g2g-glass .g2g-search-filter > .g2g-glass-sidebar-panel {
  background: rgba(255, 255, 255, calc(var(--g2g-glass-alpha, 15) / 100));
  backdrop-filter: blur(var(--g2g-glass-blur, 20px)) saturate(var(--g2g-glass-saturate, 160%));
  -webkit-backdrop-filter: blur(var(--g2g-glass-blur, 20px)) saturate(var(--g2g-glass-saturate, 160%));
  border: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.dreamtheme.dreamtheme .g2g-glass .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel::before, .dreamtheme.dreamtheme .g2g-glass .g2g-search-filter > .g2g-glass-sidebar-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.06) 45%, rgba(255, 255, 255, 0.18) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}
.dreamtheme.dreamtheme .g2g-glass .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .cms-element-category-navigation, .dreamtheme.dreamtheme .g2g-glass .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .g2g-glass-element, .dreamtheme.dreamtheme .g2g-glass .g2g-search-filter > .g2g-glass-sidebar-panel .cms-element-category-navigation, .dreamtheme.dreamtheme .g2g-glass .g2g-search-filter > .g2g-glass-sidebar-panel .g2g-glass-element {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
  border: none;
}
.dreamtheme.dreamtheme .g2g-glass .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .cms-element-category-navigation::before, .dreamtheme.dreamtheme .g2g-glass .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .g2g-glass-element::before, .dreamtheme.dreamtheme .g2g-glass .g2g-search-filter > .g2g-glass-sidebar-panel .cms-element-category-navigation::before, .dreamtheme.dreamtheme .g2g-glass .g2g-search-filter > .g2g-glass-sidebar-panel .g2g-glass-element::before {
  content: none;
  display: none;
  background: none;
  mask: none;
  -webkit-mask: none;
  padding: 0;
  border-radius: 0;
  position: static;
  inset: auto;
}
.dreamtheme.dreamtheme .g2g-glass .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .category-navigation-link, .dreamtheme.dreamtheme .g2g-glass .g2g-search-filter > .g2g-glass-sidebar-panel .category-navigation-link {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}
.dreamtheme.dreamtheme .g2g-glass .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .category-navigation-link:hover, .dreamtheme.dreamtheme .g2g-glass .g2g-search-filter > .g2g-glass-sidebar-panel .category-navigation-link:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.dreamtheme.dreamtheme .g2g-glass .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .category-navigation-link.is-active, .dreamtheme.dreamtheme .g2g-glass .g2g-search-filter > .g2g-glass-sidebar-panel .category-navigation-link.is-active {
  text-shadow: none;
}
.dreamtheme.dreamtheme .g2g-glass .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .filter-property-select-preview, .dreamtheme.dreamtheme .g2g-glass .g2g-search-filter > .g2g-glass-sidebar-panel .filter-property-select-preview {
  border-color: rgba(255, 255, 255, 0.75);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.dreamtheme.dreamtheme .g2g-glass .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .filter-multi-select-list-item:not(:has(.filter-property-select-preview)) .form-check-label, .dreamtheme.dreamtheme .g2g-glass .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .filter-multi-select-list-item:not(:has(.filter-property-select-preview)) label.filter-multi-select-item-label, .dreamtheme.dreamtheme .g2g-glass .g2g-search-filter > .g2g-glass-sidebar-panel .filter-multi-select-list-item:not(:has(.filter-property-select-preview)) .form-check-label, .dreamtheme.dreamtheme .g2g-glass .g2g-search-filter > .g2g-glass-sidebar-panel .filter-multi-select-list-item:not(:has(.filter-property-select-preview)) label.filter-multi-select-item-label {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}
.dreamtheme.dreamtheme .g2g-glass .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .filter-multi-select-list-item:not(:has(.filter-property-select-preview)) .form-check-input:checked + .form-check-label, .dreamtheme.dreamtheme .g2g-glass .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .filter-multi-select-list-item:not(:has(.filter-property-select-preview)) .form-check-input:checked + label.filter-multi-select-item-label, .dreamtheme.dreamtheme .g2g-glass .g2g-search-filter > .g2g-glass-sidebar-panel .filter-multi-select-list-item:not(:has(.filter-property-select-preview)) .form-check-input:checked + .form-check-label, .dreamtheme.dreamtheme .g2g-glass .g2g-search-filter > .g2g-glass-sidebar-panel .filter-multi-select-list-item:not(:has(.filter-property-select-preview)) .form-check-input:checked + label.filter-multi-select-item-label {
  text-shadow: none;
}
.dreamtheme.dreamtheme .g2g-glass .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .filter-range-min, .dreamtheme.dreamtheme .g2g-glass .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .filter-range-max, .dreamtheme.dreamtheme .g2g-glass .g2g-search-filter > .g2g-glass-sidebar-panel .filter-range-min, .dreamtheme.dreamtheme .g2g-glass .g2g-search-filter > .g2g-glass-sidebar-panel .filter-range-max {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}
.dreamtheme.dreamtheme .g2g-glass .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .filter-range-min .form-control, .dreamtheme.dreamtheme .g2g-glass .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .filter-range-max .form-control, .dreamtheme.dreamtheme .g2g-glass .g2g-search-filter > .g2g-glass-sidebar-panel .filter-range-min .form-control, .dreamtheme.dreamtheme .g2g-glass .g2g-search-filter > .g2g-glass-sidebar-panel .filter-range-max .form-control {
  color: #fff;
}
.dreamtheme.dreamtheme .g2g-glass .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .filter-range-min .form-control::placeholder, .dreamtheme.dreamtheme .g2g-glass .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .filter-range-max .form-control::placeholder, .dreamtheme.dreamtheme .g2g-glass .g2g-search-filter > .g2g-glass-sidebar-panel .filter-range-min .form-control::placeholder, .dreamtheme.dreamtheme .g2g-glass .g2g-search-filter > .g2g-glass-sidebar-panel .filter-range-max .form-control::placeholder {
  color: rgba(255, 255, 255, 0.55);
}
.dreamtheme.dreamtheme .g2g-glass .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .filter-range-unit, .dreamtheme.dreamtheme .g2g-glass .cms-section-sidebar-sidebar-content > .g2g-glass-sidebar-panel .filter-range-divider, .dreamtheme.dreamtheme .g2g-glass .g2g-search-filter > .g2g-glass-sidebar-panel .filter-range-unit, .dreamtheme.dreamtheme .g2g-glass .g2g-search-filter > .g2g-glass-sidebar-panel .filter-range-divider {
  color: rgba(255, 255, 255, 0.7);
}
.dreamtheme .g2g-glass .g2g-eyebrow-injected {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}
.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .product-box.box-standard {
  background: #fff;
  border-radius: var(--g2g-border-radius-global, 24px);
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  padding: 0;
}
.dreamtheme.dreamtheme .g2g-glass .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .product-box.box-standard {
  background: rgba(255, 255, 255, calc(var(--g2g-glass-alpha, 15) / 100));
  backdrop-filter: blur(var(--g2g-glass-blur, 20px)) saturate(var(--g2g-glass-saturate, 160%));
  -webkit-backdrop-filter: blur(var(--g2g-glass-blur, 20px)) saturate(var(--g2g-glass-saturate, 160%));
  border: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18), 0 8px 20px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .product-box.box-standard {
  --g2g-card-text: #0f172a;
  --g2g-card-text-shadow: none;
  --g2g-card-subtle-text: rgba(15, 23, 42, 0.7);
  --g2g-card-stock-track: #e2e8f0;
  --g2g-card-bestseller-bg: #f1f5f9;
  --g2g-card-bestseller-border: #e2e8f0;
  --g2g-card-bestseller-text: #0f172a;
}
.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .product-box .card-body {
  padding: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
}
.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .product-box .card-body > a:not(.product-name) {
  background: #fff;
  display: block;
  padding: 0;
  margin: 0;
  border-radius: 0;
  position: relative;
}
.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .product-box .product-image-wrapper {
  background: #fff;
  opacity: 1;
  padding: 0;
  margin: 0 auto;
  width: 100%;
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
}
.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .product-box .product-image-wrapper img, .dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .product-box .product-image-wrapper picture {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 50% 50%;
  display: block;
}
.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .product-box .product-badges, .dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .product-box .product-description-detail-btn, .dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .product-box .product-detail-link {
  display: none;
}
.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .product-box .g2g-product-rating:empty, .dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .product-box .g2g-product-rating:has(> .g2g-rating-empty:only-child) {
  visibility: hidden;
}
body.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .cms-listing-col {
  display: flex;
  flex-direction: column;
}
body.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .cms-listing-col > * {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .product-box .product-info {
  background: transparent;
  color: var(--g2g-card-text);
  padding: 14px 18px 20px;
  display: grid;
  grid-template-areas: "mfr      mfr" "title    title" "sku      sku" "ean      ean" "desc     desc" "rating   rating" "stock    stock" "bar      bar" "variants variants" "price    action";
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto auto auto auto 18px auto auto auto auto;
  gap: 0 12px;
  align-items: center;
  overflow: hidden;
}
body.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-modern.g2g-card-stock-on:not(.g2g-listing-view-list) .product-box .product-info {
  grid-template-rows: auto auto auto auto auto 18px minmax(26px, auto) minmax(19px, auto) auto auto;
}
.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .product-box .g2g-product-rating {
  grid-area: rating;
  min-height: 18px;
  margin: 2px 0 0;
  font-size: 12px;
  line-height: 1;
}
.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .product-box .g2g-manufacturer-rating-row {
  min-height: 24px;
}
.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .product-box .g2g-product-card-manufacturer {
  grid-area: mfr;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--g2g-card-subtle-text);
  margin: 0 0 2px;
  line-height: 1.2;
  min-height: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .product-box .g2g-product-card-manufacturer a {
  font-weight: 700;
  text-decoration: none;
  color: inherit;
}
.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .product-box .g2g-variant-area {
  grid-area: variants;
  overflow: hidden;
  min-width: 0;
  align-self: end;
  font-size: 11px;
  line-height: 1;
  color: var(--g2g-card-subtle-text);
  margin: 0;
}
.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .product-box .product-detail-ordernumber {
  grid-area: sku;
  font-size: 10px;
  line-height: 1.2;
  color: var(--g2g-card-subtle-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  align-self: end;
}
.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .product-box .g2g-ean-row {
  grid-area: ean;
  font-size: 10px;
  line-height: 1.2;
  color: var(--g2g-card-subtle-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  align-self: end;
  min-height: 14px;
}
.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .product-box .g2g-grid-description {
  grid-area: desc;
  font-size: 12px;
  line-height: 1.4;
  color: var(--g2g-card-subtle-text);
  margin: 2px 0 4px;
  min-width: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  min-height: 50px;
}
.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .product-box .product-name-headline, .dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .product-box .product-name.product-name {
  grid-area: title;
  color: var(--g2g-card-text);
  font-weight: 700;
  font-size: 16px;
  margin: 0;
  text-align: left;
  text-shadow: var(--g2g-card-text-shadow);
  line-height: 1.3;
  overflow: hidden;
  min-height: 0;
  height: calc(2 * 1.3em);
}
.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .name2gether-1line .product-name.product-name {
  height: calc(1 * 1.3em);
}
.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .name2gether-3lines .product-name.product-name {
  height: calc(3 * 1.3em);
}
.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .name2gether-4lines .product-name.product-name {
  height: calc(4 * 1.3em);
}
.dreamtheme .cms-element-product-listing.g2g-card-layout-modern .g2g-stock-meta, .dreamtheme .g2g-cs-layout-modern .g2g-stock-meta {
  grid-area: stock;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--g2g-card-text);
  font-weight: 600;
  font-size: 13px;
  margin-top: 6px;
  text-shadow: var(--g2g-card-text-shadow);
}
.dreamtheme .cms-element-product-listing.g2g-card-layout-modern .g2g-stock-meta > span, .dreamtheme .g2g-cs-layout-modern .g2g-stock-meta > span {
  white-space: nowrap;
}
.dreamtheme .cms-element-product-listing.g2g-card-layout-modern .g2g-stock-meta .g2g-stock-meta__label, .dreamtheme .g2g-cs-layout-modern .g2g-stock-meta .g2g-stock-meta__label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dreamtheme .cms-element-product-listing.g2g-card-layout-modern .g2g-stock-meta .g2g-stock-meta__count, .dreamtheme .g2g-cs-layout-modern .g2g-stock-meta .g2g-stock-meta__count {
  flex: 0 0 auto;
  margin-left: 8px;
}
.dreamtheme .cms-element-product-listing.g2g-card-layout-modern .g2g-stock-bar, .dreamtheme .g2g-cs-layout-modern .g2g-stock-bar {
  grid-area: bar;
  height: 5px;
  background: var(--g2g-card-stock-track);
  border-radius: var(--g2g-border-radius, 3px);
  overflow: hidden;
  margin: 4px 0 10px;
}
.dreamtheme .cms-element-product-listing.g2g-card-layout-modern .g2g-stock-bar > i, .dreamtheme .g2g-cs-layout-modern .g2g-stock-bar > i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #4ade80, #22c55e);
  border-radius: var(--g2g-border-radius, 3px);
}
.dreamtheme .g2g-card-photo-badges {
  display: none;
}
.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .product-box .g2g-card-badges {
  display: none;
}
.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .product-box .g2g-card-photo-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  pointer-events: none;
}
.dreamtheme .cms-element-product-listing.g2g-card-layout-modern .g2g-card-photo-badges .g2g-badge {
  position: static;
  padding: 5px 12px;
  border-radius: var(--g2g-border-radius, 999px);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}
.dreamtheme .cms-element-product-listing.g2g-card-layout-modern .g2g-card-photo-badges .g2g-badge--sale {
  background: #dc2626;
  color: #fff;
  border: none;
}
.dreamtheme .cms-element-product-listing.g2g-card-layout-modern .g2g-card-photo-badges .g2g-badge--bestseller {
  background: var(--g2g-card-bestseller-bg);
  color: var(--g2g-card-bestseller-text);
  border: 1px solid var(--g2g-card-bestseller-border);
}
.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .product-box .product-image-wrapper {
  position: relative;
}
.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .product-box .product-wishlist-action-circle, .dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .product-box .product-wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 7;
  margin: 0;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--g2g-border-radius, 999px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
}
.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list) .product-box .product-wishlist-action-circle .icon, .dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list) .product-box .product-wishlist-action-circle .icon > svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
}
.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list) .product-box .product-wishlist-action-circle .icon {
  transform: translateY(-6px);
}
.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .product-box .product-price-info, .dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .product-box .product-price-wrapper, .dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .product-box .g2g-product-price-box, .dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .product-box .g2g-product-price-box-inner {
  grid-area: price;
  justify-self: start;
  align-self: end;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  width: auto;
  min-height: 0;
  margin: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .product-box .g2g-product-price-box::before, .dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .product-box .g2g-product-price-box::after {
  content: none;
  display: none;
}
.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .product-box .g2g-product-price-box-inner {
  flex-wrap: wrap;
  align-content: flex-start;
}
.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .product-box .g2g-product-price-box-inner .with-regulation-price {
  flex: 0 0 100%;
  max-width: 100%;
  margin-top: 3px;
  white-space: nowrap;
  padding-bottom: 0;
}
.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .product-box .g2g-product-price-box-inner .with-regulation-price br {
  display: none;
}
.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .product-box .product-price {
  color: var(--g2g-card-text);
  font-weight: 700;
  font-size: 16px;
}
.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .product-box .product-cheapest-price-price {
  color: var(--g2g-card-text);
  font-weight: 700;
  font-size: 14px;
  margin: 0 0 -4px;
  padding: 0;
  line-height: 1;
  text-shadow: var(--g2g-card-text-shadow);
}
.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .product-box .product-cheapest-price {
  margin: 0 0 7px;
  font-size: 12px;
  white-space: nowrap;
}
.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .product-box .product-price-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 106px;
  padding-bottom: 0;
  box-sizing: border-box;
}
.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .product-box .product-price-unit, .dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .product-box .product-cheapest-price-from {
  display: none;
}
.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .product-box .product-action {
  grid-area: action;
  justify-self: end;
  align-self: start;
  width: 42px;
  height: 42px;
  margin: 15px 0 0 0;
  padding: 0;
}
.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .product-box .product-action .buy-widget, .dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .product-box .product-action .d-grid {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}
.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .product-box .product-action .btn.btn-buy {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background-color: var(--bs-success, #007e4e);
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><line x1='12' y1='5' x2='12' y2='19'/><line x1='5' y1='12' x2='19' y2='12'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
  border-radius: 50%;
  border: none;
  color: transparent;
  font-size: 0;
  line-height: 1;
  padding: 0;
  margin: 0;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 126, 78, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}
.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .product-box .product-action .btn.btn-buy:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 18px rgba(0, 126, 78, 0.5);
  background-color: var(--bs-success, #007e4e);
  filter: brightness(0.9);
}
.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .product-box .product-action .btn.btn-detail {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background-color: #1a1a1a;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><line x1='5' y1='12' x2='19' y2='12'/><polyline points='12 5 19 12 12 19'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
  border-radius: 50%;
  border: none;
  color: transparent;
  font-size: 0;
  line-height: 1;
  padding: 0;
  margin: 0;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}
.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .product-box .product-action .btn.btn-detail:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  background-color: #000000;
  color: transparent;
  filter: none;
}
.dreamtheme.dreamtheme .g2g-glass .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .product-box.box-standard {
  --g2g-card-text: #fff;
  --g2g-card-text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  --g2g-card-subtle-text: rgba(255, 255, 255, 0.7);
  --g2g-card-stock-track: rgba(255, 255, 255, 0.18);
  --g2g-card-bestseller-bg: rgba(255, 255, 255, 0.16);
  --g2g-card-bestseller-border: rgba(255, 255, 255, 0.22);
  --g2g-card-bestseller-text: #fff;
}
.dreamtheme.dreamtheme.dreamtheme .g2g-glass .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .product-box.box-standard .product-info .product-name.product-name, .dreamtheme.dreamtheme.dreamtheme .g2g-glass .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .product-box.box-standard .product-info .product-name.product-name a, .dreamtheme.dreamtheme.dreamtheme .g2g-glass .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .product-box.box-standard .product-name-headline, .dreamtheme.dreamtheme.dreamtheme .g2g-glass .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .product-box.box-standard .product-price, .dreamtheme.dreamtheme.dreamtheme .g2g-glass .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .product-box.box-standard .product-cheapest-price-price {
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}
.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-modern:not(.g2g-listing-view-list) .product-box .product-action .g2g-buy-row .g2g-classic-stepper-wrap {
  display: none;
}
body.dreamtheme.dreamtheme .cms-element-product-slider .g2g-native-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  container-type: inline-size;
}
body.dreamtheme.dreamtheme .cms-element-product-slider .g2g-native-scroll::-webkit-scrollbar {
  display: none;
}
body.dreamtheme.dreamtheme .cms-element-product-slider .g2g-native-scroll .tns-slider.tns-slider {
  width: auto;
  gap: 15px;
}
body.dreamtheme.dreamtheme .cms-element-product-slider .g2g-native-scroll .product-slider-item {
  flex: 0 0 var(--g2g-scroll-item-w, 280px);
  scroll-snap-align: start;
  margin: 0;
}
body.dreamtheme.dreamtheme .cms-element-product-slider .g2g-native-scroll .product-slider-item {
  --g2g-scroll-item-w: calc((100cqi - 45px) / 4);
}
@container (max-width: 991.98px) {
  body.dreamtheme.dreamtheme .cms-element-product-slider .g2g-native-scroll .product-slider-item {
    --g2g-scroll-item-w: calc((100cqi - 30px) / 3);
  }
}
@container (max-width: 767.98px) {
  body.dreamtheme.dreamtheme .cms-element-product-slider .g2g-native-scroll .product-slider-item {
    --g2g-scroll-item-w: calc((100cqi - 15px) / 2);
  }
}
@container (max-width: 575.98px) {
  body.dreamtheme.dreamtheme .cms-element-product-slider .g2g-native-scroll .product-slider-item {
    --g2g-scroll-item-w: 100cqi;
  }
}
body.dreamtheme.dreamtheme .cms-element-product-slider .g2g-native-scroll.g2g-scrolling, body.dreamtheme.dreamtheme .cms-element-product-slider .g2g-native-scroll.g2g-dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
}
body.dreamtheme.dreamtheme .cms-element-product-slider .g2g-native-scroll.g2g-dragging {
  cursor: grabbing;
  user-select: none;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-classic .product-slider-container .product-slider-item .product-box.card.card {
  border: 0;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-classic .product-slider-container .product-slider-item .product-box .card-body.card-body {
  padding: 0;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-classic .product-slider-container .product-slider-item .product-box .product-image-wrapper {
  aspect-ratio: auto;
  overflow: visible;
  position: relative;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-classic .product-slider-container .product-slider-item .product-box .product-image-wrapper > picture > img, body.dreamtheme.dreamtheme .g2g-cs-layout-classic .product-slider-container .product-slider-item .product-box .product-image-wrapper > img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-classic .product-slider-container .product-slider-item .product-box .product-info {
  padding: 16px 24px 24px;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-classic .product-slider-container .product-slider-item .product-box .product-info .product-description {
  margin-bottom: 4px;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-classic .product-slider-container .product-slider-item .product-box .g2g-slider-description {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 4px;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-classic .product-slider-container .product-slider-item .product-box .g2g-product-card-manufacturer {
  font-size: 11px;
  color: var(--g2g-text-muted, #888);
  letter-spacing: 0.04em;
  margin: 0 0 2px;
  line-height: 1.3;
  min-height: 1.3em;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-classic .product-slider-container .product-slider-item .product-box .product-detail-ordernumber.g2g-sku-row {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 12px;
  color: var(--g2g-text-muted, #888);
  min-height: 0;
  line-height: 1.4;
  margin: 2px 0;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-classic .product-slider-container .product-slider-item .product-box .product-info .product-price-info .product-price-wrapper .g2g-product-price-box-inner .product-price {
  padding-bottom: 8px;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-classic .product-slider-container .product-slider-item .product-box .product-action {
  margin-top: auto;
  min-height: 38px;
  display: flex;
  align-items: stretch;
  padding: 0;
  width: 100%;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-classic .product-slider-container .product-slider-item .product-box .product-action > form, body.dreamtheme.dreamtheme .g2g-cs-layout-classic .product-slider-container .product-slider-item .product-box .product-action > .d-grid {
  width: 100%;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box.box-standard {
  background: #fff;
  border-radius: var(--g2g-border-radius, 24px);
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  padding: 0;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box .card-body {
  padding: 0;
  background: transparent;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box .card-body > a:not(.product-name) {
  background: #fff;
  display: block;
  padding: 0;
  margin: 0;
  border-radius: 0;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box .product-image-wrapper {
  background: #fff;
  padding: 0;
  margin: 0 auto;
  width: 100%;
  max-width: none;
  aspect-ratio: 1;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box .product-image-wrapper img, body.dreamtheme.dreamtheme .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box .product-image-wrapper picture {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 50% 50%;
  display: block;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box .product-badges {
  display: none;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-modern.g2g-cs-no-badges .product-slider-container .product-slider-item .product-box .g2g-card-badges {
  display: none;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-modern.g2g-cs-no-wishlist .product-slider-container .product-slider-item .product-box .product-wishlist-action-circle, body.dreamtheme.dreamtheme .g2g-cs-layout-modern.g2g-cs-no-wishlist .product-slider-container .product-slider-item .product-box .product-wishlist {
  display: none;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-modern.g2g-cs-no-rating .product-slider-container .product-slider-item .product-box .g2g-product-rating {
  display: none;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box .product-description-detail-btn, body.dreamtheme.dreamtheme .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box .product-detail-link {
  display: none;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box .product-wishlist-action-circle, body.dreamtheme.dreamtheme .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box .product-wishlist {
  position: absolute;
  top: 6px;
  right: 14px;
  z-index: 2;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  padding: 0;
  overflow: hidden;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box .product-wishlist-action-circle button, body.dreamtheme.dreamtheme .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box .product-wishlist button {
  position: static;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  min-width: 0;
  min-height: 0;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box .g2g-product-rating {
  grid-area: rating;
  margin: 0;
  padding: 0;
  height: auto;
  min-height: 16px;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box .product-variant-characteristics {
  grid-area: variants;
  margin: 0;
  min-height: 0;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box .product-variant-characteristics .product-variant-characteristics-text {
  height: auto;
  min-height: 0;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-modern.g2g-cs-no-variants .product-slider-container .product-slider-item .product-box .product-variant-characteristics {
  display: none;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-modern.g2g-cs-no-variants .product-slider-container .product-slider-item .product-box .g2g-slider-variants, body.dreamtheme.dreamtheme .g2g-cs-layout-modern.g2g-cs-no-variants .product-slider-container .product-slider-item .product-box .g2g-variant-area {
  display: none;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box .g2g-slider-variants {
  grid-area: variants;
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin: 4px 0 6px;
  min-height: calc(1.3em * 3 + 6px);
}
body.dreamtheme.dreamtheme .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box .g2g-variant-area {
  grid-area: variants;
  min-height: calc(1.3em * 3 + 6px);
  margin: 4px 0 6px;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box .g2g-slider-variants__group {
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.3;
  margin-bottom: 3px;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box .g2g-slider-variants__label {
  font-size: 11px;
  color: var(--g2g-text-muted, #888);
  white-space: nowrap;
  flex: 0 0 auto;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box .g2g-slider-variants__values {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box .g2g-slider-variants__swatch {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  flex: 0 0 16px;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box .g2g-slider-variants__chip {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  color: #374151;
  background: #f3f4f6;
  padding: 1px 6px;
  border-radius: 4px;
  white-space: nowrap;
  line-height: 1.4;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box .g2g-slider-variants__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  color: #6b7280;
  background: #e5e7eb;
  padding: 1px 5px;
  border-radius: 4px;
  white-space: nowrap;
  line-height: 1.4;
  min-width: 22px;
  flex: 0 0 auto;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box .product-cheapest-price {
  display: none;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box .g2g-slider-description {
  grid-area: desc;
  font-size: 12px;
  color: #6b7280;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 2px 0 0;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box .product-detail-ordernumber.g2g-sku-row {
  grid-area: sku;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 11px;
  color: var(--g2g-text-muted, #888);
  min-height: 0;
  line-height: 1.4;
  margin: 2px 0 0;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box .g2g-ean-row {
  grid-area: ean;
  font-size: 10px;
  line-height: 1.2;
  color: var(--g2g-text-muted, #888);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box .product-info {
  background: transparent;
  padding: 14px 18px 14px;
  display: grid;
  grid-template-areas: "mfr      mfr" "title    title" "sku      sku" "ean      ean" "desc     desc" "rating   rating" "variants variants" "stock    stock" "bar      bar" "badges   badges" "price    action";
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto auto auto auto auto auto auto auto auto 1fr;
  gap: 0 12px;
  align-items: center;
  text-align: left;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box .product-info > .g2g-stock-data {
  display: none;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box .g2g-product-card-manufacturer {
  grid-area: mfr;
  font-size: 10px;
  color: var(--g2g-text-muted, #888);
  letter-spacing: 0.04em;
  margin: 0 0 2px;
  line-height: 1.3;
  min-height: 1.3em;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box .product-name-headline {
  grid-area: title;
  font-weight: 700;
  font-size: 16px;
  margin: 0;
  text-align: left;
  line-height: 1.3;
  display: block;
  overflow: visible;
  min-height: calc(1.3em * 2);
}
body.dreamtheme.dreamtheme .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box .product-name {
  font-weight: 700;
  font-size: 16px;
  margin: 0;
  text-align: left;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box .product-price-info, body.dreamtheme.dreamtheme .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box .product-price-wrapper, body.dreamtheme.dreamtheme .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box .g2g-product-price-box, body.dreamtheme.dreamtheme .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box .g2g-product-price-box-inner {
  grid-area: price;
  justify-self: start;
  align-self: end;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  width: auto;
  min-height: 0;
  margin: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box .g2g-product-price-box::before, body.dreamtheme.dreamtheme .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box .g2g-product-price-box::after {
  content: none;
  display: none;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box .g2g-product-price-box-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box .g2g-listing-from-text {
  float: none;
  display: block;
  width: auto;
  margin: 0 0 2px;
  font-size: 11px;
  font-weight: 400;
  color: #6b7280;
  line-height: 1;
  height: auto;
  text-align: left;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box .product-price.product-price, body.dreamtheme.dreamtheme .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box .product-cheapest-price-price {
  font-weight: 700;
  font-size: 19px;
  margin: 0;
  padding-bottom: 0;
  line-height: 1;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box .product-price-unit {
  display: none;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box .product-action {
  grid-area: action;
  justify-self: end;
  align-self: end;
  width: 42px;
  height: 42px;
  margin: 0;
  padding: 0;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box .product-action .buy-widget, body.dreamtheme.dreamtheme .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box .product-action .d-grid {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box .product-action .btn.btn-buy {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background-color: var(--g2g-token-button-buy-bg-default);
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><line x1='12' y1='5' x2='12' y2='19'/><line x1='5' y1='12' x2='19' y2='12'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
  border-radius: 50%;
  border: none;
  color: transparent;
  font-size: 0;
  line-height: 1;
  padding: 0;
  margin: 0;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box .product-action .btn.btn-buy:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  background-color: var(--g2g-token-button-buy-bg-hover);
  filter: brightness(0.9);
}
body.dreamtheme.dreamtheme .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box .product-action .btn.btn-detail {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background-color: var(--g2g-token-color-brand-primary, #64748b);
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><line x1='5' y1='12' x2='19' y2='12'/><polyline points='12 5 19 12 12 19'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
  border-radius: 50%;
  border: none;
  color: transparent;
  font-size: 0;
  line-height: 1;
  padding: 0;
  margin: 0;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(100, 116, 139, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box .product-action .btn.btn-detail:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 18px rgba(100, 116, 139, 0.5);
  background-color: var(--g2g-token-color-brand-primary, #64748b);
  color: transparent;
  filter: brightness(0.95);
}
body.dreamtheme.dreamtheme .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box .g2g-stock-meta {
  grid-area: stock;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 13px;
  margin-top: 6px;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box .g2g-stock-bar {
  grid-area: bar;
  height: 5px;
  background: #e5e7eb;
  border-radius: 3px;
  overflow: hidden;
  margin: 4px 0 10px;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box .g2g-stock-bar > i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #4ade80, #22c55e);
  border-radius: 3px;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box {
  position: relative;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box .g2g-card-badges {
  position: absolute;
  top: 10px;
  left: 8px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin: 0;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box .g2g-card-badges .g2g-badge {
  position: static;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box .g2g-card-badges .g2g-badge--sale {
  background: #dc2626;
  color: #fff;
  border: none;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box .g2g-card-badges .g2g-badge--bestseller {
  background: var(--g2g-card-bestseller-bg);
  color: var(--g2g-card-bestseller-text);
  border: 1px solid var(--g2g-card-bestseller-border);
}
body.dreamtheme.dreamtheme .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box button[class*="product-wishlist-"] .icon {
  line-height: 0;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box button[class*="product-wishlist-"] .icon > svg {
  display: block;
  position: static;
  top: auto;
  vertical-align: top;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box div.product-wishlist:not([class*="product-wishlist-"]) {
  display: none;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-cart-in-image .product-slider-container .product-slider-item .product-box.box-standard {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  overflow: visible;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-cart-in-image .product-slider-container .product-slider-item .product-box .card-body {
  padding: 0;
  background: transparent;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-cart-in-image .product-slider-container .product-slider-item .product-box .product-image-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;
  aspect-ratio: 0.715;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  padding: 0;
  margin: 0;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-cart-in-image .product-slider-container .product-slider-item .product-box .product-image-wrapper > .product-image-link, body.dreamtheme.dreamtheme .g2g-cs-layout-cart-in-image .product-slider-container .product-slider-item .product-box .product-image-wrapper > .product-image-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f3f5;
  border-radius: 14px;
  padding: 0;
  margin: 0;
  overflow: hidden;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-cart-in-image .product-slider-container .product-slider-item .product-box .product-image-wrapper > img, body.dreamtheme.dreamtheme .g2g-cs-layout-cart-in-image .product-slider-container .product-slider-item .product-box .product-image-wrapper > picture > img {
  width: 100%;
  height: 100%;
  max-height: none;
  min-height: 0;
  object-fit: cover;
  object-position: 50% 50%;
  display: block;
  border-radius: 14px;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-cart-in-image .product-slider-container .product-slider-item .product-box .product-image-wrapper > picture {
  display: block;
  width: 100%;
  height: 100%;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-cart-in-image .product-slider-container .product-slider-item .product-box .product-info {
  background: transparent;
  color: #000;
  padding: 10px 0 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-cart-in-image .product-slider-container .product-slider-item .product-box .product-name-headline, body.dreamtheme.dreamtheme .g2g-cs-layout-cart-in-image .product-slider-container .product-slider-item .product-box .product-name {
  color: #000;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  margin: 0 0 6px;
  padding: 0;
  text-align: left;
  text-shadow: none;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-cart-in-image .product-slider-container .product-slider-item .product-box .product-price-info, body.dreamtheme.dreamtheme .g2g-cs-layout-cart-in-image .product-slider-container .product-slider-item .product-box .product-price-wrapper, body.dreamtheme.dreamtheme .g2g-cs-layout-cart-in-image .product-slider-container .product-slider-item .product-box .g2g-product-price-box, body.dreamtheme.dreamtheme .g2g-cs-layout-cart-in-image .product-slider-container .product-slider-item .product-box .g2g-product-price-box-inner {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  width: auto;
  min-height: 0;
  margin: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  justify-self: start;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-cart-in-image .product-slider-container .product-slider-item .product-box .product-price, body.dreamtheme.dreamtheme .g2g-cs-layout-cart-in-image .product-slider-container .product-slider-item .product-box .product-cheapest-price-price {
  color: #000;
  font-weight: 500;
  font-size: 16px;
  margin: 0;
  text-shadow: none;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-cart-in-image .product-slider-container .product-slider-item .product-box .product-price-unit, body.dreamtheme.dreamtheme .g2g-cs-layout-cart-in-image .product-slider-container .product-slider-item .product-box .product-description-detail-btn, body.dreamtheme.dreamtheme .g2g-cs-layout-cart-in-image .product-slider-container .product-slider-item .product-box .product-detail-link {
  display: none;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-cart-in-image .product-slider-container .product-slider-item .product-box .product-action {
  width: 48px;
  height: 48px;
  margin: 0;
  margin-left: auto;
  padding: 0;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-cart-in-image .product-slider-container .product-slider-item .product-box .product-action .buy-widget, body.dreamtheme.dreamtheme .g2g-cs-layout-cart-in-image .product-slider-container .product-slider-item .product-box .product-action .d-grid {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-cart-in-image .product-slider-container .product-slider-item .product-box .product-action .btn.btn-buy, body.dreamtheme.dreamtheme .g2g-cs-layout-cart-in-image .product-slider-container .product-slider-item .product-box .product-action .btn.btn-detail {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background-color: #15803d;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px 24px;
  border-radius: 50%;
  border: 0;
  color: transparent;
  font-size: 0;
  line-height: 1;
  padding: 0;
  margin: 0;
  overflow: hidden;
  box-shadow: none;
  transition: background-color 0.15s ease;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-cart-in-image .product-slider-container .product-slider-item .product-box .product-action .btn.btn-buy:hover, body.dreamtheme.dreamtheme .g2g-cs-layout-cart-in-image .product-slider-container .product-slider-item .product-box .product-action .btn.btn-detail:hover {
  background-color: #0e5c30;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-cart-in-image .product-slider-container .product-slider-item .product-box .product-action .btn.btn-buy {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='21' r='1'/%3E%3Ccircle cx='20' cy='21' r='1'/%3E%3Cpath d='M1 1h4l2.7 13.4a2 2 0 0 0 2 1.6h9.7a2 2 0 0 0 2-1.6L23 6H6'/%3E%3C/svg%3E");
}
body.dreamtheme.dreamtheme .g2g-cs-layout-cart-in-image .product-slider-container .product-slider-item .product-box .product-action .btn.btn-detail {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3Cpolyline points='12 5 19 12 12 19'/%3E%3C/svg%3E");
}
body.dreamtheme.dreamtheme .g2g-cs-layout-cart-in-image .product-slider-container .product-slider-item .product-box .g2g-product-rating:has(> .g2g-rating-empty:only-child) {
  display: none;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-cart-in-image .product-slider-container .product-slider-item .product-box .g2g-slider-description {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 4px;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-cart-in-image .product-slider-container .product-slider-item .product-box .g2g-product-card-manufacturer {
  font-size: 11px;
  color: var(--g2g-text-muted, #888);
  letter-spacing: 0.04em;
  margin: 0 0 2px;
  line-height: 1.3;
  min-height: 1.3em;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-cart-in-image .product-slider-container .product-slider-item .product-box .product-detail-ordernumber.g2g-sku-row {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 12px;
  color: var(--g2g-text-muted, #888);
  min-height: 0;
  line-height: 1.4;
  margin: 2px 0;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box.box-standard {
  background: #fff;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), 0 0 1px rgba(0, 0, 0, 0.06);
  padding: 0;
  overflow: hidden;
  height: 100%;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .card-body {
  padding: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .card-body > a:not(.product-name) {
  background: transparent;
  display: block;
  padding: 0;
  margin: 0;
  border-radius: 0;
  position: relative;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .product-image-wrapper {
  background: #fff;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
  border-radius: 0;
  padding: 0;
  box-sizing: border-box;
  flex: 0 0 auto;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .product-image-wrapper > img, body.dreamtheme.dreamtheme .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .product-image-wrapper > picture > img {
  width: 100%;
  height: 100%;
  max-height: none;
  min-height: 0;
  object-fit: contain;
  object-position: 50% 50%;
  display: block;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .product-image-wrapper > .product-badges, body.dreamtheme.dreamtheme .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .card-body > .product-badges {
  position: absolute;
  top: 8px;
  left: 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 0;
  margin: 0;
  z-index: 3;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .product-image-wrapper > .product-badges .badge, body.dreamtheme.dreamtheme .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .product-image-wrapper > .product-badges .badge-stock2gether, body.dreamtheme.dreamtheme .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .product-image-wrapper > .product-badges .g2g-stock-urgency, body.dreamtheme.dreamtheme .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .card-body > .product-badges .badge, body.dreamtheme.dreamtheme .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .card-body > .product-badges .badge-stock2gether, body.dreamtheme.dreamtheme .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .card-body > .product-badges .g2g-stock-urgency {
  box-sizing: border-box;
  height: 26px;
  min-height: 26px;
  padding: 0 10px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 0;
  box-shadow: none;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .product-wishlist-action-circle, body.dreamtheme.dreamtheme .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .product-wishlist {
  display: none;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .product-info {
  background: transparent;
  color: #000;
  padding: 10px 14px 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  text-align: left;
  flex: 1 1 auto;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .g2g-product-rating:has(> .g2g-rating-empty:only-child), body.dreamtheme.dreamtheme .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .product-info .g2g-stock-meta, body.dreamtheme.dreamtheme .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .product-info .g2g-stock-bar, body.dreamtheme.dreamtheme .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .product-info .g2g-card-badges, body.dreamtheme.dreamtheme .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .product-info .product-price-unit, body.dreamtheme.dreamtheme .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .product-info .badge, body.dreamtheme.dreamtheme .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .product-info .badge-discount, body.dreamtheme.dreamtheme .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .product-info .bg-danger {
  display: none;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .g2g-product-rating {
  color: #555;
  font-size: 14px;
  margin: 0;
  text-align: center;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .product-name-headline {
  color: #000;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  margin: 4px 0 0;
  padding: 0;
  text-align: left;
  text-shadow: none;
  display: block;
  overflow: visible;
  min-height: calc(2 * 1.3em);
}
body.dreamtheme.dreamtheme .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .product-name {
  color: #000;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  margin: 0;
  padding: 0;
  text-align: left;
  text-shadow: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .product-detail-ordernumber.g2g-sku-row {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 12px;
  color: var(--g2g-text-muted, #888);
  min-height: 0;
  line-height: 1.4;
  margin: 2px 0;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .product-price-info, body.dreamtheme.dreamtheme .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .product-price-wrapper, body.dreamtheme.dreamtheme .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .g2g-product-price-box, body.dreamtheme.dreamtheme .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .g2g-product-price-box-inner {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  width: auto;
  min-height: 0;
  margin: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  justify-self: flex-start;
  justify-content: flex-start;
  text-align: left;
  display: flex;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .product-price-info, body.dreamtheme.dreamtheme .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .product-price-wrapper {
  flex-direction: column;
  align-items: flex-start;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .product-price-info {
  margin-top: auto;
  min-height: 50px;
  justify-content: flex-end;
  align-items: flex-start;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .product-cheapest-price {
  margin-bottom: 6px;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .product-price, body.dreamtheme.dreamtheme .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .product-cheapest-price-price {
  color: #000;
  font-weight: 500;
  font-size: 16px;
  margin: 0;
  text-shadow: none;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  height: auto;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .g2g-listing-from-text {
  font-size: 14px;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .product-cheapest-price-from {
  color: #4b5563;
  font-size: 14px;
  font-weight: 400;
  margin-right: 4px;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .product-price-tax-link, body.dreamtheme.dreamtheme .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .g2g-stock-data, body.dreamtheme.dreamtheme .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .product-description-detail-btn, body.dreamtheme.dreamtheme .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .product-detail-link {
  display: none;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .g2g-slider-description {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  min-height: calc(2 * 1.4em);
}
body.dreamtheme.dreamtheme .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .g2g-product-card-manufacturer {
  font-size: 11px;
  color: var(--g2g-text-muted, #888);
  letter-spacing: 0.04em;
  margin: 0 0 2px;
  line-height: 1.3;
  min-height: calc(1 * 1.3em);
}
body.dreamtheme.dreamtheme .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .product-action {
  width: 100%;
  margin: 8px 0 0;
  margin-top: auto;
  padding: 0 0 10px;
  position: static;
  display: flex;
  align-items: stretch;
  gap: 0;
  height: 48px;
  flex: 0 0 auto;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .product-action .buy-widget, body.dreamtheme.dreamtheme .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .product-action .d-grid {
  height: 100%;
  margin: 0;
  padding: 0;
  flex: 1 1 0;
  width: 25%;
  min-width: 0;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .product-action .g2g-buy-row {
  display: flex;
  flex-direction: row;
  height: 100%;
  align-items: stretch;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .product-action .g2g-buy-row .g2g-classic-stepper-wrap {
  display: none;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .product-action .g2g-qty-stepper {
  flex: 3 1 0;
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: #e5e7eb;
  border-radius: 6px 0 0 6px;
  overflow: hidden;
  height: 100%;
  box-sizing: border-box;
  padding: 0;
  gap: 0;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .product-action .g2g-qty-stepper .g2g-qty-minus, body.dreamtheme.dreamtheme .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .product-action .g2g-qty-stepper .g2g-qty-plus {
  width: 100%;
  height: 100%;
  background: #dde0e5;
  border: 0;
  border-radius: 0;
  color: #1f2937;
  font-size: 22px;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .product-action .g2g-qty-stepper .g2g-qty-minus:hover, body.dreamtheme.dreamtheme .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .product-action .g2g-qty-stepper .g2g-qty-plus:hover {
  background: #cbd0d7;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .product-action .g2g-qty-stepper .g2g-qty-input {
  background: transparent;
  width: 100%;
  height: 100%;
  text-align: center;
  border: 0;
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  padding: 0;
  -moz-appearance: textfield;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .product-action .g2g-qty-stepper .g2g-qty-input::-webkit-outer-spin-button, body.dreamtheme.dreamtheme .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .product-action .g2g-qty-stepper .g2g-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .product-action .btn.btn-buy, body.dreamtheme.dreamtheme .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .product-action .btn.btn-detail {
  width: 100%;
  height: 100%;
  min-width: 0;
  background-color: #15803d;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px 22px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='21' r='1'/%3E%3Ccircle cx='20' cy='21' r='1'/%3E%3Cpath d='M1 1h4l2.7 13.4a2 2 0 0 0 2 1.6h9.7a2 2 0 0 0 2-1.6L23 6H6'/%3E%3C/svg%3E");
  border-radius: 0 6px 6px 0;
  border: 0;
  color: transparent;
  font-size: 0;
  line-height: 1;
  padding: 0;
  margin: 0;
  overflow: hidden;
  box-shadow: none;
  transition: background-color 0.15s ease;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .product-action .btn.btn-buy:hover, body.dreamtheme.dreamtheme .g2g-cs-layout-quantity-cart .product-slider-container .product-slider-item .product-box .product-action .btn.btn-detail:hover {
  background-color: #0e5c30;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-add-on-image .product-slider-container .product-slider-item .product-box.box-standard {
  background: #fff;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  padding: 8px;
  overflow: visible;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-add-on-image .product-slider-container .product-slider-item .product-box .card-body {
  padding: 0;
  background: transparent;
  gap: 8px;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-add-on-image .product-slider-container .product-slider-item .product-box .card-body > a:not(.product-name) {
  background: transparent;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-add-on-image .product-slider-container .product-slider-item .product-box .product-image-wrapper {
  background: #fff;
  width: 100%;
  position: relative;
  overflow: visible;
  border-radius: 8px;
  padding: 8px;
  box-sizing: border-box;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-add-on-image .product-slider-container .product-slider-item .product-box .product-image-wrapper > img, body.dreamtheme.dreamtheme .g2g-cs-layout-add-on-image .product-slider-container .product-slider-item .product-box .product-image-wrapper > picture > img {
  width: 100%;
  height: 100%;
  max-height: none;
  min-height: 0;
  object-fit: contain;
  object-position: 50% 50%;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-add-on-image .product-slider-container .product-slider-item .product-box .product-wishlist-action-circle, body.dreamtheme.dreamtheme .g2g-cs-layout-add-on-image .product-slider-container .product-slider-item .product-box .product-wishlist {
  display: none;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-add-on-image .product-slider-container .product-slider-item .product-box .g2g-product-rating {
  display: none;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-add-on-image .product-slider-container .product-slider-item .product-box .product-info {
  background: transparent;
  color: #1f1f1f;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
  flex: 1;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-add-on-image .product-slider-container .product-slider-item .product-box .product-info .g2g-stock-meta, body.dreamtheme.dreamtheme .g2g-cs-layout-add-on-image .product-slider-container .product-slider-item .product-box .product-info .g2g-stock-bar, body.dreamtheme.dreamtheme .g2g-cs-layout-add-on-image .product-slider-container .product-slider-item .product-box .product-info .g2g-card-badges {
  display: none;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-add-on-image .product-slider-container .product-slider-item .product-box .product-name-headline, body.dreamtheme.dreamtheme .g2g-cs-layout-add-on-image .product-slider-container .product-slider-item .product-box .product-name {
  color: #1f1f1f;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.3;
  margin: 0 0 4px;
  padding: 0;
  text-align: left;
  text-shadow: none;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-add-on-image .product-slider-container .product-slider-item .product-box .product-price-unit {
  display: block;
  color: #4b5563;
  font-size: 13px;
  margin: 0;
  text-align: left;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-add-on-image .product-slider-container .product-slider-item .product-box .product-price-info, body.dreamtheme.dreamtheme .g2g-cs-layout-add-on-image .product-slider-container .product-slider-item .product-box .product-price-wrapper, body.dreamtheme.dreamtheme .g2g-cs-layout-add-on-image .product-slider-container .product-slider-item .product-box .g2g-product-price-box, body.dreamtheme.dreamtheme .g2g-cs-layout-add-on-image .product-slider-container .product-slider-item .product-box .g2g-product-price-box-inner {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  width: auto;
  min-height: 0;
  margin: 4px 0 0;
  margin-top: auto;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  justify-content: flex-end;
  text-align: right;
  display: flex;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-add-on-image .product-slider-container .product-slider-item .product-box .product-price, body.dreamtheme.dreamtheme .g2g-cs-layout-add-on-image .product-slider-container .product-slider-item .product-box .product-cheapest-price-price {
  color: #a50a50;
  font-weight: 700;
  font-size: 18px;
  margin: 0;
  text-shadow: none;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-add-on-image .product-slider-container .product-slider-item .product-box .product-action {
  width: 32px;
  height: 32px;
  margin: 0;
  margin-left: auto;
  padding: 0;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-add-on-image .product-slider-container .product-slider-item .product-box .product-action .buy-widget, body.dreamtheme.dreamtheme .g2g-cs-layout-add-on-image .product-slider-container .product-slider-item .product-box .product-action .d-grid {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: stretch;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-add-on-image .product-slider-container .product-slider-item .product-box .product-action .btn.btn-buy, body.dreamtheme.dreamtheme .g2g-cs-layout-add-on-image .product-slider-container .product-slider-item .product-box .product-action .btn.btn-detail {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background-color: #15803d;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
  border-radius: 4px;
  border: 0;
  color: transparent;
  font-size: 0;
  padding: 0;
  margin: 0;
  box-shadow: none;
  transition: background-color 0.15s ease;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-add-on-image .product-slider-container .product-slider-item .product-box .product-action .btn.btn-buy {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E");
}
body.dreamtheme.dreamtheme .g2g-cs-layout-add-on-image .product-slider-container .product-slider-item .product-box .product-action .btn.btn-detail {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3Cpolyline points='12 5 19 12 12 19'/%3E%3C/svg%3E");
}
body.dreamtheme.dreamtheme .g2g-cs-layout-add-on-image .product-slider-container .product-slider-item .product-box .product-action .btn.btn-buy:hover, body.dreamtheme.dreamtheme .g2g-cs-layout-add-on-image .product-slider-container .product-slider-item .product-box .product-action .btn.btn-detail:hover {
  background-color: #0e5c30;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-add-on-image .product-slider-container .product-slider-item .product-box .g2g-slider-description {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 2px;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-add-on-image .product-slider-container .product-slider-item .product-box .g2g-product-card-manufacturer {
  font-size: 11px;
  color: var(--g2g-text-muted, #888);
  letter-spacing: 0.04em;
  margin: 0 0 2px;
  line-height: 1.3;
  min-height: 1.3em;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-add-on-image .product-slider-container .product-slider-item .product-box .product-detail-ordernumber.g2g-sku-row {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 11px;
  color: var(--g2g-text-muted, #888);
  min-height: 0;
  line-height: 1.4;
  margin: 2px 0;
}
body.dreamtheme.dreamtheme .cms-element-product-slider .product-slider-container:not(.tns-slider) {
  overflow: hidden;
  gap: 15px;
}
body.dreamtheme.dreamtheme .cms-element-product-slider .product-slider-container:not(.tns-slider) .product-slider-item {
  flex: 0 0 calc(25% - 12px);
}
body.dreamtheme.dreamtheme .cms-element-product-slider .product-slider-container:not(.tns-slider) .product-slider-item:nth-child(n+5) {
  display: none;
}
body.dreamtheme.dreamtheme .g2g-cs-instant-slide .product-slider-container.tns-slider {
  transition: none;
}
body.dreamtheme.dreamtheme .cms-element-product-slider .product-slider-container.tns-vpfix > .product-slider-item {
  display: flex;
}
body.dreamtheme.dreamtheme .base-slider .tns-ovh.tns-ovh {
  overflow: hidden;
}
body.dreamtheme.dreamtheme .cms-element-product-slider .product-image-wrapper .product-image-placeholder.product-image-placeholder {
  max-width: none;
  width: 100%;
  height: 100%;
}
body.dreamtheme.dreamtheme .cms-element-product-slider .product-image-wrapper .product-image-placeholder.product-image-placeholder .icon {
  width: 100%;
  height: 100%;
}
body.dreamtheme.dreamtheme .cms-element-product-slider .product-image-wrapper .product-image-placeholder.product-image-placeholder .icon svg {
  width: 100%;
  height: 100%;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-modern .product-slider-container .product-slider-item .product-box .product-action .g2g-buy-row .g2g-classic-stepper-wrap, body.dreamtheme.dreamtheme .g2g-cs-layout-add-on-image .product-slider-container .product-slider-item .product-box .product-action .g2g-buy-row .g2g-classic-stepper-wrap, body.dreamtheme.dreamtheme .g2g-cs-layout-cart-in-image .product-slider-container .product-slider-item .product-box .product-action .g2g-buy-row .g2g-classic-stepper-wrap {
  display: none;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-classic .product-slider-container .product-slider-item .product-box .product-info .g2g-stock-meta, body.dreamtheme.dreamtheme .g2g-cs-layout-classic .product-slider-container .product-slider-item .product-box .product-info .g2g-stock-bar, body.dreamtheme.dreamtheme .g2g-cs-layout-cart-in-image .product-slider-container .product-slider-item .product-box .product-info .g2g-stock-meta, body.dreamtheme.dreamtheme .g2g-cs-layout-cart-in-image .product-slider-container .product-slider-item .product-box .product-info .g2g-stock-bar {
  display: none;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-classic .product-slider-container .product-slider-item .product-box .product-info .g2g-card-badges, body.dreamtheme.dreamtheme .g2g-cs-layout-classic .product-slider-container .product-slider-item .product-box .product-info .g2g-badge--sale, body.dreamtheme.dreamtheme .g2g-cs-layout-classic .product-slider-container .product-slider-item .product-box .product-info .g2g-badge--bestseller {
  display: none;
}
body.dreamtheme.dreamtheme .g2g-cs-layout-classic .product-slider-container .product-slider-item .product-box .product-image-wrapper > picture > img, body.dreamtheme.dreamtheme .g2g-cs-layout-classic .product-slider-container .product-slider-item .product-box .product-image-wrapper > img {
  height: 100%;
  max-height: 100%;
}
body.dreamtheme.dreamtheme .cms-element-product-slider.g2g-cs-no-variants .product-slider-item .product-box .g2g-variant-area {
  display: none;
}
body.dreamtheme.dreamtheme .cms-element-product-slider:not(.g2g-cs-no-variants) .product-slider-item .product-box .g2g-variant-area {
  --g2g-variant-rows: 3;
  --g2g-variant-row-h: 25px;
  position: relative;
  height: calc(var(--g2g-variant-rows) * var(--g2g-variant-row-h) + 5px);
  padding: 0 0 5px;
  box-sizing: border-box;
  overflow: hidden;
  margin-bottom: 10px;
}
body.dreamtheme.dreamtheme .cms-element-product-slider .product-slider-item .product-box .g2g-variant-area.is-expanded {
  height: auto;
  overflow: visible;
}
body.dreamtheme.dreamtheme .cms-element-product-slider .product-slider-item .product-box .g2g-variant-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  height: 18px;
  margin-left: 4px;
  padding: 0 8px;
  border: 0;
  border-radius: 4px;
  background: var(--g2g-token-color-brand-primary, #ec5b13);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  vertical-align: middle;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  transition: filter 0.15s ease;
}
body.dreamtheme.dreamtheme .cms-element-product-slider .product-slider-item .product-box .g2g-variant-area.g2g-has-overflow .g2g-variant-toggle, body.dreamtheme.dreamtheme .cms-element-product-slider .product-slider-item .product-box .g2g-variant-area.is-expanded .g2g-variant-toggle {
  display: inline-flex;
}
body.dreamtheme.dreamtheme .cms-element-product-slider .product-slider-item .product-box .g2g-variant-toggle::before {
  content: "+";
}
body.dreamtheme.dreamtheme .cms-element-product-slider .product-slider-item .product-box .g2g-variant-area.is-expanded .g2g-variant-toggle::before {
  content: "−";
}
body.dreamtheme.dreamtheme .cms-element-product-slider .product-slider-item .product-box .g2g-variant-toggle:hover {
  filter: brightness(1.08);
}
body.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-text-align-grid-left:not(.g2g-listing-view-list) .product-box .card-body, body.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-text-align-grid-left:not(.g2g-listing-view-list) .product-box .product-info, body.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-text-align-grid-left:not(.g2g-listing-view-list) .product-box .product-info .product-name {
  text-align: left;
}
body.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-text-align-grid-left:not(.g2g-listing-view-list) .product-box .product-info .product-price-info .product-price-wrapper .g2g-product-price-box-inner {
  margin: 0;
}
body.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-text-align-grid-center:not(.g2g-listing-view-list) .product-box .card-body, body.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-text-align-grid-center:not(.g2g-listing-view-list) .product-box .product-info, body.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-text-align-grid-center:not(.g2g-listing-view-list) .product-box .product-info .product-name {
  text-align: center;
}
body.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-text-align-grid-right:not(.g2g-listing-view-list) .product-box .card-body, body.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-text-align-grid-right:not(.g2g-listing-view-list) .product-box .product-info, body.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-text-align-grid-right:not(.g2g-listing-view-list) .product-box .product-info .product-name {
  text-align: right;
}
body.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-text-align-grid-right:not(.g2g-listing-view-list) .product-box .product-info .product-price-info .product-price-wrapper .g2g-product-price-box-inner {
  margin: 0;
}
body.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-card-text-align-list-left .product-box .card-body, body.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-card-text-align-list-left .product-box .product-info, body.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-card-text-align-list-left .product-box .product-info .product-name {
  text-align: left;
}
body.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-card-text-align-list-center .product-box .card-body, body.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-card-text-align-list-center .product-box .product-info, body.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-card-text-align-list-center .product-box .product-info .product-name {
  text-align: center;
}
body.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-card-text-align-list-right .product-box .card-body, body.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-card-text-align-list-right .product-box .product-info, body.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-card-text-align-list-right .product-box .product-info .product-name {
  text-align: right;
}
body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing .cms-listing-col {
  min-width: 0;
}
body.dreamtheme.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content .filter-rating-select-list-item .filter-rating-select-item-label-text, body.dreamtheme.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content .filter-rating-select-list-item .filter-rating-select-item-checkmark, body.dreamtheme.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content .filter-rating-select-list-item label {
  font-size: 13px;
}
body.dreamtheme.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content .filter-rating-select-list-item i, body.dreamtheme.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content .filter-rating-select-list-item svg {
  font-size: 13px;
  width: 13px;
  height: 13px;
}
body.dreamtheme.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content .filter-rating-select-list-item .product-review-point {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
}
body.dreamtheme.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content .filter-rating-select-list-item .product-review-point .point-container {
  display: none;
}
body.dreamtheme.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content .filter-rating-select-list-item .product-review-point::before {
  content: "★";
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.05em;
}
body.dreamtheme.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content .filter-rating-select-list-item .product-review-point:has(.point-full)::before {
  color: #f59e0b;
}
body.dreamtheme.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content .filter-rating-select-list-item .product-review-point:has(.point-blank)::before {
  color: #d4d4d4;
}
body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-hide-badges-grid:not(.g2g-listing-view-list) .product-box .product-badges.product-badges, body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-hide-badges-grid:not(.g2g-listing-view-list) .product-box .g2g-card-badges.g2g-card-badges, body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-hide-badges-grid:not(.g2g-listing-view-list) .product-box .g2g-card-photo-badges.g2g-card-photo-badges, body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-hide-badges-grid:not(.g2g-listing-view-list) .product-box .g2g-stock-meta.g2g-stock-meta, body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-hide-badges-grid:not(.g2g-listing-view-list) .product-box .g2g-stock-bar.g2g-stock-bar {
  display: none;
}
body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-hide-badges-list.g2g-listing-view-list .product-box .product-badges.product-badges, body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-hide-badges-list.g2g-listing-view-list .product-box .g2g-card-badges.g2g-card-badges, body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-hide-badges-list.g2g-listing-view-list .product-box .g2g-stock-meta.g2g-stock-meta, body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-hide-badges-list.g2g-listing-view-list .product-box .g2g-stock-bar.g2g-stock-bar {
  display: none;
}
body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-hide-list-description.g2g-listing-view-list .product-box .product-info .g2g-list-description.g2g-list-description {
  display: none;
}
body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-hide-list-trust-bar.g2g-listing-view-list .product-box .product-info .g2g-list-trust-bar.g2g-list-trust-bar {
  display: none;
}
body.dreamtheme.dreamtheme.dreamtheme .g2g-glass .cms-element-product-listing .product-box .product-image-wrapper > img, body.dreamtheme.dreamtheme.dreamtheme .g2g-glass .cms-element-product-listing .product-box .product-image-wrapper > picture > img {
  opacity: 0.9;
}
body.dreamtheme.dreamtheme.dreamtheme .cms-section-sidebar-main-content, body.dreamtheme.dreamtheme.dreamtheme .cms-section-sidebar-sidebar-content {
  min-width: 0;
}
body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list) .product-box .product-image-wrapper {
  aspect-ratio: auto;
  contain-intrinsic-size: auto 300px;
}
body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list).g2g-listing-card-aspect-square .product-box .product-image-wrapper, body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list).g2g-listing-card-aspect-portrait .product-box .product-image-wrapper, body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list).g2g-listing-card-aspect-landscape .product-box .product-image-wrapper, body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list).g2g-listing-card-aspect-cinema .product-box .product-image-wrapper, body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list).g2g-listing-card-aspect-social .product-box .product-image-wrapper {
  height: auto;
  min-height: 0;
  max-height: none;
  padding: 0;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list).g2g-listing-card-aspect-square .product-box .product-image-wrapper > picture, body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list).g2g-listing-card-aspect-portrait .product-box .product-image-wrapper > picture, body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list).g2g-listing-card-aspect-landscape .product-box .product-image-wrapper > picture, body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list).g2g-listing-card-aspect-cinema .product-box .product-image-wrapper > picture, body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list).g2g-listing-card-aspect-social .product-box .product-image-wrapper > picture {
  width: 100%;
}
body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list).g2g-listing-card-aspect-square .product-box .product-image-wrapper > img, body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list).g2g-listing-card-aspect-square .product-box .product-image-wrapper > picture > img, body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list).g2g-listing-card-aspect-portrait .product-box .product-image-wrapper > img, body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list).g2g-listing-card-aspect-portrait .product-box .product-image-wrapper > picture > img, body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list).g2g-listing-card-aspect-landscape .product-box .product-image-wrapper > img, body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list).g2g-listing-card-aspect-landscape .product-box .product-image-wrapper > picture > img, body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list).g2g-listing-card-aspect-cinema .product-box .product-image-wrapper > img, body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list).g2g-listing-card-aspect-cinema .product-box .product-image-wrapper > picture > img, body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list).g2g-listing-card-aspect-social .product-box .product-image-wrapper > img, body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list).g2g-listing-card-aspect-social .product-box .product-image-wrapper > picture > img {
  width: 100%;
  height: auto;
  max-height: none;
}
body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list).g2g-listing-card-aspect-square .product-box.box-standard, body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list).g2g-listing-card-aspect-portrait .product-box.box-standard, body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list).g2g-listing-card-aspect-landscape .product-box.box-standard, body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list).g2g-listing-card-aspect-cinema .product-box.box-standard, body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list).g2g-listing-card-aspect-social .product-box.box-standard {
  padding: 0;
  overflow: hidden;
}
body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list).g2g-listing-card-aspect-square .product-box .product-image-wrapper {
  aspect-ratio: 1;
}
body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list).g2g-listing-card-aspect-portrait .product-box .product-image-wrapper {
  aspect-ratio: 0.75;
}
body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list).g2g-listing-card-aspect-landscape .product-box .product-image-wrapper {
  aspect-ratio: 1.3333333333;
}
body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list).g2g-listing-card-aspect-cinema .product-box .product-image-wrapper {
  aspect-ratio: 1.7777777778;
}
body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing:not(.g2g-listing-view-list).g2g-listing-card-aspect-social .product-box .product-image-wrapper {
  aspect-ratio: 0.5625;
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-card-badge-style-standard .product-box .product-badges .badge {
  border-radius: var(--g2g-border-radius, 4px);
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-card-badge-style-standard .product-box .product-badges .badge-stock2gether {
  border-radius: var(--g2g-border-radius, 4px);
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-card-badge-style-standard .product-box .product-badges .g2g-stock-urgency {
  border-radius: var(--g2g-border-radius, 4px);
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-card-badge-style-standard .product-box .product-image-wrapper > .product-badges .badge {
  border-radius: var(--g2g-border-radius, 4px);
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-card-badge-style-standard .product-box .product-image-wrapper > .product-badges .badge-stock2gether {
  border-radius: var(--g2g-border-radius, 4px);
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-card-badge-style-standard .product-box .product-image-wrapper > .product-badges .g2g-stock-urgency {
  border-radius: var(--g2g-border-radius, 4px);
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-card-badge-style-pill .product-box .product-badges .badge {
  border-radius: var(--g2g-border-radius, 99px);
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-card-badge-style-pill .product-box .product-badges .badge-stock2gether {
  border-radius: var(--g2g-border-radius, 99px);
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-card-badge-style-pill .product-box .product-badges .g2g-stock-urgency {
  border-radius: var(--g2g-border-radius, 99px);
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-card-badge-style-pill .product-box .product-image-wrapper > .product-badges .badge {
  border-radius: var(--g2g-border-radius, 99px);
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-card-badge-style-pill .product-box .product-image-wrapper > .product-badges .badge-stock2gether {
  border-radius: var(--g2g-border-radius, 99px);
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-card-badge-style-pill .product-box .product-image-wrapper > .product-badges .g2g-stock-urgency {
  border-radius: var(--g2g-border-radius, 99px);
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-card-badge-style-upside-down .product-box .product-badges .badge {
  border-radius: 0 8px 0 6px;
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-card-badge-style-upside-down .product-box .product-badges .badge-stock2gether {
  border-radius: 0 8px 0 6px;
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-card-badge-style-upside-down .product-box .product-badges .g2g-stock-urgency {
  border-radius: 0 8px 0 6px;
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-card-badge-style-upside-down .product-box .product-image-wrapper > .product-badges .badge {
  border-radius: 0 8px 0 6px;
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-card-badge-style-upside-down .product-box .product-image-wrapper > .product-badges .badge-stock2gether {
  border-radius: 0 8px 0 6px;
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-card-badge-style-upside-down .product-box .product-image-wrapper > .product-badges .g2g-stock-urgency {
  border-radius: 0 8px 0 6px;
}
.dreamtheme .product-box .product-info .g2g-card-badges {
  display: none;
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list .product-box .product-info .product-name-headline, body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list .product-box .product-info .product-name-headline .product-name, body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list .product-box .product-info .g2g-list-description, body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list .product-box .product-info .g2g-list-trust-bar, body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list .product-box .product-info .g2g-product-rating, body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list .product-box .product-info .product-price-info, body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list .product-box .product-info .product-price-info .product-price, body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list .product-box .product-info .product-price-info .product-cheapest-price-price, body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list .product-box .product-info .g2g-list-variants-hint {
  color: #1f2937;
  text-shadow: none;
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list .product-box .product-info .g2g-list-variants-hint {
  background: rgba(0, 0, 0, 0.06);
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .g2g-glass .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list .product-box .product-info .product-name-headline, body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .g2g-glass .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list .product-box .product-info .product-name-headline .product-name, body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .g2g-glass .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list .product-box .product-info .g2g-list-description, body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .g2g-glass .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list .product-box .product-info .g2g-list-trust-bar, body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .g2g-glass .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list .product-box .product-info .g2g-product-rating, body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .g2g-glass .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list .product-box .product-info .product-price-info, body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .g2g-glass .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list .product-box .product-info .product-price-info .product-price, body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .g2g-glass .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list .product-box .product-info .product-price-info .product-cheapest-price-price, body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .g2g-glass .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list .product-box .product-info .g2g-list-variants-hint {
  color: var(--g2g-glass-text-color, #fff);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .g2g-glass .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list .product-box .product-info .g2g-list-variants-hint {
  background: rgba(255, 255, 255, 0.18);
}
@media (min-width: 768px) {
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box.box-standard.box-standard {
    padding: 0;
    height: 300px;
    min-height: 300px;
    max-height: 300px;
    border-radius: 12px;
    overflow: hidden;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .card-body {
    flex-direction: row;
    gap: 0;
    padding: 0;
    position: relative;
    height: 100%;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .card-body > a:not(.product-name) {
    display: flex;
    padding: 0;
    border-right: 0;
    position: static;
    flex: 0 0 auto;
    width: 180px;
    height: 100%;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-list-aspect-square .product-box .card-body > a:not(.product-name) {
    flex: 0 0 300px;
    width: 300px;
    max-width: 300px;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-list-aspect-portrait .product-box .card-body > a:not(.product-name) {
    flex: 0 0 225px;
    width: 225px;
    max-width: 225px;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-list-aspect-landscape .product-box .card-body > a:not(.product-name) {
    flex: 0 0 400px;
    width: 400px;
    max-width: 400px;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-list-aspect-cinema .product-box .card-body > a:not(.product-name) {
    flex: 0 0 533px;
    width: 533px;
    max-width: 533px;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-list-aspect-social .product-box .card-body > a:not(.product-name) {
    flex: 0 0 169px;
    width: 169px;
    max-width: 169px;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-image-wrapper {
    position: static;
    padding: 0;
    border-radius: 0;
    aspect-ratio: auto;
    height: 100%;
    width: 100%;
    flex: 0 0 auto;
    overflow: visible;
    background: #fff;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-image-wrapper > img, body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-image-wrapper > picture > img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    transition: transform 0.35s ease;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box:hover .product-image-wrapper > img, body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box:hover .product-image-wrapper > picture > img {
    transform: scale(1.04);
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .card-body > .product-badges {
    position: absolute;
    bottom: 14px;
    left: 14px;
    top: auto;
    right: auto;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 5px;
    z-index: 3;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-badges .badge, body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-badges .badge-stock2gether, body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-badges .g2g-stock-urgency {
    height: 21px;
    min-height: 21px;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    top: 0;
    position: static;
  }
  body.dreamtheme.dreamtheme.dreamtheme .g2g-glass .cms-element-product-listing.g2g-listing-view-list .product-box .product-badges .badge, body.dreamtheme.dreamtheme.dreamtheme .g2g-glass .cms-element-product-listing.g2g-listing-view-list .product-box .product-badges .badge-stock2gether, body.dreamtheme.dreamtheme.dreamtheme .g2g-glass .cms-element-product-listing.g2g-listing-view-list .product-box .product-badges .g2g-stock-urgency {
    background: var(--g2g-token-cro-badge-new-bg, #2e7d32);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    color: #fff;
  }
  body.dreamtheme.dreamtheme.dreamtheme .g2g-glass .cms-element-product-listing.g2g-listing-view-list .product-box .product-badges .badge-stock2gether.is-out {
    background: var(--g2g-token-cro-badge-sale-bg, #c62828);
  }
  body.dreamtheme.dreamtheme.dreamtheme .g2g-glass .cms-element-product-listing.g2g-listing-view-list .product-box .product-badges .badge.badge-danger, body.dreamtheme.dreamtheme.dreamtheme .g2g-glass .cms-element-product-listing.g2g-listing-view-list .product-box .product-badges .badge.badge-discount, body.dreamtheme.dreamtheme.dreamtheme .g2g-glass .cms-element-product-listing.g2g-listing-view-list .product-box .product-badges .badge.bg-danger {
    background: var(--g2g-token-cro-badge-sale-bg, #c62828);
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .card-body .product-action, body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-image-wrapper > .product-action {
    position: absolute;
    right: 22px;
    bottom: 22px;
    width: auto;
    min-height: 0;
    z-index: 4;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-action .g2g-buy-row .g2g-classic-stepper-wrap {
    display: grid;
    grid-template-columns: auto 1fr auto;
    width: auto;
    height: 40px;
    background: #e5e7eb;
    border-radius: 8px 0 0 8px;
    overflow: hidden;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-action .g2g-buy-row .g2g-classic-stepper-wrap .g2g-qty-minus, body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-action .g2g-buy-row .g2g-classic-stepper-wrap .g2g-qty-plus {
    width: 34px;
    height: 100%;
    background: #dde0e5;
    border: 0;
    border-radius: 0;
    color: #1f2937;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-action .g2g-buy-row .g2g-classic-stepper-wrap .g2g-qty-minus:hover, body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-action .g2g-buy-row .g2g-classic-stepper-wrap .g2g-qty-plus:hover {
    background: #cbd0d7;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-action .g2g-buy-row .g2g-classic-stepper-wrap .g2g-qty-display {
    background: transparent;
    text-align: center;
    border: 0;
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    padding: 0 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    white-space: nowrap;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-action .g2g-buy-row .g2g-classic-stepper-wrap .g2g-qty-unit-inline {
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-top: 5px;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-action .g2g-buy-row {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    width: auto;
    min-height: 0;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-action .g2g-buy-row .g2g-buy-btn-wrap {
    flex: 0 0 auto;
    display: flex;
    width: auto;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-action > form, body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-action > .d-grid {
    width: auto;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-action .btn.btn-buy {
    width: 52px;
    min-width: 52px;
    height: 40px;
    background-image: none;
    background-color: #2e7d32;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 0;
    border-radius: 0 8px 8px 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    white-space: nowrap;
    overflow: hidden;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-action .btn.btn-buy .g2g-buy-label {
    display: none;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-action .btn.btn-buy .g2g-buy-icon {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-action .btn.btn-detail, body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-action .d-grid .btn.btn-detail {
    width: auto;
    min-width: 160px;
    height: 40px;
    background-image: none;
    background-color: #2e7d32;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 0 18px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-action .btn.btn-buy:hover, body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-action .btn.btn-detail:hover {
    background-color: #266a2a;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-info {
    display: block;
    align-self: stretch;
    padding: 18px 20px;
    position: relative;
    flex: 1 1 0;
  }
  body.dreamtheme.dreamtheme.dreamtheme .g2g-glass .cms-element-product-listing.g2g-listing-view-list .product-box .product-info {
    background: rgba(255, 255, 255, calc(var(--g2g-glass-alpha, 15) / 100));
    backdrop-filter: blur(var(--g2g-glass-blur, 20px)) saturate(var(--g2g-glass-saturate, 160%));
    -webkit-backdrop-filter: blur(var(--g2g-glass-blur, 20px)) saturate(var(--g2g-glass-saturate, 160%));
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-info .product-name-headline.product-name-headline {
    color: inherit;
    text-shadow: none;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    width: 100%;
    max-width: none;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    text-align: left;
    padding-right: 180px;
    margin: 0 0 2px 0;
    height: 2.6em;
    min-height: 2.6em;
    max-height: 2.6em;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-info .product-name-headline .product-name {
    color: inherit;
    text-shadow: none;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    white-space: normal;
    text-align: left;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-info .g2g-product-rating {
    display: none;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-info .g2g-list-description {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 13px;
    line-height: 1.4;
    margin: -2px 0 2px;
    opacity: 0.92;
    text-align: left;
    padding-right: 180px;
    height: 4.2em;
    min-height: 4.2em;
    max-height: 4.2em;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-info .g2g-list-variants-hint {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    background: rgba(255, 255, 255, 0.18);
    padding: 4px 10px;
    border-radius: 99px;
    margin: 6px 0;
    font-weight: 500;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-info .g2g-list-variants-hint i {
    font-size: 11px;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-info .g2g-list-variants {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 18px;
    margin: 6px 0;
    font-size: 12px;
    max-height: 62px;
    overflow: hidden;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-info .g2g-list-variants__group {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-info .g2g-list-variants__label {
    opacity: 0.78;
    font-size: 11px;
    white-space: nowrap;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-info .g2g-list-variants__values {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-info .g2g-list-variants__chip.g2g-list-variants__chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    height: 18px;
    line-height: 1;
    font-size: 11px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.08);
    font-family: inherit;
    color: inherit;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-info .g2g-list-variants__chip.g2g-list-variants__chip:hover {
    background: rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 0, 0, 0.18);
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-info .g2g-list-variants__chip.is-active {
    background: #1f2937;
    border-color: #1f2937;
    color: #fff;
    font-weight: 600;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-info .g2g-list-variants__swatch.g2g-list-variants__swatch {
    padding: 0;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-info .g2g-list-variants__swatch:hover {
    transform: scale(1.08);
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-info .g2g-list-variants__swatch.is-active {
    transform: scale(1.12);
    border-color: #1f2937;
    box-shadow: inset 0 0 0 2px #fff, inset 0 0 0 3.5px #1f2937;
  }
  body.dreamtheme.dreamtheme.dreamtheme .g2g-glass .cms-element-product-listing.g2g-listing-view-list .product-box .product-info .g2g-list-variants__chip.is-active {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 0.95);
    color: #1f2937;
  }
  body.dreamtheme.dreamtheme.dreamtheme .g2g-glass .cms-element-product-listing.g2g-listing-view-list .product-box .product-info .g2g-list-variants__swatch.is-active {
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.95), inset 0 0 0 3.5px #1f2937;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-info .g2g-list-variants__swatch {
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 0, 0, 0.12);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-info .g2g-list-variants__more {
    opacity: 0.7;
    font-size: 11px;
  }
  body.dreamtheme.dreamtheme.dreamtheme .g2g-glass .cms-element-product-listing.g2g-listing-view-list .product-box .product-info .g2g-list-variants__chip {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.95);
    color: #1f2937;
    font-weight: 700;
  }
  body.dreamtheme.dreamtheme.dreamtheme .g2g-glass .cms-element-product-listing.g2g-listing-view-list .product-box .product-info .g2g-list-variants__label {
    font-weight: 700;
    opacity: 1;
    color: #fff;
  }
  body.dreamtheme.dreamtheme.dreamtheme .g2g-glass .cms-element-product-listing.g2g-listing-view-list .product-box .product-info .g2g-list-variants__more {
    font-weight: 700;
    color: #fff;
    opacity: 1;
  }
  body.dreamtheme.dreamtheme.dreamtheme .g2g-glass .cms-element-product-listing.g2g-listing-view-list .product-box .product-info .g2g-list-variants__swatch {
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-info .g2g-list-trust-bar {
    display: flex;
    gap: 18px;
    margin-top: 12px;
    font-size: 12px;
    opacity: 0.92;
    flex-wrap: wrap;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-info .g2g-list-trust-bar__item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-info .g2g-list-trust-bar__item .icon svg, body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-info .g2g-list-trust-bar__item .icon {
    width: 12px;
    height: 12px;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-info .g2g-list-trust-bar__item .icon svg {
    fill: currentColor;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-info .g2g-manufacturer-rating-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 0 0 4px 0;
    line-height: 1;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-info .g2g-manufacturer-rating-row .g2g-product-card-manufacturer {
    font-size: 12px;
    opacity: 0.65;
    margin: 0;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-info .g2g-manufacturer-rating-row .g2g-product-rating-inline {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-info .g2g-manufacturer-rating-row .g2g-rating-stars {
    color: #ffc857;
    letter-spacing: 0.5px;
    font-size: 12px;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-info .g2g-manufacturer-rating-row .star-empty {
    color: rgba(255, 200, 87, 0.35);
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-info .g2g-manufacturer-rating-row .g2g-rating-value {
    font-size: 11px;
    color: #6b7280;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-info .product-price-info {
    position: absolute;
    right: 22px;
    top: 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    margin: 0;
    width: auto;
    text-align: right;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    border: 0;
    padding: 16px 0 0 0;
    border-radius: 0;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-info .product-price-info .product-price {
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-info .product-price-info .product-cheapest-price-price {
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    background: transparent;
    text-shadow: none;
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    height: auto;
    min-height: 0;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-info .product-price-info .product-cheapest-price-from, body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-info .product-price-info .product-price-tax-link {
    font-size: 10px;
    text-shadow: none;
    opacity: 0.78;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-info .product-price-info .product-price-unit {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 11px;
    color: #2b3136;
    margin: 0;
    line-height: 1;
    text-align: right;
    white-space: nowrap;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-wishlist-action-circle, body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-wishlist {
    display: none;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-info .product-detail-ordernumber {
    display: block;
    font-size: 11px;
    color: #888;
    letter-spacing: 0.02em;
    line-height: 1.3;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-info .g2g-ean-row {
    display: block;
    font-size: 13px;
    color: #888;
    letter-spacing: 0.02em;
    line-height: 1.3;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-info .g2g-card-badges {
    display: none;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-info .g2g-stock-meta, body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list .product-box .product-info .g2g-stock-bar {
    display: none;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-hide-list-description.g2g-hide-list-trust-bar .product-box.box-standard.box-standard {
    height: 190px;
    min-height: 190px;
    max-height: 190px;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-hide-list-description.g2g-hide-list-trust-bar .product-box .product-info .g2g-list-variants-hint {
    position: absolute;
    bottom: 22px;
    left: 20px;
    margin: 0;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-hide-list-description.g2g-hide-list-trust-bar .product-box .product-info .product-price-info .product-cheapest-price-from, body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-hide-list-description.g2g-hide-list-trust-bar .product-box .product-info .product-price-info .product-price-tax-link, body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-hide-list-description.g2g-hide-list-trust-bar .product-box .product-info .product-price-info .product-price-unit {
    display: none;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-hide-list-description:not(.g2g-hide-list-trust-bar) .product-box.box-standard.box-standard {
    height: 215px;
    min-height: 215px;
    max-height: 215px;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-hide-list-trust-bar:not(.g2g-hide-list-description) .product-box.box-standard.box-standard {
    height: 240px;
    min-height: 240px;
    max-height: 240px;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-hide-list-description.g2g-hide-list-trust-bar.g2g-card-variants-on .product-box.box-standard.box-standard {
    height: 260px;
    min-height: 260px;
    max-height: 260px;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-hide-list-description:not(.g2g-hide-list-trust-bar).g2g-card-variants-on .product-box.box-standard.box-standard {
    height: 285px;
    min-height: 285px;
    max-height: 285px;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-hide-list-trust-bar:not(.g2g-hide-list-description).g2g-card-variants-on .product-box.box-standard.box-standard {
    height: 310px;
    min-height: 310px;
    max-height: 310px;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list:not(.g2g-hide-list-description):not(.g2g-hide-list-trust-bar).g2g-card-variants-on .product-box.box-standard.box-standard {
    height: 370px;
    min-height: 370px;
    max-height: 370px;
  }
}
body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing .product-box .g2g-list-variants {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 14px;
  margin: 8px 0;
  font-size: 12px;
}
body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing .product-box .g2g-list-variants__group {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
}
body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing .product-box .g2g-list-variants__label {
  opacity: 0.78;
  font-size: 11px;
  white-space: nowrap;
}
body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing .product-box .g2g-list-variants__values {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing .product-box .g2g-list-variants__chip.g2g-list-variants__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  height: 22px;
  min-width: 22px;
  line-height: 1;
  font-size: 11px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.42);
  color: inherit;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s, transform 0.15s;
}
body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing .product-box .g2g-list-variants__chip.g2g-list-variants__chip:hover {
  background: rgba(0, 0, 0, 0.12);
  border-color: rgba(0, 0, 0, 0.24);
}
body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing .product-box .g2g-list-variants__chip.is-active {
  background: #1f2937;
  border-color: #1f2937;
  color: #fff;
  font-weight: 600;
}
body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing .product-box .g2g-list-variants__swatch.g2g-list-variants__swatch {
  display: inline-block;
  box-sizing: border-box;
  padding: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing .product-box .g2g-list-variants__swatch:hover {
  transform: scale(1.1);
}
body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing .product-box .g2g-list-variants__swatch.is-active {
  transform: scale(1.14);
  border-color: #1f2937;
  box-shadow: inset 0 0 0 2px #fff, inset 0 0 0 3.5px #1f2937;
}
body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing .product-box .g2g-list-variants__more {
  opacity: 0.7;
  font-size: 11px;
}
body.dreamtheme.dreamtheme.dreamtheme .g2g-glass .cms-element-product-listing .product-box .g2g-list-variants__chip {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.95);
  color: #1f2937;
  font-weight: 700;
}
body.dreamtheme.dreamtheme.dreamtheme .g2g-glass .cms-element-product-listing .product-box .g2g-list-variants__label {
  font-weight: 700;
  opacity: 1;
  color: #fff;
}
body.dreamtheme.dreamtheme.dreamtheme .g2g-glass .cms-element-product-listing .product-box .g2g-list-variants__more {
  font-weight: 700;
  opacity: 1;
  color: #fff;
}
body.dreamtheme.dreamtheme.dreamtheme .g2g-glass .cms-element-product-listing .product-box .g2g-list-variants__chip.is-active {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.95);
  color: #1f2937;
}
body.dreamtheme.dreamtheme.dreamtheme .g2g-glass .cms-element-product-listing .product-box .g2g-list-variants__swatch {
  border-color: rgba(255, 255, 255, 0.5);
}
body.dreamtheme.dreamtheme.dreamtheme .g2g-glass .cms-element-product-listing .product-box .g2g-list-variants__swatch.is-active {
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.95), inset 0 0 0 3.5px #1f2937;
}
body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-grid .product-box .product-info {
  padding-left: 10px;
  padding-right: 10px;
}
body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-grid .product-box .g2g-list-variants {
  display: grid;
  grid-template-columns: fit-content(20ch) 1fr;
  gap: 8px 8px;
  align-items: center;
  margin: 0 0 0;
  font-size: 11px;
}
body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-grid .product-box .g2g-variant-area {
  max-height: 92px;
  padding-top: 1px;
  overflow: hidden;
}
body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-grid .product-box .g2g-variant-area.is-expanded {
  max-height: none;
  overflow: visible;
}
body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-grid .product-box.box-standard.box-standard:has(.g2g-variant-area.is-expanded) {
  height: auto;
  max-height: none;
}
body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-grid .product-box .g2g-list-variants__group {
  display: contents;
}
body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-grid .product-box .g2g-list-variants__label {
  font-size: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}
body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-grid .product-box .g2g-list-variants__chip.g2g-list-variants__chip {
  height: 22px;
  min-width: 24px;
  padding: 0 8px;
  font-size: 10px;
}
body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-grid .product-box .g2g-list-variants__swatch.g2g-list-variants__swatch {
  width: 18px;
  height: 18px;
}
@media (min-width: 768px) {
  .dreamtheme.dreamtheme .g2g-glass .cms-element-product-listing.g2g-listing-view-list .product-box.box-standard {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
}
@media (min-width: 768px) {
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-quantity-cart.g2g-listing-view-list .product-box.box-standard {
    height: auto;
    padding: 0;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-quantity-cart.g2g-listing-view-list .product-box .card-body {
    flex-direction: row;
    gap: 0;
    padding: 0;
    position: relative;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-quantity-cart.g2g-listing-view-list .product-box .card-body > a:not(.product-name) {
    display: flex;
    padding: 0;
    border-right: 0;
    position: static;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-quantity-cart.g2g-listing-view-list .product-box .product-image-wrapper {
    position: static;
    padding: 0;
    border-radius: 0;
    aspect-ratio: auto;
    height: 100%;
    width: 100%;
    flex: 0 0 auto;
    overflow: visible;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-quantity-cart.g2g-listing-view-list .product-box .product-image-wrapper > img, body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-quantity-cart.g2g-listing-view-list .product-box .product-image-wrapper > picture > img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-quantity-cart.g2g-listing-view-list .product-box .product-image-wrapper > .product-badges {
    position: absolute;
    bottom: 10px;
    left: 10px;
    top: auto;
    right: auto;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 4px;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-quantity-cart.g2g-listing-view-list .product-box .product-badges .badge, body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-quantity-cart.g2g-listing-view-list .product-box .product-badges .badge-stock2gether, body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-quantity-cart.g2g-listing-view-list .product-box .product-badges .g2g-stock-urgency {
    height: 21px;
    min-height: 21px;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.4;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-quantity-cart.g2g-listing-view-list .product-box .product-info .product-name-headline.product-name-headline, body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-quantity-cart.g2g-listing-view-list .product-box .product-info .product-name-headline .product-name {
    color: #fff;
    text-shadow: none;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.3;
    padding-right: 180px;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-quantity-cart.g2g-listing-view-list .product-box .product-image-wrapper > .product-action {
    position: absolute;
    right: 20px;
    bottom: 18px;
    z-index: 4;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-quantity-cart.g2g-listing-view-list .product-box .product-info {
    display: block;
    align-self: stretch;
    padding: 18px 20px;
    text-align: left;
    position: relative;
    flex: 1 1 0;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-quantity-cart.g2g-listing-view-list .product-box .product-info .product-name-headline, body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-quantity-cart.g2g-listing-view-list .product-box .product-info .product-name {
    padding-right: 160px;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-quantity-cart.g2g-listing-view-list .product-box .product-info .product-price-info {
    position: absolute;
    right: 20px;
    top: 18px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    margin: 0;
    width: auto;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-quantity-cart.g2g-listing-view-list .product-box .product-image-wrapper > img, body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-quantity-cart.g2g-listing-view-list .product-box .product-image-wrapper > picture > img {
    transition: transform 0.35s ease;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-quantity-cart.g2g-listing-view-list .product-box:hover .product-image-wrapper > img, body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-quantity-cart.g2g-listing-view-list .product-box:hover .product-image-wrapper > picture > img {
    transform: scale(1.04);
  }
}
@media (min-width: 768px) {
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-add-on-image.g2g-listing-view-list .product-box.box-standard {
    padding: 0;
    height: 230px;
    min-height: 230px;
    max-height: 230px;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-add-on-image.g2g-listing-view-list.g2g-hide-list-description.g2g-hide-list-trust-bar .product-box.box-standard {
    height: 172px;
    min-height: 172px;
    max-height: 172px;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-add-on-image.g2g-listing-view-list.g2g-hide-list-description.g2g-hide-list-trust-bar .product-box .product-info .g2g-list-variants-hint {
    position: absolute;
    bottom: 22px;
    left: 20px;
    margin: 0;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-add-on-image.g2g-listing-view-list.g2g-hide-list-description.g2g-hide-list-trust-bar .product-box .product-info .g2g-product-rating {
    display: none;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-add-on-image.g2g-listing-view-list.g2g-hide-list-description.g2g-hide-list-trust-bar .product-box .product-info .product-price-info .product-cheapest-price-from, body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-add-on-image.g2g-listing-view-list.g2g-hide-list-description.g2g-hide-list-trust-bar .product-box .product-info .product-price-info .product-price-tax-link, body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-add-on-image.g2g-listing-view-list.g2g-hide-list-description.g2g-hide-list-trust-bar .product-box .product-info .product-price-info .product-price-unit {
    display: none;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-add-on-image.g2g-listing-view-list.g2g-hide-list-description.g2g-hide-list-trust-bar .product-box .product-info .product-name-headline.product-name-headline {
    height: auto;
    min-height: 0;
    max-height: 2.6em;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-add-on-image.g2g-listing-view-list.g2g-hide-list-description:not(.g2g-hide-list-trust-bar) .product-box.box-standard {
    height: 185px;
    min-height: 185px;
    max-height: 185px;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-add-on-image.g2g-listing-view-list.g2g-hide-list-trust-bar:not(.g2g-hide-list-description) .product-box.box-standard {
    height: 210px;
    min-height: 210px;
    max-height: 210px;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-add-on-image.g2g-listing-view-list .product-box .card-body {
    flex-direction: row;
    gap: 0;
    padding: 0;
    position: relative;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-add-on-image.g2g-listing-view-list .product-box .card-body > a:not(.product-name) {
    display: flex;
    padding: 0;
    border-right: 0;
    position: static;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-add-on-image.g2g-listing-view-list .product-box .product-image-wrapper {
    position: static;
    padding: 0;
    border-radius: 0;
    aspect-ratio: auto;
    height: 100%;
    width: 100%;
    flex: 0 0 auto;
    overflow: visible;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-add-on-image.g2g-listing-view-list .product-box .product-image-wrapper > img, body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-add-on-image.g2g-listing-view-list .product-box .product-image-wrapper > picture > img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-add-on-image.g2g-listing-view-list .product-box .product-image-wrapper > .product-badges {
    position: absolute;
    bottom: 14px;
    left: 14px;
    top: auto;
    right: auto;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 5px;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-add-on-image.g2g-listing-view-list .product-box .product-badges .badge, body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-add-on-image.g2g-listing-view-list .product-box .product-badges .badge-stock2gether, body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-add-on-image.g2g-listing-view-list .product-box .product-badges .g2g-stock-urgency {
    height: 21px;
    min-height: 21px;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    top: 0;
    position: static;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-add-on-image.g2g-listing-view-list .product-box .product-image-wrapper > .product-action {
    position: absolute;
    right: 22px;
    bottom: 22px;
    z-index: 4;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-add-on-image.g2g-listing-view-list .product-box .product-info {
    display: block;
    align-self: stretch;
    padding: 18px 20px;
    position: relative;
    flex: 1 1 0;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-add-on-image.g2g-listing-view-list .product-box .product-info .product-name-headline.product-name-headline {
    color: #fff;
    text-shadow: none;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    width: 100%;
    max-width: none;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    text-align: left;
    padding-right: 130px;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-add-on-image.g2g-listing-view-list .product-box .product-info .product-name-headline .product-name {
    color: #fff;
    text-shadow: none;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    white-space: normal;
    text-align: left;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-add-on-image.g2g-listing-view-list .product-box .product-info .product-price-info {
    position: absolute;
    right: 22px;
    top: 22px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    margin: 0;
    width: auto;
    text-align: right;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    border: 0;
    padding: 0;
    border-radius: 0;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-add-on-image.g2g-listing-view-list .product-box .product-info .product-price-info .product-price, body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-add-on-image.g2g-listing-view-list .product-box .product-info .product-price-info .product-cheapest-price-price {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
    background: transparent;
    text-shadow: none;
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    height: auto;
    min-height: 0;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-add-on-image.g2g-listing-view-list .product-box .product-info .product-price-info .product-cheapest-price-from, body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-add-on-image.g2g-listing-view-list .product-box .product-info .product-price-info .product-price-tax-link {
    color: rgba(255, 255, 255, 0.78);
    font-size: 10px;
    text-shadow: none;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-add-on-image.g2g-listing-view-list .product-box .product-info .g2g-product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 4px 0 6px;
    font-size: 13px;
    color: #fff;
    text-shadow: none;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-add-on-image.g2g-listing-view-list .product-box .product-info .g2g-product-rating .g2g-rating-stars {
    color: #ffc857;
    letter-spacing: 1px;
    font-size: 14px;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-add-on-image.g2g-listing-view-list .product-box .product-info .g2g-product-rating .star-empty {
    color: rgba(255, 200, 87, 0.35);
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-add-on-image.g2g-listing-view-list .product-box .product-info .g2g-product-rating .g2g-rating-count {
    opacity: 0.8;
    font-size: 12px;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-add-on-image.g2g-listing-view-list .product-box .product-info .g2g-product-rating .g2g-rating-empty {
    opacity: 0.7;
    font-size: 12px;
    font-style: italic;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-add-on-image.g2g-listing-view-list .product-box .product-info .g2g-list-description {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #fff;
    font-size: 13px;
    line-height: 1.4;
    margin: -2px 0 2px;
    opacity: 0.92;
    padding-right: 130px;
    height: 4.2em;
    min-height: 4.2em;
    max-height: 4.2em;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-add-on-image.g2g-listing-view-list .product-box .product-info .product-name-headline.product-name-headline {
    margin: 0 0 2px 0;
    height: 2.6em;
    min-height: 2.6em;
    max-height: 2.6em;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-add-on-image.g2g-listing-view-list .product-box .product-info .g2g-product-rating {
    margin: 0 0 4px;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-add-on-image.g2g-listing-view-list .product-box .product-info .g2g-list-variants-hint {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
    padding: 4px 10px;
    border-radius: 99px;
    margin: 6px 0;
    font-weight: 500;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-add-on-image.g2g-listing-view-list .product-box .product-info .g2g-list-variants-hint i {
    font-size: 11px;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-add-on-image.g2g-listing-view-list .product-box .product-info .g2g-list-trust-bar {
    display: flex;
    gap: 18px;
    margin-top: 12px;
    font-size: 12px;
    color: #fff;
    opacity: 0.92;
    flex-wrap: wrap;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-add-on-image.g2g-listing-view-list .product-box .product-info .g2g-list-trust-bar__item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-add-on-image.g2g-listing-view-list .product-box .product-info .g2g-list-trust-bar__item i {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-add-on-image.g2g-listing-view-list .product-box .product-info .g2g-list-trust-bar__item .icon svg, body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-add-on-image.g2g-listing-view-list .product-box .product-info .g2g-list-trust-bar__item .icon {
    width: 12px;
    height: 12px;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-add-on-image.g2g-listing-view-list .product-box .product-info .g2g-list-trust-bar__item .icon svg {
    fill: currentColor;
    color: rgba(255, 255, 255, 0.85);
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-add-on-image.g2g-listing-view-list .product-box .product-image-wrapper > .product-action .btn.btn-buy, body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-add-on-image.g2g-listing-view-list .product-box .product-image-wrapper > .product-action .btn.btn-detail {
    width: auto;
    min-width: 160px;
    height: 40px;
    background-image: none;
    background-color: #2e7d32;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 0 18px 0 14px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-add-on-image.g2g-listing-view-list .product-box .product-image-wrapper > .product-action .btn.btn-buy::before {
    content: "";
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 3h2l2 12h11l2-8H6'/%3E%3Ccircle cx='9' cy='20' r='1.5'/%3E%3Ccircle cx='17' cy='20' r='1.5'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-add-on-image.g2g-listing-view-list .product-box .product-image-wrapper > .product-action .btn.btn-buy:hover, body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-add-on-image.g2g-listing-view-list .product-box .product-image-wrapper > .product-action .btn.btn-detail:hover {
    background-color: #266a2a;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-add-on-image.g2g-listing-view-list .product-box .product-image-wrapper > img, body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-add-on-image.g2g-listing-view-list .product-box .product-image-wrapper > picture > img {
    transition: transform 0.35s ease;
  }
  body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-add-on-image.g2g-listing-view-list .product-box:hover .product-image-wrapper > img, body.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-card-layout-add-on-image.g2g-listing-view-list .product-box:hover .product-image-wrapper > picture > img {
    transform: scale(1.04);
  }
  body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list .product-box .product-info .g2g-list-variants {
    display: grid;
    grid-template-columns: fit-content(20ch) 1fr;
    gap: 4px 10px;
    align-items: baseline;
    margin: 4px 0;
    width: 100%;
  }
  body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list .product-box .product-info .g2g-list-variants__group {
    display: contents;
  }
  body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list .product-box .product-info .g2g-list-variants__label {
    grid-column: 1;
    align-self: start;
    line-height: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
  }
  body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list .product-box .product-info .g2g-list-variants__values {
    grid-column: 2;
    flex-wrap: wrap;
    min-width: 0;
  }
  body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list .product-box .g2g-variant-area {
    height: 68px;
    overflow: hidden;
    box-sizing: border-box;
    margin: 2px 0;
  }
  body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list .product-box .g2g-variant-area.is-expanded {
    height: auto;
    overflow: visible;
  }
  body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list .product-box.box-standard.box-standard:has(.g2g-variant-area.is-expanded) {
    height: auto;
    max-height: none;
  }
  body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list .product-box .product-variant-characteristics {
    display: none;
  }
  body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list .product-box .g2g-variant-area, body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list .product-box .g2g-list-description {
    padding-right: 180px;
  }
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim {
  background: #fff;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 0;
  min-height: 72px;
  max-height: none;
  height: auto;
  padding: 0;
  overflow: visible;
  opacity: 1;
  transform: none;
  animation: none;
  will-change: auto;
  transition: background-color 0.15s ease;
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim.g2g-lazy-animate, body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim.g2g-lazy-animated {
  opacity: 1;
  transform: none;
  animation: none;
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim:hover {
  background-color: #fafafa;
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim .card-body.card-body {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 0;
  padding: 0 14px;
  align-items: center;
  min-height: 72px;
  height: auto;
  padding-top: 8px;
  padding-bottom: 8px;
  background: transparent;
  position: relative;
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim .box-slim__image-link {
  grid-column: 1;
  grid-row: 1;
  width: 52px;
  height: 52px;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim .product-image-wrapper {
  width: 52px;
  height: 52px;
  padding: 3px;
  background: #f8f9fa;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  aspect-ratio: auto;
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim .product-image-wrapper img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim .product-info {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  grid-template-columns: 1fr auto auto;
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: 20px;
  row-gap: 0;
  padding: 0 0 0 12px;
  align-items: center;
  min-height: 72px;
  height: auto;
  background: transparent;
  border: 0;
  box-shadow: none;
  text-align: left;
  flex-direction: unset;
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim .g2g-product-card-manufacturer {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  font-size: 10px;
  color: var(--g2g-text-muted, #888);
  letter-spacing: 0.04em;
  line-height: 1.3;
  margin: 0;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim .g2g-product-card-manufacturer ~ .product-name-headline {
  grid-row: 2;
  align-self: start;
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim .g2g-product-card-manufacturer ~ .g2g-slim-meta {
  display: none;
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim .product-name-headline {
  grid-column: 1;
  grid-row: 1;
  display: block;
  margin: 0;
  padding: 0;
  align-self: end;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  line-height: 1.3;
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim .product-name {
  font-size: 14px;
  font-weight: 600;
  color: #222;
  text-decoration: none;
  line-height: 1.3;
  display: inline;
  height: auto;
  min-height: 0;
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim a.product-name:hover {
  color: #000;
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim .g2g-slim-meta {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2px 8px;
  align-self: start;
  min-width: 0;
  overflow: hidden;
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim .g2g-slim-meta .g2g-stock-data {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 500;
  color: #2e7d32;
  margin: 0;
  line-height: 1;
  background: #e8f5e9;
  border-radius: 3px;
  padding: 2px 7px;
  white-space: nowrap;
  flex: 0 0 auto;
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim .g2g-slim-meta .product-detail-ordernumber {
  font-size: 11px;
  color: #888;
  white-space: nowrap;
  flex: 0 0 100%;
  line-height: 1.3;
  display: block;
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim .g2g-slim-meta .g2g-ean-row {
  font-size: 11px;
  color: #888;
  white-space: nowrap;
  flex: 0 0 100%;
  line-height: 1.3;
  display: block;
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim .g2g-slim-meta .g2g-list-description {
  display: block;
  font-size: 12px;
  color: #888;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
  flex: 1 1 0;
  line-height: 1.3;
  height: auto;
  min-height: 0;
  max-height: none;
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
  padding-right: 0;
  margin: 0;
}
body .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean.g2g-hide-list-description .box-slim.box-slim .g2g-slim-meta .g2g-list-description {
  display: none;
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim .g2g-stock-data::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232e7d32'%3E%3Cpath d='M20 8h-3V4H3c-1.1 0-2 .9-2 2v11h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-3-4zM6 18.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm13.5-9 1.96 2.5H17V9.5h2.5zm-1.5 9c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim .g2g-slim-price-col {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  display: flex;
  align-items: baseline;
  gap: 0;
  white-space: nowrap;
  padding: 0;
  margin: 0;
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim .g2g-slim-price-col::before {
  content: attr(data-net-label);
  font-size: 11px;
  font-weight: 400;
  color: #999;
  white-space: nowrap;
  margin-right: 6px;
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim .product-price-info {
  text-align: right;
  align-self: center;
  padding: 0;
  margin: 0;
  white-space: nowrap;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  min-height: 0;
  width: auto;
  position: static;
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim .product-price-wrapper, body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim .g2g-product-price-box, body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim .g2g-product-price-box-inner {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  margin: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: baseline;
  gap: 6px;
  min-height: 0;
  width: auto;
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim .g2g-listing-from-text {
  display: none;
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim .product-cheapest-price, body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim .product-price-tax-link, body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim .product-price-unit, body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim .list-price, body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim .with-regulation-price {
  display: none;
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim .product-price {
  color: #222;
  font-weight: 700;
  font-size: 16px;
  margin: 0;
  white-space: nowrap;
  line-height: 1.2;
  text-shadow: none;
  padding: 0;
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim .product-action {
  grid-column: 3;
  grid-row: 1 / 3;
  align-self: center;
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  z-index: 2;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  height: auto;
  width: auto;
  flex: 0 0 auto;
  justify-content: flex-end;
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim .product-action .d-grid {
  display: flex;
  height: auto;
  margin: 0;
  padding: 0;
  width: auto;
  min-width: 0;
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim .product-action .buy-widget {
  height: auto;
  margin: 0;
  padding: 0;
  flex: 0 0 auto;
  width: auto;
  min-width: 0;
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim .product-action .btn.btn-detail {
  background-color: #2a2a2a;
  color: #fff;
  border: 0;
  border-radius: 4px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: background-color 0.15s ease;
  white-space: nowrap;
  box-shadow: none;
  cursor: pointer;
  line-height: 1;
  height: auto;
  min-width: 116px;
  justify-content: center;
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim .product-action .btn.btn-detail:hover {
  background-color: #444;
  color: #fff;
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim .product-action .btn.btn-detail::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex: 0 0 14px;
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim .g2g-buy-row {
  display: flex;
  align-items: center;
  gap: 5px;
  width: auto;
  min-height: 0;
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim .g2g-classic-stepper-wrap {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
  height: 30px;
  gap: 0;
  flex: 0 0 auto;
  background: #f5f5f5;
  position: relative;
  z-index: 2;
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim .g2g-classic-stepper-wrap .g2g-qty-minus, body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim .g2g-classic-stepper-wrap .g2g-qty-plus {
  width: 26px;
  height: 30px;
  border: 0;
  background: transparent;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  padding: 0;
  border-radius: 0;
  min-width: 0;
  box-shadow: none;
  line-height: 1;
  transition: color 0.15s ease;
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim .g2g-classic-stepper-wrap .g2g-qty-minus:hover, body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim .g2g-classic-stepper-wrap .g2g-qty-plus:hover {
  color: #000;
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim .g2g-classic-stepper-wrap .g2g-qty-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 0 6px;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  color: #333;
  background: transparent;
  min-width: 28px;
  height: 30px;
  text-align: center;
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim .g2g-classic-stepper-wrap .g2g-qty-unit-inline {
  font-size: 8px;
  font-weight: 500;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim .product-action .btn.btn-buy {
  width: 30px;
  height: 30px;
  min-width: 0;
  background-color: #2a2a2a;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M7 18c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM7.16 14.26l.04-.12.94-1.7h7.45c.75 0 1.41-.41 1.75-1.03l3.58-6.49A1 1 0 0020.04 4H5.21l-.94-2H1v2h2l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h12v-2H7.42c-.14 0-.25-.11-.25-.25z'/%3E%3C/svg%3E");
  border-radius: 4px;
  border: 0;
  color: transparent;
  font-size: 0;
  padding: 0;
  margin: 0;
  overflow: hidden;
  box-shadow: none;
  cursor: pointer;
  transition: background-color 0.15s ease;
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim .product-action .btn.btn-buy:hover {
  background-color: #444;
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim .g2g-buy-btn-wrap {
  display: flex;
  align-items: center;
  gap: 5px;
  height: auto;
  margin: 0;
  padding: 0;
  flex: 0 0 auto;
  width: auto;
  min-width: 0;
}
@media (max-width: 767.98px) {
  body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim .card-body.card-body {
    grid-template-columns: 55px 1fr;
    padding: 8px 10px;
  }
  body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim .box-slim__image-link {
    width: 45px;
    height: 45px;
  }
  body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim .product-image-wrapper {
    width: 45px;
    height: 45px;
  }
  body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim .product-info {
    padding: 0 0 0 8px;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    row-gap: 4px;
    column-gap: 0;
  }
  body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim .product-name-headline {
    grid-column: 1;
    grid-row: 1;
  }
  body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim .product-name {
    font-size: 13px;
  }
  body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim .g2g-stock-data {
    grid-column: 1;
    grid-row: 2;
    font-size: 11px;
  }
  body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim .g2g-list-description {
    display: none;
  }
  body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim .product-price-info {
    grid-column: 1;
    grid-row: 3;
    align-items: flex-start;
    text-align: left;
  }
  body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim .product-price-wrapper {
    justify-content: flex-start;
  }
  body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim .product-price {
    font-size: 14px;
  }
  body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim .product-action {
    grid-column: 1;
    grid-row: 4;
    justify-content: flex-start;
    margin-top: 4px;
  }
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .g2g-glass .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.15);
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .g2g-glass .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim .card-body {
  background: rgba(255, 255, 255, calc(var(--g2g-glass-alpha, 15) / 100));
  backdrop-filter: blur(var(--g2g-glass-blur, 20px)) saturate(var(--g2g-glass-saturate, 160%));
  -webkit-backdrop-filter: blur(var(--g2g-glass-blur, 20px)) saturate(var(--g2g-glass-saturate, 160%));
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .g2g-glass .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim .product-name, body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .g2g-glass .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim .product-price {
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .g2g-glass .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim .g2g-stock-data {
  color: rgba(255, 255, 255, 0.85);
}
body.dreamtheme.dreamtheme.dreamtheme.dreamtheme .g2g-glass .cms-element-product-listing.g2g-listing-view-list.g2g-listing-view-list.g2g-list-layout-list-clean .box-slim.box-slim .g2g-stock-data::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='rgba(255,255,255,0.85)'%3E%3Cpath d='M20 8h-3V4H3c-1.1 0-2 .9-2 2v11h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-3-4zM6 18.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm13.5-9 1.96 2.5H17V9.5h2.5zm-1.5 9c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z'/%3E%3C/svg%3E");
}
.dreamtheme .g2g-filter-megapanel-trigger {
  display: none;
}
.dreamtheme.g2g-filter-cat-button .cms-element-sidebar-filter:not(.g2g-filter-megapanel), .dreamtheme.g2g-filter-cat-inherit.g2g-filter-flyout-sidebar-on .cms-section-sidebar .cms-element-sidebar-filter:not(.g2g-filter-megapanel), .dreamtheme.g2g-filter-cat-inherit.g2g-filter-flyout-nosidebar-on .cms-section-default .cms-element-sidebar-filter:not(.g2g-filter-megapanel) {
  display: none;
}
.dreamtheme.g2g-filter-cat-button .g2g-filter-megapanel-trigger, .dreamtheme.g2g-filter-cat-inherit.g2g-filter-flyout-sidebar-on .cms-section-sidebar .g2g-filter-megapanel-trigger, .dreamtheme.g2g-filter-cat-inherit.g2g-filter-flyout-nosidebar-on .cms-section-default .g2g-filter-megapanel-trigger {
  display: inline-flex;
}
.dreamtheme.g2g-filter-display-button.g2g-filter-megapanel-ready .cms-element-product-listing-actions > .col-md-auto:last-child {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.dreamtheme.g2g-filter-display-button.g2g-filter-megapanel-ready .g2g-filter-megapanel-trigger {
  display: inline-flex;
}
.dreamtheme.is-ctl-search.g2g-filter-cat-button .g2g-filter-megapanel-trigger, .dreamtheme.is-ctl-search.g2g-filter-cat-inherit.g2g-filter-flyout-nosidebar-on .g2g-filter-megapanel-trigger {
  display: inline-flex;
}
.dreamtheme .g2g-filter-megapanel-trigger {
  align-items: center;
  gap: 6px;
  height: 39px;
  padding: 0 16px;
  border: 1px solid var(--g2g-token-color-neutral-border, #e2e8f0);
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  background: #fff;
  color: #1f1f1f;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: filter 0.15s ease;
}
.dreamtheme .g2g-filter-megapanel-trigger:hover, .dreamtheme .g2g-filter-megapanel-trigger:focus {
  filter: brightness(0.98);
  color: #1f1f1f;
}
.dreamtheme .g2g-filter-megapanel-trigger__icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
}
.dreamtheme .g2g-filter-megapanel-trigger__icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.dreamtheme .g2g-filter-megapanel-trigger__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 9px;
  background: var(--g2g-token-color-brand-primary, #ec5b13);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}
.dreamtheme .g2g-filter-megapanel-trigger__chevron {
  width: 0;
  height: 0;
  margin-left: 2px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.2s ease;
}
.dreamtheme .g2g-filter-megapanel-trigger[aria-expanded="true"] .dreamtheme .g2g-filter-megapanel-trigger__chevron {
  transform: rotate(180deg);
}
.dreamtheme.g2g-filter-flyout-btn-sidebar-icon .cms-section-sidebar .g2g-filter-megapanel-trigger, .dreamtheme.g2g-filter-flyout-btn-nosidebar-icon .cms-section-default .g2g-filter-megapanel-trigger {
  position: relative;
  width: 39px;
  padding: 0;
  gap: 0;
  justify-content: center;
}
.dreamtheme.g2g-filter-flyout-btn-sidebar-icon .cms-section-sidebar .g2g-filter-megapanel-trigger .g2g-filter-megapanel-trigger__text, .dreamtheme.g2g-filter-flyout-btn-sidebar-icon .cms-section-sidebar .g2g-filter-megapanel-trigger .g2g-filter-megapanel-trigger__chevron, .dreamtheme.g2g-filter-flyout-btn-nosidebar-icon .cms-section-default .g2g-filter-megapanel-trigger .g2g-filter-megapanel-trigger__text, .dreamtheme.g2g-filter-flyout-btn-nosidebar-icon .cms-section-default .g2g-filter-megapanel-trigger .g2g-filter-megapanel-trigger__chevron {
  display: none;
}
.dreamtheme.g2g-filter-flyout-btn-sidebar-icon .cms-section-sidebar .g2g-filter-megapanel-trigger .g2g-filter-megapanel-trigger__badge, .dreamtheme.g2g-filter-flyout-btn-nosidebar-icon .cms-section-default .g2g-filter-megapanel-trigger .g2g-filter-megapanel-trigger__badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border: 2px solid #fff;
  font-size: 10px;
}
.dreamtheme.g2g-filter-flyout-btn-sidebar-text .cms-section-sidebar .g2g-filter-megapanel-trigger .g2g-filter-megapanel-trigger__icon, .dreamtheme.g2g-filter-flyout-btn-nosidebar-text .cms-section-default .g2g-filter-megapanel-trigger .g2g-filter-megapanel-trigger__icon {
  display: none;
}
.dreamtheme .g2g-glass-sidebar-panel:has(.cms-element-sidebar-filter.g2g-filter-megapanel.is-open) {
  overflow: visible;
  z-index: 40;
}
body.dreamtheme.g2g-listing-sidebar-sticky .cms-section-sidebar-sidebar-content.g2g-sidebar-fits-viewport > .g2g-glass-sidebar-panel.g2g-glass-sidebar-panel:has(.cms-element-sidebar-filter.g2g-filter-megapanel.is-open) {
  position: relative;
  top: auto;
}
.dreamtheme .cms-element-sidebar-filter.g2g-filter-megapanel {
  position: absolute;
  top: var(--g2g-fp-top, 0);
  left: var(--g2g-fp-left, 0);
  width: var(--g2g-fp-width, 100%);
  z-index: 30;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 10px;
  padding: 15px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
  transition: max-height 0.32s ease, opacity 0.2s ease;
  pointer-events: none;
}
.dreamtheme .cms-element-sidebar-filter.g2g-filter-megapanel.is-open {
  max-height: 80vh;
  overflow: auto;
  opacity: 1;
  pointer-events: auto;
}
.dreamtheme .cms-element-sidebar-filter.g2g-filter-megapanel .filter-panel {
  padding: 0;
}
.dreamtheme .cms-element-sidebar-filter.g2g-filter-megapanel .filter-panel-items-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 22px 26px;
  border: 0;
  padding: 0;
}
.dreamtheme .cms-element-sidebar-filter.g2g-filter-megapanel .filter-panel-item {
  position: static;
}
.dreamtheme .cms-element-sidebar-filter.g2g-filter-megapanel .filter-panel-item-toggle {
  pointer-events: none;
  width: 100%;
  padding: 0 0 8px;
  border: 0;
  background: none;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--g2g-token-color-neutral-text-default, #1f1f1f);
}
.dreamtheme .cms-element-sidebar-filter.g2g-filter-megapanel .filter-panel-item-toggle::after {
  display: none;
}
.dreamtheme .cms-element-sidebar-filter.g2g-filter-megapanel .filter-panel-item-toggle .icon-filter-panel-item-toggle {
  display: none;
}
.dreamtheme .cms-element-sidebar-filter.g2g-filter-megapanel .filter-panel-item-dropdown.dropdown-menu {
  display: block;
  position: static;
  float: none;
  inset: auto;
  transform: none;
  min-width: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  box-shadow: none;
  max-height: 170px;
  overflow-y: auto;
}
.dreamtheme .cms-element-sidebar-filter.g2g-filter-megapanel .filter-panel-active-container {
  grid-column: 1 / -1;
  margin-top: 4px;
}
.dreamtheme .cms-element-sidebar-filter.g2g-filter-megapanel .filter-panel-active-container .filter-reset-all {
  display: none;
}
.dreamtheme .cms-element-sidebar-filter.g2g-filter-megapanel .filter-panel-active-container .filter-active {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 32px;
  padding: 0 12px;
  border: 1px solid #f3c3a6;
  border-radius: 999px;
  background: #fff5ef;
  color: #c4490f;
  font-size: 13px;
  font-weight: 600;
  box-shadow: none;
}
.dreamtheme .cms-element-sidebar-filter.g2g-filter-megapanel .filter-panel-active-container .filter-active:hover, .dreamtheme .cms-element-sidebar-filter.g2g-filter-megapanel .filter-panel-active-container .filter-active:focus {
  background: #ffe9dc;
  color: #c4490f;
}
.dreamtheme.g2g-filter-flyout-mode-sidebar .g2g-filter-megapanel-trigger__chevron, .dreamtheme.g2g-filter-flyout-mode-bottom .g2g-filter-megapanel-trigger__chevron {
  display: none;
}
.dreamtheme .g2g-filter-megapanel__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 15px -15px -15px;
  padding: 15px;
  border-top: 1px solid #eee;
  position: sticky;
  bottom: -15px;
  background: #fff;
}
.dreamtheme .g2g-filter-megapanel__reset {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 6px;
  background: none;
  border: 0;
  color: #666;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}
.dreamtheme .g2g-filter-megapanel__reset:hover, .dreamtheme .g2g-filter-megapanel__reset:focus {
  color: var(--g2g-token-color-brand-primary, #ec5b13);
  text-decoration: underline;
}
.dreamtheme .g2g-filter-megapanel__cta {
  height: 44px;
  padding: 0 26px;
  border: 0;
  border-radius: 8px;
  background: var(--g2g-token-color-brand-primary, #ec5b13);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: filter 0.15s ease;
}
.dreamtheme .g2g-filter-megapanel__cta:hover, .dreamtheme .g2g-filter-megapanel__cta:focus {
  filter: brightness(0.94);
}
@media (max-width: 767.98px) {
  .dreamtheme.g2g-filter-display-button .cms-element-sidebar-filter .filter-panel-wrapper-toggle {
    display: none;
  }
  .dreamtheme.g2g-filter-display-button .cms-element-sidebar-filter.g2g-filter-megapanel #filter-panel-wrapper {
    display: block;
  }
  .dreamtheme.g2g-filter-display-button .cms-element-sidebar-filter.g2g-filter-megapanel .filter-panel-items-container {
    grid-template-columns: 1fr 1fr;
  }
  .dreamtheme.dreamtheme.g2g-filter-display-button .cms-element-product-listing-actions > .g2g-listing-view-toggle {
    display: none;
  }
}
.dreamtheme .offcanvas.offcanvas-filter {
  background: #fff;
}
.dreamtheme .offcanvas.offcanvas-filter.offcanvas-start {
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
}
.dreamtheme .offcanvas.offcanvas-filter.offcanvas-bottom {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.dreamtheme .offcanvas.offcanvas-filter .filter-panel-offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  padding: 18px 20px;
  border-bottom: 2px solid var(--g2g-token-color-brand-primary, #ec5b13);
}
.dreamtheme .offcanvas.offcanvas-filter .filter-panel-offcanvas-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--g2g-token-color-neutral-text-default, #1f1f1f);
}
.dreamtheme .offcanvas.offcanvas-filter .filter-panel-offcanvas-close {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  opacity: 0.7;
  transition: background 0.15s ease, opacity 0.15s ease;
}
.dreamtheme .offcanvas.offcanvas-filter .filter-panel-offcanvas-close:hover, .dreamtheme .offcanvas.offcanvas-filter .filter-panel-offcanvas-close:focus {
  opacity: 1;
  background: #fff5ef;
  box-shadow: none;
}
.dreamtheme .offcanvas.offcanvas-filter .filter-panel {
  padding: 18px 20px 22px;
}
.dreamtheme .offcanvas.offcanvas-filter .filter-panel-items-container {
  display: grid;
  gap: 20px 24px;
  border: 0;
  padding: 0;
}
.dreamtheme .offcanvas.offcanvas-filter.offcanvas-start .filter-panel-items-container {
  grid-template-columns: 1fr;
}
.dreamtheme .offcanvas.offcanvas-filter.offcanvas-bottom .filter-panel-items-container {
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
}
.dreamtheme .offcanvas.offcanvas-filter .filter-panel-item {
  position: static;
}
.dreamtheme .offcanvas.offcanvas-filter .filter-panel-item-toggle {
  pointer-events: none;
  width: 100%;
  padding: 0 0 8px;
  border: 0;
  background: none;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--g2g-token-color-neutral-text-default, #1f1f1f);
}
.dreamtheme .offcanvas.offcanvas-filter .filter-panel-item-toggle::after {
  display: none;
}
.dreamtheme .offcanvas.offcanvas-filter .filter-panel-item-toggle .icon-filter-panel-item-toggle {
  display: none;
}
.dreamtheme .offcanvas.offcanvas-filter .filter-panel-item-dropdown.dropdown-menu {
  display: block;
  position: static;
  float: none;
  inset: auto;
  transform: none;
  min-width: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  box-shadow: none;
  max-height: 220px;
  overflow-y: auto;
}
.dreamtheme .offcanvas.offcanvas-filter .filter-panel-active-container {
  grid-column: 1 / -1;
  margin-top: 4px;
}
.dreamtheme .offcanvas.offcanvas-filter .filter-panel-active-container .filter-reset-all {
  display: none;
}
.dreamtheme .offcanvas.offcanvas-filter .filter-panel-active-container .filter-active {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid #f3c3a6;
  border-radius: 999px;
  background: #fff5ef;
  color: #c4490f;
  box-shadow: none;
}
.dreamtheme .offcanvas.offcanvas-filter .filter-panel-active-container .filter-active:hover, .dreamtheme .offcanvas.offcanvas-filter .filter-panel-active-container .filter-active:focus {
  background: #ffe9dc;
  color: #c4490f;
}
.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 14px;
  row-gap: 12px;
}
.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing-actions > .g2g-listing-view-toggle {
  display: none;
  order: 1;
  flex: 0 0 auto;
  align-self: center;
  height: 39px;
  align-items: center;
}
.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing-actions.g2g-view-toggle-fits > .g2g-listing-view-toggle {
  display: flex;
}
@media (max-width: 767.98px) {
  .dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing-actions .g2g-listing-view-toggle {
    display: none;
  }
}
.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing-actions > .col-md-auto:last-child {
  display: contents;
}
.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing-actions > .col-md-auto:not(:last-child) {
  display: none;
}
.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing-actions .g2g-filter-megapanel-trigger {
  order: 2;
}
.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing-actions .g2g-listing-count {
  order: 3;
  flex: 0 0 auto;
  margin-left: 6px;
}
.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing-actions .g2g-list-menu--perpage {
  order: 5;
  margin-left: auto;
}
.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing-actions .g2g-list-menu--sort {
  order: 6;
}
.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing-actions .sorting {
  display: none;
}
.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing-actions .g2g-listing-per-page-wrap {
  display: none;
}
.dreamtheme.dreamtheme.dreamtheme.g2g-top-pagination-on .cms-element-product-listing-actions > .col-md-auto:not(:last-child) {
  display: flex;
  order: 4;
  flex: 1 1 auto;
  justify-content: center;
}
.dreamtheme.dreamtheme.dreamtheme.g2g-top-pagination-on .cms-element-product-listing-actions .g2g-list-menu--perpage {
  margin-left: 0;
}
@media (max-width: 767.98px) {
  .dreamtheme.dreamtheme.dreamtheme.g2g-top-pagination-on .cms-element-product-listing-actions > .col-md-auto:not(:last-child) {
    order: 0;
    flex: 0 0 100%;
  }
}
@media (max-width: 767.98px) {
  .dreamtheme .g2g-filter-megapanel-trigger__text {
    display: none;
  }
  .dreamtheme .g2g-list-menu--sort .g2g-list-menu__text {
    display: none;
  }
  .dreamtheme .g2g-filter-megapanel-trigger, .dreamtheme .g2g-list-menu--sort .g2g-list-menu__trigger {
    padding: 0 12px;
  }
}
.dreamtheme .g2g-listing-count {
  color: #9097a3;
  font-size: 15px;
  white-space: nowrap;
}
.dreamtheme .cms-element-product-listing-actions.g2g-hide-count .g2g-listing-count {
  display: none;
}
.dreamtheme .g2g-list-menu {
  position: relative;
}
.dreamtheme .g2g-list-menu__trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 39px;
  padding: 0 16px;
  list-style: none;
  background: #fff;
  border: 1px solid var(--g2g-token-color-neutral-border, #e2e8f0);
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  color: #1f1f1f;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: filter 0.15s ease;
}
.dreamtheme .g2g-list-menu__trigger::-webkit-details-marker {
  display: none;
}
.dreamtheme .g2g-list-menu__trigger::marker {
  content: "";
}
.dreamtheme .g2g-list-menu__trigger:hover, .dreamtheme .g2g-list-menu__trigger:focus {
  filter: brightness(0.98);
}
.dreamtheme .g2g-list-menu__icon {
  display: inline-flex;
}
.dreamtheme .g2g-list-menu__icon svg {
  width: 17px;
  height: 17px;
}
.dreamtheme .g2g-list-menu__caret {
  width: 0;
  height: 0;
  margin-left: 1px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.2s ease;
}
.dreamtheme .g2g-list-menu[open] .g2g-list-menu__caret {
  transform: rotate(180deg);
}
.dreamtheme .g2g-list-menu__dropdown {
  display: none;
  position: absolute;
  top: 46px;
  right: 0;
  z-index: 50;
  min-width: 200px;
  padding: 6px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.dreamtheme .g2g-list-menu[open] .g2g-list-menu__dropdown {
  display: block;
}
.dreamtheme .g2g-list-menu__heading {
  padding: 8px 12px 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #9097a3;
}
.dreamtheme .g2g-list-menu__option {
  display: block;
  width: 100%;
  padding: 9px 12px;
  text-align: left;
  background: none;
  border: 0;
  border-radius: 8px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
}
.dreamtheme .g2g-list-menu__option:hover, .dreamtheme .g2g-list-menu__option:focus {
  background: #f5f6f8;
}
.dreamtheme .g2g-list-menu__option.is-active {
  color: var(--g2g-token-color-brand-primary, #ec5b13);
  font-weight: 700;
}
.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing-wrapper .pagination {
  align-items: center;
  gap: 4px;
}
.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing-wrapper .pagination .page-item {
  margin: 0;
}
.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing-wrapper .pagination .page-link {
  width: 40px;
  height: 40px;
  min-width: 40px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--g2g-border-radius-global, 50%);
  background: transparent;
  box-shadow: none;
  color: var(--g2g-token-color-neutral-text-default, #1f1f1f);
  font-weight: 600;
  line-height: 1;
  transition: background 0.15s ease;
}
.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing-wrapper .pagination .page-link:hover, .dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing-wrapper .pagination .page-link:focus {
  background: #f0f1f4;
}
.dreamtheme.dreamtheme.dreamtheme .cms-element-product-listing-wrapper .pagination .page-item.active .page-link {
  background: var(--g2g-token-color-brand-primary, #ec5b13);
  color: #fff;
}
.product-detail-quantity-group, .product-detail-quantity-container .input-group, .product-detail-buy-container .input-group, .quantity-selector-group {
  flex-wrap: nowrap;
  align-items: stretch;
}
.product-detail-quantity-group .product-detail-quantity-input, .product-detail-quantity-group > input[type="number"], .product-detail-quantity-container .input-group .product-detail-quantity-input, .product-detail-quantity-container .input-group > input[type="number"], .product-detail-buy-container .input-group .product-detail-quantity-input, .product-detail-buy-container .input-group > input[type="number"], .quantity-selector-group .product-detail-quantity-input, .quantity-selector-group > input[type="number"] {
  flex: 1 1 auto;
  min-width: 48px;
  text-align: center;
}
.product-detail-quantity-group .product-detail-quantity-btn, .product-detail-quantity-group .quantity-selector-group .btn, .product-detail-quantity-group > button, .product-detail-quantity-container .input-group .product-detail-quantity-btn, .product-detail-quantity-container .input-group .quantity-selector-group .btn, .product-detail-quantity-container .input-group > button, .product-detail-buy-container .input-group .product-detail-quantity-btn, .product-detail-buy-container .input-group .quantity-selector-group .btn, .product-detail-buy-container .input-group > button, .quantity-selector-group .product-detail-quantity-btn, .quantity-selector-group .quantity-selector-group .btn, .quantity-selector-group > button {
  flex: 0 0 auto;
  padding: 0 0.75rem;
  line-height: 1;
}
.gallery-slider-controls-prev.is-nav-prev-inside, .gallery-slider-controls-next.is-nav-next-inside {
  height: 48px;
  width: 47px;
  border-radius: 50%;
  border: none;
  opacity: 1;
  transition: opacity 0.2s ease, background-color 0.2s ease;
}
.gallery-slider-controls-prev.is-nav-prev-inside:hover, .gallery-slider-controls-prev.is-nav-prev-inside:focus, .gallery-slider-controls-prev.is-nav-prev-inside:focus-visible, .gallery-slider-controls-next.is-nav-next-inside:hover, .gallery-slider-controls-next.is-nav-next-inside:focus, .gallery-slider-controls-next.is-nav-next-inside:focus-visible {
  opacity: 1;
}
.gallery-slider:hover .gallery-slider-controls-prev.is-nav-prev-inside, .gallery-slider:hover .gallery-slider-controls-next.is-nav-next-inside, .product-detail-gallery:hover .gallery-slider-controls-prev.is-nav-prev-inside, .product-detail-gallery:hover .gallery-slider-controls-next.is-nav-next-inside, .product-image-slider:hover .gallery-slider-controls-prev.is-nav-prev-inside, .product-image-slider:hover .gallery-slider-controls-next.is-nav-next-inside {
  opacity: 1;
}
.gallery-slider-controls-prev.is-nav-prev-inside {
  left: 10px;
  padding-right: 3px;
}
.gallery-slider-controls-next.is-nav-next-inside {
  right: 10px;
  padding-left: 3px;
}
.gallery-slider-controls-prev.is-nav-prev-inside .icon, .gallery-slider-controls-next.is-nav-next-inside .icon {
  height: 39px;
  width: 23px;
}
.base-slider-controls-prev .icon, .base-slider-controls-next .icon {
  color: currentColor;
}
body.dreamtheme.dreamtheme.is-ctl-product .base-slider-dot, body.dreamtheme.dreamtheme.is-ctl-product .base-slider-dot.tns-nav-active {
  box-shadow: none;
}
.dreamtheme .product-detail-buy-container, .dreamtheme .product-detail-form-container {
  padding-left: 0;
}
.dreamtheme .buy-widget-container {
  --bs-gutter-x: 0;
  gap: 15px;
}
.dreamtheme .buy-widget-container > .col-4 {
  width: auto;
  flex: 0 0 auto;
  padding-left: 0;
  padding-right: 0;
}
.dreamtheme .buy-widget-container > .col-8, .dreamtheme .buy-widget-container > .g2g-pdp-buy-cta-col {
  flex: 1;
  width: auto;
  margin-left: 0;
  padding-left: 0;
  padding-right: 0;
}
.dreamtheme .quantity-selector-group {
  border-radius: 8px;
  background: #f0f0f0;
  overflow: hidden;
}
.dreamtheme .quantity-selector-group .btn-minus, .dreamtheme .quantity-selector-group .btn-plus {
  border: none;
  background: transparent;
}
.dreamtheme .quantity-selector-group .btn-minus:hover, .dreamtheme .quantity-selector-group .btn-minus:focus, .dreamtheme .quantity-selector-group .btn-minus:focus-visible, .dreamtheme .quantity-selector-group .btn-minus:active, .dreamtheme .quantity-selector-group .btn-plus:hover, .dreamtheme .quantity-selector-group .btn-plus:focus, .dreamtheme .quantity-selector-group .btn-plus:focus-visible, .dreamtheme .quantity-selector-group .btn-plus:active {
  background: transparent;
  box-shadow: none;
}
.dreamtheme .quantity-selector-group .btn-minus {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.dreamtheme .quantity-selector-group .btn-plus {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
.dreamtheme .quantity-selector-group .product-detail-quantity-input, .dreamtheme .quantity-selector-group > input[type="number"] {
  border: none;
  background: transparent;
}
body.dreamtheme.dreamtheme.is-ctl-product .product-detail-quantity-group .input-group-text {
  border: none;
  background: transparent;
}
body.dreamtheme.dreamtheme.is-ctl-product .content-main .cms-sections .product-detail-buy .g2g-pdp-buy-cta.g2g-pdp-buy-cta {
  border-radius: var(--g2g-border-radius-global, 8px);
}
body.dreamtheme.dreamtheme.is-ctl-product .content-main .cms-sections .product-detail-buy .g2g-pdp-buy-cta.g2g-pdp-buy-cta .product-detail-rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
body.dreamtheme.dreamtheme.is-ctl-product .content-main .cms-sections .product-detail-buy .g2g-pdp-buy-cta.g2g-pdp-buy-cta .product-detail-rating .product-detail-points-rating, body.dreamtheme.dreamtheme.is-ctl-product .content-main .cms-sections .product-detail-buy .g2g-pdp-buy-cta.g2g-pdp-buy-cta .product-detail-rating .product-detail-reviews-link {
  margin: 0;
}
body.dreamtheme.dreamtheme .product-detail-reviews.product-detail-reviews {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
body.dreamtheme.dreamtheme .product-detail-reviews.product-detail-reviews .product-review-rating {
  margin: 0;
}
body.dreamtheme.dreamtheme .product-detail-reviews.product-detail-reviews .product-detail-reviews-link.product-detail-reviews-link {
  font-size: 0.8rem;
  color: #6b7280;
  text-decoration: none;
  margin: 0;
  white-space: nowrap;
}
@media (min-width: 992px) {
  body.g2g-pdp-image-sticky.is-ctl-product .content-main, body.g2g-pdp-image-sticky.is-ctl-product .cms-sections, body.g2g-pdp-image-sticky.is-ctl-product .cms-section, body.g2g-pdp-image-sticky.is-ctl-product .cms-section-default, body.g2g-pdp-image-sticky.is-ctl-product .cms-block, body.g2g-pdp-image-sticky.is-ctl-product .cms-block-gallery-buybox, body.g2g-pdp-image-sticky.is-ctl-product .cms-block-container, body.g2g-pdp-image-sticky.is-ctl-product .cms-block-container-row, body.g2g-pdp-image-sticky.is-ctl-product .product-detail-content, body.g2g-pdp-image-sticky.is-ctl-product .product-detail-main {
    overflow: visible;
  }
  body.g2g-pdp-image-sticky.is-ctl-product .product-detail-media {
    position: sticky;
    top: var(--g2g-sticky-header-offset, 190px);
    align-self: flex-start;
    z-index: 1;
  }
}
@media (hover: hover) and (pointer: fine) {
  body.g2g-pdp-thumb-hover-swap .gallery-slider-thumbnails-item, body.g2g-pdp-thumb-hover-swap .product-detail-thumbnail-image, body.g2g-pdp-thumb-hover-swap [data-product-image-thumb] {
    cursor: pointer;
  }
}
.gallery-slider-thumbnails-item-inner, .product-detail-thumbnail-image, [data-product-image-thumb] {
  transition: box-shadow 0.18s ease, border-color 0.18s ease;
}
.dreamtheme.is-ctl-product[data-g2g-pdp-thumb-style="none"] .gallery-slider-thumbnails-item-inner {
  border: 0;
  box-shadow: none;
  outline: 0;
}
.dreamtheme.is-ctl-product[data-g2g-pdp-thumb-style="none"] .gallery-slider-thumbnails-item-inner::after {
  content: none;
}
.dreamtheme.is-ctl-product[data-g2g-pdp-thumb-style="none"] .gallery-slider-thumbnails-item.tns-nav-active .gallery-slider-thumbnails-item-inner, .dreamtheme.is-ctl-product[data-g2g-pdp-thumb-style="none"] .product-detail-thumbnail-image.is-active, .dreamtheme.is-ctl-product[data-g2g-pdp-thumb-style="none"] [data-product-image-thumb].is-active {
  border: 0;
  box-shadow: none;
  outline: 0;
}
.dreamtheme.is-ctl-product[data-g2g-pdp-thumb-style="shadow"] .gallery-slider-thumbnails-item-inner {
  border: 0;
  box-shadow: none;
}
.dreamtheme.is-ctl-product[data-g2g-pdp-thumb-style="shadow"] .gallery-slider-thumbnails-item-inner::after {
  content: none;
}
.dreamtheme.is-ctl-product[data-g2g-pdp-thumb-style="shadow"] .gallery-slider-thumbnails-item.tns-nav-active .gallery-slider-thumbnails-item-inner {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.dreamtheme.is-ctl-product[data-g2g-pdp-thumb-style="shadow"][data-g2g-pdp-thumb-shadow="soft"] .gallery-slider-thumbnails-item.tns-nav-active .gallery-slider-thumbnails-item-inner {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.dreamtheme.is-ctl-product[data-g2g-pdp-thumb-style="shadow"][data-g2g-pdp-thumb-shadow="strong"] .gallery-slider-thumbnails-item.tns-nav-active .gallery-slider-thumbnails-item-inner {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}
.dreamtheme.is-ctl-product[data-g2g-pdp-thumb-style="border"] .gallery-slider-thumbnails-item-inner {
  border: var(--g2g-pdp-thumb-border-width, 2px) solid var(--g2g-token-color-neutral-border);
  box-shadow: none;
}
.dreamtheme.is-ctl-product[data-g2g-pdp-thumb-style="border"] .gallery-slider-thumbnails-item.tns-nav-active .gallery-slider-thumbnails-item-inner {
  border-color: var(--g2g-token-color-brand-primary, #64748b);
}
@media (hover: hover) and (pointer: fine) {
  body.g2g-pdp-slider-hover-swap .tns-nav button, body.g2g-pdp-slider-hover-swap .gallery-slider-controls .gallery-slider-dot, body.g2g-pdp-slider-hover-swap [data-slider-dot] {
    cursor: pointer;
    transition: transform 0.15s ease, background-color 0.15s ease;
  }
  body.g2g-pdp-slider-hover-swap .tns-nav button:hover, body.g2g-pdp-slider-hover-swap .gallery-slider-controls .gallery-slider-dot:hover, body.g2g-pdp-slider-hover-swap [data-slider-dot]:hover {
    transform: scale(1.25);
    background-color: var(--g2g-token-color-brand-primary, #64748b);
  }
}
@media (hover: hover) and (pointer: fine) {
  body.g2g-pdp-thumb-hover-scroll .gallery-slider-thumbnails-controls .gallery-slider-thumbnails-controls-prev, body.g2g-pdp-thumb-hover-scroll .gallery-slider-thumbnails-controls .gallery-slider-thumbnails-controls-next, body.g2g-pdp-thumb-hover-scroll .gallery-slider-thumbnails-controls [data-thumb-scroll-prev], body.g2g-pdp-thumb-hover-scroll .gallery-slider-thumbnails-controls [data-thumb-scroll-next], body.g2g-pdp-thumb-hover-scroll .product-detail-thumbnail-controls .gallery-slider-thumbnails-controls-prev, body.g2g-pdp-thumb-hover-scroll .product-detail-thumbnail-controls .gallery-slider-thumbnails-controls-next, body.g2g-pdp-thumb-hover-scroll .product-detail-thumbnail-controls [data-thumb-scroll-prev], body.g2g-pdp-thumb-hover-scroll .product-detail-thumbnail-controls [data-thumb-scroll-next] {
    cursor: pointer;
    transition: opacity 0.18s ease;
    opacity: 0.7;
  }
  body.g2g-pdp-thumb-hover-scroll .gallery-slider-thumbnails-controls .gallery-slider-thumbnails-controls-prev:hover, body.g2g-pdp-thumb-hover-scroll .gallery-slider-thumbnails-controls .gallery-slider-thumbnails-controls-next:hover, body.g2g-pdp-thumb-hover-scroll .gallery-slider-thumbnails-controls [data-thumb-scroll-prev]:hover, body.g2g-pdp-thumb-hover-scroll .gallery-slider-thumbnails-controls [data-thumb-scroll-next]:hover, body.g2g-pdp-thumb-hover-scroll .product-detail-thumbnail-controls .gallery-slider-thumbnails-controls-prev:hover, body.g2g-pdp-thumb-hover-scroll .product-detail-thumbnail-controls .gallery-slider-thumbnails-controls-next:hover, body.g2g-pdp-thumb-hover-scroll .product-detail-thumbnail-controls [data-thumb-scroll-prev]:hover, body.g2g-pdp-thumb-hover-scroll .product-detail-thumbnail-controls [data-thumb-scroll-next]:hover {
    opacity: 1;
  }
}
@media (hover: none) {
  body.g2g-pdp-thumb-hover-scroll .gallery-slider-thumbnails-controls [data-thumb-scroll-prev], body.g2g-pdp-thumb-hover-scroll .gallery-slider-thumbnails-controls [data-thumb-scroll-next], body.g2g-pdp-thumb-hover-scroll .product-detail-thumbnail-controls [data-thumb-scroll-prev], body.g2g-pdp-thumb-hover-scroll .product-detail-thumbnail-controls [data-thumb-scroll-next] {
    opacity: 1;
  }
}
body.g2g-pdp-image-mode-lightbox .product-detail-media .magnifier-zoom-image, body.g2g-pdp-image-mode-lightbox .product-detail-media .js-magnifier-zoom-image, body.g2g-pdp-image-mode-lightbox .product-detail-buy .magnifier-zoom-image, body.g2g-pdp-image-mode-lightbox .product-detail-buy .js-magnifier-zoom-image {
  display: none;
}
body.g2g-pdp-image-mode-lightbox .product-detail-media .magnifier-overlay, body.g2g-pdp-image-mode-lightbox .product-detail-media .js-magnifier-overlay {
  display: none;
}
body.g2g-pdp-image-mode-lightbox .product-detail-media .gallery-slider-image, body.g2g-pdp-image-mode-lightbox .product-detail-media .gallery-slider-single-image, body.g2g-pdp-image-mode-lightbox .product-detail-media .gallery-slider-image-container, body.g2g-pdp-image-mode-lightbox .product-detail-media .product-detail-image, body.g2g-pdp-image-mode-lightbox .product-detail-media .product-detail-image-link, body.g2g-pdp-image-mode-lightbox .product-detail-media .product-detail-image-container, body.g2g-pdp-image-mode-lightbox .product-detail-media [data-zoom-modal], body.g2g-pdp-image-mode-lightbox .product-detail-media .gallery-slider-row, body.g2g-pdp-image-mode-lightbox .product-detail-media .gallery-slider-row img {
  cursor: zoom-in !important;
}
body.g2g-pdp-image-mode-lightbox .modal.zoom-modal .gallery-slider-image, body.g2g-pdp-image-mode-lightbox .modal.zoom-modal .gallery-slider-single-image, body.g2g-pdp-image-mode-lightbox .modal.zoom-modal .gallery-slider-image-container, body.g2g-pdp-image-mode-lightbox .modal.zoom-modal .gallery-slider-row, body.g2g-pdp-image-mode-lightbox .modal.zoom-modal .gallery-slider-row img, body.g2g-pdp-image-mode-lightbox .modal.zoom-modal img.js-image-zoom-element {
  cursor: default !important;
}
body.g2g-pdp-image-mode-lightbox .modal.zoom-modal .gallery-slider-single-image::after, body.g2g-pdp-image-mode-lightbox .modal.zoom-modal .gallery-slider-image-container::after {
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  body.g2g-pdp-image-mode-lightbox .gallery-slider-single-image, body.g2g-pdp-image-mode-lightbox .product-detail-media .gallery-slider-image-container {
    position: relative;
  }
  body.g2g-pdp-image-mode-lightbox .gallery-slider-single-image::after, body.g2g-pdp-image-mode-lightbox .product-detail-media .gallery-slider-image-container::after {
    content: "";
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    pointer-events: none;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.2s ease-out, transform 0.2s ease-out;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23222' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='11' cy='11' r='7'/><line x1='21' y1='21' x2='16.5' y2='16.5'/><line x1='11' y1='8' x2='11' y2='14'/><line x1='8' y1='11' x2='14' y2='11'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px 20px;
    z-index: 5;
  }
  body.g2g-pdp-image-mode-lightbox .gallery-slider-single-image:hover::after, body.g2g-pdp-image-mode-lightbox .product-detail-media .gallery-slider-image-container:hover::after {
    opacity: 1;
    transform: scale(1);
  }
}
.modal.zoom-modal, .modal.is-fullscreen.zoom-modal, .zoom-modal-wrap {
  z-index: 10100;
}
body:has(.modal.zoom-modal.show) .modal-backdrop.show {
  z-index: 10100;
}
body.dreamtheme.dreamtheme .modal.zoom-modal {
  background: #fff;
}
body.dreamtheme.dreamtheme .modal.zoom-modal .modal-content {
  background: transparent;
  box-shadow: none;
}
body.dreamtheme.dreamtheme .modal.zoom-modal .zoom-modal-actions.btn-group {
  left: auto;
  right: 88px;
  top: 15px;
}
body.dreamtheme.dreamtheme .modal.zoom-modal .gallery-slider-controls-prev, body.dreamtheme.dreamtheme .modal.zoom-modal .gallery-slider-controls-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(36px, 4vw, 112px);
  height: clamp(36px, 4vw, 112px);
  border: none;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  top: 50%;
  transform: translateY(-50%);
  transition: background 0.15s ease;
}
body.dreamtheme.dreamtheme .modal.zoom-modal .gallery-slider-controls-prev:hover, body.dreamtheme.dreamtheme .modal.zoom-modal .gallery-slider-controls-prev:focus, body.dreamtheme.dreamtheme .modal.zoom-modal .gallery-slider-controls-next:hover, body.dreamtheme.dreamtheme .modal.zoom-modal .gallery-slider-controls-next:focus {
  background: white;
}
body.dreamtheme.dreamtheme .modal.zoom-modal .gallery-slider-controls-prev .icon, body.dreamtheme.dreamtheme .modal.zoom-modal .gallery-slider-controls-prev .icon svg, body.dreamtheme.dreamtheme .modal.zoom-modal .gallery-slider-controls-next .icon, body.dreamtheme.dreamtheme .modal.zoom-modal .gallery-slider-controls-next .icon svg {
  width: clamp(16px, 1.8vw, 44px);
  height: clamp(16px, 1.8vw, 44px);
}
body.dreamtheme.dreamtheme .modal.zoom-modal .gallery-slider-controls-prev {
  left: clamp(8px, 1.5vw, 24px);
}
body.dreamtheme.dreamtheme .modal.zoom-modal .gallery-slider-controls-prev .icon, body.dreamtheme.dreamtheme .modal.zoom-modal .gallery-slider-controls-prev .icon svg {
  transform: translate(-2px, -2px);
}
body.dreamtheme.dreamtheme .modal.zoom-modal .gallery-slider-controls-next {
  right: clamp(8px, 1.5vw, 24px);
  left: auto;
}
body.dreamtheme.dreamtheme .modal.zoom-modal .gallery-slider-controls-next .icon, body.dreamtheme.dreamtheme .modal.zoom-modal .gallery-slider-controls-next .icon svg {
  transform: translate(2px, -2px);
}
body.dreamtheme.dreamtheme .modal.zoom-modal .gallery-slider-thumbnails-controls {
  display: none;
}
body.dreamtheme.dreamtheme .modal.zoom-modal .modal-footer {
  margin-left: -30px;
  margin-right: -30px;
  padding-left: 30px;
  padding-right: 30px;
}
body.dreamtheme.dreamtheme .modal.zoom-modal .modal-footer .tns-outer {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
body.dreamtheme.dreamtheme .modal.zoom-modal .modal-footer .tns-ovh, body.dreamtheme.dreamtheme .modal.zoom-modal .modal-footer .tns-inner {
  width: auto;
}
body.dreamtheme.dreamtheme .modal.zoom-modal .btn-close, body.dreamtheme.dreamtheme .modal.zoom-modal .close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 56px;
  height: 56px;
  box-sizing: border-box;
  padding: 0;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  opacity: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23647488'%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");
  background-size: 18px 18px;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-color 0.15s ease;
}
body.dreamtheme.dreamtheme .modal.zoom-modal .btn-close:hover, body.dreamtheme.dreamtheme .modal.zoom-modal .btn-close:focus, body.dreamtheme.dreamtheme .modal.zoom-modal .close:hover, body.dreamtheme.dreamtheme .modal.zoom-modal .close:focus {
  background-color: rgba(255, 255, 255, 0.08);
  opacity: 1;
}
body.dreamtheme.dreamtheme .modal.zoom-modal .zoom-modal-actions .image-zoom-btn, body.dreamtheme.dreamtheme .modal.zoom-modal .zoom-modal-actions .btn-light {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
body.dreamtheme.dreamtheme .modal.zoom-modal .zoom-modal-actions .image-zoom-btn:hover, body.dreamtheme.dreamtheme .modal.zoom-modal .zoom-modal-actions .image-zoom-btn:focus, body.dreamtheme.dreamtheme .modal.zoom-modal .zoom-modal-actions .btn-light:hover, body.dreamtheme.dreamtheme .modal.zoom-modal .zoom-modal-actions .btn-light:focus {
  background-color: rgba(255, 255, 255, 0.08);
}
body.dreamtheme.dreamtheme .modal.zoom-modal .tns-outer, body.dreamtheme.dreamtheme .modal.zoom-modal .tns-ovh, body.dreamtheme.dreamtheme .modal.zoom-modal .tns-inner {
  width: 100%;
  height: 100%;
  flex: 1 1 auto;
}
body.dreamtheme.dreamtheme .modal.zoom-modal .gallery-slider-image, body.dreamtheme.dreamtheme .modal.zoom-modal img.js-image-zoom-element {
  object-fit: contain;
  max-height: calc(100vh - 220px);
}
body.dreamtheme.dreamtheme .modal.zoom-modal .gallery-slider-thumbnails-item {
  height: 75px;
  overflow: hidden;
}
body.dreamtheme.dreamtheme .modal.zoom-modal .gallery-slider-thumbnails-item .gallery-slider-thumbnails-image {
  width: 100%;
  height: 100%;
  max-height: 75px;
  object-fit: contain;
}
body.dreamtheme.dreamtheme.modal-open .product-detail-media {
  position: static;
  z-index: auto;
}
.g2g-cart-toast {
  position: fixed;
  top: 16px;
  left: calc(-100vw - 60px);
  z-index: 1080;
  width: calc(100% - 32px);
  max-width: 380px;
  padding: 12px 36px 14px 16px;
  background: #fff;
  color: #1f2937;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18), 0 2px 6px rgba(0, 0, 0, 0.06);
  border-left: 4px solid var(--g2g-token-color-brand-primary, #64748b);
  font-size: 0.95rem;
  line-height: 1.4;
  pointer-events: auto;
  transition: left 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.g2g-cart-toast--visible {
  left: 16px;
}
.g2g-cart-toast__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.g2g-cart-toast__head {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  color: #1f2937;
  /* Waltraud — Icon-Text-equivalent */
}
.g2g-cart-toast__head strong {
  font-weight: 700;
  color: var(--g2g-token-color-brand-primary-text, #64748b);
  /* Waltraud — WCAG AA Text */
}
.g2g-cart-toast__head svg {
  color: var(--g2g-token-color-brand-primary-text, #64748b);
}
.g2g-cart-toast__head--reached {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: #15803d;
}
.g2g-cart-toast__head--reached svg {
  color: #15803d;
}
.g2g-cart-toast__total {
  font-weight: 700;
  font-size: 1rem;
  color: #1f2937;
  white-space: nowrap;
}
.g2g-cart-toast__track {
  position: relative;
  height: 6px;
  border-radius: 3px;
  background: #e5e7eb;
  overflow: hidden;
  margin-top: 6px;
}
.g2g-cart-toast__fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 3px;
  background: var(--g2g-token-color-brand-primary, #64748b);
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: width;
}
.g2g-cart-toast__close {
  position: absolute;
  top: 6px;
  right: 8px;
  background: none;
  border: 0;
  color: #94a3b8;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
}
.g2g-cart-toast__close:hover {
  color: #1f2937;
  background: #f1f5f9;
}
@media (max-width: 575px) {
  .g2g-cart-toast {
    top: 8px;
    max-width: none;
    width: calc(100% - 16px);
  }
  .g2g-cart-toast--visible {
    left: 8px;
  }
}
.g2g-header-cart-total {
  display: none;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--g2g-token-color-brand-primary-text, #64748b);
  /* Waltraud — WCAG AA Header-Cart-Total */
  margin-left: 6px;
  white-space: nowrap;
  vertical-align: middle;
}
body.g2g-show-cart-total .g2g-header-cart-total {
  display: inline-block;
}
@media (max-width: 575px) {
  .g2g-header-cart-total {
    font-size: 0.8rem;
    margin-left: 4px;
  }
}
body.dreamtheme .product-wishlist-action-circle.product-wishlist-action-circle.btn {
  background: none;
  border: none;
  overflow: visible;
}
body.dreamtheme .header-main [class~="container"] .header-row .header-actions-col [class~="row"] .header-cart .header-actions-btn.header-actions-btn, body.dreamtheme .header-main [class~="container"] .header-row .header-actions-col [class~="row"] .header-cart .header-cart-btn.header-cart-btn {
  overflow: visible;
}
body.dreamtheme .header-main [class~="container"] .header-row .header-actions-col [class~="row"] .header-cart .header-cart-badge.header-cart-badge.header-cart-badge {
  top: -6px;
  right: auto;
  left: 16px;
}
body.dreamtheme:not(.g2g-hide-cart-count) .header-cart-badge.header-cart-badge.header-cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
body.dreamtheme .header-wishlist-badge.header-wishlist-badge.header-wishlist-badge {
  display: none;
}
body.dreamtheme .offcanvas-cookie .btn, body.dreamtheme .offcanvas-cookie .btn-primary, body.dreamtheme .offcanvas-cookie .js-offcanvas-cookie-submit, body.dreamtheme .offcanvas-cookie .js-cookie-permission-submit, body.dreamtheme .offcanvas-cookie .js-cookie-configuration, body.dreamtheme .cookie-permission .btn, body.dreamtheme .cookie-permission .btn-primary, body.dreamtheme .cookie-permission .js-offcanvas-cookie-submit, body.dreamtheme .cookie-permission .js-cookie-permission-submit, body.dreamtheme .cookie-permission .js-cookie-configuration, body.dreamtheme .cookie-permission-modal .btn, body.dreamtheme .cookie-permission-modal .btn-primary, body.dreamtheme .cookie-permission-modal .js-offcanvas-cookie-submit, body.dreamtheme .cookie-permission-modal .js-cookie-permission-submit, body.dreamtheme .cookie-permission-modal .js-cookie-configuration, body.dreamtheme [data-cookie-permission] .btn, body.dreamtheme [data-cookie-permission] .btn-primary, body.dreamtheme [data-cookie-permission] .js-offcanvas-cookie-submit, body.dreamtheme [data-cookie-permission] .js-cookie-permission-submit, body.dreamtheme [data-cookie-permission] .js-cookie-configuration, body.dreamtheme [data-offcanvas-cookies] .btn, body.dreamtheme [data-offcanvas-cookies] .btn-primary, body.dreamtheme [data-offcanvas-cookies] .js-offcanvas-cookie-submit, body.dreamtheme [data-offcanvas-cookies] .js-cookie-permission-submit, body.dreamtheme [data-offcanvas-cookies] .js-cookie-configuration {
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  line-height: 1.4;
  font-weight: 500;
  min-height: 0;
  border-radius: 0.375rem;
}
body.dreamtheme .offcanvas-cookie .offcanvas-cookie-actions, body.dreamtheme .offcanvas-cookie .cookie-permission-actions, body.dreamtheme .offcanvas-cookie .cookie-permission-buttons, body.dreamtheme .cookie-permission .offcanvas-cookie-actions, body.dreamtheme .cookie-permission .cookie-permission-actions, body.dreamtheme .cookie-permission .cookie-permission-buttons, body.dreamtheme .cookie-permission-modal .offcanvas-cookie-actions, body.dreamtheme .cookie-permission-modal .cookie-permission-actions, body.dreamtheme .cookie-permission-modal .cookie-permission-buttons, body.dreamtheme [data-cookie-permission] .offcanvas-cookie-actions, body.dreamtheme [data-cookie-permission] .cookie-permission-actions, body.dreamtheme [data-cookie-permission] .cookie-permission-buttons, body.dreamtheme [data-offcanvas-cookies] .offcanvas-cookie-actions, body.dreamtheme [data-offcanvas-cookies] .cookie-permission-actions, body.dreamtheme [data-offcanvas-cookies] .cookie-permission-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}
body.dreamtheme .offcanvas-cookie .offcanvas-cookie-actions .btn, body.dreamtheme .offcanvas-cookie .cookie-permission-actions .btn, body.dreamtheme .offcanvas-cookie .cookie-permission-buttons .btn, body.dreamtheme .cookie-permission .offcanvas-cookie-actions .btn, body.dreamtheme .cookie-permission .cookie-permission-actions .btn, body.dreamtheme .cookie-permission .cookie-permission-buttons .btn, body.dreamtheme .cookie-permission-modal .offcanvas-cookie-actions .btn, body.dreamtheme .cookie-permission-modal .cookie-permission-actions .btn, body.dreamtheme .cookie-permission-modal .cookie-permission-buttons .btn, body.dreamtheme [data-cookie-permission] .offcanvas-cookie-actions .btn, body.dreamtheme [data-cookie-permission] .cookie-permission-actions .btn, body.dreamtheme [data-cookie-permission] .cookie-permission-buttons .btn, body.dreamtheme [data-offcanvas-cookies] .offcanvas-cookie-actions .btn, body.dreamtheme [data-offcanvas-cookies] .cookie-permission-actions .btn, body.dreamtheme [data-offcanvas-cookies] .cookie-permission-buttons .btn {
  flex: 0 0 auto;
  width: auto;
}
@media (max-width: 575px) {
  body.dreamtheme .offcanvas-cookie .offcanvas-cookie-actions, body.dreamtheme .offcanvas-cookie .cookie-permission-actions, body.dreamtheme .offcanvas-cookie .cookie-permission-buttons, body.dreamtheme .cookie-permission .offcanvas-cookie-actions, body.dreamtheme .cookie-permission .cookie-permission-actions, body.dreamtheme .cookie-permission .cookie-permission-buttons, body.dreamtheme .cookie-permission-modal .offcanvas-cookie-actions, body.dreamtheme .cookie-permission-modal .cookie-permission-actions, body.dreamtheme .cookie-permission-modal .cookie-permission-buttons, body.dreamtheme [data-cookie-permission] .offcanvas-cookie-actions, body.dreamtheme [data-cookie-permission] .cookie-permission-actions, body.dreamtheme [data-cookie-permission] .cookie-permission-buttons, body.dreamtheme [data-offcanvas-cookies] .offcanvas-cookie-actions, body.dreamtheme [data-offcanvas-cookies] .cookie-permission-actions, body.dreamtheme [data-offcanvas-cookies] .cookie-permission-buttons {
    flex-direction: column;
  }
  body.dreamtheme .offcanvas-cookie .offcanvas-cookie-actions .btn, body.dreamtheme .offcanvas-cookie .cookie-permission-actions .btn, body.dreamtheme .offcanvas-cookie .cookie-permission-buttons .btn, body.dreamtheme .cookie-permission .offcanvas-cookie-actions .btn, body.dreamtheme .cookie-permission .cookie-permission-actions .btn, body.dreamtheme .cookie-permission .cookie-permission-buttons .btn, body.dreamtheme .cookie-permission-modal .offcanvas-cookie-actions .btn, body.dreamtheme .cookie-permission-modal .cookie-permission-actions .btn, body.dreamtheme .cookie-permission-modal .cookie-permission-buttons .btn, body.dreamtheme [data-cookie-permission] .offcanvas-cookie-actions .btn, body.dreamtheme [data-cookie-permission] .cookie-permission-actions .btn, body.dreamtheme [data-cookie-permission] .cookie-permission-buttons .btn, body.dreamtheme [data-offcanvas-cookies] .offcanvas-cookie-actions .btn, body.dreamtheme [data-offcanvas-cookies] .cookie-permission-actions .btn, body.dreamtheme [data-offcanvas-cookies] .cookie-permission-buttons .btn {
    flex: 1 1 auto;
    max-width: none;
    width: 100%;
  }
}
body.dreamtheme.modal-open .cookie-permission, body.dreamtheme.modal-open .cookie-permission-container, body.dreamtheme.modal-open [data-cookie-permission], body.dreamtheme.modal-open .offcanvas-cookie {
  display: none !important;
}
body.dreamtheme .modal.zoom-modal {
  background-color: #fff;
}
body.dreamtheme .modal.zoom-modal .modal-content, body.dreamtheme .modal.zoom-modal .modal-body, body.dreamtheme .modal.zoom-modal .swag-custom-notifications-newsletter-popup__content .confirm-message, .swag-custom-notifications-newsletter-popup__content body.dreamtheme .modal.zoom-modal .confirm-message {
  background: transparent;
}
body.dreamtheme .modal.zoom-modal .modal-content {
  display: flex;
}
body.dreamtheme .modal.zoom-modal .modal-body, body.dreamtheme .modal.zoom-modal .swag-custom-notifications-newsletter-popup__content .confirm-message, .swag-custom-notifications-newsletter-popup__content body.dreamtheme .modal.zoom-modal .confirm-message {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
body.dreamtheme .modal.zoom-modal .gallery-slider {
  min-height: 100vh;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.dreamtheme .modal.zoom-modal .image-zoom-container {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.dreamtheme .modal.zoom-modal .gallery-slider-image {
  max-height: 100vh;
  max-width: 100%;
  height: auto;
  width: auto;
  object-fit: contain;
}
body.dreamtheme.dreamtheme.is-ctl-product.g2g-pdp-gallery-aspect-4-3 .gallery-slider-item, body.dreamtheme.dreamtheme.is-ctl-product.g2g-pdp-gallery-aspect-4-3 .gallery-slider-single-image {
  aspect-ratio: 4 / 3;
  min-height: 0;
  height: auto;
}
body.dreamtheme.dreamtheme.is-ctl-product.g2g-pdp-gallery-aspect-4-3 .gallery-slider-item .gallery-slider-image, body.dreamtheme.dreamtheme.is-ctl-product.g2g-pdp-gallery-aspect-4-3 .gallery-slider-single-image .gallery-slider-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
body.dreamtheme.dreamtheme.is-ctl-product.g2g-pdp-gallery-aspect-3-4 .gallery-slider-item, body.dreamtheme.dreamtheme.is-ctl-product.g2g-pdp-gallery-aspect-3-4 .gallery-slider-single-image {
  aspect-ratio: 3 / 4;
  min-height: 0;
  height: auto;
}
body.dreamtheme.dreamtheme.is-ctl-product.g2g-pdp-gallery-aspect-3-4 .gallery-slider-item .gallery-slider-image, body.dreamtheme.dreamtheme.is-ctl-product.g2g-pdp-gallery-aspect-3-4 .gallery-slider-single-image .gallery-slider-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
body.dreamtheme.dreamtheme.is-ctl-product.g2g-pdp-gallery-aspect-16-9 .gallery-slider-item, body.dreamtheme.dreamtheme.is-ctl-product.g2g-pdp-gallery-aspect-16-9 .gallery-slider-single-image {
  aspect-ratio: 16 / 9;
  min-height: 0;
  height: auto;
}
body.dreamtheme.dreamtheme.is-ctl-product.g2g-pdp-gallery-aspect-16-9 .gallery-slider-item .gallery-slider-image, body.dreamtheme.dreamtheme.is-ctl-product.g2g-pdp-gallery-aspect-16-9 .gallery-slider-single-image .gallery-slider-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
body.dreamtheme.dreamtheme.is-ctl-product.g2g-pdp-gallery-aspect-9-16 .gallery-slider-item, body.dreamtheme.dreamtheme.is-ctl-product.g2g-pdp-gallery-aspect-9-16 .gallery-slider-single-image {
  aspect-ratio: 9 / 16;
  min-height: 0;
  height: auto;
}
body.dreamtheme.dreamtheme.is-ctl-product.g2g-pdp-gallery-aspect-9-16 .gallery-slider-item .gallery-slider-image, body.dreamtheme.dreamtheme.is-ctl-product.g2g-pdp-gallery-aspect-9-16 .gallery-slider-single-image .gallery-slider-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
body.dreamtheme.dreamtheme.is-ctl-product.g2g-pdp-gallery-aspect-1-1 .gallery-slider-item, body.dreamtheme.dreamtheme.is-ctl-product.g2g-pdp-gallery-aspect-1-1 .gallery-slider-single-image {
  aspect-ratio: 1 / 1;
  min-height: 0;
  height: auto;
}
body.dreamtheme.dreamtheme.is-ctl-product.g2g-pdp-gallery-aspect-1-1 .gallery-slider-item .gallery-slider-image, body.dreamtheme.dreamtheme.is-ctl-product.g2g-pdp-gallery-aspect-1-1 .gallery-slider-single-image .gallery-slider-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.g2g-pdp-trust-banner {
  display: block;
  width: 100%;
  background: #1a2433;
  color: #fff;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 16px;
  border-radius: 0;
}
@media (min-width: 768px) {
  .g2g-pdp-trust-banner {
    padding: 14px 24px;
    font-size: 15px;
  }
}
.g2g-pdp-trust-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  max-width: 1200px;
  margin: 0 auto;
  transition: opacity 180ms ease;
}
.g2g-pdp-trust-banner__inner:hover, .g2g-pdp-trust-banner__inner:focus {
  color: #fff;
  text-decoration: none;
  opacity: 0.92;
}
@media (max-width: 767.98px) {
  .g2g-pdp-trust-banner__inner {
    gap: 6px;
    flex-wrap: nowrap;
    overflow: hidden;
  }
}
.g2g-pdp-trust-banner__stars {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  margin-right: 4px;
  white-space: nowrap;
}
.g2g-pdp-trust-banner__star {
  color: #ffc107;
  font-size: 16px;
  line-height: 1;
  opacity: 0.3;
}
.g2g-pdp-trust-banner__star.is-filled {
  opacity: 1;
}
.g2g-pdp-trust-banner__star.is-half {
  opacity: 0.55;
}
.g2g-pdp-trust-banner__rating {
  font-weight: 700;
  font-size: 1.05em;
}
.g2g-pdp-trust-banner__label {
  font-weight: 600;
  color: #ffc107;
  margin-right: 4px;
}
@media (max-width: 575.98px) {
  .g2g-pdp-trust-banner__label {
    display: none;
  }
}
.g2g-pdp-trust-banner__count {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  font-size: 0.92em;
}
@media (max-width: 575.98px) {
  .g2g-pdp-trust-banner__count {
    font-size: 0.85em;
  }
}
.g2g-pdp-trust-banner__chevron {
  margin-left: auto;
  font-size: 1.4em;
  line-height: 1;
  opacity: 0.7;
  transition: transform 180ms ease;
}
.g2g-pdp-trust-banner__inner:hover .g2g-pdp-trust-banner__chevron {
  transform: translateX(2px);
  opacity: 1;
}
.g2g-pdp-usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
}
@media (max-width: 575.98px) {
  .g2g-pdp-usp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 12px;
  }
}
.g2g-pdp-usp-grid__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 14px 8px 12px;
  background: var(--g2g-token-pdp-usp-bg, #f7f7f6);
  border: none;
  border-radius: 8px;
  gap: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: box-shadow 180ms ease, background-color 180ms ease;
}
.g2g-pdp-usp-grid__item:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.06);
}
.g2g-pdp-usp-grid__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--g2g-pdp-usp-grid-icon-bg, rgba(244, 124, 32, 0.1));
  flex-shrink: 0;
}
.g2g-pdp-usp-grid__icon .icon {
  width: 18px;
  height: 18px;
  color: var(--g2g-token-pdp-usp-icon, #f47c20);
  position: relative;
  top: 0;
}
.g2g-pdp-usp-grid__icon svg {
  width: 18px;
  height: 18px;
  color: var(--g2g-token-pdp-usp-icon, #f47c20);
  position: relative;
  top: 0;
}
.g2g-pdp-usp-grid__text {
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--g2g-token-pdp-usp-text, #3a3a38);
}
.cms-element-product-description-reviews .product-detail-tab-navigation.card-header {
  border-bottom: none;
  background: transparent;
  padding: 0;
}
.cms-element-product-description-reviews > .card {
  border: none;
  box-shadow: none;
  background: transparent;
}
.cms-element-product-description-reviews .product-detail-tab-navigation-list.nav-tabs {
  border-bottom: 0.5px solid #e5e5e5;
  gap: 0 8px;
  padding: 0;
}
.cms-element-product-description-reviews .nav-link.description-tab, .cms-element-product-description-reviews .nav-link.review-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  border: 0.5px solid #e5e5e5;
  border-radius: var(--g2g-border-radius, 999px);
  color: #0f172a;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  margin-bottom: -0.5px;
}
.cms-element-product-description-reviews .nav-link.description-tab:hover:not(.active), .cms-element-product-description-reviews .nav-link.review-tab:hover:not(.active) {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.cms-element-product-description-reviews .nav-link.description-tab.active, .cms-element-product-description-reviews .nav-link.review-tab.active {
  color: #fff;
  background: var(--bs-primary, #64748b);
  border-color: var(--bs-primary, #64748b);
  border-bottom-color: #fff;
  box-shadow: 0 4px 12px rgba(100, 116, 139, 0.25);
  position: relative;
  z-index: 1;
}
.cms-element-product-description-reviews .nav-link.description-tab {
  padding: 8px 24px;
}
.cms-element-product-description-reviews .g2g-tab-icon {
  display: none;
}
.cms-element-product-description-reviews .product-detail-tabs-content {
  background: #fff;
  border: 0.5px solid #e5e5e5;
  border-top: none;
  border-radius: 0 0 var(--g2g-border-radius-global, 16px) var(--g2g-border-radius-global, 16px);
  box-shadow: none;
  padding: 24px 22px;
}
.product-detail-cross-selling .product-cross-selling-tab-navigation.card-header {
  border-bottom: none;
  background: transparent;
  padding: 0;
}
.product-detail-cross-selling .product-detail-tab-navigation-list.nav-tabs {
  border-bottom: none;
  gap: 8px;
  padding: 0 0 16px;
}
.product-detail-cross-selling .nav-link.product-detail-tab-navigation-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  border: 0.5px solid #e5e5e5;
  border-bottom: 0.5px solid #e5e5e5;
  border-radius: var(--g2g-border-radius, 999px);
  color: #0f172a;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.product-detail-cross-selling .nav-link.product-detail-tab-navigation-link:hover:not(.active) {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-bottom-color: #e5e5e5;
}
.product-detail-cross-selling .nav-link.product-detail-tab-navigation-link.active {
  color: #fff;
  background: var(--bs-primary, #64748b);
  border-color: var(--bs-primary, #64748b);
  border-bottom-color: var(--bs-primary, #64748b);
  box-shadow: 0 4px 12px rgba(100, 116, 139, 0.25);
}
.g2g-cs-stacked {
  overflow: hidden;
}
.g2g-cs-stacked .g2g-cs-stacked-group {
  overflow: hidden;
}
.g2g-cs-stacked .g2g-cs-stacked-group .cms-element-product-slider {
  overflow: hidden;
}
.g2g-cs-stacked .g2g-cs-stacked-group .cms-element-product-slider > * {
  min-width: 0;
  max-width: 100%;
}
.g2g-cs-stacked .g2g-cs-stacked-group--spaced {
  margin-top: 32px;
}
.g2g-cs-stacked .g2g-cs-stacked-heading {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 20px;
  padding: 0;
  background: none;
  border-radius: 0;
  box-shadow: none;
}
.g2g-cs-stacked .g2g-cs-stacked-heading::before, .g2g-cs-stacked .g2g-cs-stacked-heading::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to var(--g2g-cs-line-dir, right), var(--bs-primary, #64748b) 0%, rgba(229, 231, 235, 0.6) 30%, rgba(229, 231, 235, 0.2) 100%);
}
.g2g-cs-stacked .g2g-cs-stacked-heading::before {
  --g2g-cs-line-dir: left;
}
.g2g-cs-stacked .g2g-cs-stacked-heading::after {
  --g2g-cs-line-dir: right;
}
.card-tabs .tab-pane .cms-element-title .cms-element-title-paragraph {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.card-tabs .tab-pane .cms-element-title .cms-element-title-paragraph::before, .card-tabs .tab-pane .cms-element-title .cms-element-title-paragraph::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to var(--g2g-cs-line-dir, right), var(--bs-primary, #64748b) 0%, rgba(229, 231, 235, 0.6) 30%, rgba(229, 231, 235, 0.2) 100%);
}
.card-tabs .tab-pane .cms-element-title .cms-element-title-paragraph::before {
  --g2g-cs-line-dir: left;
}
.card-tabs .tab-pane .cms-element-title .cms-element-title-paragraph::after {
  --g2g-cs-line-dir: right;
}
.g2g-tab-badge {
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 1px 8px;
  border-radius: 99px;
  line-height: 1.5;
  margin-left: 2px;
}
.nav-link:not(.active) .g2g-tab-badge {
  background: var(--bs-primary, #64748b);
  color: #fff;
}
.g2g-details-card {
  background: var(--g2g-token-color-neutral-surface, #f9fafb);
  border: none;
  border-radius: 12px;
  padding: 24px;
  margin-top: 24px;
}
.g2g-details-card__section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--bs-primary, #64748b);
  margin-bottom: 16px;
}
.g2g-details-card__section-label::before {
  content: "// ";
}
.g2g-details-card__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.g2g-details-card__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border-radius: 8px;
}
.g2g-details-card__row:nth-child(odd) {
  background: #fff;
}
.g2g-details-card__label {
  font-size: 13px;
  color: var(--g2g-token-color-neutral-text-muted, #6b7280);
  font-weight: 400;
}
.g2g-details-card__value {
  font-size: 13px;
  font-weight: 600;
  color: var(--g2g-token-color-neutral-text-default, #1a1a1a);
  text-align: right;
}
.g2g-details-card__value a {
  color: var(--bs-primary, #64748b);
  text-decoration: none;
  font-weight: 600;
}
.g2g-details-card__value a:hover {
  text-decoration: underline;
}
.g2g-details-card__value--mono {
  font-family: "SF Mono", "Fira Code", "Cascadia Code", monospace;
  font-size: 12px;
  letter-spacing: -0.3px;
  color: var(--g2g-token-color-neutral-text-muted, #6b7280);
}
.g2g-details-card__value--stock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}
.g2g-details-card__stock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.g2g-details-card__stock-dot--green {
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}
.g2g-details-card__stock-dot--red {
  background: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}
.g2g-description-text {
  margin-bottom: 8px;
}
.g2g-description-text .product-detail-description-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--g2g-token-color-neutral-text-default, #374151);
}
.g2g-description-text .product-detail-description-text h2, .g2g-description-text .product-detail-description-text .h2, .g2g-description-text .product-detail-description-text h3, .g2g-description-text .product-detail-description-text .h3, .g2g-description-text .product-detail-description-text h4, .g2g-description-text .product-detail-description-text .h4 {
  color: var(--g2g-token-color-neutral-text-default, #1a1a1a);
  margin-top: 28px;
  margin-bottom: 12px;
  padding-left: 14px;
  border-left: 3px solid var(--bs-primary, #64748b);
}
.g2g-description-text .product-detail-description-text h2, .g2g-description-text .product-detail-description-text .h2 {
  font-size: 22px;
  font-weight: 700;
}
.g2g-description-text .product-detail-description-text h3, .g2g-description-text .product-detail-description-text .h3 {
  font-size: 18px;
  font-weight: 600;
}
.g2g-description-text .product-detail-description-text h4, .g2g-description-text .product-detail-description-text .h4 {
  font-size: 16px;
  font-weight: 600;
}
.g2g-description-text .product-detail-description-text ul, .g2g-description-text .product-detail-description-text ol {
  padding-left: 20px;
  margin: 12px 0;
}
.g2g-description-text .product-detail-description-text ul li, .g2g-description-text .product-detail-description-text ol li {
  margin-bottom: 4px;
}
.dreamtheme.dreamtheme.is-ctl-product .product-detail-review-list hr {
  display: none;
}
.dreamtheme.dreamtheme.is-ctl-product .product-detail-review-item {
  border-bottom: none;
  background: var(--g2g-token-color-neutral-surface, #f8fafc);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 10px;
  border-left: 3px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}
.dreamtheme.dreamtheme.is-ctl-product .product-detail-review-item:hover {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}
.dreamtheme.dreamtheme.is-ctl-product .product-detail-review-item:has(.product-review-point:nth-child(5) .point-full) {
  background: rgba(34, 197, 94, 0.07);
  border-left-color: rgba(34, 197, 94, 0.4);
}
.dreamtheme.dreamtheme.is-ctl-product .product-detail-review-item:has(.product-review-point:nth-child(4) .point-full):has(.product-review-point:nth-child(5) .point-blank) {
  background: rgba(34, 197, 94, 0.04);
  border-left-color: rgba(34, 197, 94, 0.25);
}
.dreamtheme.dreamtheme.is-ctl-product .product-detail-review-item:has(.product-review-point:nth-child(3) .point-full):has(.product-review-point:nth-child(4) .point-blank) {
  background: rgba(245, 158, 11, 0.06);
  border-left-color: rgba(245, 158, 11, 0.35);
}
.dreamtheme.dreamtheme.is-ctl-product .product-detail-review-item:has(.product-review-point:nth-child(2) .point-full):has(.product-review-point:nth-child(3) .point-blank) {
  background: rgba(239, 68, 68, 0.05);
  border-left-color: rgba(239, 68, 68, 0.3);
}
.dreamtheme.dreamtheme.is-ctl-product .product-detail-review-item:has(.product-review-point:nth-child(1) .point-full):has(.product-review-point:nth-child(2) .point-blank) {
  background: rgba(239, 68, 68, 0.07);
  border-left-color: rgba(239, 68, 68, 0.45);
}
.dreamtheme.dreamtheme.is-ctl-product .product-detail-review-item-date {
  font-size: 11px;
  color: #9ca3af;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  font-weight: 500;
}
.dreamtheme.dreamtheme.is-ctl-product .product-detail-review-item-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--g2g-token-color-neutral-text-default, #1a1a1a);
  letter-spacing: -0.01em;
}
.dreamtheme.dreamtheme.is-ctl-product .product-detail-review-item-content {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--g2g-token-color-neutral-text-default, #4b5563);
}
.dreamtheme.dreamtheme.is-ctl-product .product-detail-review .alert {
  border-radius: 12px;
  font-size: 13.5px;
  padding: 14px 18px;
  border: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.dreamtheme.dreamtheme.is-ctl-product .product-detail-review .alert .icon {
  flex-shrink: 0;
}
.dreamtheme.dreamtheme.is-ctl-product .product-detail-review .alert-success {
  background: rgba(34, 197, 94, 0.08);
  color: #166534;
  box-shadow: inset 0 0 0 1px rgba(34, 197, 94, 0.2);
}
.dreamtheme.dreamtheme.is-ctl-product .product-detail-review .alert-danger {
  background: rgba(239, 68, 68, 0.06);
  color: #991b1b;
  box-shadow: inset 0 0 0 1px rgba(239, 68, 68, 0.2);
}
.dreamtheme.dreamtheme.is-ctl-product .product-detail-review-language .form-check-input[type="checkbox"] {
  width: 34px;
  height: 18px;
  border-radius: 99px;
  border: 1.5px solid #d1d5db;
  background-color: #e5e7eb;
  cursor: pointer;
  appearance: none;
  position: relative;
  transition: background-color 180ms ease, border-color 180ms ease;
}
.dreamtheme.dreamtheme.is-ctl-product .product-detail-review-language .form-check-input[type="checkbox"]::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  transition: transform 180ms ease;
}
.dreamtheme.dreamtheme.is-ctl-product .product-detail-review-language .form-check-input[type="checkbox"]:checked {
  background-color: var(--bs-primary, #64748b);
  border-color: var(--bs-primary, #64748b);
}
.dreamtheme.dreamtheme.is-ctl-product .product-detail-review-language .form-check-input[type="checkbox"]:checked::before {
  transform: translateX(16px);
}
.dreamtheme.dreamtheme.is-ctl-product .product-detail-review-title.h5 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: var(--g2g-token-color-neutral-text-default, #1a1a1a);
}
.dreamtheme.dreamtheme.is-ctl-product .product-detail-review .h6 {
  font-size: 22px;
  font-weight: 800;
  color: var(--g2g-token-color-neutral-text-default, #0f172a);
  margin-bottom: 14px;
}
.dreamtheme.dreamtheme.is-ctl-product .product-detail-review-progressbar-container.progress {
  border-radius: 99px;
  height: 8px;
  background: #f3f4f6;
  overflow: hidden;
}
.dreamtheme.dreamtheme.is-ctl-product .product-detail-review-progressbar-container .progress-bar {
  border-radius: 99px;
  background: var(--bs-primary, #64748b);
}
.dreamtheme.dreamtheme.is-ctl-product .product-detail-review-checkbox .form-check .form-check-input {
  display: none;
}
.dreamtheme.dreamtheme.is-ctl-product .product-detail-review-checkbox .form-check .form-check-label {
  font-size: 12px;
  color: #6b7280;
  cursor: default;
}
.dreamtheme.dreamtheme.is-ctl-product .product-detail-review-teaser {
  background: var(--g2g-token-color-neutral-surface, #f8fafc);
  border-radius: 12px;
  padding: 18px 20px;
  margin-top: 12px;
  border: 1px solid #e5e7eb;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.dreamtheme.dreamtheme.is-ctl-product .product-detail-review-teaser:hover {
  border-color: #d1d5db;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.dreamtheme.dreamtheme.is-ctl-product .product-detail-review-teaser .h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--g2g-token-color-neutral-text-default, #1a1a1a);
  margin-bottom: 4px;
}
.dreamtheme.dreamtheme.is-ctl-product .product-detail-review-teaser > p:not(.h4) {
  font-size: 12px;
  color: #9ca3af;
  margin-bottom: 10px;
}
.dreamtheme.dreamtheme.is-ctl-product .product-detail-review .btn.btn-primary.product-detail-review-teaser-btn {
  border-radius: 999px;
  font-weight: 600;
  font-size: 12px;
  padding: 8px 18px;
}
.dreamtheme.dreamtheme.is-ctl-product .product-detail-review-language {
  font-size: 12px;
  color: #9ca3af;
}
.dreamtheme.dreamtheme.is-ctl-product .product-detail-review-language .form-check-label {
  font-size: 12px;
  color: #9ca3af;
}
.dreamtheme.dreamtheme.is-ctl-product .product-detail-review-count {
  font-size: 12px;
  color: #9ca3af;
  font-weight: 500;
  letter-spacing: 0.2px;
}
.dreamtheme.dreamtheme.is-ctl-product .product-detail-review-count strong {
  color: var(--g2g-token-color-neutral-text-default, #374151);
}
.dreamtheme.dreamtheme.is-ctl-product .product-detail-review-pagination {
  gap: 4px;
}
.dreamtheme.dreamtheme.is-ctl-product .product-detail-review-pagination .page-item .page-link {
  border-radius: 999px;
  font-size: 13px;
  min-width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid #e5e7eb;
  color: #6b7280;
  background: #fff;
  transition: all 150ms ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.dreamtheme.dreamtheme.is-ctl-product .product-detail-review-pagination .page-item.active .page-link {
  background: var(--bs-primary, #64748b);
  border-color: var(--bs-primary, #64748b);
  color: #fff;
  box-shadow: 0 2px 8px rgba(100, 116, 139, 0.2);
  font-weight: 600;
}
.dreamtheme.dreamtheme.is-ctl-product .product-detail-review-pagination .page-item:not(.active) .page-link:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
  color: var(--g2g-token-color-neutral-text-default, #1a1a1a);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.dreamtheme.dreamtheme.is-ctl-product .product-detail-review-pagination .page-item.disabled .page-link {
  opacity: 0.4;
  box-shadow: none;
}
.dreamtheme.dreamtheme.is-ctl-product [class*="product-detail-buy-"] {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
.dreamtheme.dreamtheme.is-ctl-product [class*="product-detail-buy-"] > div:not(.g2g-pdp-usp-grid):not(.g2g-addp-list):not(.g2g-additional-info-header-title):not(.g2g-pdp-icon-grid-wrapper) {
  display: flex;
  flex-direction: column;
  flex: 0 0 100%;
}
.dreamtheme.dreamtheme.is-ctl-product [class*="product-detail-buy-"] > meta {
  display: none;
}
.dreamtheme.dreamtheme.is-ctl-product [class*="product-detail-buy-"] .product-detail-form-container {
  margin-bottom: 0;
}
.dreamtheme.dreamtheme.is-ctl-product .cms-element-buy-box .product-detail-reviews {
  order: -1;
  margin-bottom: 6px;
}
.dreamtheme.dreamtheme.is-ctl-product .product-detail-review-sortby-form .form-select {
  border-radius: 999px;
  font-size: 12px;
  padding: 6px 30px 6px 14px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.dreamtheme.is-ctl-product .content-main .cms-sections .cms-block-product-description-reviews .cms-element-product-description-reviews .product-detail-tabs-content {
  border-top: none;
  padding: 24px 22px;
}
.dreamtheme.is-ctl-product .content-main .cms-sections .cms-block-product-description-reviews .cms-element-product-description-reviews .product-description-reviews-tab-navigation .nav-item .nav-link {
  border: 0.5px solid #e5e5e5;
  border-radius: var(--g2g-border-radius, 999px);
  padding: 8px 20px;
  font-weight: 600;
  background: #fff;
  color: #0f172a;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
@media (min-width: 576px) {
  .dreamtheme.is-ctl-product .content-main .cms-sections .cms-block-product-description-reviews .cms-element-product-description-reviews .product-description-reviews-tab-navigation .nav-item .nav-link.active {
    color: #fff;
    background: var(--bs-primary, #64748b);
    border: 0.5px solid var(--bs-primary, #64748b);
    border-bottom: 0.5px solid var(--bs-primary, #64748b);
    box-shadow: 0 4px 12px rgba(100, 116, 139, 0.25);
  }
}
.dreamtheme.is-ctl-product .content-main .cms-sections .cms-block-product-description-reviews .cms-element-product-description-reviews .product-description-reviews-tab-navigation .nav-item .nav-link.active {
  color: #fff;
  background: var(--bs-primary, #64748b);
  border: 0.5px solid var(--bs-primary, #64748b);
  border-bottom: 0.5px solid var(--bs-primary, #64748b);
  box-shadow: 0 4px 12px rgba(100, 116, 139, 0.25);
}
.dreamtheme.is-ctl-product .content-main .cms-sections .cms-block-product-description-reviews .cms-element-product-description-reviews .product-description-reviews-tab-navigation .nav-item .nav-link:hover:not(.active) {
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  color: #0f172a;
}
@media (min-width: 576px) {
  .dreamtheme.is-ctl-product .content-main .cms-sections .cms-block-product-description-reviews .cms-element-product-description-reviews .product-description-reviews-tab-navigation .g2g-show-description-on-mobile.nav-item .nav-link.g2g-non-clickable-on-mobile {
    border: 0.5px solid #e5e5e5;
    border-bottom: 0.5px solid #e5e5e5;
    padding: 8px 24px;
  }
  .dreamtheme.is-ctl-product .content-main .cms-sections .cms-block-product-description-reviews .cms-element-product-description-reviews .product-description-reviews-tab-navigation .g2g-show-description-on-mobile.nav-item .nav-link.g2g-non-clickable-on-mobile.active {
    border: 0.5px solid var(--bs-primary, #64748b);
    border-bottom: 0.5px solid var(--bs-primary, #64748b);
    background-color: var(--bs-primary, #64748b);
    background: var(--bs-primary, #64748b);
    color: #fff;
  }
}
.g2g-review-media-section {
  margin-top: 16px;
}
.g2g-review-media-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--g2g-token-color-neutral-text-default, #1a1a1a);
  margin-bottom: 8px;
  display: block;
}
.g2g-review-media-dropzone {
  border: 2px dashed #d1d5db;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease;
}
.g2g-review-media-dropzone:hover, .g2g-review-media-dropzone.is-dragover {
  border-color: var(--bs-primary, #64748b);
  background: rgba(100, 116, 139, 0.03);
}
.g2g-review-media-dropzone.is-full {
  cursor: default;
  opacity: 0.5;
  pointer-events: none;
}
.g2g-review-media-dropzone-icon {
  color: #9ca3af;
  margin-bottom: 6px;
}
.g2g-review-media-dropzone-icon .icon svg {
  width: 28px;
  height: 28px;
}
.g2g-review-media-dropzone-label {
  display: block;
  font-size: 13px;
  color: #6b7280;
}
.g2g-review-media-dropzone-hint {
  display: block;
  font-size: 11px;
  color: #9ca3af;
  margin-top: 4px;
}
.g2g-review-media-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.g2g-review-media-preview {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}
.g2g-review-media-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.g2g-review-media-preview.is-video {
  width: 120px;
}
.g2g-review-media-preview.is-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.7);
}
.g2g-review-media-preview.is-error {
  border-color: #ef4444;
}
.g2g-review-media-video-thumb {
  position: relative;
  width: 100%;
  height: 100%;
}
.g2g-review-media-video-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.g2g-review-media-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  pointer-events: none;
}
.g2g-review-media-play-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent #fff;
}
.g2g-review-media-preview:not(.is-loading) .g2g-review-media-play-icon {
  z-index: 1;
}
.g2g-review-media-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: #e5e7eb;
}
.g2g-review-media-progress::after {
  content: "";
  display: block;
  height: 100%;
  width: var(--g2g-upload-progress, 0%);
  background: var(--bs-primary, #64748b);
  transition: width 200ms ease;
}
.g2g-review-media-preview:not(.is-loading) .g2g-review-media-progress {
  display: none;
}
.g2g-review-media-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid #d1d5db;
  border-top-color: var(--bs-primary, #64748b);
  border-radius: 50%;
  animation: g2g-spin 0.6s linear infinite;
  z-index: 1;
}
.g2g-review-media-preview:not(.is-loading) .g2g-review-media-spinner {
  display: none;
}
@keyframes g2g-spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.g2g-review-media-remove {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.g2g-review-media-remove:hover {
  background: rgba(239, 68, 68, 0.9);
}
.g2g-review-youtube-group {
  margin-top: 12px;
}
.g2g-review-youtube-group .g2g-review-youtube-url {
  border-radius: 999px;
  font-size: 13px;
  padding: 8px 16px;
}
.g2g-review-youtube-hint {
  display: block;
  font-size: 11px;
  color: #9ca3af;
  margin-top: 4px;
}
.g2g-review-media-display {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.g2g-review-media-thumb {
  display: block;
  width: 120px;
  height: 120px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  transition: box-shadow 180ms ease, border-color 180ms ease, transform 180ms ease;
}
.g2g-review-media-thumb:hover {
  border-color: var(--bs-primary, #64748b);
  box-shadow: 0 4px 16px rgba(100, 116, 139, 0.15);
  transform: translateY(-2px);
}
.g2g-review-media-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.g2g-review-media-video {
  width: 320px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: box-shadow 180ms ease;
}
.g2g-review-media-video:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.g2g-review-media-video video {
  width: 100%;
  display: block;
  max-height: 240px;
}
@media (max-width: 575px) {
  .g2g-review-media-video {
    width: 100%;
  }
}
.g2g-review-media-youtube {
  width: 320px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  aspect-ratio: 1.7777777778;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: box-shadow 180ms ease;
}
.g2g-review-media-youtube:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.g2g-review-media-youtube iframe {
  width: 100%;
  height: 100%;
  border: none;
}
@media (max-width: 575px) {
  .g2g-review-media-youtube {
    width: 100%;
  }
}
.g2g-yt-consent {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.g2g-yt-consent-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.7);
}
.g2g-yt-consent-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
}
.g2g-yt-consent-play {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  opacity: 0.9;
  transition: opacity 180ms ease, transform 180ms ease;
}
.g2g-yt-consent:hover .g2g-yt-consent-play {
  opacity: 1;
  transform: scale(1.08);
}
.g2g-yt-consent-play svg {
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}
.g2g-yt-consent-notice {
  margin: 0;
  color: #fff;
  font-size: 10px;
  line-height: 1.3;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
  max-width: 260px;
}
.g2g-yt-consent-cookie-btn {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease;
}
.g2g-yt-consent-cookie-btn:hover {
  background: rgba(255, 255, 255, 0.35);
  border-color: rgba(255, 255, 255, 0.6);
}
.g2g-yt-consent-cookie-btn[hidden] {
  display: none;
}
.g2g-props-grid {
  display: none;
}
.g2g-pdp-accordion {
  border: 0.5px solid var(--g2g-token-color-neutral-border);
  border-radius: 8px;
  overflow: hidden;
}
.g2g-pdp-accordion__item {
  border-bottom: 0.5px solid var(--g2g-token-color-neutral-border);
}
.g2g-pdp-accordion__item:last-child {
  border-bottom: none;
}
.g2g-pdp-accordion__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 20px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--g2g-token-color-neutral-text-default);
  transition: background-color 150ms ease;
}
.g2g-pdp-accordion__head:hover {
  background: var(--g2g-token-color-neutral-surface, rgba(0, 0, 0, 0.02));
}
.g2g-pdp-accordion__head[aria-expanded="true"] .g2g-pdp-accordion__chevron .icon {
  transform: rotate(180deg);
}
.g2g-pdp-accordion__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
}
.g2g-pdp-accordion__title .icon {
  width: 16px;
  height: 16px;
  color: var(--g2g-token-color-neutral-text-muted, #888);
  position: relative;
  top: 0;
}
.g2g-pdp-accordion__title .icon svg {
  width: 16px;
  height: 16px;
  position: relative;
  top: 0;
}
.g2g-pdp-accordion__badge {
  font-size: 12px;
  font-weight: 500;
  background: var(--g2g-token-color-action-buy, #f47c20);
  color: #fff;
  padding: 1px 8px;
  border-radius: 99px;
  line-height: 1.5;
}
.g2g-pdp-accordion__chevron .icon {
  width: 16px;
  height: 16px;
  color: var(--g2g-token-color-neutral-text-muted, #888);
  transition: transform 250ms ease;
  position: relative;
  top: 0;
}
.g2g-pdp-accordion__chevron .icon svg {
  width: 16px;
  height: 16px;
  position: relative;
  top: 0;
}
.g2g-pdp-accordion__body .offcanvas-close {
  display: none;
}
.g2g-pdp-accordion__content {
  padding: 0 20px 16px;
}
.g2g-pdp-accordion__description {
  font-size: 15px;
  line-height: 1.7;
  color: var(--g2g-token-color-neutral-text-default);
}
.g2g-pdp-accordion__description p {
  margin-bottom: 0.75rem;
}
.g2g-pdp-accordion__description p:last-child {
  margin-bottom: 0;
}
.g2g-pdp-accordion__props {
  width: 100%;
  margin-top: 16px;
  border-collapse: collapse;
  font-size: 14px;
}
.g2g-pdp-accordion__props tr {
  border-bottom: 0.5px solid var(--g2g-token-color-neutral-border);
}
.g2g-pdp-accordion__props tr:last-child {
  border-bottom: none;
}
.g2g-pdp-accordion__props th {
  width: 40%;
  padding: 8px 8px 8px 0;
  font-weight: 500;
  color: var(--g2g-token-color-neutral-text-muted, #666);
  text-align: left;
  vertical-align: top;
}
.g2g-pdp-accordion__props td {
  padding: 8px 0;
  color: var(--g2g-token-color-neutral-text-default);
}
body.dreamtheme.dreamtheme .g2g-block-price-accordion {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  margin: 0;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}
body.dreamtheme.dreamtheme .g2g-block-price-accordion .product-block-prices-grid {
  margin: 0;
}
body.dreamtheme.dreamtheme .g2g-block-price-accordion .product-block-prices-head {
  background: #f7f8fa;
}
body.dreamtheme.dreamtheme .g2g-block-price-accordion .product-block-prices-head th {
  font-size: 13.2px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(15, 23, 42, 0.55);
  padding: 0.55rem 0.75rem;
}
body.dreamtheme.dreamtheme .g2g-block-price-accordion .product-block-prices-head th:last-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
body.dreamtheme.dreamtheme .g2g-block-price-accordion .product-block-prices-body td, body.dreamtheme.dreamtheme .g2g-block-price-accordion .g2g-staffel-collapse td {
  padding: 0.5rem 0.75rem;
}
body.dreamtheme.dreamtheme .g2g-block-price-accordion tbody.g2g-staffel-collapse tr {
  visibility: collapse;
  opacity: 0;
  transition: opacity 0.25s ease;
}
body.dreamtheme.dreamtheme .g2g-block-price-accordion tbody.g2g-staffel-collapse.is-open tr {
  visibility: visible;
  opacity: 1;
}
body.dreamtheme.dreamtheme .g2g-block-price-accordion .g2g-staffel-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 12.2px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--bs-primary, #64748b);
  transition: color 0.15s ease;
  white-space: nowrap;
}
body.dreamtheme.dreamtheme .g2g-block-price-accordion .g2g-staffel-toggle:hover, body.dreamtheme.dreamtheme .g2g-block-price-accordion .g2g-staffel-toggle:focus {
  color: var(--bs-primary, #64748b);
  opacity: 0.8;
}
body.dreamtheme.dreamtheme .g2g-block-price-accordion .g2g-staffel-toggle .g2g-staffel-chevron {
  width: 12px;
  height: 12px;
  transition: transform 0.3s ease;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
body.dreamtheme.dreamtheme .g2g-block-price-accordion .g2g-staffel-toggle.is-open .g2g-staffel-chevron {
  transform: rotate(180deg);
}
.g2g-pdp-media-relative {
  position: relative;
}
.g2g-pdp-wishlist-twig-overlay {
  position: absolute;
  top: -8px;
  right: 0;
  z-index: 10;
}
.g2g-pdp-wishlist-twig-overlay .product-wishlist {
  position: static;
}
.product-detail-media .product-wishlist.g2g-pdp-wishlist-overlay, .cms-element-image-gallery .product-wishlist.g2g-pdp-wishlist-overlay, .g2g-pdp-wishlist-twig-overlay .product-wishlist {
  position: absolute;
  top: -8px;
  right: 0;
  z-index: 10;
  background: transparent;
  border-radius: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  transition: transform 180ms ease;
}
@media (min-width: 768px) {
  .product-detail-media .product-wishlist.g2g-pdp-wishlist-overlay, .cms-element-image-gallery .product-wishlist.g2g-pdp-wishlist-overlay, .g2g-pdp-wishlist-twig-overlay .product-wishlist {
    width: 36px;
    height: 36px;
  }
}
.product-detail-media .product-wishlist.g2g-pdp-wishlist-overlay:hover, .cms-element-image-gallery .product-wishlist.g2g-pdp-wishlist-overlay:hover, .g2g-pdp-wishlist-twig-overlay .product-wishlist:hover {
  background: transparent;
  transform: scale(1.12);
}
.product-detail-media .product-wishlist.g2g-pdp-wishlist-overlay .product-wishlist-action, .cms-element-image-gallery .product-wishlist.g2g-pdp-wishlist-overlay .product-wishlist-action, .g2g-pdp-wishlist-twig-overlay .product-wishlist .product-wishlist-action {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: inherit;
}
.product-detail-media .product-wishlist.g2g-pdp-wishlist-overlay .product-wishlist-action-text, .cms-element-image-gallery .product-wishlist.g2g-pdp-wishlist-overlay .product-wishlist-action-text, .g2g-pdp-wishlist-twig-overlay .product-wishlist .product-wishlist-action-text, .product-detail-media .product-wishlist.g2g-pdp-wishlist-overlay .product-wishlist-action span:not(.icon), .cms-element-image-gallery .product-wishlist.g2g-pdp-wishlist-overlay .product-wishlist-action span:not(.icon), .g2g-pdp-wishlist-twig-overlay .product-wishlist .product-wishlist-action span:not(.icon) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.cms-element-image-gallery .product-wishlist.g2g-pdp-wishlist-overlay .icon, .product-detail-media .product-wishlist.g2g-pdp-wishlist-overlay .icon, .g2g-pdp-wishlist-twig-overlay .product-wishlist .icon {
  width: 22px;
  height: 22px;
  line-height: 1;
  color: var(--g2g-token-color-neutral-text-default, #1a1a1a);
  transition: color 180ms ease, transform 180ms ease;
}
.product-detail-media .product-wishlist.g2g-pdp-wishlist-overlay.product-wishlist-added .icon, .cms-element-image-gallery .product-wishlist.g2g-pdp-wishlist-overlay.product-wishlist-added .icon, .product-detail-media .product-wishlist.g2g-pdp-wishlist-overlay .product-wishlist-action.product-wishlist-added .icon, .cms-element-image-gallery .product-wishlist.g2g-pdp-wishlist-overlay .product-wishlist-action.product-wishlist-added .icon, .g2g-pdp-wishlist-twig-overlay .product-wishlist.product-wishlist-added .icon, .g2g-pdp-wishlist-twig-overlay .product-wishlist .product-wishlist-action.product-wishlist-added .icon {
  color: var(--g2g-token-color-brand-primary, #64748b);
}
.cms-element-image-gallery .product-wishlist.g2g-pdp-wishlist-overlay .icon svg, .product-detail-media .product-wishlist.g2g-pdp-wishlist-overlay .icon svg, .g2g-pdp-wishlist-twig-overlay .product-wishlist .icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}
body.dreamtheme.dreamtheme.is-ctl-product .cms-element-buy-box [class*="product-detail-buy-"] > .product-wishlist.product-wishlist.product-wishlist {
  display: none;
}
@media (max-width: 991.98px) {
  body.dreamtheme.g2g-pdp-mobile-slider-dots-hide.is-ctl-product .product-detail-media .base-slider-dots, body.dreamtheme.g2g-pdp-mobile-slider-dots-hide.is-ctl-product .product-detail-media .tns-nav, body.dreamtheme.g2g-pdp-mobile-slider-dots-hide.is-ctl-product .cms-element-image-gallery .base-slider-dots, body.dreamtheme.g2g-pdp-mobile-slider-dots-hide.is-ctl-product .cms-element-image-gallery .tns-nav {
    display: none;
  }
}
.g2g-pdp-stock-overlay-host, .cms-element-image-gallery {
  position: relative;
}
.g2g-pdp-stock-overlay-host > .badge-stock2gether.g2g-pdp-stock-overlay, .product-detail-media .badge-stock2gether.g2g-pdp-stock-overlay, .cms-element-image-gallery .badge-stock2gether.g2g-pdp-stock-overlay {
  position: absolute;
  top: 2px;
  left: 0;
  z-index: 10;
  margin: 0;
}
.g2g-pdp-stock-overlay-host > .g2g-pdp-delivery-promise.g2g-pdp-delivery-promise-overlay {
  display: none;
}
body.dreamtheme.dreamtheme .cms-element-buy-box .g2g-cfg-heading.g2g-cfg-heading {
  margin: 0 0 0.6rem 0;
}
body.dreamtheme.dreamtheme .cms-element-buy-box .product-detail-configurator-group.product-detail-configurator-group {
  display: block;
  position: relative;
  border: 0;
  margin: 0 0 0.45rem 0;
  padding: 0 0 0 6rem;
  min-height: 24px;
}
body.dreamtheme.dreamtheme .cms-element-buy-box .product-detail-configurator-group-title.product-detail-configurator-group-title {
  position: absolute;
  left: 0;
  top: 0;
  width: 5.7rem;
  margin: 0;
  padding: 3px 6px 0 0;
  box-sizing: border-box;
  display: block;
  float: none;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(15, 23, 42, 0.7);
  white-space: normal;
  overflow-wrap: break-word;
}
body.dreamtheme.dreamtheme .cms-element-buy-box .product-detail-configurator-group-title.product-detail-configurator-group-title::after {
  content: ":";
  margin-left: 0;
}
body.dreamtheme.dreamtheme .cms-element-buy-box .product-detail-configurator-group-title.product-detail-configurator-group-title .visually-hidden {
  position: absolute;
}
body.dreamtheme.dreamtheme .cms-element-buy-box .product-detail-configurator-options.product-detail-configurator-options {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  min-height: 24px;
}
body.dreamtheme.dreamtheme .cms-element-buy-box .product-detail-configurator-options.product-detail-configurator-options .product-detail-configurator-option {
  margin: 0;
}
body.dreamtheme.dreamtheme .cms-element-buy-box .product-detail-configurator-option-label.is-display-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  min-height: 0;
  min-width: 24px;
  padding: 0 11px;
  font-size: 13px;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 0;
  text-transform: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #f0f0f0;
  color: #0f172a;
  box-shadow: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
body.dreamtheme.dreamtheme .cms-element-buy-box .product-detail-configurator-option-label.is-display-text:hover {
  background: rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.2);
}
body.dreamtheme.dreamtheme .cms-element-buy-box .product-detail-configurator-option-input:checked + .is-display-text.is-display-text {
  box-shadow: none;
  background: #1f2937;
  border-color: #1f2937;
  color: #fff;
  font-weight: 600;
}
body.dreamtheme.dreamtheme .cms-element-buy-box .product-detail-configurator-option-label.is-display-color {
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 0;
  padding: 0;
  border: 1.5px solid rgba(0, 0, 0, 0.18);
  box-shadow: rgba(255, 255, 255, 0.5) 0 0 0 1px inset;
  transition: transform 0.12s, box-shadow 0.12s, border-color 0.12s;
}
body.dreamtheme.dreamtheme .cms-element-buy-box .product-detail-configurator-option-label.is-display-color:hover {
  transform: scale(1.1);
}
body.dreamtheme.dreamtheme .cms-element-buy-box .product-detail-configurator-option-input:checked + .is-display-color.is-display-color {
  transform: scale(1.14);
  border-color: #1f2937;
  box-shadow: white 0 0 0 2px, #1f2937 0 0 0 3.5px;
}
body.dreamtheme.is-ctl-product .content-main .cms-sections .product-detail-buy .product-detail-configurator-container .product-detail-configurator-option-input + .product-detail-configurator-option-label.is-display-text.is-display-text {
  border-radius: 999px;
}
body.dreamtheme.is-ctl-product .content-main .cms-sections .product-detail-buy .product-detail-configurator-container .product-detail-configurator-option-input + .product-detail-configurator-option-label.is-display-color.is-display-color {
  border-radius: 50%;
}
body.dreamtheme.dreamtheme .cms-element-buy-box .product-detail-configurator-option-label.not-combinable {
  pointer-events: none;
  cursor: not-allowed;
}
body.dreamtheme.dreamtheme .cms-element-buy-box .product-detail-configurator-option-label.not-combinable.is-display-text {
  opacity: 0.55;
  text-decoration: line-through;
  text-decoration-color: rgba(15, 23, 42, 0.45);
  background: #f0f0f0;
  border-color: rgba(0, 0, 0, 0.1);
  color: #0f172a;
}
body.dreamtheme.dreamtheme .cms-element-buy-box .product-detail-configurator-option-label.not-combinable.is-display-color {
  opacity: 0.4;
  position: relative;
  transform: none;
}
body.dreamtheme.dreamtheme .cms-element-buy-box .product-detail-configurator-option-label.not-combinable.is-display-color::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  background: linear-gradient(to top right, transparent calc(50% - 1px), rgba(31, 41, 55, 0.45) calc(50% - 1px), rgba(31, 41, 55, 0.45) calc(50% + 1px), transparent calc(50% + 1px));
}
.g2g-mobile-bottombar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1030;
  display: flex;
  background: var(--g2g-token-color-neutral-background, #fff);
  border-top: 1px solid var(--g2g-token-color-neutral-border, #e5e7eb);
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.06);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
@media (min-width: 576px) {
  body.g2g-bottombar-max-xs .g2g-mobile-bottombar {
    display: none;
  }
}
@media (min-width: 768px) {
  body.g2g-bottombar-max-sm .g2g-mobile-bottombar {
    display: none;
  }
}
@media (min-width: 992px) {
  body.g2g-bottombar-max-md .g2g-mobile-bottombar {
    display: none;
  }
}
@media (min-width: 1200px) {
  body.g2g-bottombar-max-lg .g2g-mobile-bottombar {
    display: none;
  }
}
@media (min-width: 1200px) {
  body:not(.g2g-bottombar-max-xs):not(.g2g-bottombar-max-sm):not(.g2g-bottombar-max-md):not(.g2g-bottombar-max-lg) .g2g-mobile-bottombar {
    display: none;
  }
}
.g2g-mobile-bottombar__item {
  flex: 1 1 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 4px;
  min-height: 56px;
  background: transparent;
  border: 0;
  color: var(--g2g-token-color-neutral-text-muted, #6b7280);
  text-decoration: none;
  font: inherit;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: color 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}
.g2g-mobile-bottombar__item:hover, .g2g-mobile-bottombar__item:focus-visible {
  color: var(--g2g-token-color-action-buy, #64748b);
  outline: none;
  text-decoration: none;
}
.g2g-mobile-bottombar__item.is-active {
  color: var(--g2g-token-color-action-buy, #64748b);
}
.g2g-mobile-bottombar__item.is-active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 3px;
  background: var(--g2g-token-color-action-buy, #64748b);
  border-radius: 0 0 3px 3px;
}
.g2g-mobile-bottombar__item:active {
  transform: scale(0.94);
  transition-duration: 0.08s;
}
.g2g-mobile-bottombar__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}
.g2g-mobile-bottombar__icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}
.g2g-mobile-bottombar__badge {
  position: absolute;
  top: 6px;
  right: calc(50% - 18px);
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: var(--g2g-token-color-action-buy, #64748b);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 2px var(--g2g-token-color-neutral-background, #fff);
  transition: transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.g2g-mobile-bottombar__badge[data-count="0"], .g2g-mobile-bottombar__badge:empty {
  display: none;
}
.g2g-mobile-bottombar__item.is-cart-updated .g2g-mobile-bottombar__badge {
  animation: g2g-bottombar-badge-pulse 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes g2g-bottombar-badge-pulse {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.35);
  }
  100% {
    transform: scale(1);
  }
}
@media (max-width: 575.98px) {
  body.g2g-has-mobile-bottombar.g2g-bottombar-max-xs {
    padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px));
  }
}
@media (max-width: 767.98px) {
  body.g2g-has-mobile-bottombar.g2g-bottombar-max-sm {
    padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px));
  }
}
@media (max-width: 991.98px) {
  body.g2g-has-mobile-bottombar.g2g-bottombar-max-md {
    padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px));
  }
}
@media (max-width: 1199.98px) {
  body.g2g-has-mobile-bottombar.g2g-bottombar-max-lg {
    padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px));
  }
}
@media (max-width: 1199.98px) {
  body.g2g-has-mobile-bottombar:not(.g2g-bottombar-max-xs):not(.g2g-bottombar-max-sm):not(.g2g-bottombar-max-md):not(.g2g-bottombar-max-lg) {
    padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px));
  }
}
@media (max-width: 575.98px) {
  body.g2g-has-mobile-bottombar.g2g-bottombar-max-xs .cookie-permission-container.cookie-permission-container {
    bottom: var(--g2g-bottombar-h, calc(56px + env(safe-area-inset-bottom, 0px)));
  }
}
@media (max-width: 767.98px) {
  body.g2g-has-mobile-bottombar.g2g-bottombar-max-sm .cookie-permission-container.cookie-permission-container {
    bottom: var(--g2g-bottombar-h, calc(56px + env(safe-area-inset-bottom, 0px)));
  }
}
@media (max-width: 991.98px) {
  body.g2g-has-mobile-bottombar.g2g-bottombar-max-md .cookie-permission-container.cookie-permission-container {
    bottom: var(--g2g-bottombar-h, calc(56px + env(safe-area-inset-bottom, 0px)));
  }
}
@media (max-width: 1199.98px) {
  body.g2g-has-mobile-bottombar.g2g-bottombar-max-lg .cookie-permission-container.cookie-permission-container {
    bottom: var(--g2g-bottombar-h, calc(56px + env(safe-area-inset-bottom, 0px)));
  }
}
@media (max-width: 1199.98px) {
  body.g2g-has-mobile-bottombar:not(.g2g-bottombar-max-xs):not(.g2g-bottombar-max-sm):not(.g2g-bottombar-max-md):not(.g2g-bottombar-max-lg) .cookie-permission-container.cookie-permission-container {
    bottom: var(--g2g-bottombar-h, calc(56px + env(safe-area-inset-bottom, 0px)));
  }
}
@media (max-width: 991.98px) {
  body.g2g-has-mobile-bottombar .header-main .menu-button, body.g2g-has-mobile-bottombar .header-main .nav-main-toggle-btn, body.g2g-has-mobile-bottombar .header-main [data-offcanvas-menu] {
    display: none;
  }
  body.g2g-has-mobile-bottombar .header-main .header-cart, body.g2g-has-mobile-bottombar .header-main .col-cart-info, body.g2g-has-mobile-bottombar .header-main .header-cart-widget {
    display: none;
  }
  body.g2g-has-mobile-bottombar .header-main .account-menu, body.g2g-has-mobile-bottombar .header-main .account-widget, body.g2g-has-mobile-bottombar .header-main .top-bar-list-account, body.g2g-has-mobile-bottombar .header-main .header-account {
    display: none;
  }
  body.g2g-has-mobile-bottombar .header-main .header-logo-col {
    flex: 1 1 auto;
    text-align: center;
  }
  body.g2g-has-mobile-bottombar .header-main [class~="row"] {
    flex-wrap: wrap;
  }
  body.g2g-has-mobile-bottombar .header-main .g2g-mobile-header-usps {
    display: none;
  }
}
.cart-offcanvas.show ~ .g2g-mobile-bottombar, body:has(.cart-offcanvas.show) .g2g-mobile-bottombar {
  display: none;
}
@media (max-width: 991.98px) {
  body.g2g-mobile-search-prominent .header-main #searchCollapse, body.g2g-mobile-search-prominent .header-main #searchCollapse.collapse, body.g2g-has-mobile-bottombar .header-main #searchCollapse, body.g2g-has-mobile-bottombar .header-main #searchCollapse.collapse {
    display: block;
    height: auto;
    visibility: visible;
  }
  body.g2g-mobile-search-prominent .header-main .search-toggle-btn, body.g2g-mobile-search-prominent .header-main [data-bs-toggle="collapse"][data-bs-target="#searchCollapse"], body.g2g-has-mobile-bottombar .header-main .search-toggle-btn, body.g2g-has-mobile-bottombar .header-main [data-bs-toggle="collapse"][data-bs-target="#searchCollapse"] {
    display: none;
  }
  body.g2g-mobile-search-prominent .header-main .header-search-form .form-control, body.g2g-mobile-search-prominent .header-main .header-search input[type="search"], body.g2g-has-mobile-bottombar .header-main .header-search-form .form-control, body.g2g-has-mobile-bottombar .header-main .header-search input[type="search"] {
    height: 48px;
    font-size: 16px;
    padding: 0 16px;
    border-radius: 0;
    background: #fff;
    border: 1.5px solid rgba(0, 0, 0, 0.12);
    border-left: 0;
    border-right: 0;
    color: #1a1a1a;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
  }
  body.g2g-mobile-search-prominent .header-main .header-search-form .form-control::placeholder, body.g2g-mobile-search-prominent .header-main .header-search input[type="search"]::placeholder, body.g2g-has-mobile-bottombar .header-main .header-search-form .form-control::placeholder, body.g2g-has-mobile-bottombar .header-main .header-search input[type="search"]::placeholder {
    color: rgba(0, 0, 0, 0.45);
    font-weight: 400;
  }
  body.g2g-mobile-search-prominent .header-main .header-search-form .form-control:focus, body.g2g-mobile-search-prominent .header-main .header-search input[type="search"]:focus, body.g2g-has-mobile-bottombar .header-main .header-search-form .form-control:focus, body.g2g-has-mobile-bottombar .header-main .header-search input[type="search"]:focus {
    border-color: var(--g2g-token-color-neutral-text-default, #1a1a1a);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
    outline: none;
  }
  body.g2g-mobile-search-prominent .header-main .header-search-form .btn, body.g2g-mobile-search-prominent .header-main .header-search button[type="submit"], body.g2g-has-mobile-bottombar .header-main .header-search-form .btn, body.g2g-has-mobile-bottombar .header-main .header-search button[type="submit"] {
    height: 48px;
    min-width: 56px;
    border-radius: 0;
    background: var(--g2g-token-color-action-buy, #64748b);
    border: 1.5px solid var(--g2g-token-color-action-buy, #64748b);
    color: #fff;
  }
  body.g2g-mobile-search-prominent .header-main .header-search-form .btn svg, body.g2g-mobile-search-prominent .header-main .header-search-form .btn i, body.g2g-mobile-search-prominent .header-main .header-search-form .btn .icon, body.g2g-mobile-search-prominent .header-main .header-search button[type="submit"] svg, body.g2g-mobile-search-prominent .header-main .header-search button[type="submit"] i, body.g2g-mobile-search-prominent .header-main .header-search button[type="submit"] .icon, body.g2g-has-mobile-bottombar .header-main .header-search-form .btn svg, body.g2g-has-mobile-bottombar .header-main .header-search-form .btn i, body.g2g-has-mobile-bottombar .header-main .header-search-form .btn .icon, body.g2g-has-mobile-bottombar .header-main .header-search button[type="submit"] svg, body.g2g-has-mobile-bottombar .header-main .header-search button[type="submit"] i, body.g2g-has-mobile-bottombar .header-main .header-search button[type="submit"] .icon {
    color: #fff;
    fill: #fff;
  }
  body.g2g-mobile-search-prominent .header-main .header-search-col, body.g2g-has-mobile-bottombar .header-main .header-search-col {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    padding: 0 0 18px 0;
    margin: 0;
  }
  body.g2g-mobile-search-prominent .header-main .header-search-col [class~="row"], body.g2g-mobile-search-prominent .header-main .header-search-col [class~="row"] > *, body.g2g-has-mobile-bottombar .header-main .header-search-col [class~="row"], body.g2g-has-mobile-bottombar .header-main .header-search-col [class~="row"] > * {
    margin: 0;
    padding: 0;
  }
}
@media (max-width: 991.98px) {
  body.g2g-has-mobile-bottombar .header-main .header-logo-main-img, body.g2g-has-mobile-bottombar .header-main .header-logo-picture img {
    max-width: 195px;
    max-height: 52px;
    height: auto;
    width: auto;
  }
  body.g2g-has-mobile-bottombar .header-main .header-logo-picture {
    min-width: auto;
  }
  body.g2g-has-mobile-bottombar .header-main .header-row {
    padding: 12px 20px 0;
    align-items: center;
    flex-wrap: wrap;
  }
  body.g2g-has-mobile-bottombar .header-main .header-logo-col {
    text-align: left;
    flex: 0 0 auto;
    width: auto;
  }
  body.g2g-has-mobile-bottombar .header-main {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  }
}
body.g2g-has-mobile-bottombar .g2g-mobile-header-usps {
  display: none;
}
@media (max-width: 991.98px) {
  body.g2g-has-mobile-bottombar .g2g-mobile-header-usps {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-left: auto;
    padding: 4px 0 4px 14px;
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    flex: 1 1 auto;
    min-width: 0;
  }
}
@media (max-width: 575.98px) {
  body.g2g-has-mobile-bottombar .g2g-mobile-header-usps {
    padding-left: 10px;
    font-size: 11px;
  }
}
body.g2g-has-mobile-bottombar .g2g-mobile-header-usps__item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  color: var(--g2g-token-color-neutral-text-muted, #4b5563);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
body.g2g-has-mobile-bottombar .g2g-mobile-header-usps__item svg {
  flex-shrink: 0;
  color: var(--g2g-token-color-action-buy, #64748b);
  stroke: currentColor;
}
@media (max-width: 420px) {
  body.g2g-has-mobile-bottombar .g2g-mobile-header-usps__item:nth-child(2) {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .g2g-mobile-bottombar__item {
    transition: none;
  }
}
@media (max-width: 991.98px) {
  body.g2g-has-mobile-bottombar.g2g-has-mobile-bottombar.is-act-index .content-main .container-main .cms-breadcrumb.cms-breadcrumb, body.g2g-has-mobile-bottombar.g2g-has-mobile-bottombar .cms-breadcrumb.cms-breadcrumb {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 991.98px) {
  body.g2g-has-mobile-bottombar.g2g-has-mobile-bottombar .header-main .g2g-mobile-header-usps.g2g-mobile-header-usps {
    display: none;
  }
  body.g2g-has-mobile-bottombar.g2g-has-mobile-bottombar .header-main .header-actions-col {
    display: none;
  }
  body.g2g-has-mobile-bottombar.g2g-has-mobile-bottombar .header-main .header-row {
    padding: 8px 20px 12px;
    row-gap: 8px;
  }
  body.g2g-has-mobile-bottombar.g2g-has-mobile-bottombar .header-main [class~="container"] .header-row .header-logo-col.header-logo-col {
    flex: 0 0 100%;
    text-align: center;
    padding: 10px 0;
  }
  body.g2g-has-mobile-bottombar.g2g-has-mobile-bottombar .header-main [class~="container"] .header-row .header-logo-col.header-logo-col .header-logo-main-img, body.g2g-has-mobile-bottombar.g2g-has-mobile-bottombar .header-main [class~="container"] .header-row .header-logo-col.header-logo-col .header-logo-picture img {
    max-height: 42px;
    width: auto;
    display: inline-block;
  }
  body.g2g-has-mobile-bottombar.g2g-has-mobile-bottombar .header-main .header-search-col {
    flex: 0 0 100%;
    width: 100%;
    padding: 0;
    margin: 0;
  }
  body.g2g-has-mobile-bottombar.g2g-has-mobile-bottombar .header-main .header-row .header-search-col .collapse .header-search .header-search-form.header-search-form.header-search-form {
    margin: 0;
    width: 100%;
  }
  body.g2g-has-mobile-bottombar.g2g-has-mobile-bottombar .header-main .header-row {
    align-items: center;
  }
  body.g2g-has-mobile-bottombar.g2g-has-mobile-bottombar .header-main .header-search-form .input-group {
    flex-wrap: nowrap;
    position: relative;
  }
  body.g2g-has-mobile-bottombar.g2g-has-mobile-bottombar .header-main [class~="container"] .header-row .header-search-col #header-main-search-input {
    height: 48px;
    font-size: 16px;
    border-radius: 999px;
    padding-right: 58px;
  }
  body.g2g-has-mobile-bottombar.g2g-has-mobile-bottombar .header-main .header-search-form:has(.search-suggest) .header-search-btn, body.g2g-has-mobile-bottombar.g2g-has-mobile-bottombar .header-main .header-search-form .header-search-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  body.g2g-has-mobile-bottombar.g2g-has-mobile-bottombar .header-main .g2g-search-suggest.g2g-search-suggest {
    left: 0;
    right: 0;
    width: auto;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    z-index: 100;
  }
  body.g2g-has-mobile-bottombar.g2g-has-mobile-bottombar .header-main.header-main [class~="container"][class~="container"] .header-row .header-search-col [class~="col"] .collapse .header-search .header-search-form .header-search-btn.header-search-btn {
    position: absolute;
    top: 50%;
    right: 6px;
    transform: translateY(-50%);
    z-index: 6;
    width: 38px;
    min-width: 38px;
    height: 38px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: var(--g2g-token-color-brand-primary);
    background-color: var(--g2g-token-color-brand-primary);
    color: #fff;
    overflow: visible;
    transition: background-color 0.18s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }
  body.g2g-has-mobile-bottombar.g2g-has-mobile-bottombar .header-main.header-main [class~="container"][class~="container"] .header-row .header-search-col [class~="col"] .collapse .header-search .header-search-form .header-search-btn.header-search-btn .header-search-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transform: translate(-1px, -5px);
  }
  body.g2g-has-mobile-bottombar.g2g-has-mobile-bottombar .header-main.header-main [class~="container"][class~="container"] .header-row .header-search-col [class~="col"] .collapse .header-search .header-search-form .header-search-btn.header-search-btn .icon, body.g2g-has-mobile-bottombar.g2g-has-mobile-bottombar .header-main.header-main [class~="container"][class~="container"] .header-row .header-search-col [class~="col"] .collapse .header-search .header-search-form .header-search-btn.header-search-btn i {
    color: #fff;
    fill: #fff;
    width: 19px;
    height: 19px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  body.g2g-has-mobile-bottombar.g2g-has-mobile-bottombar .header-main.header-main [class~="container"][class~="container"] .header-row .header-search-col [class~="col"] .collapse .header-search .header-search-form .header-search-btn.header-search-btn svg {
    width: 19px;
    height: 19px;
    color: #fff;
    fill: #fff;
    stroke: #fff;
    stroke-width: 1.3px;
  }
  body.g2g-has-mobile-bottombar.g2g-has-mobile-bottombar .header-main.header-main [class~="container"][class~="container"] .header-row .header-search-col [class~="col"] .collapse .header-search .header-search-form .header-search-btn.header-search-btn:hover, body.g2g-has-mobile-bottombar.g2g-has-mobile-bottombar .header-main.header-main [class~="container"][class~="container"] .header-row .header-search-col [class~="col"] .collapse .header-search .header-search-form .header-search-btn.header-search-btn:focus {
    background: var(--g2g-token-color-brand-primary-hover);
    background-color: var(--g2g-token-color-brand-primary-hover);
    color: #fff;
  }
  body.g2g-has-mobile-bottombar.g2g-has-mobile-bottombar .header-main.header-main [class~="container"][class~="container"] .header-row .header-search-col [class~="col"] .collapse .header-search .header-search-form .header-search-btn.header-search-btn:hover .icon, body.g2g-has-mobile-bottombar.g2g-has-mobile-bottombar .header-main.header-main [class~="container"][class~="container"] .header-row .header-search-col [class~="col"] .collapse .header-search .header-search-form .header-search-btn.header-search-btn:hover svg, body.g2g-has-mobile-bottombar.g2g-has-mobile-bottombar .header-main.header-main [class~="container"][class~="container"] .header-row .header-search-col [class~="col"] .collapse .header-search .header-search-form .header-search-btn.header-search-btn:hover i, body.g2g-has-mobile-bottombar.g2g-has-mobile-bottombar .header-main.header-main [class~="container"][class~="container"] .header-row .header-search-col [class~="col"] .collapse .header-search .header-search-form .header-search-btn.header-search-btn:hover .header-search-icon, body.g2g-has-mobile-bottombar.g2g-has-mobile-bottombar .header-main.header-main [class~="container"][class~="container"] .header-row .header-search-col [class~="col"] .collapse .header-search .header-search-form .header-search-btn.header-search-btn:focus .icon, body.g2g-has-mobile-bottombar.g2g-has-mobile-bottombar .header-main.header-main [class~="container"][class~="container"] .header-row .header-search-col [class~="col"] .collapse .header-search .header-search-form .header-search-btn.header-search-btn:focus svg, body.g2g-has-mobile-bottombar.g2g-has-mobile-bottombar .header-main.header-main [class~="container"][class~="container"] .header-row .header-search-col [class~="col"] .collapse .header-search .header-search-form .header-search-btn.header-search-btn:focus i, body.g2g-has-mobile-bottombar.g2g-has-mobile-bottombar .header-main.header-main [class~="container"][class~="container"] .header-row .header-search-col [class~="col"] .collapse .header-search .header-search-form .header-search-btn.header-search-btn:focus .header-search-icon {
    color: #fff;
    fill: #fff;
    stroke: #fff;
  }
  body.g2g-has-mobile-bottombar.g2g-has-mobile-bottombar .header-main {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
  }
}
/*!
 * GreatMobileNav v1.67.00 — Storefront Stylesheet
 * MIT-licensed core + Shopware-specific overrides
 */
/* ==================================================================
   1. Hide Shopware's default mobile offcanvas trigger
   ================================================================== */
@media (max-width: 1023.98px) {
  /* Shopware ships two markers, we hide both to be safe */
  .menu-button[data-offcanvas-menu-plugin], .menu-button[data-offcanvas-menu], [data-offcanvas-menu-plugin]:not([data-great-mobile-nav]), [data-offcanvas-menu]:not([data-great-mobile-nav]) {
    display: none !important;
  }
}
/* ==================================================================
   2. GreatMobileNav core styles (from MIT library)
   ================================================================== */
/*!
 * Great Mobile Nav v2.0.0 — Stylesheet
 * 4 styles, ~9KB total. MIT License.
 * Copyright (c) 2026 Atilla Boz / great2gether
 */
:root {
  --gmn-bg: #ffffff;
  --gmn-fg: #0f172a;
  --gmn-muted: #64748b;
  --gmn-border: #e2e8f0;
  --gmn-accent: var(--g2g-token-color-brand-primary, #64748b);
  --gmn-accent-text: var(--g2g-token-color-brand-primary-text, #64748b);
  --gmn-accent-soft: #fff4ec;
  --gmn-header-bg: var(--g2g-token-color-brand-primary, #64748b);
  --gmn-header-border: transparent;
  --gmn-accent-contrast: #ffffff;
  --gmn-hover: #fff7f1;
  --gmn-backdrop: rgba(0, 0, 0, 0.5);
  --gmn-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  --gmn-card-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  --gmn-card-shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
  --gmn-radius: 12px;
  --gmn-transition: 280ms cubic-bezier(0.4, 0, 0.2, 1);
  --gmn-transition-fast: 180ms cubic-bezier(0.4, 0, 0.2, 1);
  --gmn-z: 9999;
  --gmn-bottombar-z: 9998;
  --gmn-safe-bottom: env(safe-area-inset-bottom, 0px);
  --gmn-safe-top: env(safe-area-inset-top, 0px);
}
/* universal SVG sizing inside the nav */
.gmn svg, .gmn-bottombar svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
/* body scroll lock when overlay open — !important required to override any inline styles */
html.gmn-body-locked, html.gmn-body-locked body {
  overflow: hidden !important;
  height: 100% !important;
  -webkit-overflow-scrolling: touch;
}
/* =====================================================================
   STYLE 1: DRAWER
   ===================================================================== */
.gmn--drawer {
  position: fixed;
  inset: 0;
  z-index: var(--gmn-z);
  pointer-events: none;
  visibility: hidden;
}
.gmn--drawer[aria-hidden="false"], .gmn--drawer.gmn--open {
  pointer-events: auto;
  visibility: visible;
}
.gmn--drawer .gmn__backdrop {
  position: absolute;
  inset: 0;
  background: var(--gmn-backdrop);
  opacity: 0;
  transition: opacity var(--gmn-transition);
}
.gmn--drawer.gmn--open .gmn__backdrop {
  opacity: 1;
}
.gmn__drawer {
  position: absolute;
  top: 0;
  bottom: 0;
  background: var(--gmn-bg);
  color: var(--gmn-fg);
  display: flex;
  flex-direction: column;
  box-shadow: var(--gmn-shadow);
  transition: transform var(--gmn-transition);
  will-change: transform;
  padding-top: var(--gmn-safe-top);
  padding-bottom: var(--gmn-safe-bottom);
}
.gmn--drawer.gmn--left .gmn__drawer {
  left: 0;
  transform: translateX(-100%);
}
.gmn--drawer.gmn--right .gmn__drawer {
  right: 0;
  transform: translateX(100%);
}
.gmn--drawer.gmn--open .gmn__drawer {
  transform: translateX(0);
}
.gmn__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 14px 16px;
  background: var(--gmn-header-bg);
  border-bottom: 1px solid var(--gmn-header-border);
  min-height: 56px;
}
.gmn__title {
  flex: 1;
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-align: center;
}
.gmn__back, .gmn__close {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px;
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  color: var(--gmn-fg);
  font: inherit;
  font-size: 14px;
  transition: background var(--gmn-transition-fast);
}
.gmn__back:hover, .gmn__close:hover, .gmn__back:focus-visible, .gmn__close:focus-visible {
  background: var(--gmn-hover);
  outline: none;
}
.gmn__back:focus-visible, .gmn__close:focus-visible {
  box-shadow: 0 0 0 2px var(--gmn-accent);
}
.gmn__back[hidden] {
  display: none;
}
.gmn__panels {
  position: relative;
  flex: 1;
  overflow: hidden;
}
.gmn__panel {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  transform: translateX(100%);
  transition: transform var(--gmn-transition);
  background: var(--gmn-bg);
}
.gmn__panel--active {
  transform: translateX(0);
}
.gmn__panel--left {
  transform: translateX(-100%);
}
.gmn__panel--right {
  transform: translateX(100%);
}
.gmn__list {
  list-style: none;
  margin: 0;
  padding: 8px 0;
}
.gmn__item {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid var(--gmn-border);
}
.gmn__item:last-child {
  border-bottom: 0;
}
.gmn__link {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 16px 20px;
  color: var(--gmn-fg);
  text-decoration: none;
  font-size: 16px;
  line-height: 1.4;
  min-height: 56px;
  transition: background var(--gmn-transition-fast);
}
.gmn__link:hover, .gmn__link:focus-visible {
  background: var(--gmn-hover);
  outline: none;
}
.gmn__link--static {
  cursor: default;
  color: var(--gmn-muted);
}
.gmn__expand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  background: transparent;
  border: 0;
  border-left: 1px solid var(--gmn-border);
  cursor: pointer;
  color: var(--gmn-muted);
  transition: background var(--gmn-transition-fast), color var(--gmn-transition-fast);
}
.gmn__expand:hover, .gmn__expand:focus-visible {
  background: var(--gmn-hover);
  color: var(--gmn-accent);
  outline: none;
}
/* =====================================================================
   STYLE 2: ACCORDION (inline header)
   ===================================================================== */
.gmn--accordion {
  display: block;
  background: var(--gmn-bg);
  color: var(--gmn-fg);
  font-size: 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 30;
}
.gmn--accordion.gmn--open {
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 8px 10px -8px rgba(0, 0, 0, 0.25);
}
.g2g-header:has(.gmn--accordion.gmn--open) .header-row {
  box-shadow: none;
}
.g2g-header:has(.gmn--accordion.gmn--open) .nav-main-toggle-btn {
  position: relative;
}
.g2g-header:has(.gmn--accordion.gmn--open) .nav-main-toggle-btn .icon-stack {
  opacity: 0;
}
.g2g-header:has(.gmn--accordion.gmn--open) .nav-main-toggle-btn::before, .g2g-header:has(.gmn--accordion.gmn--open) .nav-main-toggle-btn::after {
  content: "";
  position: absolute;
  top: calc(50% + 6px);
  left: 50%;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.g2g-header:has(.gmn--accordion.gmn--open) .nav-main-toggle-btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.g2g-header:has(.gmn--accordion.gmn--open) .nav-main-toggle-btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.gmn--accordion > .gmn__actions {
  background: var(--gmn-header-bg);
  padding: 10px 16px;
  justify-content: flex-end;
  gap: 10px;
}
@media (min-width: 992px) {
  .gmn--accordion {
    display: none;
  }
}
.gmn-acc__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.gmn-acc__list--lvl-0 {
  border-top: 1px solid var(--gmn-border);
}
.gmn-acc__item {
  border-bottom: 1px solid var(--gmn-border);
}
.gmn-acc__row {
  display: flex;
  align-items: stretch;
  background: var(--gmn-bg);
}
.gmn-acc__link {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  color: var(--gmn-fg);
  text-decoration: none;
  min-height: 52px;
  transition: background var(--gmn-transition-fast);
}
.gmn-acc__link:hover, .gmn-acc__link:focus-visible {
  background: var(--gmn-hover);
  outline: none;
}
.gmn-acc__link--static {
  color: var(--gmn-muted);
  cursor: default;
}
.gmn-acc__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  background: transparent;
  border: 0;
  border-left: 1px solid var(--gmn-border);
  cursor: pointer;
  color: var(--gmn-muted);
  transition: background var(--gmn-transition-fast), color var(--gmn-transition-fast);
}
.gmn-acc__toggle:hover, .gmn-acc__toggle:focus-visible {
  background: var(--gmn-hover);
  color: var(--gmn-accent);
  outline: none;
}
.gmn-acc__toggle svg {
  transition: transform var(--gmn-transition-fast);
}
.gmn-acc__item--open > .gmn-acc__row > .gmn-acc__toggle svg {
  transform: rotate(180deg);
}
.gmn-acc__toggle {
  color: var(--gmn-accent);
}
.gmn-acc__item--open {
  border-bottom-color: transparent;
}
.gmn-acc__item--open > .gmn-acc__row {
  margin: 4px 8px;
  border-radius: var(--gmn-radius);
  background: var(--gmn-accent-soft);
  overflow: hidden;
}
.gmn-acc__item--open > .gmn-acc__row > .gmn-acc__toggle {
  color: var(--gmn-accent-text);
  border-left-color: transparent;
}
.gmn-acc__link.gmn-acc__link {
  color: var(--gmn-fg);
}
.gmn-acc__item--open > .gmn-acc__row > .gmn-acc__link.gmn-acc__link {
  color: var(--gmn-accent-text);
  font-weight: 500;
}
.gmn-acc__sub {
  overflow: hidden;
  transition: max-height var(--gmn-transition);
  background: var(--gmn-hover);
}
/* nested list indentation */
.gmn-acc__list--lvl-1 > .gmn-acc__item > .gmn-acc__row > .gmn-acc__link {
  padding-left: 32px;
  font-size: 15px;
}
.gmn-acc__list--lvl-2 > .gmn-acc__item > .gmn-acc__row > .gmn-acc__link {
  padding-left: 48px;
  font-size: 14px;
}
.gmn-acc__list--lvl-3 > .gmn-acc__item > .gmn-acc__row > .gmn-acc__link {
  padding-left: 64px;
  font-size: 14px;
}
.gmn-acc__list--lvl-1 > .gmn-acc__item, .gmn-acc__list--lvl-2 > .gmn-acc__item, .gmn-acc__list--lvl-3 > .gmn-acc__item {
  border-bottom-color: var(--gmn-border);
}
/* =====================================================================
   STYLE 3: FULLSCREEN CARDS
   ===================================================================== */
.gmn--fullscreen {
  position: fixed;
  inset: 0;
  z-index: var(--gmn-z);
  background: var(--gmn-bg);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--gmn-transition), visibility 0s linear var(--gmn-transition);
}
.gmn--fullscreen[aria-hidden="false"], .gmn--fullscreen.gmn--open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  transition: opacity var(--gmn-transition), visibility 0s linear 0s;
}
.gmn-fs {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  background: var(--gmn-bg);
  padding-top: var(--gmn-safe-top);
  padding-bottom: var(--gmn-safe-bottom);
  transform: scale(0.96);
  transition: transform var(--gmn-transition);
}
.gmn--fullscreen.gmn--open .gmn-fs {
  transform: scale(1);
}
.gmn-fs__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 14px 16px;
  background: var(--gmn-header-bg);
  border-bottom: 1px solid var(--gmn-header-border);
  min-height: 56px;
  flex-shrink: 0;
}
.gmn-fs__title {
  flex: 1;
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
}
.gmn-fs__back, .gmn-fs__close {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px;
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  color: var(--gmn-fg);
  font: inherit;
  font-size: 14px;
  transition: background var(--gmn-transition-fast);
}
.gmn-fs__back:hover, .gmn-fs__close:hover, .gmn-fs__back:focus-visible, .gmn-fs__close:focus-visible {
  background: var(--gmn-hover);
  outline: none;
}
.gmn-fs__back[hidden] {
  display: none;
}
.gmn__close, .gmn-fs__close, .gmn-ca__close {
  color: #fff;
}
.gmn__close:hover, .gmn-fs__close:hover, .gmn-ca__close:hover {
  background: rgba(255, 255, 255, 0.15);
}
.gmn__back, .gmn-fs__back {
  color: #fff;
}
.gmn__back:hover, .gmn__back:focus, .gmn__back:focus-visible, .gmn-fs__back:hover, .gmn-fs__back:focus, .gmn-fs__back:focus-visible {
  background: transparent;
  color: #fff;
  outline: none;
}
.gmn-fs__title, .gmn__title, .gmn-ca__heading {
  display: none;
}
.gmn__actions .btn, .gmn__actions .dropdown-toggle, .gmn__actions .top-bar-nav-btn, .gmn__actions .top-bar-nav-text {
  color: #fff;
  background: transparent;
  border: 0;
}
.gmn__actions .top-bar-nav-btn span, .gmn__actions .dropdown-toggle span {
  color: #fff;
}
.gmn__actions .dropdown-toggle::after {
  border-top-color: #fff;
  color: #fff;
}
.gmn__actions .top-bar-language, .gmn__actions .top-bar-currency, .gmn__actions .top-bar-language .dropdown-toggle {
  background: transparent;
  box-shadow: none;
  border: 0;
}
.gmn__actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.gmn__actions .top-bar-nav-item, .gmn__actions .top-bar-currency, .gmn__actions .top-bar-language, .gmn__actions .currency-form, .gmn__actions .language-form, .gmn__actions form {
  margin: 0;
  padding: 0;
}
.gmn__actions .btn, .gmn__actions .dropdown-toggle, .gmn__actions .top-bar-nav-btn {
  color: var(--gmn-fg);
  background: transparent;
  border: 0;
  padding: 6px 8px;
  font-size: 14px;
  line-height: 1;
  min-height: 0;
}
.gmn__actions .dropdown-menu {
  z-index: 10050;
}
.gmn-fs__body {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  padding: 20px 16px;
}
.gmn--fullscreen .gmn-fs, .gmn--fullscreen .gmn-fs__cards {
  touch-action: pan-y;
}
.gmn-fs__cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.gmn-fs-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 200px;
  background: var(--gmn-hover);
  border-radius: var(--gmn-radius);
  box-shadow: var(--gmn-card-shadow);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  transition: transform var(--gmn-transition-fast), box-shadow var(--gmn-transition-fast);
}
.gmn-fs-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--gmn-card-shadow-hover);
}
.gmn-fs-card--image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.05) 100%);
  z-index: 1;
}
.gmn-fs-card__overlay {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gmn-fs-card__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--gmn-fg);
}
.gmn-fs-card--image .gmn-fs-card__title {
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}
.gmn-fs-card__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.gmn-fs-card__view, .gmn-fs-card__sub {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 14px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--gmn-transition-fast), transform var(--gmn-transition-fast);
}
.gmn-fs-card__view {
  background: var(--gmn-accent);
  color: var(--gmn-accent-contrast);
}
.gmn-fs-card__view:hover {
  transform: scale(1.02);
  filter: brightness(1.05);
}
.gmn-fs-card__sub {
  background: rgba(255, 255, 255, 0.9);
  color: var(--gmn-fg);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.gmn-fs-card--image .gmn-fs-card__sub {
  background: rgba(255, 255, 255, 0.92);
}
.gmn-fs-card:not(.gmn-fs-card--image) .gmn-fs-card__sub {
  background: var(--gmn-bg);
  border: 1px solid var(--gmn-border);
}
.gmn-fs-card__sub:hover {
  background: #fff;
}
.gmn-fs-card__sub:focus-visible, .gmn-fs-card__view:focus-visible {
  outline: 2px solid var(--gmn-accent);
  outline-offset: 2px;
}
/* =============================================================================
 * Sprint 2.67.x (16. Mai 2026) — Variante C: Sub-Cat-Chips als Overlay
 * User-Spec:
 *   - „Alle"-Chip: Brand-Farbe (Orange) Hintergrund, weißer Text
 *   - Sub-Cat-Chips: Weiß 90% Opacity, Brand-Farbe als Textfarbe
 *   - Chips liegen DIREKT auf dem Hero-Bild (kein extra Strip darunter)
 *   - 1-Zeile horizontal-scroll (Card-Höhe konstant, alle Subs erreichbar)
 * ============================================================================= */
.gmn-fs-card__chips {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  mask-image: linear-gradient(to right, #000 calc(100% - 24px), transparent);
  -webkit-mask-image: linear-gradient(to right, #000 calc(100% - 24px), transparent);
  margin-left: -16px;
  margin-right: -16px;
  padding-left: 16px;
  padding-right: 16px;
  scrollbar-width: none;
}
.gmn-fs-card__chips::-webkit-scrollbar {
  display: none;
}
.gmn-fs-card__chip {
  flex-shrink: 0;
}
.gmn-fs-card__chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  border: 0.5px solid transparent;
  background: rgba(255, 255, 255, 0.9);
  color: var(--gmn-accent);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background var(--gmn-transition-fast), transform var(--gmn-transition-fast);
}
.gmn-fs-card__chip:hover, .gmn-fs-card__chip:focus-visible {
  background: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}
.gmn-fs-card__chip:focus-visible {
  outline: 2px solid var(--gmn-accent);
  outline-offset: 2px;
}
/* „Alle"-Chip → invertiert: Brand-Farbe als BG, weißer Text.
 * Specificity-Bump per Doppel-Class damit die globale `a`-Color-Regel des
 * DreamThemes (`body.dreamtheme a { color: var(--gmn-accent) }`) nicht den weißen Text
 * mit Brand-Orange überschreibt. Theme-Regel hat (0,2,1), wir kontern mit
 * (0,2,0) plus Doppel-Class = (0,3,0). */
.gmn-fs-card__chip.gmn-fs-card__chip--all, a.gmn-fs-card__chip.gmn-fs-card__chip--all {
  background: var(--gmn-accent);
  color: #fff;
  font-weight: 500;
}
.gmn-fs-card__chip.gmn-fs-card__chip--all:hover, .gmn-fs-card__chip.gmn-fs-card__chip--all:focus-visible, a.gmn-fs-card__chip.gmn-fs-card__chip--all:hover, a.gmn-fs-card__chip.gmn-fs-card__chip--all:focus-visible {
  background: var(--g2g-token-color-brand-primary-hover);
  color: #fff;
}
/* Solo-Cards (Top-Cats ohne Sub-Cats): die ganze Card ist ein <a>-Link.
 * Kein Chip-Strip, statt dessen Title prominent + subtiler Pfeil-Indikator
 * unten rechts damit klar ist dass die Card klickbar ist. */
.gmn-fs-card--solo {
  text-decoration: none;
  cursor: pointer;
  display: block;
  color: inherit;
}
.gmn-fs-card--solo .gmn-fs-card__title {
  text-decoration: none;
}
.gmn-fs-card--solo .gmn-fs-card__overlay {
  position: relative;
}
.gmn-fs-card--solo .gmn-fs-card__overlay::after {
  content: "›";
  position: absolute;
  right: 16px;
  bottom: 12px;
  color: var(--gmn-accent);
  font-size: 24px;
  line-height: 1;
  font-weight: 400;
}
.gmn-fs-card--solo:hover .gmn-fs-card__overlay::after, .gmn-fs-card--solo:focus-visible .gmn-fs-card__overlay::after {
  transform: translateX(3px);
  transition: transform var(--gmn-transition-fast, 0.15s ease);
}
/* leaf list inside fullscreen */
.gmn-fs__leaflist {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  background: var(--gmn-bg);
  border-radius: var(--gmn-radius);
  overflow: hidden;
  box-shadow: var(--gmn-card-shadow);
}
.gmn-fs__leaflist li {
  border-bottom: 1px solid var(--gmn-border);
}
.gmn-fs__leaflist li:last-child {
  border-bottom: 0;
}
.gmn-fs__link {
  display: block;
  padding: 16px 20px;
  color: var(--gmn-fg);
  text-decoration: none;
  font-size: 16px;
  transition: background var(--gmn-transition-fast);
}
.gmn-fs__link:hover, .gmn-fs__link:focus-visible {
  background: var(--gmn-hover);
  outline: none;
}
/* =====================================================================
   BOTTOM BAR (combinable with all styles)
   ===================================================================== */
.gmn-bottombar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  background: var(--gmn-bg);
  border-top: 1px solid var(--gmn-border);
  z-index: var(--gmn-bottombar-z);
  padding-bottom: var(--gmn-safe-bottom);
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.06);
}
.gmn-bottombar__item {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 4px;
  background: transparent;
  border: 0;
  color: var(--gmn-muted);
  text-decoration: none;
  font: inherit;
  font-size: 11px;
  cursor: pointer;
  min-height: 56px;
  transition: color var(--gmn-transition-fast);
}
.gmn-bottombar__item:hover, .gmn-bottombar__item:focus-visible {
  color: var(--gmn-accent);
  outline: none;
}
.gmn-bottombar__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}
.gmn-bottombar__icon svg {
  width: 100%;
  height: 100%;
}
.gmn-bottombar__label {
  font-weight: 500;
  letter-spacing: 0.01em;
}
.gmn-bottombar__badge {
  position: absolute;
  top: 6px;
  right: calc(50% - 18px);
  background: var(--gmn-accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  .gmn-bottombar {
    display: none;
  }
}
body.gmn-has-bottombar {
  padding-bottom: calc(56px + var(--gmn-safe-bottom));
}
@media (min-width: 1024px) {
  body.gmn-has-bottombar {
    padding-bottom: 0;
  }
}
/* =====================================================================
   GLOBAL: reduced motion + dark mode
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
  .gmn--drawer .gmn__backdrop, .gmn__drawer, .gmn__panel, .gmn__link, .gmn__expand, .gmn__back, .gmn__close, .gmn-acc__sub, .gmn-acc__toggle svg, .gmn-acc__link, .gmn-acc__toggle, .gmn--fullscreen, .gmn-fs, .gmn-fs-card, .gmn-fs-card__view, .gmn-fs-card__sub, .gmn-fs__link, .gmn-fs__back, .gmn-fs__close, .gmn-bottombar__item {
    transition: none !important;
  }
}
.gmn--compact {
  position: fixed;
  inset: 0;
  z-index: 9990;
  background: var(--gmn-bg, #fff);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--gmn-transition-base, 0.25s ease), visibility var(--gmn-transition-base, 0.25s ease);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.gmn--compact.gmn--open {
  opacity: 1;
  visibility: visible;
}
.gmn-ca {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.gmn-ca__header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--gmn-header-bg, #64748b);
  border-bottom: 1px solid var(--gmn-header-border, transparent);
}
.gmn-ca__heading {
  margin: 0;
  font-size: 17px;
  font-weight: 500;
  color: var(--gmn-fg, #1a1a1a);
}
.gmn-ca__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  color: var(--gmn-fg, #1a1a1a);
}
.gmn-ca__close:hover {
  background: var(--gmn-hover, rgba(0, 0, 0, 0.04));
}
.gmn-ca__body {
  flex: 1;
  padding: 12px 16px 24px;
}
.gmn-ca__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gmn-ca__card {
  background: var(--gmn-bg, #fff);
  border: 0.5px solid var(--gmn-border, rgba(0, 0, 0, 0.08));
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow var(--gmn-transition-fast, 0.15s ease);
}
.gmn-ca__card.is-open {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
.gmn-ca__head {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: var(--gmn-fg, #1a1a1a);
}
.gmn-ca__head[disabled] {
  cursor: default;
}
.gmn-ca__head:not([disabled]):hover {
  background: var(--gmn-hover, rgba(0, 0, 0, 0.02));
}
.gmn-ca__thumb {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background-color: #e8e6e0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.gmn-ca__title {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
}
.gmn-ca__title small.gmn-ca__sub, .gmn-ca__title .gmn-ca__sub.small {
  font-size: 12px;
  font-weight: 400;
  color: var(--gmn-fg-muted, rgba(0, 0, 0, 0.55));
}
.gmn-ca__chev {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--gmn-fg-muted, rgba(0, 0, 0, 0.45));
  transition: transform var(--gmn-transition-fast, 0.2s ease);
}
.gmn-ca__card.is-open .gmn-ca__chev {
  transform: rotate(90deg);
}
.gmn-ca__card .gmn-ca__body {
  flex: none;
  padding: 0 12px 8px;
}
.gmn-ca__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 4px;
  border-bottom: 0.5px solid var(--gmn-border, rgba(0, 0, 0, 0.06));
  font-size: 14px;
  color: var(--gmn-fg, #1a1a1a);
  text-decoration: none;
}
.gmn-ca__link:last-child {
  border-bottom: 0;
}
.gmn-ca__link:hover {
  color: var(--gmn-accent);
  text-decoration: none;
}
.gmn-ca__link.gmn-ca__link--all {
  color: var(--gmn-accent);
  font-weight: 500;
}
.gmn-ca__arrow {
  color: var(--gmn-fg-muted, rgba(0, 0, 0, 0.35));
  font-size: 18px;
  line-height: 1;
}
.dreamtheme .g2g-stancanelli-hero-section {
  position: relative;
}
.dreamtheme .g2g-stancanelli-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 0;
  overflow: hidden;
}
.dreamtheme .g2g-stancanelli-hero__word {
  font-family: "Jost", system-ui, sans-serif;
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
  user-select: none;
}
.dreamtheme .g2g-stancanelli-hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: g2g-hero-pulse 2s ease-in-out infinite;
}
.dreamtheme .g2g-stancanelli-hero__scroll-hint svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}
@keyframes g2g-hero-pulse {
  0%, 100% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.8;
  }
}
body.dreamtheme.dreamtheme.dreamtheme .footer-main.footer-main {
  content-visibility: auto;
  contain-intrinsic-size: auto 400px;
}
body.dreamtheme.dreamtheme.dreamtheme .footer-bottom.footer-bottom {
  content-visibility: auto;
  contain-intrinsic-size: auto 60px;
}
body.dreamtheme.dreamtheme.dreamtheme .cms-element-cross-selling.cms-element-cross-selling {
  content-visibility: auto;
  contain-intrinsic-size: auto 450px;
}
body.dreamtheme.dreamtheme.dreamtheme .product-detail-tabs.product-detail-tabs {
  content-visibility: auto;
  contain-intrinsic-size: auto 300px;
}
.dreamtheme.is-act-index .content-main .container-main .cms-breadcrumb {
  margin: 0 auto;
  padding: 15px 20px 0 20px;
  border-bottom: var(--g2g-token-color-neutral-border) 1px solid;
}
.dreamtheme.is-act-index .content-main .container-main .cms-breadcrumb .breadcrumb {
  margin-bottom: 10px;
}
.dreamtheme.is-act-index .content-main .container-main .cms-breadcrumb .breadcrumb .breadcrumb-item a {
  color: #64748b;
}
.dreamtheme .base-slider-controls-prev, .dreamtheme .base-slider-controls-next {
  color: #798490;
}
.dreamtheme .base-slider-controls-prev:hover, .dreamtheme .base-slider-controls-next:hover {
  border: none;
}
.dreamtheme .cms-element-product-slider {
  position: relative;
}
.dreamtheme .cms-element-product-slider .base-slider-controls, .dreamtheme .cms-element-product-slider .product-slider-controls {
  display: block;
  visibility: visible;
  overflow: visible;
}
.dreamtheme .cms-element-product-slider .base-slider-controls-prev, .dreamtheme .cms-element-product-slider .base-slider-controls-prev.is-nav-prev-inside, .dreamtheme .cms-element-product-slider .base-slider-controls-prev.is-nav-prev-outside, .dreamtheme .cms-element-product-slider .base-slider-controls-next, .dreamtheme .cms-element-product-slider .base-slider-controls-next.is-nav-next-inside, .dreamtheme .cms-element-product-slider .base-slider-controls-next.is-nav-next-outside, .dreamtheme .cms-element-product-slider .product-slider-controls-prev, .dreamtheme .cms-element-product-slider .product-slider-controls-prev.is-nav-prev-inside, .dreamtheme .cms-element-product-slider .product-slider-controls-prev.is-nav-prev-outside, .dreamtheme .cms-element-product-slider .product-slider-controls-next, .dreamtheme .cms-element-product-slider .product-slider-controls-next.is-nav-next-inside, .dreamtheme .cms-element-product-slider .product-slider-controls-next.is-nav-next-outside {
  display: block;
  visibility: visible;
  opacity: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  background: var(--g2g-token-color-neutral-background, #ffffff);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 10;
  cursor: pointer;
  border: 1px solid var(--g2g-token-color-neutral-border, #e5e5e5);
  color: var(--g2g-token-color-neutral-text-default, #1a1a1a);
  transition: background 180ms ease, transform 180ms ease;
}
.dreamtheme .cms-element-product-slider .base-slider-controls-prev:hover, .dreamtheme .cms-element-product-slider .base-slider-controls-prev.is-nav-prev-inside:hover, .dreamtheme .cms-element-product-slider .base-slider-controls-prev.is-nav-prev-outside:hover, .dreamtheme .cms-element-product-slider .base-slider-controls-next:hover, .dreamtheme .cms-element-product-slider .base-slider-controls-next.is-nav-next-inside:hover, .dreamtheme .cms-element-product-slider .base-slider-controls-next.is-nav-next-outside:hover, .dreamtheme .cms-element-product-slider .product-slider-controls-prev:hover, .dreamtheme .cms-element-product-slider .product-slider-controls-prev.is-nav-prev-inside:hover, .dreamtheme .cms-element-product-slider .product-slider-controls-prev.is-nav-prev-outside:hover, .dreamtheme .cms-element-product-slider .product-slider-controls-next:hover, .dreamtheme .cms-element-product-slider .product-slider-controls-next.is-nav-next-inside:hover, .dreamtheme .cms-element-product-slider .product-slider-controls-next.is-nav-next-outside:hover {
  background: var(--g2g-token-color-neutral-background-hover, #f5f5f5);
  transform: translateY(-50%) scale(1.06);
}
.dreamtheme .cms-element-product-slider .base-slider-controls-prev[disabled], .dreamtheme .cms-element-product-slider .base-slider-controls-prev.tns-disabled, .dreamtheme .cms-element-product-slider .base-slider-controls-prev.is-nav-prev-inside[disabled], .dreamtheme .cms-element-product-slider .base-slider-controls-prev.is-nav-prev-inside.tns-disabled, .dreamtheme .cms-element-product-slider .base-slider-controls-prev.is-nav-prev-outside[disabled], .dreamtheme .cms-element-product-slider .base-slider-controls-prev.is-nav-prev-outside.tns-disabled, .dreamtheme .cms-element-product-slider .base-slider-controls-next[disabled], .dreamtheme .cms-element-product-slider .base-slider-controls-next.tns-disabled, .dreamtheme .cms-element-product-slider .base-slider-controls-next.is-nav-next-inside[disabled], .dreamtheme .cms-element-product-slider .base-slider-controls-next.is-nav-next-inside.tns-disabled, .dreamtheme .cms-element-product-slider .base-slider-controls-next.is-nav-next-outside[disabled], .dreamtheme .cms-element-product-slider .base-slider-controls-next.is-nav-next-outside.tns-disabled, .dreamtheme .cms-element-product-slider .product-slider-controls-prev[disabled], .dreamtheme .cms-element-product-slider .product-slider-controls-prev.tns-disabled, .dreamtheme .cms-element-product-slider .product-slider-controls-prev.is-nav-prev-inside[disabled], .dreamtheme .cms-element-product-slider .product-slider-controls-prev.is-nav-prev-inside.tns-disabled, .dreamtheme .cms-element-product-slider .product-slider-controls-prev.is-nav-prev-outside[disabled], .dreamtheme .cms-element-product-slider .product-slider-controls-prev.is-nav-prev-outside.tns-disabled, .dreamtheme .cms-element-product-slider .product-slider-controls-next[disabled], .dreamtheme .cms-element-product-slider .product-slider-controls-next.tns-disabled, .dreamtheme .cms-element-product-slider .product-slider-controls-next.is-nav-next-inside[disabled], .dreamtheme .cms-element-product-slider .product-slider-controls-next.is-nav-next-inside.tns-disabled, .dreamtheme .cms-element-product-slider .product-slider-controls-next.is-nav-next-outside[disabled], .dreamtheme .cms-element-product-slider .product-slider-controls-next.is-nav-next-outside.tns-disabled {
  opacity: 0.3;
  pointer-events: none;
}
.dreamtheme .cms-element-product-slider .base-slider-controls-prev .icon, .dreamtheme .cms-element-product-slider .base-slider-controls-prev.is-nav-prev-inside .icon, .dreamtheme .cms-element-product-slider .base-slider-controls-prev.is-nav-prev-outside .icon, .dreamtheme .cms-element-product-slider .base-slider-controls-prev .icon-arrow-head-left, .dreamtheme .cms-element-product-slider .base-slider-controls-prev.is-nav-prev-inside .icon-arrow-head-left, .dreamtheme .cms-element-product-slider .base-slider-controls-prev.is-nav-prev-outside .icon-arrow-head-left, .dreamtheme .cms-element-product-slider .base-slider-controls-next .icon, .dreamtheme .cms-element-product-slider .base-slider-controls-next.is-nav-next-inside .icon, .dreamtheme .cms-element-product-slider .base-slider-controls-next.is-nav-next-outside .icon, .dreamtheme .cms-element-product-slider .base-slider-controls-next .icon-arrow-head-right, .dreamtheme .cms-element-product-slider .base-slider-controls-next.is-nav-next-inside .icon-arrow-head-right, .dreamtheme .cms-element-product-slider .base-slider-controls-next.is-nav-next-outside .icon-arrow-head-right, .dreamtheme .cms-element-product-slider .product-slider-controls-prev .icon, .dreamtheme .cms-element-product-slider .product-slider-controls-prev .icon-arrow-head-left, .dreamtheme .cms-element-product-slider .product-slider-controls-next .icon, .dreamtheme .cms-element-product-slider .product-slider-controls-next .icon-arrow-head-right {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transform: none;
  width: 20px;
  height: 20px;
  line-height: 0;
  display: block;
  padding: 0;
}
.dreamtheme .cms-element-product-slider .base-slider-controls-prev svg, .dreamtheme .cms-element-product-slider .base-slider-controls-next svg, .dreamtheme .cms-element-product-slider .product-slider-controls-prev svg, .dreamtheme .cms-element-product-slider .product-slider-controls-next svg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}
.dreamtheme .cms-element-product-slider .base-slider-controls-prev .icon, .dreamtheme .cms-element-product-slider .base-slider-controls-prev.is-nav-prev-inside .icon, .dreamtheme .cms-element-product-slider .base-slider-controls-prev.is-nav-prev-outside .icon, .dreamtheme .cms-element-product-slider .base-slider-controls-prev .icon-arrow-head-left, .dreamtheme .cms-element-product-slider .base-slider-controls-prev.is-nav-prev-inside .icon-arrow-head-left, .dreamtheme .cms-element-product-slider .base-slider-controls-prev.is-nav-prev-outside .icon-arrow-head-left, .dreamtheme .cms-element-product-slider .product-slider-controls-prev .icon, .dreamtheme .cms-element-product-slider .product-slider-controls-prev.is-nav-prev-inside .icon, .dreamtheme .cms-element-product-slider .product-slider-controls-prev.is-nav-prev-outside .icon, .dreamtheme .cms-element-product-slider .product-slider-controls-prev .icon-arrow-head-left, .dreamtheme .cms-element-product-slider .product-slider-controls-prev.is-nav-prev-inside .icon-arrow-head-left, .dreamtheme .cms-element-product-slider .product-slider-controls-prev.is-nav-prev-outside .icon-arrow-head-left {
  right: 3px;
}
.dreamtheme .cms-element-product-slider .base-slider-controls-next .icon, .dreamtheme .cms-element-product-slider .base-slider-controls-next.is-nav-next-inside .icon, .dreamtheme .cms-element-product-slider .base-slider-controls-next.is-nav-next-outside .icon, .dreamtheme .cms-element-product-slider .base-slider-controls-next .icon-arrow-head-right, .dreamtheme .cms-element-product-slider .base-slider-controls-next.is-nav-next-inside .icon-arrow-head-right, .dreamtheme .cms-element-product-slider .base-slider-controls-next.is-nav-next-outside .icon-arrow-head-right, .dreamtheme .cms-element-product-slider .product-slider-controls-next .icon, .dreamtheme .cms-element-product-slider .product-slider-controls-next.is-nav-next-inside .icon, .dreamtheme .cms-element-product-slider .product-slider-controls-next.is-nav-next-outside .icon, .dreamtheme .cms-element-product-slider .product-slider-controls-next .icon-arrow-head-right, .dreamtheme .cms-element-product-slider .product-slider-controls-next.is-nav-next-inside .icon-arrow-head-right, .dreamtheme .cms-element-product-slider .product-slider-controls-next.is-nav-next-outside .icon-arrow-head-right {
  left: 3px;
}
.dreamtheme .cms-element-product-slider .base-slider-controls-prev.is-nav-prev-outside, .dreamtheme .cms-element-product-slider .product-slider-controls-prev.is-nav-prev-outside {
  left: 4px;
}
.dreamtheme .cms-element-product-slider .base-slider-controls-next.is-nav-next-outside, .dreamtheme .cms-element-product-slider .product-slider-controls-next.is-nav-next-outside {
  right: 4px;
}
.dreamtheme .cms-element-product-slider .base-slider-controls-prev.is-nav-prev-inside, .dreamtheme .cms-element-product-slider .product-slider-controls-prev.is-nav-prev-inside {
  left: 16px;
}
.dreamtheme .cms-element-product-slider .base-slider-controls-next.is-nav-next-inside, .dreamtheme .cms-element-product-slider .product-slider-controls-next.is-nav-next-inside {
  right: 16px;
}
.dreamtheme .cms-element-product-slider .base-slider-controls-prev:not(.is-nav-prev-inside):not(.is-nav-prev-outside), .dreamtheme .cms-element-product-slider .product-slider-controls-prev:not(.is-nav-prev-inside):not(.is-nav-prev-outside) {
  left: 4px;
}
.dreamtheme .cms-element-product-slider .base-slider-controls-next:not(.is-nav-next-inside):not(.is-nav-next-outside), .dreamtheme .cms-element-product-slider .product-slider-controls-next:not(.is-nav-next-inside):not(.is-nav-next-outside) {
  right: 4px;
}
.dreamtheme .cross-selling-content .cms-element-title {
  display: none;
}
.dreamtheme .cms-block-product-description-reviews .card-tabs .nav-item {
  margin-right: 0;
}
body.dreamtheme.g2g-slider-arrow-style-flat-minimal .cms-element-product-slider .base-slider-controls-prev, body.dreamtheme.g2g-slider-arrow-style-flat-minimal .cms-element-product-slider .base-slider-controls-prev.is-nav-prev-inside, body.dreamtheme.g2g-slider-arrow-style-flat-minimal .cms-element-product-slider .base-slider-controls-prev.is-nav-prev-outside, body.dreamtheme.g2g-slider-arrow-style-flat-minimal .cms-element-product-slider .base-slider-controls-next, body.dreamtheme.g2g-slider-arrow-style-flat-minimal .cms-element-product-slider .base-slider-controls-next.is-nav-next-inside, body.dreamtheme.g2g-slider-arrow-style-flat-minimal .cms-element-product-slider .base-slider-controls-next.is-nav-next-outside, body.dreamtheme.g2g-slider-arrow-style-flat-minimal .cms-element-product-slider .product-slider-controls-prev, body.dreamtheme.g2g-slider-arrow-style-flat-minimal .cms-element-product-slider .product-slider-controls-prev.is-nav-prev-inside, body.dreamtheme.g2g-slider-arrow-style-flat-minimal .cms-element-product-slider .product-slider-controls-prev.is-nav-prev-outside, body.dreamtheme.g2g-slider-arrow-style-flat-minimal .cms-element-product-slider .product-slider-controls-next, body.dreamtheme.g2g-slider-arrow-style-flat-minimal .cms-element-product-slider .product-slider-controls-next.is-nav-next-inside, body.dreamtheme.g2g-slider-arrow-style-flat-minimal .cms-element-product-slider .product-slider-controls-next.is-nav-next-outside {
  background: transparent;
  box-shadow: none;
  border: 0;
  border-radius: 0;
  width: 32px;
  height: 32px;
  color: var(--g2g-token-color-neutral-text-default, #1a1a1a);
}
body.dreamtheme.g2g-slider-arrow-style-flat-minimal .cms-element-product-slider .base-slider-controls-prev:hover, body.dreamtheme.g2g-slider-arrow-style-flat-minimal .cms-element-product-slider .base-slider-controls-prev.is-nav-prev-inside:hover, body.dreamtheme.g2g-slider-arrow-style-flat-minimal .cms-element-product-slider .base-slider-controls-prev.is-nav-prev-outside:hover, body.dreamtheme.g2g-slider-arrow-style-flat-minimal .cms-element-product-slider .base-slider-controls-next:hover, body.dreamtheme.g2g-slider-arrow-style-flat-minimal .cms-element-product-slider .base-slider-controls-next.is-nav-next-inside:hover, body.dreamtheme.g2g-slider-arrow-style-flat-minimal .cms-element-product-slider .base-slider-controls-next.is-nav-next-outside:hover, body.dreamtheme.g2g-slider-arrow-style-flat-minimal .cms-element-product-slider .product-slider-controls-prev:hover, body.dreamtheme.g2g-slider-arrow-style-flat-minimal .cms-element-product-slider .product-slider-controls-prev.is-nav-prev-inside:hover, body.dreamtheme.g2g-slider-arrow-style-flat-minimal .cms-element-product-slider .product-slider-controls-prev.is-nav-prev-outside:hover, body.dreamtheme.g2g-slider-arrow-style-flat-minimal .cms-element-product-slider .product-slider-controls-next:hover, body.dreamtheme.g2g-slider-arrow-style-flat-minimal .cms-element-product-slider .product-slider-controls-next.is-nav-next-inside:hover, body.dreamtheme.g2g-slider-arrow-style-flat-minimal .cms-element-product-slider .product-slider-controls-next.is-nav-next-outside:hover {
  background: transparent;
  transform: translateY(-50%) scale(1.15);
  color: var(--g2g-token-color-brand-primary, #64748b);
}
body.dreamtheme.g2g-slider-arrow-style-flat-minimal .cms-element-product-slider .base-slider-controls-prev .icon, body.dreamtheme.g2g-slider-arrow-style-flat-minimal .cms-element-product-slider .base-slider-controls-next .icon, body.dreamtheme.g2g-slider-arrow-style-flat-minimal .cms-element-product-slider .product-slider-controls-prev .icon, body.dreamtheme.g2g-slider-arrow-style-flat-minimal .cms-element-product-slider .product-slider-controls-next .icon {
  width: 28px;
  height: 28px;
}
body.dreamtheme.g2g-slider-arrow-style-square-bold .cms-element-product-slider .base-slider-controls-prev, body.dreamtheme.g2g-slider-arrow-style-square-bold .cms-element-product-slider .base-slider-controls-prev.is-nav-prev-inside, body.dreamtheme.g2g-slider-arrow-style-square-bold .cms-element-product-slider .base-slider-controls-prev.is-nav-prev-outside, body.dreamtheme.g2g-slider-arrow-style-square-bold .cms-element-product-slider .base-slider-controls-next, body.dreamtheme.g2g-slider-arrow-style-square-bold .cms-element-product-slider .base-slider-controls-next.is-nav-next-inside, body.dreamtheme.g2g-slider-arrow-style-square-bold .cms-element-product-slider .base-slider-controls-next.is-nav-next-outside, body.dreamtheme.g2g-slider-arrow-style-square-bold .cms-element-product-slider .product-slider-controls-prev, body.dreamtheme.g2g-slider-arrow-style-square-bold .cms-element-product-slider .product-slider-controls-prev.is-nav-prev-inside, body.dreamtheme.g2g-slider-arrow-style-square-bold .cms-element-product-slider .product-slider-controls-prev.is-nav-prev-outside, body.dreamtheme.g2g-slider-arrow-style-square-bold .cms-element-product-slider .product-slider-controls-next, body.dreamtheme.g2g-slider-arrow-style-square-bold .cms-element-product-slider .product-slider-controls-next.is-nav-next-inside, body.dreamtheme.g2g-slider-arrow-style-square-bold .cms-element-product-slider .product-slider-controls-next.is-nav-next-outside {
  background: var(--g2g-token-color-neutral-background, #ffffff);
  box-shadow: none;
  border: 2px solid var(--g2g-token-color-brand-primary, #64748b);
  border-radius: 0;
  width: 44px;
  height: 44px;
  color: var(--g2g-token-color-brand-primary, #64748b);
}
body.dreamtheme.g2g-slider-arrow-style-square-bold .cms-element-product-slider .base-slider-controls-prev:hover, body.dreamtheme.g2g-slider-arrow-style-square-bold .cms-element-product-slider .base-slider-controls-prev.is-nav-prev-inside:hover, body.dreamtheme.g2g-slider-arrow-style-square-bold .cms-element-product-slider .base-slider-controls-prev.is-nav-prev-outside:hover, body.dreamtheme.g2g-slider-arrow-style-square-bold .cms-element-product-slider .base-slider-controls-next:hover, body.dreamtheme.g2g-slider-arrow-style-square-bold .cms-element-product-slider .base-slider-controls-next.is-nav-next-inside:hover, body.dreamtheme.g2g-slider-arrow-style-square-bold .cms-element-product-slider .base-slider-controls-next.is-nav-next-outside:hover, body.dreamtheme.g2g-slider-arrow-style-square-bold .cms-element-product-slider .product-slider-controls-prev:hover, body.dreamtheme.g2g-slider-arrow-style-square-bold .cms-element-product-slider .product-slider-controls-prev.is-nav-prev-inside:hover, body.dreamtheme.g2g-slider-arrow-style-square-bold .cms-element-product-slider .product-slider-controls-prev.is-nav-prev-outside:hover, body.dreamtheme.g2g-slider-arrow-style-square-bold .cms-element-product-slider .product-slider-controls-next:hover, body.dreamtheme.g2g-slider-arrow-style-square-bold .cms-element-product-slider .product-slider-controls-next.is-nav-next-inside:hover, body.dreamtheme.g2g-slider-arrow-style-square-bold .cms-element-product-slider .product-slider-controls-next.is-nav-next-outside:hover {
  background: var(--g2g-token-color-brand-primary, #64748b);
  transform: translateY(-50%);
  color: #ffffff;
}
.dreamtheme .category-navigation-link.is-active {
  color: #ffffff;
  font-weight: 700;
  background: #64748b;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.dreamtheme .is--sidebar .filter-panel-item-toggle .icon-filter-panel-item-toggle > svg {
  color: var(--g2g-token-color-neutral-text-default);
}
.dreamtheme .is--sidebar .filter-panel-item-toggle:hover .icon-filter-panel-item-toggle > svg {
  color: var(--g2g-token-color-neutral-background);
}
.dreamtheme.is-ctl-product .gallery-slider-thumbnails-item.tns-nav-active .gallery-slider-thumbnails-item-inner {
  border-radius: var(--g2g-border-radius, 4px);
  border: 1px solid var(--g2g-token-color-neutral-border);
}
.dreamtheme.is-ctl-product .gallery-slider-thumbnails-item.tns-nav-active .gallery-slider-thumbnails-item-inner::after {
  content: none;
}
.dreamtheme.is-ctl-product .gallery-slider-thumbnails-item-inner {
  border-radius: var(--g2g-border-radius, 4px);
  border: 1px solid var(--g2g-token-color-neutral-border);
}
.dreamtheme.is-ctl-product .gallery-slider-thumbnails-item-inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--g2g-token-color-neutral-background);
  opacity: 0.5;
  pointer-events: none;
}
.dreamtheme.is-ctl-product .gallery-slider-item.is-contain .gallery-slider-image {
  border-radius: var(--g2g-border-radius, 4px);
}
.dreamtheme .product-badges {
  top: 8px;
}
.dreamtheme .product-badges .badge-stock2gether {
  margin-bottom: 5px;
}
.dreamtheme .product-badges .badge.badge-discount {
  font-size: 12px;
  width: 28px;
  height: 28px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border-radius: var(--g2g-border-radius, 4px);
  float: left;
}
/*
 * PDP-Media-Icon-Grid — Icon-Sektion unter dem Kaufen-Button.
 * Markup: page/product-detail/_pdp-media-icon-grid.html.twig
 *
 * Styling wird über CSS-Custom-Properties gesteuert, die das Twig inline am
 * Wrapper setzt (DreamTheme-Regel: nur CSS-Vars inline, keine harten Styles).
 *   --g2g-pdpicon-size            Box-Größe (px)
 *   --g2g-pdpicon-border-width    Rahmenbreite (px)
 *   --g2g-pdpicon-radius          Rundung (px)
 *   --g2g-pdpicon-padding         Innenabstand der Box (px, vom Twig berechnet)
 *   --g2g-pdpicon-headline-size   Überschrift-Schriftgröße (px)
 *   --g2g-pdpicon-label-size      Label-Schriftgröße (px)
 *   --g2g-pdpicon-label-display   'flex' = Label sichtbar, 'none' = nur Icon
 */
.g2g-pdp-icon-grid-wrapper {
  margin: 1rem 0 0;
  text-align: left;
  /* Defaults, falls Wrapper-Vars fehlen (Medium/1px/kein Radius) */
  --g2g-pdpicon-size: 5.625rem;
  --g2g-pdpicon-border-width: 1px;
  --g2g-pdpicon-radius: 0;
  --g2g-pdpicon-padding: 0;
  --g2g-pdpicon-headline-size: 1rem;
  --g2g-pdpicon-label-size: 0.875rem;
  --g2g-pdpicon-label-display: flex;
  /* Container ist immer flex; die Richtung steuert die Anordnung (s.u.). */
  display: flex;
  gap: 0.5rem 1.5rem;
  /* In der Buy-Box eine eigene volle Zeile einnehmen (der Wrapper ist von der
       erzwungenen Buy-Box-Kind-Regel ausgenommen, s. _pdp-description-modern.scss). */
  flex: 0 0 100%;
}
/* Anordnung — Theme-Setting g2g-pdp-icon-layout.
   Standard: nebeneinander (Gruppen als Spalten in einer umbrechenden Reihe).
   Klasse verdoppelt (Spec-Doubling statt !important) + explizite flex-direction
   statt nur flex-flow-Shorthand, damit die Richtung eine evtl. konkurrierende
   flex-direction-Longhand-Regel sicher überstimmt. */
.g2g-pdp-icon-grid-wrapper.g2g-pdp-icon-grid-wrapper--horizontal {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
}
/* Untereinander: klassisch gestapelt. */
.g2g-pdp-icon-grid-wrapper.g2g-pdp-icon-grid-wrapper--vertical {
  flex-direction: column;
  flex-wrap: nowrap;
}
/* Eine Eigenschaftsgruppe = eine Spalte (Gruppentitel über den Icons). */
.g2g-pdp-icon-grid__group {
  display: flex;
  flex-direction: column;
}
.g2g-pdp-icon-grid__headline {
  flex-basis: 100%;
  /* Überschrift bricht in der Reihe immer auf volle Breite um */
  font-size: var(--g2g-pdpicon-headline-size);
  font-weight: 600;
  margin: 0 0 0.5rem;
}
.g2g-pdp-icon-grid__group-title {
  font-size: var(--g2g-pdpicon-headline-size);
  font-weight: 500;
  margin: 0.75rem 0 0.35rem;
  opacity: 0.85;
}
.g2g-pdp-icon-grid__headline.g2g-pdp-icon-grid__headline, .g2g-pdp-icon-grid__group-title.g2g-pdp-icon-grid__group-title {
  font-size: var(--g2g-pdpicon-headline-size);
}
.g2g-pdp-icon-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.g2g-pdp-icon-grid__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: var(--g2g-pdpicon-size);
}
.g2g-pdp-icon-grid__box {
  width: var(--g2g-pdpicon-size);
  height: var(--g2g-pdpicon-size);
  padding: var(--g2g-pdpicon-padding);
  border: var(--g2g-pdpicon-border-width) solid var(--bs-border-color, #eeeeee);
  border-radius: var(--g2g-pdpicon-radius);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.g2g-pdp-icon-grid__box img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.g2g-pdp-icon-grid__label {
  display: var(--g2g-pdpicon-label-display);
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: var(--g2g-pdpicon-label-size);
  line-height: 1.2;
  margin-top: 0.35rem;
  word-break: break-word;
}
.gcs-slider {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  isolation: isolate;
  min-height: 360px;
}
.gcs-slider__track {
  position: relative;
  width: 100%;
}
.gcs-slider__slide {
  display: none;
}
.gcs-slider__slide.is-active {
  display: block;
}
.gcs-slider--fade .gcs-slider__slide {
  display: block;
  opacity: 0;
  transition: opacity var(--gcs-transition, 400ms) ease;
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.gcs-slider--fade .gcs-slider__slide.is-active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
}
.gcs-slide__hero {
  position: relative;
  width: 100%;
  min-height: 360px;
  display: flex;
  align-items: stretch;
}
.gcs-slide__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.gcs-slide__left {
  position: relative;
  z-index: 2;
  padding: 20px var(--gcs-hero-padding-left, 32px) 20px;
  max-width: 42%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.gcs-slide__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: auto 0;
}
.gcs-slide__eyebrow {
  font-size: var(--gcs-fs-eyebrow, 10px);
  color: var(--gcs-color-eyebrow, rgba(255, 255, 255, 0.5));
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
  line-height: 1.4;
}
.gcs-slide__title {
  font-size: var(--gcs-fs-title, 28px);
  font-weight: 500;
  color: var(--gcs-color-title, #ffffff);
  line-height: 1.1;
  margin: 0;
}
.gcs-slide__desc {
  font-size: var(--gcs-fs-desc, 12px);
  color: var(--gcs-color-desc, rgba(255, 255, 255, 0.68));
  line-height: 1.6;
  margin: 0;
}
.gcs-slide__desc strong {
  color: var(--gcs-color-title, #ffffff);
}
.gcs-slide__desc a {
  color: var(--gcs-color-cta-bg, #ffffff);
}
.gcs-slide__badges {
  margin: 0;
}
.gcs-slide__badges-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.gcs-badge {
  display: inline-block;
  padding: 4px 10px;
  background: var(--gcs-color-badge-bg, rgba(255, 255, 255, 0.08));
  border: 0.5px solid var(--gcs-color-badge-border, rgba(255, 255, 255, 0.2));
  border-radius: 20px;
  font-size: var(--gcs-fs-badge, 10px);
  color: var(--gcs-color-badge-text, rgba(255, 255, 255, 0.82));
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s;
}
.gcs-badge:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}
.gcs-slide__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: flex-start;
  padding: 9px 18px;
  background: var(--gcs-color-cta-bg, #ffffff);
  color: var(--gcs-color-cta-text, #111111);
  border-radius: 8px;
  font-size: var(--gcs-fs-cta, 12px);
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.15s;
}
.gcs-slide__cta svg {
  transition: transform 0.2s;
}
.gcs-slide__cta:hover {
  opacity: 0.88;
  color: var(--gcs-color-cta-text, #111111);
  text-decoration: none;
}
.gcs-slide__cta:hover svg {
  transform: translateX(2px);
}
.gcs-slider__nav {
  display: flex;
  align-items: center;
  gap: 8px;
  position: absolute;
  bottom: 24px;
  left: var(--gcs-hero-padding-left, 32px);
  z-index: 10;
}
.gcs-nav__pill {
  display: flex;
  align-items: center;
  background: var(--gcs-color-nav-pill-bg, rgba(255, 255, 255, 0.1));
  border: 0.5px solid var(--gcs-color-nav-pill-border, rgba(255, 255, 255, 0.2));
  border-radius: 999px;
  overflow: hidden;
  height: 30px;
}
.gcs-nav__arrow {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--gcs-color-arrows, #ffffff);
  cursor: pointer;
  transition: background 0.15s;
  padding: 0;
}
.gcs-nav__arrow:hover {
  background: rgba(255, 255, 255, 0.14);
}
.gcs-nav__dots {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
}
.gcs-nav__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gcs-color-dot-inactive, rgba(255, 255, 255, 0.3));
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.25s;
}
.gcs-nav__dot.is-active {
  background: var(--gcs-color-dot-active, #ffffff);
  width: 18px;
  border-radius: 3px;
}
.gcs-nav__playpause {
  position: relative;
  width: 30px;
  height: 30px;
  background: var(--gcs-color-nav-pill-bg, rgba(255, 255, 255, 0.1));
  border: 0.5px solid var(--gcs-color-nav-pill-border, rgba(255, 255, 255, 0.2));
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.15s;
}
.gcs-nav__playpause:hover {
  background: rgba(255, 255, 255, 0.2);
}
.gcs-nav__pp-icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gcs-color-arrows, #ffffff);
}
.gcs-nav__progress-ring {
  position: absolute;
  inset: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  transform: rotate(-90deg);
  pointer-events: none;
}
.gcs-slide__panel {
  position: absolute;
  right: var(--gcs-panel-right, 20px);
  top: 50%;
  transform: translateY(-50%);
  width: var(--gcs-panel-width, 53%);
  max-width: 520px;
  background: var(--gcs-color-panel-bg, rgba(255, 255, 255, 0.07));
  border: 0.5px solid var(--gcs-color-panel-border, rgba(255, 255, 255, 0.16));
  border-radius: var(--gcs-panel-radius, 14px);
  backdrop-filter: blur(var(--gcs-blur, 20px));
  -webkit-backdrop-filter: blur(var(--gcs-blur, 20px));
  padding: var(--gcs-panel-padding, 14px);
  z-index: 2;
}
.gcs-slide__panel-label {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 8px;
}
.gcs-slide__products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gcs-cards-gap, 8px);
  align-items: stretch;
}
.gcs-product-card {
  background: var(--gcs-color-card-bg, rgba(255, 255, 255, 0.08));
  border: 0.5px solid var(--gcs-color-card-border, rgba(255, 255, 255, 0.13));
  border-radius: var(--gcs-card-radius, 10px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.gcs-product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.3);
  border-color: var(--gcs-color-card-border, rgba(255, 255, 255, 0.28));
}
.gcs-product-card__img-wrap {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  text-decoration: none;
  flex-shrink: 0;
}
.gcs-product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.9;
  transition: transform 0.25s;
}
.gcs-product-card:hover .gcs-product-card__img {
  transform: scale(1.03);
}
.gcs-product-card__img-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.06);
}
.gcs-product-card__body {
  padding: 8px 9px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  border-top: 0.5px solid rgba(255, 255, 255, 0.1);
  flex: 1;
}
.gcs-product-card__badge {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 500;
  margin-bottom: 1px;
}
.gcs-product-card__badge--new {
  background: rgba(30, 160, 100, 0.3);
  border: 0.5px solid rgba(30, 200, 120, 0.4);
  color: rgba(150, 255, 200, 0.9);
}
.gcs-product-card__badge--sale {
  background: rgba(200, 50, 50, 0.3);
  border: 0.5px solid rgba(255, 80, 80, 0.4);
  color: rgba(255, 160, 160, 0.9);
}
.gcs-product-card__name {
  font-size: var(--gcs-fs-prod-name, 11px);
  font-weight: 500;
  color: var(--gcs-color-prod-name, #ffffff);
  line-height: 1.25;
  text-decoration: none;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: 2.5em;
}
.gcs-product-card__name:hover {
  color: #ffffff;
  text-decoration: underline;
}
.gcs-product-card__desc {
  font-size: var(--gcs-fs-prod-desc, 10px);
  color: var(--gcs-color-prod-desc, rgba(255, 255, 255, 0.5));
  line-height: 1.35;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: 2.7em;
}
.gcs-product-card__rating {
  display: flex;
  align-items: center;
  gap: 3px;
  min-height: 11px;
}
.gcs-stars {
  display: flex;
  gap: 1px;
}
.gcs-star {
  fill: rgba(255, 255, 255, 0.15);
}
.gcs-star.is-filled {
  fill: var(--gcs-color-stars, #ffb400);
}
.gcs-product-card__rating-count {
  font-size: 9px;
  color: var(--gcs-color-prod-meta, rgba(255, 255, 255, 0.3));
}
.gcs-product-card__prices {
  display: flex;
  align-items: baseline;
  gap: 5px;
}
.gcs-product-card__price {
  font-size: var(--gcs-fs-prod-price, 12px);
  font-weight: 500;
  color: var(--gcs-color-prod-price, #ffffff);
}
.gcs-product-card__original-price del {
  font-size: var(--gcs-fs-prod-old, 10px);
  color: var(--gcs-color-prod-old, rgba(255, 255, 255, 0.33));
}
.gcs-product-card__manufacturer, .gcs-product-card__sku, .gcs-product-card__delivery {
  font-size: var(--gcs-fs-prod-meta, 9px);
  color: var(--gcs-color-prod-meta, rgba(255, 255, 255, 0.3));
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.gcs-product-card__cart-area {
  margin-top: auto;
  padding-top: 4px;
}
.gcs-product-card__details-btn {
  display: block;
  text-decoration: none;
}
.gcs-product-card__cart-form {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.gcs-product-card__qty {
  display: flex;
  align-items: center;
  width: 100%;
  background: var(--gcs-color-stepper-bg, rgba(255, 255, 255, 0.08));
  border: 0.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 5px;
  overflow: hidden;
}
.gcs-qty__btn {
  width: 30px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--gcs-color-stepper-text, #ffffff);
  font-size: 15px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s;
}
.gcs-qty__btn:hover {
  background: rgba(255, 255, 255, 0.12);
}
.gcs-qty__input {
  flex: 1;
  background: none;
  border: none;
  text-align: center;
  font-size: 11px;
  color: var(--gcs-color-stepper-text, #ffffff);
  padding: 0;
  -moz-appearance: textfield;
}
.gcs-qty__input::-webkit-outer-spin-button, .gcs-qty__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.gcs-product-card__cart-btn {
  width: 100%;
  padding: 6px 4px;
  background: var(--gcs-color-cart-bg, rgba(255, 255, 255, 0.12));
  border: 0.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  color: var(--gcs-color-cart-text, #ffffff);
  font-size: var(--gcs-fs-prod-cart, 10px);
  cursor: pointer;
  text-align: center;
  transition: background 0.15s;
}
.gcs-product-card__cart-btn:hover {
  background: rgba(255, 255, 255, 0.24);
}
.gcs-slider .gcs-slide__products .gcs-product-card__name, .gcs-slider .gcs-slide__products .gcs-product-card__name:hover {
  color: var(--gcs-color-prod-name, #ffffff);
}
.gcs-slider .gcs-slide__products a.gcs-product-card__cart-btn, .gcs-slider .gcs-slide__products a.gcs-product-card__cart-btn:hover {
  color: var(--gcs-color-cart-text, #ffffff);
}
@media (max-width: 1024px) {
  .gcs-slide__left {
    max-width: 44%;
    padding-left: 20px;
  }
  .gcs-slide__panel {
    right: 12px;
  }
  .gcs-slide__eyebrow {
    font-size: var(--gcs-fs-eyebrow-tablet, 10px);
  }
  .gcs-slide__title {
    font-size: var(--gcs-fs-title-tablet, 22px);
  }
  .gcs-slide__desc {
    font-size: var(--gcs-fs-desc-tablet, 12px);
  }
  .gcs-badge {
    font-size: var(--gcs-fs-badge-tablet, 10px);
  }
  .gcs-slide__cta {
    font-size: var(--gcs-fs-cta-tablet, 12px);
  }
  .gcs-product-card__name {
    font-size: var(--gcs-fs-prod-name-tablet, 11px);
  }
  .gcs-product-card__price {
    font-size: var(--gcs-fs-prod-price-tablet, 11px);
  }
  .gcs-product-card__cart-btn {
    font-size: var(--gcs-fs-prod-cart-tablet, 10px);
  }
}
@media (max-width: 768px) {
  .gcs-slide__hero {
    flex-direction: column;
    min-height: auto;
    padding-bottom: 60px;
  }
  .gcs-slide__left {
    max-width: 100%;
    padding: 20px 16px 12px;
  }
  .gcs-slide__panel {
    position: static;
    transform: none;
    width: calc(100% - 24px);
    max-width: none;
    margin: 0 12px 12px;
  }
  .gcs-slide__products {
    grid-template-columns: repeat(3, 1fr);
  }
  .gcs-slider__nav {
    margin-top: 8px;
  }
  .gcs-slide__eyebrow {
    font-size: var(--gcs-fs-eyebrow-mobile, 9px);
  }
  .gcs-slide__title {
    font-size: var(--gcs-fs-title-mobile, 20px);
  }
  .gcs-slide__desc {
    font-size: var(--gcs-fs-desc-mobile, 12px);
  }
  .gcs-badge {
    font-size: var(--gcs-fs-badge-mobile, 10px);
  }
  .gcs-slide__cta {
    font-size: var(--gcs-fs-cta-mobile, 12px);
  }
  .gcs-product-card__name {
    font-size: var(--gcs-fs-prod-name-mobile, 12px);
  }
  .gcs-product-card__price {
    font-size: var(--gcs-fs-prod-price-mobile, 13px);
  }
  .gcs-product-card__cart-btn {
    font-size: var(--gcs-fs-prod-cart-mobile, 12px);
  }
}
@media (max-width: 480px) {
  .gcs-slide__products {
    grid-template-columns: repeat(2, 1fr);
  }
  .gcs-slide__products > .gcs-product-card:nth-child(n+3) {
    display: none;
  }
}
@layer tokens-defaults {
  :root {
    --g2g-token-color-brand-primary:        #64748b;
    --g2g-token-color-brand-primary-hover:  #475569;
    /* Sprint #8 Waltraud — Dual-Token: Text-Variante für WCAG AA Kontrast.
           Default #c34e00 (~4.7:1 weiß). Brand-Kit-Generator könnte später
           automatisch eine dunklere Variante aus Brand-Primary berechnen. */
    --g2g-token-color-brand-primary-text:   #475569;
    --g2g-token-color-brand-secondary:      #1e293b;
    --g2g-token-color-status-success:       #15803d;
    --g2g-token-color-status-info:          #3b82f6;
    --g2g-token-color-status-warning:       #b45309;
    --g2g-token-color-status-error:         #dc2626;
    --g2g-token-color-action-buy:           #1e293b;
    --g2g-token-color-action-buy-hover:     #334155;
    --g2g-token-color-action-buy-active:    #0f172a;
    --g2g-token-color-stock-urgency-low-bg:          #fff4e0;
    --g2g-token-color-stock-urgency-low-text:        #b35c00;
    --g2g-token-color-stock-urgency-low-border:      #ffd49a;
    --g2g-token-color-stock-urgency-critical-bg:     #ffe6e6;
    --g2g-token-color-stock-urgency-critical-text:   #b30000;
    --g2g-token-color-stock-urgency-critical-border: #ff9999;
    --g2g-token-color-rating-star-filled:    #f59e0b;
    --g2g-token-color-rating-star-empty:     #d4d4d4;
    /* Button-Tokens (Sprint #9c.1) */
    --g2g-token-button-padding-x: 1.25rem;
    --g2g-token-button-padding-y: 0.625rem;
    --g2g-token-button-radius: var(--g2g-border-radius, 0);
    --g2g-token-button-font-weight: 600;
    --g2g-token-button-primary-bg-default: var(--g2g-token-color-brand-primary, #64748b);
    --g2g-token-button-primary-bg-hover: var(--g2g-token-color-brand-primary-hover, #475569);
    --g2g-token-button-primary-bg-focus: var(--g2g-token-color-brand-primary, #64748b);
    --g2g-token-button-primary-bg-active: #394250;
    --g2g-token-button-primary-bg-disabled: #d4d4d4;
    --g2g-token-button-primary-text-default: #ffffff;
    --g2g-token-button-primary-text-hover: #ffffff;
    --g2g-token-button-primary-text-focus: #ffffff;
    --g2g-token-button-primary-text-active: #ffffff;
    --g2g-token-button-primary-text-disabled: #888888;
    --g2g-token-button-primary-border-default: var(--g2g-token-color-brand-primary, #64748b);
    --g2g-token-button-primary-border-hover: var(--g2g-token-color-brand-primary-hover, #475569);
    --g2g-token-button-primary-border-focus: var(--g2g-token-color-brand-primary, #64748b);
    --g2g-token-button-primary-border-active: #394250;
    --g2g-token-button-primary-border-disabled: #d4d4d4;
    --g2g-token-button-secondary-bg-default: var(--g2g-token-color-brand-secondary, #585858);
    --g2g-token-button-secondary-bg-hover: #404040;
    --g2g-token-button-secondary-bg-focus: var(--g2g-token-color-brand-secondary, #585858);
    --g2g-token-button-secondary-bg-active: #303030;
    --g2g-token-button-secondary-bg-disabled: #d4d4d4;
    --g2g-token-button-secondary-text-default: #ffffff;
    --g2g-token-button-secondary-text-hover: #ffffff;
    --g2g-token-button-secondary-text-focus: #ffffff;
    --g2g-token-button-secondary-text-active: #ffffff;
    --g2g-token-button-secondary-text-disabled: #888888;
    --g2g-token-button-secondary-border-default: var(--g2g-token-color-brand-secondary, #585858);
    --g2g-token-button-secondary-border-hover: #404040;
    --g2g-token-button-secondary-border-focus: var(--g2g-token-color-brand-secondary, #585858);
    --g2g-token-button-secondary-border-active: #303030;
    --g2g-token-button-secondary-border-disabled: #d4d4d4;
    --g2g-token-button-ghost-bg-default: #ffffff00;
    --g2g-token-button-ghost-bg-hover: var(--g2g-token-color-brand-primary, #64748b);
    --g2g-token-button-ghost-bg-focus: #ffffff00;
    --g2g-token-button-ghost-bg-active: var(--g2g-token-color-brand-primary-hover, #475569);
    --g2g-token-button-ghost-bg-disabled: #ffffff00;
    --g2g-token-button-ghost-text-default: var(--g2g-token-color-brand-primary, #64748b);
    --g2g-token-button-ghost-text-hover: #ffffff;
    --g2g-token-button-ghost-text-focus: var(--g2g-token-color-brand-primary, #64748b);
    --g2g-token-button-ghost-text-active: #ffffff;
    --g2g-token-button-ghost-text-disabled: #888888;
    --g2g-token-button-ghost-border-default: var(--g2g-token-color-brand-primary, #64748b);
    --g2g-token-button-ghost-border-hover: var(--g2g-token-color-brand-primary, #64748b);
    --g2g-token-button-ghost-border-focus: var(--g2g-token-color-brand-primary, #64748b);
    --g2g-token-button-ghost-border-active: var(--g2g-token-color-brand-primary-hover, #475569);
    --g2g-token-button-ghost-border-disabled: #d4d4d4;
    --g2g-token-button-buy-bg-default: var(--g2g-token-color-brand-primary);
    --g2g-token-button-buy-bg-hover: var(--g2g-token-color-brand-primary-hover);
    --g2g-token-button-buy-bg-focus: var(--g2g-token-color-brand-primary);
    --g2g-token-button-buy-bg-active: var(--g2g-token-color-brand-primary-hover);
    --g2g-token-button-buy-bg-disabled: #d4d4d4;
    --g2g-token-button-buy-text-default: #ffffff;
    --g2g-token-button-buy-text-hover: #ffffff;
    --g2g-token-button-buy-text-focus: #ffffff;
    --g2g-token-button-buy-text-active: #ffffff;
    --g2g-token-button-buy-text-disabled: #888888;
    --g2g-token-button-buy-border-default: var(--g2g-token-color-brand-primary);
    --g2g-token-button-buy-border-hover: var(--g2g-token-color-brand-primary-hover);
    --g2g-token-button-buy-border-focus: var(--g2g-token-color-brand-primary);
    --g2g-token-button-buy-border-active: var(--g2g-token-color-brand-primary-hover);
    --g2g-token-button-buy-border-disabled: #d4d4d4;
    --g2g-token-color-neutral-background:   #ffffff;
    --g2g-token-color-neutral-surface:      #f8fafc;
    --g2g-token-color-neutral-border:       #e2e8f0;
    --g2g-token-color-neutral-text-default: #0f172a;
    --g2g-token-color-neutral-text-muted:   #64748b;
    --g2g-token-spacing-xs:                 0.25rem;
    --g2g-token-spacing-sm:                 0.5rem;
    --g2g-token-spacing-md:                 1rem;
    --g2g-token-spacing-lg:                 1.5rem;
    --g2g-token-spacing-xl:                 2rem;
    --g2g-token-spacing-2xl:                3rem;
    --g2g-token-radius-sm:                  0;
    --g2g-token-radius-md:                  0;
    --g2g-token-radius-lg:                  0;
    --g2g-token-radius-full:                0;
    --g2g-token-shadow-sm:                  none;
    --g2g-token-shadow-md:                  0 2px 8px rgba(0, 0, 0, 0.06);
    --g2g-token-shadow-lg:                  0 4px 16px rgba(0, 0, 0, 0.08);
    /* Sprint #9c.A — Form-UI + Layout */
    --g2g-token-form-input-padding-x: 1rem;
    --g2g-token-form-input-padding-y: 0.5rem;
    --g2g-token-form-input-radius: var(--g2g-token-radius-sm, 0.25rem);
    --g2g-token-form-input-font-size: 0.95rem;
    --g2g-token-form-input-bg-default: #ffffff;
    --g2g-token-form-input-bg-hover: #fafafa;
    --g2g-token-form-input-bg-focus: #ffffff;
    --g2g-token-form-input-bg-disabled: #e7e7e7;
    --g2g-token-form-input-text-default: #222222;
    --g2g-token-form-input-text-hover: #222222;
    --g2g-token-form-input-text-focus: #222222;
    --g2g-token-form-input-text-disabled: #888888;
    --g2g-token-form-input-border-default: #64748b;
    --g2g-token-form-input-border-hover: var(--g2g-token-color-brand-primary, #64748b);
    --g2g-token-form-input-border-focus: var(--g2g-token-color-brand-primary, #64748b);
    --g2g-token-form-input-border-disabled: #cccccc;
    --g2g-token-form-input-placeholder: #8e8e8e;
    --g2g-token-form-label-text: #222222;
    --g2g-token-form-focus-ring-color: var(--g2g-token-color-brand-primary, #64748b);
    --g2g-token-form-focus-ring-width: 2px;
    --g2g-token-form-feedback-success: var(--g2g-token-color-status-success, #22c55e);
    --g2g-token-form-feedback-error: var(--g2g-token-color-status-error, #dc2626);
    --g2g-token-form-feedback-warning: var(--g2g-token-color-status-warning, #f59e0b);
    --g2g-token-form-checkbox-bg-default: #ffffff;
    --g2g-token-form-checkbox-bg-checked: var(--g2g-token-color-brand-primary, #64748b);
    --g2g-token-form-checkbox-border: #cccccc;
    --g2g-token-form-checkbox-tick: #ffffff;
    --g2g-token-card-bg: #ffffff;
    --g2g-token-card-border: #e2e8f0;
    --g2g-token-card-shadow: var(--g2g-token-shadow-sm, none);
    --g2g-token-card-radius: var(--g2g-token-radius-md, 0);
    --g2g-token-card-padding-x: var(--g2g-token-spacing-lg, 1.5rem);
    --g2g-token-card-padding-y: var(--g2g-token-spacing-lg, 1.5rem);
    --g2g-token-card-header-bg: transparent;
    --g2g-token-card-header-text: #0f172a;
    --g2g-token-card-header-border: #e2e8f0;
    --g2g-token-card-product-bg: #f8fafc;
    --g2g-token-card-product-border: #e2e8f0;
    --g2g-token-card-product-shadow-default: none;
    --g2g-token-card-product-shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.08);
    --g2g-token-modal-overlay-bg: rgba(0, 0, 0, 0.5);
    --g2g-token-modal-overlay-blur: 0px;
    --g2g-token-modal-content-bg: #ffffff;
    --g2g-token-modal-content-border: #e2e8f0;
    --g2g-token-modal-content-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    --g2g-token-modal-content-radius: var(--g2g-token-radius-lg, 1rem);
    --g2g-token-modal-header-bg: #ffffff;
    --g2g-token-modal-header-text: #0f172a;
    --g2g-token-modal-header-border: #e2e8f0;
    --g2g-token-modal-padding: var(--g2g-token-spacing-lg, 1.5rem);
    --g2g-token-alert-success-bg: #dcfce7;
    --g2g-token-alert-success-text: #166534;
    --g2g-token-alert-success-border: #86efac;
    --g2g-token-alert-info-bg: #dbeafe;
    --g2g-token-alert-info-text: #1e40af;
    --g2g-token-alert-info-border: #93c5fd;
    --g2g-token-alert-warning-bg: #fef3c7;
    --g2g-token-alert-warning-text: #92400e;
    --g2g-token-alert-warning-border: #fcd34d;
    --g2g-token-alert-error-bg: #fee2e2;
    --g2g-token-alert-error-text: #991b1b;
    --g2g-token-alert-error-border: #fca5a5;
    --g2g-token-table-bg: transparent;
    --g2g-token-table-text: #0f172a;
    --g2g-token-table-border: #e2e8f0;
    --g2g-token-table-header-bg: #f8fafc;
    --g2g-token-table-header-text: #0f172a;
    --g2g-token-table-row-hover-bg: rgba(0, 0, 0, 0.04);
    --g2g-token-table-row-stripe-bg: rgba(0, 0, 0, 0.02);
    --g2g-token-table-cell-padding: var(--g2g-token-spacing-sm, 0.5rem);
    --g2g-token-header-topbar-bg: #1e293b;
    --g2g-token-header-topbar-text: #cbd5e1;
    --g2g-token-header-topbar-link-hover: var(--g2g-token-color-brand-primary, #ffffff);
    --g2g-token-header-main-bg: #ffffff;
    --g2g-token-header-main-text: #1e293b;
    --g2g-token-header-main-border: #e2e8f0;
    --g2g-token-header-main-height: 70px;
    --g2g-token-header-mobile-bg: #ffffff;
    --g2g-token-header-mobile-text: #222222;
    --g2g-token-header-mobile-icon: #222222;
    --g2g-token-header-navi-link-default: #1e293b;
    --g2g-token-header-navi-link-hover: var(--g2g-token-color-brand-primary, #64748b);
    --g2g-token-header-navi-link-active: var(--g2g-token-color-brand-primary, #64748b);
    --g2g-token-header-navi-link-bg-hover: #f1f5f9;
    --g2g-token-header-flyout-bg: #ffffff;
    --g2g-token-header-flyout-text: #222222;
    --g2g-token-header-flyout-heading: var(--g2g-token-color-brand-primary, #64748b);
    --g2g-token-header-flyout-shadow: var(--g2g-token-shadow-md, 0 4px 6px rgba(0, 0, 0, 0.1));
    --g2g-token-header-search-bg: #ffffff;
    --g2g-token-header-search-border: #cbd5e1;
    --g2g-token-header-search-border-focus: var(--g2g-token-color-brand-primary, #64748b);
    --g2g-token-header-search-text: #222222;
    --g2g-token-footer-bg: #1e293b;
    --g2g-token-footer-text: #94a3b8;
    --g2g-token-footer-link-default: #cbd5e1;
    --g2g-token-footer-link-hover: var(--g2g-token-color-brand-primary, #ffffff);
    --g2g-token-footer-heading: var(--g2g-token-color-brand-primary, #ffffff);
    --g2g-token-footer-border: #334155;
    --g2g-token-footer-newsletter-bg: #0f172a;
    --g2g-token-footer-newsletter-text: #ffffff;
    --g2g-token-footer-newsletter-button-bg: var(--g2g-token-color-brand-primary, #64748b);
    --g2g-token-footer-newsletter-button-text: #ffffff;
    --g2g-token-footer-social-icon: #94a3b8;
    --g2g-token-footer-social-icon-hover: var(--g2g-token-color-brand-primary, #ffffff);
    --g2g-token-footer-payment-icon-bg: #ffffff;
    --g2g-token-footer-country-bg: #0f172a;
    --g2g-token-footer-country-text: #ffffff;
    --g2g-token-footer-app-banner-bg: #1f2937;
    --g2g-token-footer-app-banner-text: #ffffff;
    --g2g-token-footer-app-banner-button: var(--g2g-token-color-brand-primary, #64748b);
    /* Sprint #9c.B — Pages + Features */
    --g2g-token-listing-filter-bg: #ffffff;
    --g2g-token-listing-filter-border: #e2e8f0;
    --g2g-token-listing-filter-label: #0f172a;
    --g2g-token-listing-filter-active-bg: var(--g2g-token-color-brand-primary, #64748b);
    --g2g-token-listing-filter-active-text: #ffffff;
    --g2g-token-listing-filter-badge-bg: var(--g2g-token-color-brand-primary, #64748b);
    --g2g-token-listing-filter-badge-text: #ffffff;
    --g2g-token-listing-pagination-bg: transparent;
    --g2g-token-listing-pagination-text: #0f172a;
    --g2g-token-listing-pagination-hover-bg: #f8fafc;
    --g2g-token-listing-pagination-active-bg: var(--g2g-token-color-brand-primary, #64748b);
    --g2g-token-listing-pagination-active-text: #ffffff;
    --g2g-token-listing-pagination-border: #e2e8f0;
    --g2g-token-listing-sort-bg: #ffffff;
    --g2g-token-listing-sort-border: #cccccc;
    --g2g-token-listing-sort-text: #222222;
    --g2g-token-listing-sidebar-bg: transparent;
    --g2g-token-listing-sidebar-border: #e2e8f0;
    --g2g-token-listing-sidebar-heading: #0f172a;
    --g2g-token-listing-sidebar-item-text: #475569;
    --g2g-token-listing-sidebar-item-active: var(--g2g-token-color-brand-primary, #64748b);
    --g2g-token-listing-empty-state-bg: #f8fafc;
    --g2g-token-listing-empty-state-text: #64748b;
    --g2g-token-listing-results-count-text: #64748b;
    --g2g-token-listing-breadcrumb-text: #64748b;
    --g2g-token-pdp-gallery-bg: #ffffff;
    --g2g-token-pdp-gallery-thumb-border: #e2e8f0;
    --g2g-token-pdp-gallery-thumb-active: var(--g2g-token-color-brand-primary, #64748b);
    --g2g-token-pdp-gallery-indicator: var(--g2g-token-color-brand-primary, #64748b);
    --g2g-token-pdp-gallery-zoom-overlay: rgba(0, 0, 0, 0.7);
    --g2g-token-pdp-price-default: #0f172a;
    --g2g-token-pdp-price-old: #94a3b8;
    --g2g-token-pdp-price-discount-bg: #dc2626;
    --g2g-token-pdp-price-discount-text: #ffffff;
    --g2g-token-pdp-price-tax-info: #94a3b8;
    --g2g-token-pdp-price-savings: var(--g2g-token-color-status-success, #22c55e);
    --g2g-token-pdp-buy-box-bg: #ffffff;
    --g2g-token-pdp-buy-box-border: #e2e8f0;
    --g2g-token-pdp-buy-box-padding: var(--g2g-token-spacing-lg, 1.5rem);
    --g2g-token-pdp-qty-bg: #ffffff;
    --g2g-token-pdp-qty-border: #cccccc;
    --g2g-token-pdp-qty-button-bg: #f8fafc;
    --g2g-token-pdp-qty-button-text: #0f172a;
    --g2g-token-pdp-qty-button-hover-bg: #e2e8f0;
    --g2g-token-pdp-usp-bg: transparent;
    --g2g-token-pdp-usp-icon: var(--g2g-token-color-brand-primary, #64748b);
    --g2g-token-pdp-usp-text: #475569;
    --g2g-token-pdp-usp-border: #e2e8f0;
    --g2g-token-pdp-tab-bg: transparent;
    --g2g-token-pdp-tab-text: #475569;
    --g2g-token-pdp-tab-active-text: #0f172a;
    --g2g-token-pdp-tab-active-border: var(--g2g-token-color-brand-primary, #64748b);
    --g2g-token-pdp-tab-content-bg: #ffffff;
    --g2g-token-pdp-tab-content-border: #e2e8f0;
    --g2g-token-pdp-review-bg: #f8fafc;
    --g2g-token-pdp-review-border: #e2e8f0;
    --g2g-token-pdp-review-author: #0f172a;
    --g2g-token-pdp-review-date: #94a3b8;
    --g2g-token-pdp-configurator-bg: #ffffff;
    --g2g-token-pdp-configurator-border: #cccccc;
    --g2g-token-pdp-configurator-active-bg: var(--g2g-token-color-brand-primary, #64748b);
    --g2g-token-pdp-configurator-active-text: #ffffff;
    --g2g-token-pdp-wishlist-icon-default: #94a3b8;
    --g2g-token-pdp-wishlist-icon-active: var(--g2g-token-color-status-error, #dc2626);
    --g2g-token-pdp-stock-info-default: var(--g2g-token-color-status-success, #22c55e);
    --g2g-token-pdp-stock-info-low: var(--g2g-token-color-status-warning, #f59e0b);
    --g2g-token-cro-fsb-bg: #fff8ef;
    --g2g-token-cro-fsb-border: #f5d9b3;
    --g2g-token-cro-fsb-text: #5a3a14;
    --g2g-token-cro-fsb-progress: var(--g2g-token-color-brand-primary, #64748b);
    --g2g-token-cro-fsb-reached-bg: #dcfce7;
    --g2g-token-cro-fsb-reached-border: #86efac;
    --g2g-token-cro-fsb-reached-text: #166534;
    --g2g-token-cro-sticky-buy-bg: #ffffff;
    --g2g-token-cro-sticky-buy-border: #e2e8f0;
    --g2g-token-cro-sticky-buy-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    --g2g-token-cro-delivery-bg: #fff8ef;
    --g2g-token-cro-delivery-border: #f5d9b3;
    --g2g-token-cro-delivery-text: #5a3a14;
    --g2g-token-cro-delivery-accent: var(--g2g-token-color-brand-primary, #64748b);
    --g2g-token-cro-trust-bg: #f8fafc;
    --g2g-token-cro-trust-icon: var(--g2g-token-color-status-success, #22c55e);
    --g2g-token-cro-trust-text: #475569;
    --g2g-token-cro-trust-border: #e2e8f0;
    --g2g-token-cro-sticky-atc-bg: #ffffff;
    --g2g-token-cro-sticky-atc-shadow: 0 -2px 8px rgba(0, 0, 0, 0.08);
    --g2g-token-cro-badge-new-bg: var(--g2g-token-color-status-success, #22c55e);
    --g2g-token-cro-badge-new-text: #ffffff;
    --g2g-token-cro-badge-sale-bg: var(--g2g-token-color-status-error, #dc2626);
    --g2g-token-cro-badge-sale-text: #ffffff;
    --g2g-token-cro-badge-bestseller-bg: var(--g2g-token-color-status-warning, #f59e0b);
    --g2g-token-cro-badge-bestseller-text: #ffffff;
    --g2g-token-checkout-step-bg-inactive: #f8fafc;
    --g2g-token-checkout-step-bg-active: var(--g2g-token-color-brand-primary, #64748b);
    --g2g-token-checkout-step-bg-completed: var(--g2g-token-color-status-success, #22c55e);
    --g2g-token-checkout-step-text-inactive: #94a3b8;
    --g2g-token-checkout-step-text-active: #ffffff;
    --g2g-token-checkout-step-text-completed: #ffffff;
    --g2g-token-checkout-step-border: #e2e8f0;
    --g2g-token-checkout-step-connector-default: #e2e8f0;
    --g2g-token-checkout-step-connector-active: var(--g2g-token-color-brand-primary, #64748b);
    --g2g-token-checkout-address-bg: #ffffff;
    --g2g-token-checkout-address-border: #e2e8f0;
    --g2g-token-checkout-address-selected-bg: #fff8ef;
    --g2g-token-checkout-address-selected-border: var(--g2g-token-color-brand-primary, #64748b);
    --g2g-token-checkout-payment-bg: #ffffff;
    --g2g-token-checkout-payment-border: #e2e8f0;
    --g2g-token-checkout-payment-selected-bg: #fff8ef;
    --g2g-token-checkout-payment-selected-border: var(--g2g-token-color-brand-primary, #64748b);
    --g2g-token-checkout-summary-bg: #f8fafc;
    --g2g-token-checkout-summary-border: #e2e8f0;
    --g2g-token-checkout-summary-divider: #e2e8f0;
    --g2g-token-checkout-summary-total-bg: #ffffff;
    --g2g-token-checkout-summary-total-text: #0f172a;
    --g2g-token-checkout-confirm-card-title-bg: #ffffff;
    --g2g-token-checkout-confirm-card-title-text: #0f172a;
    --g2g-token-checkout-confirm-accent: var(--g2g-token-color-brand-primary, #64748b);
    --g2g-token-cart-drawer-bg: #ffffff;
    --g2g-token-cart-drawer-border: #e2e8f0;
    --g2g-token-cart-drawer-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
    --g2g-token-cart-drawer-item-bg: #ffffff;
    --g2g-token-cart-drawer-item-divider: #e2e8f0;
    --g2g-token-cart-drawer-item-image-bg: #f8fafc;
    --g2g-token-cart-drawer-item-title: #0f172a;
    --g2g-token-cart-drawer-item-price: var(--g2g-token-color-brand-primary, #64748b);
    --g2g-token-cart-drawer-item-meta: #64748b;
    --g2g-token-cart-drawer-footer-bg: #f8fafc;
    --g2g-token-cart-drawer-footer-border: #e2e8f0;
    --g2g-token-cart-drawer-total-text: #0f172a;
    --g2g-token-cart-drawer-total-amount: var(--g2g-token-color-brand-primary, #64748b);
    --g2g-token-cart-drawer-empty-bg: #f8fafc;
    --g2g-token-cart-drawer-empty-text: #64748b;
    /* Sprint #9c.C */
    --g2g-token-flexsearch-bg: #ffffff;
    --g2g-token-flexsearch-border: #e2e8f0;
    --g2g-token-flexsearch-shadow: var(--g2g-token-shadow-md, 0 4px 6px rgba(0, 0, 0, 0.1));
    --g2g-token-flexsearch-radius: var(--g2g-token-radius-md, 0.5rem);
    --g2g-token-flexsearch-item-bg: #ffffff;
    --g2g-token-flexsearch-item-bg-hover: #f8fafc;
    --g2g-token-flexsearch-item-text: #0f172a;
    --g2g-token-flexsearch-item-meta: #64748b;
    --g2g-token-flexsearch-highlight-bg: var(--g2g-token-color-brand-primary, #64748b);
    --g2g-token-flexsearch-highlight-text: #ffffff;
    --g2g-token-flexsearch-empty-bg: #f8fafc;
    --g2g-token-flexsearch-empty-text: #64748b;
    --g2g-token-chat-fab-bg: var(--g2g-token-color-brand-primary, #64748b);
    --g2g-token-chat-fab-bg-hover: var(--g2g-token-color-brand-primary-hover, #475569);
    --g2g-token-chat-fab-icon: #ffffff;
    --g2g-token-chat-fab-shadow: var(--g2g-token-shadow-lg, 0 10px 15px rgba(0, 0, 0, 0.1));
    --g2g-token-chat-greeting-bg: #ffffff;
    --g2g-token-chat-greeting-text: #0f172a;
    --g2g-token-chat-greeting-border: #e2e8f0;
    --g2g-token-chat-greeting-shadow: var(--g2g-token-shadow-md, 0 4px 6px rgba(0, 0, 0, 0.1));
    --g2g-token-chat-panel-bg: #ffffff;
    --g2g-token-chat-panel-border: #e2e8f0;
    --g2g-token-typo-font-body: "Manrope", system-ui, -apple-system, sans-serif;
    --g2g-token-typo-font-headings: "Manrope", system-ui, -apple-system, sans-serif;
    --g2g-token-typo-font-size-body: 1rem;
    --g2g-token-typo-font-size-small: 0.875rem;
    --g2g-token-typo-font-size-h1: 2.25rem;
    --g2g-token-typo-font-size-h2: 1.875rem;
    --g2g-token-typo-font-size-h3: 1.5rem;
    --g2g-token-typo-font-size-h4: 1.25rem;
    --g2g-token-typo-font-size-h5: 1.125rem;
    --g2g-token-typo-font-size-h6: 1rem;
    --g2g-token-typo-weight-light: 300;
    --g2g-token-typo-weight-normal: 400;
    --g2g-token-typo-weight-bold: 700;
    --g2g-token-typo-line-height-body: 1.5;
    --g2g-token-typo-line-height-heading: 1.2;
    /* Sprint #8 Waltraud — Link-Color zieht von brand-primary-TEXT (WCAG AA).
       Alle Links rendern jetzt mit accessible Kontrast (#c34e00 statt #ec5f00).
       Brand-Button-Backgrounds bleiben unverändert beim Original-Orange. */
    --g2g-token-typo-link-color: var(--g2g-token-color-brand-primary-text, #64748b);
    --g2g-token-typo-link-color-hover: var(--g2g-token-color-brand-primary-hover, #475569);
    --g2g-token-typo-text-default: var(--g2g-token-color-neutral-text-default, #0f172a);
    --g2g-token-typo-text-muted: var(--g2g-token-color-neutral-text-muted, #64748b);
    /* Sprint #9d ALL-IN */
    --g2g-token-social-facebook: #3b5998;
    --g2g-token-social-twitter: #1da1f2;
    --g2g-token-social-linkedin: #0e76a8;
    --g2g-token-social-tiktok: #fe2c55;
    --g2g-token-social-whatsapp: #25d366;
    --g2g-token-social-whatsapp-tick: #53bdeb;
    --g2g-token-social-telegram: #1ab7ea;
    --g2g-token-social-instagram: #c8232c;
    --g2g-token-social-pinterest: #af0606;
    --g2g-token-social-youtube: #9b0012;
    --g2g-token-social-discord: #505de6;
    --g2g-token-social-skype: #026466;
    --g2g-token-color-status-success-dark: #1a6e36;
    --g2g-token-color-status-success-darker: #1a4e2a;
    --g2g-token-color-status-warning-dark: #daa031;
    --g2g-token-color-status-error-dark: #990026;
    --g2g-token-color-status-error-darker: #9b0012;
    --g2g-token-color-status-error-bright: #c8232c;
    --g2g-token-color-detail-headline: #2b3136;
    --g2g-token-color-detail-bg-cream: #fff8ef;
    --g2g-token-color-detail-cream-border: #f5d9b3;
    --g2g-token-color-detail-cream-text: #5a3a14;
    --g2g-token-color-detail-success-bg: #e6f7ec;
    --g2g-token-color-detail-success-border: #a8d8b9;
    --g2g-token-color-detail-success-bg-2: #c9e6cf;
    --g2g-token-color-detail-success-soft: #f6fbf7;
    --g2g-token-color-detail-chat-bg: #111b21;
    --g2g-token-color-detail-mono-light: #cbcbdb;
  }
}
body.g2g-token-mode-granular {
  --g2g-token-button-radius: 0;
  --g2g-token-flexsearch-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --g2g-token-flexsearch-radius: 0.5rem;
  --g2g-token-flexsearch-highlight-bg: #64748b;
  --g2g-token-chat-fab-bg: #64748b;
  --g2g-token-chat-fab-bg-hover: #475569;
  --g2g-token-chat-fab-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  --g2g-token-chat-greeting-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --g2g-token-typo-link-color: #64748b;
  --g2g-token-typo-link-color-hover: #475569;
  --g2g-token-typo-text-default: #0f172a;
  --g2g-token-typo-text-muted: #64748b;
  --g2g-token-button-primary-bg-default: #64748b;
  --g2g-token-button-primary-bg-hover: #475569;
  --g2g-token-button-primary-bg-focus: #64748b;
  --g2g-token-button-primary-border-default: #64748b;
  --g2g-token-button-primary-border-hover: #475569;
  --g2g-token-button-primary-border-focus: #64748b;
  --g2g-token-button-secondary-bg-default: #585858;
  --g2g-token-button-secondary-bg-focus: #585858;
  --g2g-token-button-secondary-border-default: #585858;
  --g2g-token-button-secondary-border-focus: #585858;
  --g2g-token-button-ghost-bg-hover: #64748b;
  --g2g-token-button-ghost-bg-active: #475569;
  --g2g-token-button-ghost-text-default: #64748b;
  --g2g-token-button-ghost-text-focus: #64748b;
  --g2g-token-button-ghost-border-default: #64748b;
  --g2g-token-button-ghost-border-hover: #64748b;
  --g2g-token-button-ghost-border-focus: #64748b;
  --g2g-token-button-ghost-border-active: #475569;
  --g2g-token-button-buy-bg-default: #6fb960;
  --g2g-token-button-buy-bg-hover: #008000;
  --g2g-token-button-buy-bg-focus: #6fb960;
  --g2g-token-button-buy-bg-active: #258a35;
  --g2g-token-button-buy-border-default: #6fb960;
  --g2g-token-button-buy-border-hover: #008000;
  --g2g-token-button-buy-border-focus: #6fb960;
  --g2g-token-button-buy-border-active: #258a35;
  --g2g-token-form-input-radius: 0.25rem;
  --g2g-token-form-input-border-hover: #64748b;
  --g2g-token-form-input-border-focus: #64748b;
  --g2g-token-form-focus-ring-color: #64748b;
  --g2g-token-form-feedback-success: #22c55e;
  --g2g-token-form-feedback-error: #dc2626;
  --g2g-token-form-feedback-warning: #f59e0b;
  --g2g-token-form-checkbox-bg-checked: #64748b;
  --g2g-token-card-shadow: none;
  --g2g-token-card-radius: 0;
  --g2g-token-card-padding-x: 1.5rem;
  --g2g-token-card-padding-y: 1.5rem;
  --g2g-token-modal-content-radius: 1rem;
  --g2g-token-modal-padding: 1.5rem;
  --g2g-token-table-cell-padding: 0.5rem;
  --g2g-token-header-topbar-link-hover: #ffffff;
  --g2g-token-header-navi-link-hover: #64748b;
  --g2g-token-header-navi-link-active: #64748b;
  --g2g-token-header-flyout-heading: #64748b;
  --g2g-token-header-flyout-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --g2g-token-header-search-border-focus: #64748b;
  --g2g-token-footer-link-hover: #ffffff;
  --g2g-token-footer-newsletter-button-bg: #64748b;
  --g2g-token-footer-app-banner-button: #64748b;
  --g2g-token-listing-filter-active-bg: #64748b;
  --g2g-token-listing-filter-badge-bg: #64748b;
  --g2g-token-listing-pagination-active-bg: #64748b;
  --g2g-token-listing-sidebar-item-active: #64748b;
  --g2g-token-pdp-gallery-thumb-active: #64748b;
  --g2g-token-pdp-gallery-indicator: #64748b;
  --g2g-token-pdp-price-savings: #22c55e;
  --g2g-token-pdp-buy-box-padding: 1.5rem;
  --g2g-token-pdp-usp-icon: #64748b;
  --g2g-token-pdp-tab-active-border: #64748b;
  --g2g-token-pdp-configurator-active-bg: #64748b;
  --g2g-token-pdp-wishlist-icon-active: #dc2626;
  --g2g-token-pdp-stock-info-default: #22c55e;
  --g2g-token-pdp-stock-info-low: #f59e0b;
  --g2g-token-cro-fsb-progress: #64748b;
  --g2g-token-cro-delivery-accent: #64748b;
  --g2g-token-cro-trust-icon: #22c55e;
  --g2g-token-cro-badge-new-bg: #22c55e;
  --g2g-token-cro-badge-sale-bg: #dc2626;
  --g2g-token-cro-badge-bestseller-bg: #f59e0b;
  --g2g-token-checkout-step-bg-active: #64748b;
  --g2g-token-checkout-step-bg-completed: #22c55e;
  --g2g-token-checkout-step-connector-active: #64748b;
  --g2g-token-checkout-address-selected-border: #64748b;
  --g2g-token-checkout-payment-selected-border: #64748b;
  --g2g-token-checkout-confirm-accent: #64748b;
  --g2g-token-cart-drawer-item-price: #64748b;
  --g2g-token-cart-drawer-total-amount: #64748b;
}
body.dreamtheme.dreamtheme {
  display: block;
  background-color: #ffffff;
  color: var(--g2g-token-typo-text-default, #1e293b);
  font-family: var(--g2g-token-typo-font-body, "Inter", system-ui, sans-serif);
}
.dreamtheme.is-ctl-product .product-detail-properties-table.g2g-hide-on-mobile {
  display: block;
}
@media (min-width: 576px) {
  .dreamtheme.is-ctl-product .product-detail-properties-table.g2g-hide-on-mobile {
    display: none;
  }
}
.dreamtheme.is-ctl-manufacturer .manufacturer-detail-logo {
  display: none;
}
.great-suggested-products .great-product-cross-selling-tabs-mobile .product-detail-tabs-content.is-visible.great-cross-selling-tabs-content {
  display: block;
}
.great-suggested-products .great-product-cross-selling-tabs-mobile .product-detail-tabs-content.is-visible {
  display: block;
}
.great-suggested-products .great-product-cross-selling-tabs-mobile .nav-tabs {
  border-bottom: none;
  text-align: center;
  display: inline-block;
}
.great-suggested-products .great-product-cross-selling-tabs-mobile .nav-tabs .nav-item {
  display: inline-block;
  margin-top: 2px;
}
.great-suggested-products .great-product-cross-selling-tabs-mobile .nav-tabs .nav-item .nav-link {
  width: auto;
}
.great-suggested-products .great-product-cross-selling-tabs-mobile .nav-tabs .nav-item .product-detail-tab-navigation-icon {
  display: none;
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .great-suggested-products .great-product-cross-selling-tabs-tablet .product-detail-tabs-content {
    display: block;
  }
  .great-suggested-products .great-product-cross-selling-tabs-tablet .product-cross-selling-tab-navigation {
    display: none;
  }
  .great-suggested-products .great-product-cross-selling-tabs-tablet .tab-pane {
    margin-top: 1.5rem;
    display: block;
    opacity: 1;
  }
  .great-suggested-products .great-product-cross-selling-tabs-tablet .tab-pane .cms-element-title {
    display: block;
    font-weight: bold;
  }
}
@media (min-width: 992px) {
  .great-suggested-products .great-product-cross-selling-tabs-desktop .product-detail-tabs-content {
    display: block;
  }
  .great-suggested-products .great-product-cross-selling-tabs-desktop .product-cross-selling-tab-navigation {
    display: none;
  }
  .great-suggested-products .great-product-cross-selling-tabs-desktop .tab-pane {
    margin-top: 1.5rem;
    display: block;
    opacity: 1;
  }
  .great-suggested-products .great-product-cross-selling-tabs-desktop .tab-pane .cms-element-title {
    display: block;
    font-weight: bold;
  }
}
.great-suggested-products {
  position: relative;
  z-index: 1;
}
.great-suggested-products .product-slider {
  position: relative;
  z-index: 1;
}
.great-suggested-products .product-slider-item .product-box {
  position: relative;
  z-index: 1;
}
.great-suggested-products .product-box .product-image-wrapper > a, .great-suggested-products .product-box a.product-name {
  position: relative;
  z-index: 2;
}
body.dreamtheme .cross-selling-content .great-suggested-products .cms-element-title {
  display: block;
  font-weight: bold;
}
.great-impulse-product {
  margin: 1.5rem 0;
  max-width: 100%;
}
.great-impulse-product__headline {
  margin-bottom: 0.75rem;
}
.great-impulse-product__headline-text {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
}
.great-impulse-product__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(220px, 280px));
  justify-content: start;
}
@media (max-width: 479px) {
  .great-impulse-product__grid {
    grid-template-columns: 1fr;
  }
}
.great-impulse-product__slider {
  position: relative;
  padding-top: 2.75rem;
}
.great-impulse-product__slider-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 0.5rem;
}
.great-impulse-product__slider-track::-webkit-scrollbar {
  display: none;
}
.great-impulse-product__slider-item {
  flex: 0 0 260px;
  max-width: 260px;
  min-width: 0;
  scroll-snap-align: start;
}
@media (max-width: 479px) {
  .great-impulse-product__slider-item {
    flex: 0 0 85%;
    max-width: 85%;
  }
}
.great-impulse-product__slider-nav {
  position: absolute;
  top: 0.25rem;
  right: 0.25rem;
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}
.great-impulse-product__slider-btn {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: background 0.15s, border-color 0.15s, opacity 0.15s;
}
.great-impulse-product__slider-btn:hover {
  background: #f8f9fa;
  border-color: rgba(0, 0, 0, 0.3);
}
.great-impulse-product__slider-btn:disabled {
  opacity: 0.35;
  cursor: default;
}
.great-impulse-product__slider-btn svg, .great-impulse-product__slider-btn .icon {
  width: 14px;
  height: 14px;
  color: #1c1c1c;
  display: block;
}
.great-impulse-product__slider-btn:hover svg, .great-impulse-product__slider-btn:hover .icon {
  color: #000;
}
.great-impulse-product--offcanvas {
  margin: 1rem 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.great-impulse-product--offcanvas .great-impulse-product__headline-text {
  font-size: 1rem;
}
.great-impulse-product--offcanvas .great-impulse-product__grid {
  grid-template-columns: minmax(0, 1fr);
}
.great-impulse-product--offcanvas .great-impulse-product__slider .product-slider-item {
  flex: 0 0 100%;
  max-width: 100%;
}
.great-impulse-product--offcanvas .great-impulse-product__item-wrapper .product-image-wrapper {
  height: 110px;
}
.great-impulse-product--cart, .great-impulse-product--confirm {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.great-impulse-product__item-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
}
.great-impulse-product__item-wrapper > .card, .great-impulse-product__item-wrapper > .product-box {
  flex: 1 1 auto;
  min-width: 0;
}
.great-impulse-product__item-wrapper .product-image-wrapper {
  padding-top: 0;
  height: 160px;
}
.great-impulse-product__item-wrapper .product-image-wrapper img, .great-impulse-product__item-wrapper .product-image-wrapper .product-image {
  max-height: 100%;
  width: auto;
  object-fit: contain;
}
.great-impulse-product .product-action, .great-impulse-product .product-buy-button, .great-impulse-product form[data-add-to-cart-plugin], .great-impulse-product form[data-add-to-cart] {
  display: none;
}
.great-impulse-product__buy {
  margin-top: 0.5rem;
  width: 100%;
}
.great-impulse-product__buy.is-loading {
  opacity: 0.6;
  pointer-events: none;
}
.is-ctl-product .content-main .cms-sections .cms-block-product-description-reviews .cms-element-product-description-reviews .product-description-reviews-tab-navigation .g2g-show-description-on-mobile.nav-item {
  margin-right: 0;
  margin-bottom: 20px;
}
@media (min-width: 576px) {
  .is-ctl-product .content-main .cms-sections .cms-block-product-description-reviews .cms-element-product-description-reviews .product-description-reviews-tab-navigation .g2g-show-description-on-mobile.nav-item {
    margin-bottom: 0;
  }
}
.is-ctl-product .content-main .cms-sections .cms-block-product-description-reviews .cms-element-product-description-reviews .product-description-reviews-tab-navigation .g2g-show-description-on-mobile.nav-item .g2g-non-clickable-on-mobile {
  pointer-events: none;
  /* Deaktiviert die Klickbarkeit */
  cursor: default;
  /* Standard-Cursor anzeigen */
}
@media (min-width: 576px) {
  .is-ctl-product .content-main .cms-sections .cms-block-product-description-reviews .cms-element-product-description-reviews .product-description-reviews-tab-navigation .g2g-show-description-on-mobile.nav-item .g2g-non-clickable-on-mobile {
    pointer-events: auto;
    /* Klickbarkeit wieder aktivieren */
    cursor: pointer;
    /* Hand-Cursor anzeigen */
  }
}
.is-ctl-product .content-main .cms-sections .cms-block-product-description-reviews .cms-element-product-description-reviews .product-description-reviews-tab-navigation .g2g-show-description-on-mobile.nav-item .nav-link.g2g-non-clickable-on-mobile {
  padding: 0;
  border-bottom: 1px solid #dedede;
}
@media (min-width: 576px) {
  .is-ctl-product .content-main .cms-sections .cms-block-product-description-reviews .cms-element-product-description-reviews .product-description-reviews-tab-navigation .g2g-show-description-on-mobile.nav-item .nav-link.g2g-non-clickable-on-mobile {
    padding: 10px;
    border-bottom: none;
  }
}
.is-ctl-product .content-main .cms-sections .cms-block-product-description-reviews .cms-element-product-description-reviews .product-description-reviews-tab-navigation .g2g-show-description-on-mobile.nav-item .nav-link.g2g-non-clickable-on-mobile.active {
  background: none;
  border-bottom: 1px solid #dedede;
  padding: 0;
}
@media (min-width: 576px) {
  .is-ctl-product .content-main .cms-sections .cms-block-product-description-reviews .cms-element-product-description-reviews .product-description-reviews-tab-navigation .g2g-show-description-on-mobile.nav-item .nav-link.g2g-non-clickable-on-mobile.active {
    border-bottom: 3px solid #000;
    background: #eaeaea;
    padding: 10px;
  }
}
.is-ctl-product .content-main .cms-sections .cms-block-product-description-reviews .cms-element-product-description-reviews .product-description-reviews-tab-navigation .g2g-show-description-on-mobile.nav-item .nav-link.g2g-non-clickable-on-mobile .g2g-hide-on-mobile {
  display: none;
}
@media (min-width: 576px) {
  .is-ctl-product .content-main .cms-sections .cms-block-product-description-reviews .cms-element-product-description-reviews .product-description-reviews-tab-navigation .g2g-show-description-on-mobile.nav-item .nav-link.g2g-non-clickable-on-mobile .g2g-hide-on-mobile {
    display: block;
  }
}
.is-ctl-product .content-main .cms-sections .cms-block-product-description-reviews .cms-element-product-description-reviews .product-description-reviews-tab-navigation .g2g-show-description-on-mobile.nav-item .nav-link.g2g-non-clickable-on-mobile .g2g-hide-always {
  display: none;
}
.is-ctl-product .content-main .cms-sections .cms-block-product-description-reviews .cms-element-product-description-reviews .product-description-reviews-tab-navigation .g2g-show-description-on-mobile.nav-item .nav-link.g2g-non-clickable-on-mobile .g2g-hide-on-desktop {
  display: block;
}
@media (min-width: 576px) {
  .is-ctl-product .content-main .cms-sections .cms-block-product-description-reviews .cms-element-product-description-reviews .product-description-reviews-tab-navigation .g2g-show-description-on-mobile.nav-item .nav-link.g2g-non-clickable-on-mobile .g2g-hide-on-desktop {
    display: none;
  }
}
.is-ctl-product .content-main .cms-sections .cms-block-product-description-reviews .cms-element-product-description-reviews .product-description-reviews-tab-navigation .g2g-show-description-on-mobile.nav-item .nav-link.g2g-non-clickable-on-mobile .product-detail-tab-preview {
  margin-top: 0;
}
@media only screen and (max-width: 768px) {
  .is-ctl-product .content-main .cms-sections .cms-block-product-description-reviews .cms-element-product-description-reviews .product-description-reviews-tab-navigation .product-detail-tab-navigation-list > div {
    display: none;
  }
}
.is-ctl-product .content-main .cms-sections .cms-block-product-description-reviews .cms-element-product-description-reviews .product-description-reviews-tab-navigation .product-detail-tab-navigation-list .offcanvas-header {
  display: none;
}
.is-manufacturer .manufacturer-navigation-panel {
  background: var(--g2g-card-bg, var(--bs-body-bg));
  border-color: var(--g2g-border-color, var(--bs-border-color));
  border-radius: var(--g2g-border-radius, 0.5rem);
}
.is-manufacturer .manufacturer-box {
  background: var(--g2g-card-bg, var(--bs-body-bg));
  border-color: var(--g2g-border-color, var(--bs-border-color));
  border-radius: var(--g2g-border-radius, 0.5rem);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.is-manufacturer .manufacturer-box:hover {
  box-shadow: var(--g2g-card-hover-shadow, 0 4px 12px rgba(0, 0, 0, 0.1));
}
.is-manufacturer .manufacturer-box .brand-box-title {
  color: var(--g2g-heading-color, var(--bs-body-color));
}
.is-manufacturer .manufacturer-group h2, .is-manufacturer .manufacturer-group .h2 {
  color: var(--g2g-heading-color, var(--bs-body-color));
}
.is-manufacturer .cbax-manufacturer-breadcrumb {
  padding-left: 0;
  padding-right: 0;
}
body.dreamtheme.dreamtheme .is-manufacturer .manufacturer-box {
  background: var(--g2g-glass-card-bg, var(--g2g-card-bg, var(--bs-body-bg)));
}
body.dreamtheme.dreamtheme .is-manufacturer .manufacturer-navigation-panel {
  background: var(--g2g-glass-card-bg, var(--g2g-card-bg, var(--bs-body-bg)));
}
body.dreamtheme.dreamtheme .cbax-filter-panel.is--sidebar {
  background: transparent;
  border: 0;
  padding: 0;
  box-shadow: none;
}
body.dreamtheme.dreamtheme .is-manufacturer .g2g-glass-sidebar-panel {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  overflow: visible;
  box-shadow: none;
}
body.dreamtheme.dreamtheme .is-manufacturer .g2g-glass-sidebar-panel > .cms-block-category-navigation {
  background: var(--g2g-glass-card-bg, var(--g2g-card-bg, #fff));
  border: 1px solid var(--g2g-glass-border-color, var(--g2g-border-color, #e5e7eb));
  border-radius: 16px;
  padding: 12px 10px 14px;
}
body.dreamtheme.dreamtheme .is-manufacturer .g2g-glass-sidebar-panel > .cms-block.cms-block-cbax-manufacturers-filter-button {
  background: var(--g2g-glass-card-bg, var(--g2g-card-bg, #fff));
  border: 1px solid var(--g2g-glass-border-color, var(--g2g-border-color, #e5e7eb));
  border-radius: 16px;
  padding: 12px 10px 14px;
  margin-top: 20px;
}
body.dreamtheme.dreamtheme .g2g-manufacturer-sidebar {
  padding: 0 0 0.25rem;
}
body.dreamtheme.dreamtheme .g2g-manufacturer-sidebar__head {
  margin-bottom: 0.75rem;
}
body.dreamtheme.dreamtheme .g2g-manufacturer-sidebar__title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.68px;
  text-transform: uppercase;
  color: #334155;
}
body.dreamtheme.dreamtheme .g2g-manufacturer-sidebar__title::before {
  content: "// ";
}
body.dreamtheme.dreamtheme a.g2g-manufacturer-sidebar__all {
  display: block;
  text-align: center;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 0.85rem;
  color: #fff;
  background: var(--g2g-token-color-brand-primary);
  border-radius: var(--g2g-border-radius, 0.375rem);
  text-decoration: none;
  transition: background 0.2s ease, opacity 0.2s ease;
}
body.dreamtheme.dreamtheme a.g2g-manufacturer-sidebar__all:hover {
  opacity: 0.85;
  color: #fff;
  text-decoration: none;
}
body.dreamtheme.dreamtheme .g2g-manufacturer-sidebar__az {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--g2g-border-color, var(--bs-border-color));
}
body.dreamtheme.dreamtheme a.g2g-manufacturer-sidebar__az-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.6rem;
  height: 1.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--g2g-token-color-brand-primary);
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.15s ease, color 0.15s ease;
}
body.dreamtheme.dreamtheme a.g2g-manufacturer-sidebar__az-link:hover {
  background: var(--g2g-token-color-brand-primary);
  color: #fff;
  text-decoration: none;
}
body.dreamtheme.dreamtheme span.g2g-manufacturer-sidebar__az-link.is--disabled {
  color: var(--bs-secondary-color, #adb5bd);
  pointer-events: none;
  opacity: 0.5;
}
body.dreamtheme.dreamtheme .g2g-manufacturer-sidebar__group {
  margin-bottom: 0.5rem;
}
body.dreamtheme.dreamtheme .g2g-manufacturer-sidebar__letter {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--g2g-token-color-brand-primary);
  padding-bottom: 0.25rem;
  margin-bottom: 0.25rem;
  border-bottom: 1px solid var(--g2g-border-color, var(--bs-border-color));
}
body.dreamtheme.dreamtheme a.g2g-manufacturer-sidebar__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.35rem 0.5rem;
  margin: 0;
  color: var(--bs-body-color);
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.15s ease;
}
body.dreamtheme.dreamtheme a.g2g-manufacturer-sidebar__item:hover {
  background: rgba(0, 0, 0, 0.04);
  color: var(--g2g-token-color-brand-primary);
  text-decoration: none;
}
body.dreamtheme.dreamtheme a.g2g-manufacturer-sidebar__item.is--active {
  background: var(--g2g-token-color-brand-primary);
  color: #fff;
}
body.dreamtheme.dreamtheme a.g2g-manufacturer-sidebar__item.is--active .g2g-manufacturer-sidebar__count {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}
body.dreamtheme.dreamtheme .g2g-manufacturer-sidebar__name {
  font-size: 0.85rem;
  line-height: 1.3;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
body.dreamtheme.dreamtheme .g2g-manufacturer-sidebar__count {
  flex-shrink: 0;
  margin-left: 0.5rem;
  min-width: 1.5rem;
  height: 1.25rem;
  padding: 0 0.4rem;
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.25rem;
  text-align: center;
  color: var(--g2g-token-color-brand-primary);
  background: color-mix(in srgb, var(--g2g-token-color-brand-primary) 12%, #fff);
  border-radius: 10px;
}
:root {
  --g2g-border-radius: 0 !important;
  --g2g-border-radius-global: 0 !important;
  --g2g-token-card-radius: 0;
  --g2g-token-button-radius: 0;
  --g2g-token-radius-sm: 0;
  --g2g-token-radius-md: 0;
  --g2g-token-radius-lg: 0;
  --bs-border-radius: 0;
  --bs-border-radius-sm: 0;
  --bs-border-radius-lg: 0;
  --bs-border-radius-xl: 0;
  --bs-border-radius-xxl: 0;
  --bs-border-radius-pill: 0;
}
.header-wishlist {
  display: none;
}
.header-actions-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}
.account-menu-btn .header-actions-btn-icon ~ * {
  font-size: 0;
}
.account-menu-btn::after {
  content: "Konto";
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #1e293b;
}
.header-cart-btn .header-cart-badge {
  font-size: 0;
}
.header-cart-btn::after {
  content: "Warenkorb";
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #1e293b;
}
body.dreamtheme .top-bar {
  background: #1e293b;
  color: #cbd5e1;
}
body.dreamtheme .top-bar a {
  color: #cbd5e1;
}
body.dreamtheme .top-bar a:hover {
  color: #ffffff;
}
body.dreamtheme .main-navigation-link {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
  font-size: 0.8125rem;
}
body.dreamtheme .header-search .header-search-input, body.dreamtheme .header-search .form-control {
  border-radius: 0;
  border: 1px solid #cbd5e1;
}
body.dreamtheme .header-search .header-search-input:focus, body.dreamtheme .header-search .form-control:focus {
  border-color: #64748b;
  box-shadow: none;
}
body.dreamtheme .header-search .header-search-btn, body.dreamtheme .header-search .btn {
  border-radius: 0;
}
body.dreamtheme .footer-main {
  background: #1e293b;
  color: #94a3b8;
}
body.dreamtheme .footer-main a {
  color: #cbd5e1;
}
body.dreamtheme .footer-main a:hover {
  color: #ffffff;
}
body.dreamtheme .footer-main .footer-headline {
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  font-size: 0.8125rem;
}
body.dreamtheme .footer-bottom {
  background: #0f172a;
  color: #64748b;
  border-top: 1px solid #334155;
}
body.dreamtheme .footer-bottom a {
  color: #94a3b8;
}
body.dreamtheme .footer-bottom a:hover {
  color: #ffffff;
}
body.dreamtheme .footer-newsletter {
  background: #0f172a;
  color: #ffffff;
}
body.dreamtheme .footer-newsletter .footer-newsletter-headline {
  color: #ffffff;
}
body.dreamtheme .footer-newsletter .form-control {
  border-radius: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #475569;
  color: #ffffff;
}
body.dreamtheme .footer-newsletter .form-control::placeholder {
  color: #94a3b8;
}
body.dreamtheme .footer-newsletter .btn {
  border-radius: 0;
  background: #64748b;
  border-color: #64748b;
  color: #ffffff;
}
body.dreamtheme .footer-newsletter .btn:hover {
  background: #475569;
  border-color: #475569;
}
body.dreamtheme .btn {
  border-radius: 0;
}
body.dreamtheme .form-control, body.dreamtheme .form-select, body.dreamtheme .custom-select {
  border-radius: 0;
}
body.dreamtheme img {
  border-radius: 0;
}
body.dreamtheme .cms-section .cms-block {
  border-radius: 0;
}
body.dreamtheme .alert {
  border-radius: 0;
}
body.dreamtheme .dropdown-menu {
  border-radius: 0;
}
body.dreamtheme .modal-content {
  border-radius: 0;
}
body.dreamtheme .g2g-header .header-row.g2g-service-bar {
  background: #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
  color: #475569;
}
body.dreamtheme .g2g-header .header-row.g2g-service-bar a {
  color: #475569;
}
body.dreamtheme .g2g-top-promotion-bar, body.dreamtheme .banner-bar, body.dreamtheme .header-minimal {
  background: #1e293b;
  color: #cbd5e1;
}
body.dreamtheme .g2g-top-promotion-bar a, body.dreamtheme .banner-bar a, body.dreamtheme .header-minimal a {
  color: #ffffff;
}
body.dreamtheme .g2g-top-promotion-bar .close, body.dreamtheme .g2g-top-promotion-bar .btn-close, body.dreamtheme .banner-bar .close, body.dreamtheme .banner-bar .btn-close, body.dreamtheme .header-minimal .close, body.dreamtheme .header-minimal .btn-close {
  color: #cbd5e1;
}
body.dreamtheme.dreamtheme .header-search-btn, body.dreamtheme.dreamtheme .g2g-search-btn, body.dreamtheme.dreamtheme .header-search .btn {
  background: #1e293b;
  border-color: #1e293b;
  color: #ffffff;
  border-radius: 0;
  box-shadow: none;
}
body.dreamtheme.dreamtheme .header-search-btn:hover, body.dreamtheme.dreamtheme .g2g-search-btn:hover, body.dreamtheme.dreamtheme .header-search .btn:hover {
  background: #334155;
  border-color: #334155;
}
body.dreamtheme.dreamtheme .header-search .g2g-search-category-select, body.dreamtheme.dreamtheme .header-search .g2g-cat-select-wrapper {
  border-radius: 0;
  border-color: #cbd5e1;
}
body.dreamtheme.dreamtheme .header-search-input, body.dreamtheme.dreamtheme .header-search .form-control {
  border-radius: 0;
  border-color: #cbd5e1;
}
body.dreamtheme.dreamtheme .header-search-input:focus, body.dreamtheme.dreamtheme .header-search .form-control:focus {
  border-color: #64748b;
  box-shadow: none;
}
body.dreamtheme .g2g-footer-payment-icons img, body.dreamtheme .g2g-footer-shipping-icons img, body.dreamtheme .footer-main .payment-icon, body.dreamtheme .footer-main .shipping-icon {
  border-radius: 0;
}
body.dreamtheme.dreamtheme .cookie-permission-container .btn, body.dreamtheme.dreamtheme .cookie-configuration-update .btn {
  border-radius: 0;
}
body.dreamtheme .pagination .page-link {
  border-radius: 0;
}
body.dreamtheme .offcanvas {
  border-radius: 0;
}
body.dreamtheme .cookie-permission-container .btn {
  border-radius: 0;
}
.scherenprofi-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: #1a1a1a;
  background-blend-mode: luminosity;
}
.scherenprofi-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}
.scherenprofi-hero .cms-section-default-padding {
  position: relative;
  z-index: 2;
}
.scherenprofi-hero .cms-block {
  width: 100%;
  position: relative;
  z-index: 2;
}
.scherenprofi-hero-inner {
  max-width: 600px;
  padding: 80px 40px;
}
.scherenprofi-hero-sub {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.scherenprofi-hero-sub::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background: #64748b;
  margin-right: 12px;
  vertical-align: middle;
}
body.dreamtheme.dreamtheme .scherenprofi-hero .scherenprofi-hero-heading {
  color: #ffffff;
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 0.9;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
body.dreamtheme .scherenprofi-hero .scherenprofi-accent {
  color: #64748b;
}
body.dreamtheme .scherenprofi-hero .scherenprofi-hero-body {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.scherenprofi-hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
body.dreamtheme.dreamtheme .scherenprofi-hero .scherenprofi-btn-primary.scherenprofi-btn-primary {
  background: #64748b;
  color: #ffffff;
  border: 1px solid #64748b;
  padding: 1.25rem 2.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s ease;
}
body.dreamtheme.dreamtheme .scherenprofi-hero .scherenprofi-btn-primary.scherenprofi-btn-primary:hover {
  background: #475569;
  border-color: #475569;
  color: #ffffff;
  text-decoration: none;
}
body.dreamtheme.dreamtheme .scherenprofi-hero .scherenprofi-btn-outline.scherenprofi-btn-outline {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1.25rem 2.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s ease;
}
body.dreamtheme.dreamtheme .scherenprofi-hero .scherenprofi-btn-outline.scherenprofi-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
  text-decoration: none;
}
.scherenprofi-usp-bar {
  border-bottom: 1px solid #e2e8f0;
}
.scherenprofi-usp-bar .cms-block {
  max-width: 1320px;
  margin: 0 auto;
}
.scherenprofi-usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 2rem 1.5rem;
}
@media (max-width: 991px) {
  .scherenprofi-usp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .scherenprofi-usp-grid {
    grid-template-columns: 1fr;
  }
}
.scherenprofi-usp-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.scherenprofi-usp-icon {
  font-size: 1.5rem;
  color: #64748b;
  flex-shrink: 0;
  line-height: 1;
}
.scherenprofi-usp-text {
  display: flex;
  flex-direction: column;
}
.scherenprofi-usp-text strong {
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.125rem;
}
.scherenprofi-usp-text span {
  font-size: 0.8125rem;
  color: #64748b;
  font-weight: 400;
}
.scherenprofi-section-header {
  max-width: 700px;
}
.scherenprofi-section-sub {
  color: #64748b;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.scherenprofi-section-heading {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
  line-height: 1.15;
}
.scherenprofi-heading-xl {
  font-size: clamp(2rem, 4vw, 3rem);
  font-style: italic;
}
.scherenprofi-section-body {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
}
.scherenprofi-topseller {
  padding-bottom: 40px;
}
.scherenprofi-sortiment-intro {
  border-top: 1px solid #e2e8f0;
}
.scherenprofi-cat-showcase .cms-block-container-row.row {
  align-items: stretch;
  min-height: 450px;
}
.scherenprofi-cat-showcase .col-md-6:first-child {
  padding: 0;
}
.scherenprofi-cat-showcase .cms-element-image {
  height: 100%;
  min-height: 400px;
  background: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scherenprofi-cat-showcase .cms-element-image::after {
  content: "Bild folgt";
  color: #94a3b8;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}
.scherenprofi-cat-showcase .cms-element-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.scherenprofi-cat-showcase .cms-element-text {
  display: flex;
  align-items: center;
  height: 100%;
}
.scherenprofi-cat-reverse .cms-block-container-row.row {
  flex-direction: row-reverse;
}
.scherenprofi-cat-text {
  padding: 3rem;
}
.scherenprofi-cat-num {
  color: #64748b;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.scherenprofi-cat-heading {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
.scherenprofi-cat-body {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.scherenprofi-cat-link {
  color: #0f172a;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid #0f172a;
  padding-bottom: 2px;
  transition: color 0.2s ease;
}
.scherenprofi-cat-link:hover {
  color: #64748b;
  border-color: #64748b;
  text-decoration: none;
}
.scherenprofi-schleifservice .cms-block-container-row.row {
  align-items: stretch;
  min-height: 500px;
  flex-direction: row-reverse;
}
.scherenprofi-schleifservice .col-md-6:first-child {
  padding: 0;
  background: #334155;
}
.scherenprofi-schleifservice .cms-element-text {
  display: flex;
  align-items: center;
  height: 100%;
}
.scherenprofi-schleif-text {
  padding: 4rem 3rem;
}
.scherenprofi-schleif-sub {
  color: #64748b;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.scherenprofi-schleif-heading {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.scherenprofi-schleif-body {
  color: #94a3b8;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
body.is-ctl-navigation .cms-page .breadcrumb-title {
  display: none;
}
