@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
*/
/*
 * Variables, Mixins, Functions
 * ---------------------------- */
/*
Bootstrap variables
==================================================
Contains all overrides of bootstrap default variables.

https://getbootstrap.com/docs/5.2/customize/sass/#variable-defaults
*/
/*
Skin variables
==================================================
Contains the imports to all variables that the Shopware skin uses.
*/
/*
Bootstrap variables
==================================================
Contains all overrides of bootstrap default variables.

https://getbootstrap.com/docs/5.2/customize/sass/#variable-defaults
*/
/*
Custom variables
==================================================
Contains custom non bootstrap variables.
*/
/*
Custom variables
==================================================
Contains custom non bootstrap variables.
*/
/* mixin for multiline */
/*
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.

Example:
@if feature('FEATURE_NEXT_1234') {
    // ...
}
*/
/*
 * Skin variables
 * ---------- */
/*
 * Vendors
 * ------- */
/*
Bootstrap
==================================================
Import of bootstrap vendor.

https://getbootstrap.com/docs/5.2/getting-started/introduction
*/
/*!
   * Bootstrap  v5.2.2 (https://getbootstrap.com/)
   * Copyright 2011-2022 The Bootstrap Authors
   * Copyright 2011-2022 Twitter, Inc.
   * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
   */
:root {
  --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: #00305d;
  --bs-secondary: #f39200;
  --bs-success: #3cc261;
  --bs-info: #26b6cf;
  --bs-warning: #ffbd5d;
  --bs-danger: #e52427;
  --bs-light: #f9f9f9;
  --bs-dark: #4a545b;
  --bs-primary-rgb: 0, 48, 93;
  --bs-secondary-rgb: 243, 146, 0;
  --bs-success-rgb: 60, 194, 97;
  --bs-info-rgb: 38, 182, 207;
  --bs-warning-rgb: 255, 189, 93;
  --bs-danger-rgb: 229, 36, 39;
  --bs-light-rgb: 249, 249, 249;
  --bs-dark-rgb: 74, 84, 91;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 55, 55, 55;
  --bs-body-bg-rgb: 255, 255, 255;
  --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: Inter, sans-serif;
  --bs-body-font-size: 0.875rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #373737;
  --bs-body-bg: #fff;
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-color: #bcc1c7;
  --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  --bs-border-radius: 2px;
  --bs-border-radius-sm: 0;
  --bs-border-radius-lg: 0;
  --bs-border-radius-xl: 1rem;
  --bs-border-radius-2xl: 2rem;
  --bs-border-radius-pill: 50rem;
  --bs-link-color: #00305d;
  --bs-link-hover-color: #00264a;
  --bs-code-color: #d63384;
  --bs-highlight-bg: #fff3cd;
}
*, *::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: 1px solid;
  opacity: 0.25;
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #333;
}
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: 1rem;
}
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;
  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: var(--bs-link-color);
  text-decoration: none;
}
a:hover {
  color: var(--bs-link-hover-color);
  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: #798490;
  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;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}
@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend + * {
  clear: left;
}
::-webkit-datetime-edit-fields-wrapper, ::-webkit-datetime-edit-text, ::-webkit-datetime-edit-minute, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-year-field {
  padding: 0;
}
::-webkit-inner-spin-button {
  height: auto;
}
[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}
/* 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.09375rem;
  font-weight: 300;
}
.display-1 {
  font-size: calc(1.625rem + 4.5vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-1 {
    font-size: 5rem;
  }
}
.display-2 {
  font-size: calc(1.575rem + 3.9vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-2 {
    font-size: 4.5rem;
  }
}
.display-3 {
  font-size: calc(1.525rem + 3.3vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-3 {
    font-size: 4rem;
  }
}
.display-4 {
  font-size: calc(1.475rem + 2.7vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-4 {
    font-size: 3.5rem;
  }
}
.display-5 {
  font-size: calc(1.425rem + 2.1vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-5 {
    font-size: 3rem;
  }
}
.display-6 {
  font-size: calc(1.375rem + 1.5vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-6 {
    font-size: 2.5rem;
  }
}
.list-unstyled {
  padding-left: 0;
  list-style: none;
}
.list-inline {
  padding-left: 0;
  list-style: none;
}
.list-inline-item {
  display: inline-block;
}
.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}
.initialism {
  font-size: 0.875em;
  text-transform: uppercase;
}
.blockquote {
  margin-bottom: 1rem;
  font-size: 1.09375rem;
}
.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: #fff;
  border: 1px solid var(--bs-border-color);
  border-radius: 2px;
  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: #798490;
}
.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;
}
.row, .account-content, .is-act-cartpage .checkout .checkout-container, .is-act-checkoutregisterpage .checkout .checkout-container, .is-act-confirmpage .checkout .checkout-container, .is-ctl-accountorder .checkout .checkout-container, .is-act-finishpage .checkout .checkout-container {
  --bs-gutter-x: 40px;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-.5 * var(--bs-gutter-x));
  margin-left: calc(-.5 * var(--bs-gutter-x));
}
.row > *, .account-content > *, .is-act-cartpage .checkout .checkout-container > *, .is-act-checkoutregisterpage .checkout .checkout-container > *, .is-act-confirmpage .checkout .checkout-container > *, .is-ctl-accountorder .checkout .checkout-container > *, .is-act-finishpage .checkout .checkout-container > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
}
.col, .is-act-confirmpage .checkout .checkout-aside, .is-ctl-accountorder .checkout .checkout-aside, .is-act-finishpage .checkout .checkout-aside {
  flex: 1 0 0%;
}
.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}
.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}
.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}
.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.3333333333%;
}
.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.6666666667%;
}
.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.3333333333%;
  }
  .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.6666666667%;
  }
  .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, .swag-paypal-checkout-finish-pui-instructions-content .instruction-title {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6, .is-act-confirmpage .checkout .checkout-additional, .is-ctl-accountorder .checkout .checkout-additional {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7, .is-act-finishpage .checkout .checkout-additional, .is-act-finishpage .checkout .checkout-aside, .swag-paypal-checkout-finish-pui-instructions-content .instruction-description {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5, .is-act-finishpage .checkout .checkout-aside {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .g-sm-0, .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0, .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1, .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-sm-1, .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-sm-2, .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2, .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3, .gx-sm-3 {
    --bs-gutter-x: 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.3333333333%;
  }
  .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.6666666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4, .is-act-checkoutregisterpage .checkout .checkout-aside {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5, .is-act-cartpage .checkout .checkout-aside {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6, .is-act-confirmpage .checkout .checkout-aside, .is-ctl-accountorder .checkout .checkout-aside, .is-act-finishpage .checkout .checkout-additional, .is-act-finishpage .checkout .checkout-aside {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6, .is-act-confirmpage .checkout .checkout-aside, .is-ctl-accountorder .checkout .checkout-aside, .is-act-finishpage .checkout .checkout-aside {
    margin-left: 50%;
  }
  .offset-md-7, .is-act-cartpage .checkout .checkout-aside {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  .g-md-0, .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0, .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1, .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-md-1, .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-md-2, .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-2, .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-3, .gx-md-3 {
    --bs-gutter-x: 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.3333333333%;
  }
  .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.6666666667%;
  }
  .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, .account-content .account-content-aside {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4, .is-act-cartpage .checkout .checkout-aside, .is-act-confirmpage .checkout .checkout-additional, .is-ctl-accountorder .checkout .checkout-additional, .is-act-confirmpage .checkout .checkout-aside, .is-ctl-accountorder .checkout .checkout-aside, .is-act-finishpage .checkout .checkout-additional, .is-act-finishpage .checkout .checkout-aside {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8, .is-act-cartpage .checkout .checkout-main, .is-act-checkoutregisterpage .checkout .checkout-main, .is-act-confirmpage .checkout .checkout-main, .is-ctl-accountorder .checkout .checkout-main, .is-act-finishpage .checkout .checkout-main {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9, .account-content .account-content-main {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0, .is-act-cartpage .checkout .checkout-aside {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2, .is-act-confirmpage .checkout .checkout-main, .is-ctl-accountorder .checkout .checkout-main, .is-act-confirmpage .checkout .checkout-additional, .is-ctl-accountorder .checkout .checkout-additional, .is-act-finishpage .checkout .checkout-main, .is-act-finishpage .checkout .checkout-additional {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .g-lg-0, .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0, .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1, .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-lg-1, .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-lg-2, .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-2, .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-3, .gx-lg-3 {
    --bs-gutter-x: 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.3333333333%;
  }
  .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.6666666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2, .account-content .account-content-aside {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4, .is-act-cartpage .checkout .checkout-aside {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9, .account-content .account-content-main {
    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, .account-content .account-content-main {
    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.3333333333%;
  }
  .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.6666666667%;
  }
  .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: var(--bs-body-color);
  --bs-table-bg: transparent;
  --bs-table-border-color: var(--bs-border-color);
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: var(--bs-body-color);
  --bs-table-striped-bg: #f9f9f9;
  --bs-table-active-color: var(--bs-body-color);
  --bs-table-active-bg: rgba(0, 0, 0, 0.1);
  --bs-table-hover-color: var(--bs-body-color);
  --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
  width: 100%;
  margin-bottom: 1rem;
  color: var(--bs-table-color);
  vertical-align: top;
  border-color: var(--bs-table-border-color);
}
.table > :not(caption) > * > * {
  padding: 0.5rem 0.5rem;
  background-color: var(--bs-table-bg);
  border-bottom-width: 1px;
  box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}
.table > tbody {
  vertical-align: inherit;
}
.table > thead {
  vertical-align: bottom;
}
.table-group-divider {
  border-top: 2px solid currentcolor;
}
.caption-top {
  caption-side: top;
}
.table-sm > :not(caption) > * > * {
  padding: 0.25rem 0.25rem;
}
.table-bordered > :not(caption) > * {
  border-width: 1px 0;
}
.table-bordered > :not(caption) > * > * {
  border-width: 0 1px;
}
.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-accent-bg: var(--bs-table-striped-bg);
  color: var(--bs-table-striped-color);
}
.table-striped-columns > :not(caption) > tr > :nth-child(even) {
  --bs-table-accent-bg: var(--bs-table-striped-bg);
  color: var(--bs-table-striped-color);
}
.table-active {
  --bs-table-accent-bg: var(--bs-table-active-bg);
  color: var(--bs-table-active-color);
}
.table-hover > tbody > tr:hover > * {
  --bs-table-accent-bg: var(--bs-table-hover-bg);
  color: var(--bs-table-hover-color);
}
.table-primary {
  --bs-table-color: #000;
  --bs-table-bg: #ccd6df;
  --bs-table-border-color: #b8c1c9;
  --bs-table-striped-bg: #c2cbd4;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #b8c1c9;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #bdc6ce;
  --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: #fde9cc;
  --bs-table-border-color: #e4d2b8;
  --bs-table-striped-bg: #f0ddc2;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #e4d2b8;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #ead8bd;
  --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: #d8f3df;
  --bs-table-border-color: #c2dbc9;
  --bs-table-striped-bg: #cde7d4;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #c2dbc9;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #c8e1ce;
  --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: #d4f0f5;
  --bs-table-border-color: #bfd8dd;
  --bs-table-striped-bg: #c9e4e9;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #bfd8dd;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #c4dee3;
  --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: #fff2df;
  --bs-table-border-color: #e6dac9;
  --bs-table-striped-bg: #f2e6d4;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #e6dac9;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #ece0ce;
  --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: #fad3d4;
  --bs-table-border-color: #e1bebf;
  --bs-table-striped-bg: #eec8c9;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #e1bebf;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e7c3c4;
  --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: #e0e0e0;
  --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: #5c656b;
  --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.5625rem + 1px);
  padding-bottom: calc(0.5625rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}
.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1rem;
}
.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.75rem;
}
.form-text {
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #798490;
}
.form-control {
  display: block;
  width: 100%;
  padding: 0.5625rem 0.5625rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #373737;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #bcc1c7;
  appearance: none;
  border-radius: 2px;
  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: #373737;
  background-color: #fff;
  border-color: #00305d;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(0, 48, 93, 0.25);
}
.form-control::-webkit-date-and-time-value {
  height: 1.5em;
}
.form-control::placeholder {
  color: #c3c3c3;
  opacity: 1;
}
.form-control:disabled {
  background-color: #eee;
  opacity: 1;
}
.form-control::file-selector-button {
  padding: 0.5625rem 0.5625rem;
  margin: -0.5625rem -0.5625rem;
  margin-inline-end: 0.5625rem;
  color: #373737;
  background-color: #eee;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  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: #e2e2e2;
}
.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.5625rem 0;
  margin-bottom: 0;
  line-height: 1.5;
  color: #373737;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 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 + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  border-radius: 0;
}
.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 + 2px);
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border-radius: 0;
}
.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 + 1.125rem + 2px);
}
textarea.form-control-sm {
  min-height: calc(1.5em + 0.5rem + 2px);
}
textarea.form-control-lg {
  min-height: calc(1.5em + 1rem + 2px);
}
.form-control-color {
  width: 3rem;
  height: calc(1.5em + 1.125rem + 2px);
  padding: 0.5625rem;
}
.form-control-color:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control-color::-moz-color-swatch {
  border: 0 !important;
  border-radius: 2px;
}
.form-control-color::-webkit-color-swatch {
  border-radius: 2px;
}
.form-control-color.form-control-sm {
  height: calc(1.5em + 0.5rem + 2px);
}
.form-control-color.form-control-lg {
  height: calc(1.5em + 1rem + 2px);
}
.form-select {
  display: block;
  width: 100%;
  padding: 0.5625rem 1.6875rem 0.5625rem 0.5625rem;
  -moz-padding-start: calc(0.5625rem - 3px);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #373737;
  background-color: #fff;
  background-image: 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");
  background-repeat: no-repeat;
  background-position: right 0.5625rem center;
  background-size: 16px 12px;
  border: 1px solid #bcc1c7;
  border-radius: 2px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-select {
    transition: none;
  }
}
.form-select:focus {
  border-color: #00305d;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(0, 48, 93, 0.25);
}
.form-select[multiple], .form-select[size]:not([size="1"]) {
  padding-right: 0.5625rem;
  background-image: none;
}
.form-select:disabled {
  background-color: #eee;
}
.form-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #373737;
}
.form-select-sm {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.75rem;
  border-radius: 0;
}
.form-select-lg {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1rem;
  border-radius: 0;
}
.form-check {
  display: block;
  min-height: 1.3125rem;
  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 {
  width: 1rem;
  height: 1rem;
  margin-top: 0.25rem;
  vertical-align: top;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid #bcc1c7;
  appearance: none;
  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: #00305d;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(0, 48, 93, 0.25);
}
.form-check-input:checked {
  background-color: #00305d;
  border-color: #00305d;
}
.form-check-input:checked[type="checkbox"] {
  background-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"] {
  background-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: #00305d;
  border-color: #00305d;
  background-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 {
  width: 2em;
  margin-left: -2.5em;
  background-image: 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");
  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 {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2300305d'/%3e%3c/svg%3e");
}
.form-switch .form-check-input:checked {
  background-position: right center;
  background-image: 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;
}
.form-range {
  width: 100%;
  height: 1.5rem;
  padding: 0;
  background-color: transparent;
  appearance: none;
}
.form-range:focus {
  outline: 0;
}
.form-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(0, 48, 93, 0.25);
}
.form-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(0, 48, 93, 0.25);
}
.form-range::-moz-focus-outer {
  border: 0;
}
.form-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #00305d;
  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;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-webkit-slider-thumb {
    transition: none;
  }
}
.form-range::-webkit-slider-thumb:active {
  background-color: #b3c1ce;
}
.form-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #bcc1c7;
  border-color: transparent;
  border-radius: 1rem;
}
.form-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #00305d;
  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;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-moz-range-thumb {
    transition: none;
  }
}
.form-range::-moz-range-thumb:active {
  background-color: #b3c1ce;
}
.form-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #bcc1c7;
  border-color: transparent;
  border-radius: 1rem;
}
.form-range:disabled {
  pointer-events: none;
}
.form-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}
.form-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}
.form-floating {
  position: relative;
}
.form-floating > .form-control, .form-floating > .form-control-plaintext, .form-floating > .form-select {
  height: calc(3.5rem + 2px);
  line-height: 1.25;
}
.form-floating > label {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1rem 0.5625rem;
  overflow: hidden;
  text-align: start;
  text-overflow: ellipsis;
  white-space: nowrap;
  pointer-events: none;
  border: 1px solid transparent;
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-floating > label {
    transition: none;
  }
}
.form-floating > .form-control, .form-floating > .form-control-plaintext {
  padding: 1rem 0.5625rem;
}
.form-floating > .form-control::placeholder, .form-floating > .form-control-plaintext::placeholder {
  color: transparent;
}
.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown), .form-floating > .form-control-plaintext:focus, .form-floating > .form-control-plaintext:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:-webkit-autofill, .form-floating > .form-control-plaintext:-webkit-autofill {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-select {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:focus ~ label, .form-floating > .form-control:not(:placeholder-shown) ~ label, .form-floating > .form-control-plaintext ~ label, .form-floating > .form-select ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:-webkit-autofill ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control-plaintext ~ label {
  border-width: 1px 0;
}
.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.5625rem 0.5625rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #373737;
  text-align: center;
  white-space: nowrap;
  background-color: #eee;
  border: 1px solid #bcc1c7;
  border-radius: 2px;
}
.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: 1rem;
  border-radius: 0;
}
.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.75rem;
  border-radius: 0;
}
.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: -1px;
  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: #3cc261;
}
.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.75rem;
  color: #000;
  background-color: rgba(60, 194, 97, 0.9);
  border-radius: 2px;
}
.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: #3cc261;
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: #3cc261;
  box-shadow: 0 0 0 0.25rem rgba(60, 194, 97, 0.25);
}
.was-validated .form-select:valid, .form-select.is-valid {
  border-color: #3cc261;
}
.was-validated .form-select:valid:focus, .form-select.is-valid:focus {
  border-color: #3cc261;
  box-shadow: 0 0 0 0.25rem rgba(60, 194, 97, 0.25);
}
.was-validated .form-check-input:valid, .form-check-input.is-valid {
  border-color: #3cc261;
}
.was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
  background-color: #3cc261;
}
.was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
  box-shadow: 0 0 0 0.25rem rgba(60, 194, 97, 0.25);
}
.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #3cc261;
}
.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: #e52427;
}
.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.75rem;
  color: #fff;
  background-color: rgba(229, 36, 39, 0.9);
  border-radius: 2px;
}
.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: #e52427;
}
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: #e52427;
  box-shadow: 0 0 0 0.25rem rgba(229, 36, 39, 0.25);
}
.was-validated .form-select:invalid, .form-select.is-invalid {
  border-color: #e52427;
}
.was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {
  border-color: #e52427;
  box-shadow: 0 0 0 0.25rem rgba(229, 36, 39, 0.25);
}
.was-validated .form-check-input:invalid, .form-check-input.is-invalid {
  border-color: #e52427;
}
.was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
  background-color: #e52427;
}
.was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
  box-shadow: 0 0 0 0.25rem rgba(229, 36, 39, 0.25);
}
.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #e52427;
}
.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: 0.875rem;
  --bs-btn-font-weight: 600;
  --bs-btn-line-height: 34px;
  --bs-btn-color: #373737;
  --bs-btn-bg: transparent;
  --bs-btn-border-width: 1px;
  --bs-btn-border-color: transparent;
  --bs-btn-border-radius: 2px;
  --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;
  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: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, .address-editor-select:not(.collapsed), .address-editor-edit:not(.collapsed), .address-editor-create:not(.collapsed) {
  --bs-btn-color: #fff;
  --bs-btn-bg: #00305d;
  --bs-btn-border-color: #00305d;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #00294f;
  --bs-btn-hover-border-color: #00264a;
  --bs-btn-focus-shadow-rgb: 38, 79, 117;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #00264a;
  --bs-btn-active-border-color: #002446;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #00305d;
  --bs-btn-disabled-border-color: #00305d;
}
.btn-secondary {
  --bs-btn-color: #000;
  --bs-btn-bg: #f39200;
  --bs-btn-border-color: #f39200;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #f5a226;
  --bs-btn-hover-border-color: #f49d1a;
  --bs-btn-focus-shadow-rgb: 207, 124, 0;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #f5a833;
  --bs-btn-active-border-color: #f49d1a;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #f39200;
  --bs-btn-disabled-border-color: #f39200;
}
.btn-success {
  --bs-btn-color: #000;
  --bs-btn-bg: #3cc261;
  --bs-btn-border-color: #3cc261;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #59cb79;
  --bs-btn-hover-border-color: #50c871;
  --bs-btn-focus-shadow-rgb: 51, 165, 82;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #63ce81;
  --bs-btn-active-border-color: #50c871;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #3cc261;
  --bs-btn-disabled-border-color: #3cc261;
}
.btn-info {
  --bs-btn-color: #000;
  --bs-btn-bg: #26b6cf;
  --bs-btn-border-color: #26b6cf;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #47c1d6;
  --bs-btn-hover-border-color: #3cbdd4;
  --bs-btn-focus-shadow-rgb: 32, 155, 176;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #51c5d9;
  --bs-btn-active-border-color: #3cbdd4;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #26b6cf;
  --bs-btn-disabled-border-color: #26b6cf;
}
.btn-warning {
  --bs-btn-color: #000;
  --bs-btn-bg: #ffbd5d;
  --bs-btn-border-color: #ffbd5d;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #ffc775;
  --bs-btn-hover-border-color: #ffc46d;
  --bs-btn-focus-shadow-rgb: 217, 161, 79;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #ffca7d;
  --bs-btn-active-border-color: #ffc46d;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #ffbd5d;
  --bs-btn-disabled-border-color: #ffbd5d;
}
.btn-danger {
  --bs-btn-color: #fff;
  --bs-btn-bg: #e52427;
  --bs-btn-border-color: #e52427;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #c31f21;
  --bs-btn-hover-border-color: #b71d1f;
  --bs-btn-focus-shadow-rgb: 233, 69, 71;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #b71d1f;
  --bs-btn-active-border-color: #ac1b1d;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #e52427;
  --bs-btn-disabled-border-color: #e52427;
}
.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: #00305d;
  --bs-btn-border-color: #00305d;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #00305d;
  --bs-btn-hover-border-color: #00305d;
  --bs-btn-focus-shadow-rgb: 0, 48, 93;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #00305d;
  --bs-btn-active-border-color: #00305d;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #00305d;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #00305d;
  --bs-gradient: none;
}
.btn-outline-secondary {
  --bs-btn-color: #f39200;
  --bs-btn-border-color: #f39200;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #f39200;
  --bs-btn-hover-border-color: #f39200;
  --bs-btn-focus-shadow-rgb: 243, 146, 0;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #f39200;
  --bs-btn-active-border-color: #f39200;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #f39200;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #f39200;
  --bs-gradient: none;
}
.btn-outline-success {
  --bs-btn-color: #3cc261;
  --bs-btn-border-color: #3cc261;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #3cc261;
  --bs-btn-hover-border-color: #3cc261;
  --bs-btn-focus-shadow-rgb: 60, 194, 97;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #3cc261;
  --bs-btn-active-border-color: #3cc261;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #3cc261;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #3cc261;
  --bs-gradient: none;
}
.btn-outline-info {
  --bs-btn-color: #26b6cf;
  --bs-btn-border-color: #26b6cf;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #26b6cf;
  --bs-btn-hover-border-color: #26b6cf;
  --bs-btn-focus-shadow-rgb: 38, 182, 207;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #26b6cf;
  --bs-btn-active-border-color: #26b6cf;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #26b6cf;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #26b6cf;
  --bs-gradient: none;
}
.btn-outline-warning {
  --bs-btn-color: #ffbd5d;
  --bs-btn-border-color: #ffbd5d;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #ffbd5d;
  --bs-btn-hover-border-color: #ffbd5d;
  --bs-btn-focus-shadow-rgb: 255, 189, 93;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #ffbd5d;
  --bs-btn-active-border-color: #ffbd5d;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #ffbd5d;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #ffbd5d;
  --bs-gradient: none;
}
.btn-outline-danger {
  --bs-btn-color: #e52427;
  --bs-btn-border-color: #e52427;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #e52427;
  --bs-btn-hover-border-color: #e52427;
  --bs-btn-focus-shadow-rgb: 229, 36, 39;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #e52427;
  --bs-btn-active-border-color: #e52427;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #e52427;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #e52427;
  --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: none;
  --bs-btn-focus-shadow-rgb: 38, 79, 117;
  text-decoration: none;
}
.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: 0;
}
.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: 0;
}
.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: 0.875rem;
  --bs-dropdown-color: #373737;
  --bs-dropdown-bg: #fff;
  --bs-dropdown-border-color: #bcc1c7;
  --bs-dropdown-border-radius: 2px;
  --bs-dropdown-border-width: 1px;
  --bs-dropdown-inner-border-radius: 1px;
  --bs-dropdown-divider-bg: #bcc1c7;
  --bs-dropdown-divider-margin-y: 0.5rem;
  --bs-dropdown-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --bs-dropdown-link-color: #212529;
  --bs-dropdown-link-hover-color: #1e2125;
  --bs-dropdown-link-hover-bg: #eee;
  --bs-dropdown-link-active-color: #fff;
  --bs-dropdown-link-active-bg: #00305d;
  --bs-dropdown-link-disabled-color: #adb5bd;
  --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;
  white-space: nowrap;
  background-color: transparent;
  border: 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.75rem;
  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: #bcc1c7;
  --bs-dropdown-box-shadow: ;
  --bs-dropdown-link-color: #bcc1c7;
  --bs-dropdown-link-hover-color: #fff;
  --bs-dropdown-divider-bg: #bcc1c7;
  --bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15);
  --bs-dropdown-link-active-color: #fff;
  --bs-dropdown-link-active-bg: #00305d;
  --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: 2px;
}
.btn-group > :not(.btn-check:first-child) + .btn, .btn-group > .btn-group:not(:first-child) {
  margin-left: -1px;
}
.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: -1px;
}
.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 ~ .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-weight: ;
  --bs-nav-link-color: var(--bs-link-color);
  --bs-nav-link-hover-color: var(--bs-link-hover-color);
  --bs-nav-link-disabled-color: #798490;
  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);
  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.disabled {
  color: var(--bs-nav-link-disabled-color);
  pointer-events: none;
  cursor: default;
}
.nav-tabs {
  --bs-nav-tabs-border-width: 1px;
  --bs-nav-tabs-border-color: #bcc1c7;
  --bs-nav-tabs-border-radius: 2px;
  --bs-nav-tabs-link-hover-border-color: #eee #eee #bcc1c7;
  --bs-nav-tabs-link-active-color: #495057;
  --bs-nav-tabs-link-active-bg: #fff;
  --bs-nav-tabs-link-active-border-color: #bcc1c7 #bcc1c7 #fff;
  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));
  background: none;
  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.disabled, .nav-tabs .nav-link:disabled {
  color: var(--bs-nav-link-disabled-color);
  background-color: transparent;
  border-color: transparent;
}
.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: 2px;
  --bs-nav-pills-link-active-color: #fff;
  --bs-nav-pills-link-active-bg: #00305d;
}
.nav-pills .nav-link {
  background: none;
  border: 0;
  border-radius: var(--bs-nav-pills-border-radius);
}
.nav-pills .nav-link:disabled {
  color: var(--bs-nav-link-disabled-color);
  background-color: transparent;
  border-color: transparent;
}
.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-fill > .nav-link, .nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}
.nav-justified > .nav-link, .nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}
.nav-fill .nav-item .nav-link, .nav-justified .nav-item .nav-link {
  width: 100%;
}
.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}
.navbar {
  --bs-navbar-padding-x: 0;
  --bs-navbar-padding-y: 0.5rem;
  --bs-navbar-color: rgba(0, 0, 0, 0.55);
  --bs-navbar-hover-color: rgba(0, 0, 0, 0.7);
  --bs-navbar-disabled-color: rgba(0, 0, 0, 0.3);
  --bs-navbar-active-color: rgba(0, 0, 0, 0.9);
  --bs-navbar-brand-padding-y: 0.40625rem;
  --bs-navbar-brand-margin-end: 1rem;
  --bs-navbar-brand-font-size: 1rem;
  --bs-navbar-brand-color: rgba(0, 0, 0, 0.9);
  --bs-navbar-brand-hover-color: rgba(0, 0, 0, 0.9);
  --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: 1rem;
  --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%280, 0, 0, 0.55%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(0, 0, 0, 0.1);
  --bs-navbar-toggler-border-radius: 2px;
  --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);
  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-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 .show > .nav-link, .navbar-nav .nav-link.active {
  color: var(--bs-navbar-active-color);
}
.navbar-nav .dropdown-menu {
  position: static;
}
.navbar-text {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: var(--bs-navbar-color);
}
.navbar-text a, .navbar-text a:hover, .navbar-text a:focus {
  color: var(--bs-navbar-active-color);
}
.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}
.navbar-toggler {
  padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
  font-size: var(--bs-navbar-toggler-font-size);
  line-height: 1;
  color: var(--bs-navbar-color);
  background-color: transparent;
  border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
  border-radius: var(--bs-navbar-toggler-border-radius);
  transition: var(--bs-navbar-toggler-transition);
}
@media (prefers-reduced-motion: reduce) {
  .navbar-toggler {
    transition: none;
  }
}
.navbar-toggler:hover {
  text-decoration: none;
}
.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width);
}
.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-image: var(--bs-navbar-toggler-icon-bg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
.navbar-nav-scroll {
  max-height: var(--bs-scroll-height, 75vh);
  overflow-y: auto;
}
@media (min-width: 576px) {
  .navbar-expand-sm {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
  .navbar-expand-sm .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-sm .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-sm .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 768px) {
  .navbar-expand-md {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
  .navbar-expand-md .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-md .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-md .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
  .navbar-expand-lg .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-lg .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-lg .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 1200px) {
  .navbar-expand-xl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
  .navbar-expand-xl .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-xl .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-xl .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 1400px) {
  .navbar-expand-xxl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xxl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xxl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xxl .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-xxl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xxl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xxl .navbar-toggler {
    display: none;
  }
  .navbar-expand-xxl .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-xxl .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-xxl .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
.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 {
  --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");
}
.card {
  --bs-card-spacer-y: 0;
  --bs-card-spacer-x: 0;
  --bs-card-title-spacer-y: 0.5rem;
  --bs-card-border-width: 1px;
  --bs-card-border-color: transparent;
  --bs-card-border-radius: 2px;
  --bs-card-box-shadow: ;
  --bs-card-inner-border-radius: 1px;
  --bs-card-cap-padding-y: 0;
  --bs-card-cap-padding-x: 0;
  --bs-card-cap-bg: rgba(0, 0, 0, 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);
  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);
}
.card-subtitle {
  margin-top: calc(-.5 * var(--bs-card-title-spacer-y));
  margin-bottom: 0;
}
.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: #373737;
  --bs-accordion-bg: #fff;
  --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: 1px;
  --bs-accordion-border-radius: 2px;
  --bs-accordion-inner-border-radius: 1px;
  --bs-accordion-btn-padding-x: 1.25rem;
  --bs-accordion-btn-padding-y: 1rem;
  --bs-accordion-btn-color: #373737;
  --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='%23373737'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-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='%23002b54'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-focus-border-color: #00305d;
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(0, 48, 93, 0.25);
  --bs-accordion-body-padding-x: 1.25rem;
  --bs-accordion-body-padding-y: 1rem;
  --bs-accordion-active-color: #002b54;
  --bs-accordion-active-bg: #e6eaef;
}
.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: 0.875rem;
  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;
  border-color: var(--bs-accordion-btn-focus-border-color);
  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-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-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-collapse {
  border-width: 0;
}
.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-button, .accordion-flush .accordion-item .accordion-button.collapsed {
  border-radius: 0;
}
.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: #798490;
  --bs-breadcrumb-item-padding-x: 0.5rem;
  --bs-breadcrumb-item-active-color: #798490;
  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: 0.875rem;
  --bs-pagination-color: #373737;
  --bs-pagination-bg: #fff;
  --bs-pagination-border-width: 0;
  --bs-pagination-border-color: #bcc1c7;
  --bs-pagination-border-radius: 2px;
  --bs-pagination-hover-color: #373737;
  --bs-pagination-hover-bg: #eee;
  --bs-pagination-hover-border-color: #bcc1c7;
  --bs-pagination-focus-color: var(--bs-link-hover-color);
  --bs-pagination-focus-bg: #eee;
  --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(0, 48, 93, 0.25);
  --bs-pagination-active-color: #fff;
  --bs-pagination-active-bg: #00305d;
  --bs-pagination-active-border-color: #00305d;
  --bs-pagination-disabled-color: #798490;
  --bs-pagination-disabled-bg: #fff;
  --bs-pagination-disabled-border-color: #bcc1c7;
  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);
  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: 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: 1rem;
  --bs-pagination-border-radius: 0;
}
.pagination-sm {
  --bs-pagination-padding-x: 0.5rem;
  --bs-pagination-padding-y: 0.25rem;
  --bs-pagination-font-size: 0.75rem;
  --bs-pagination-border-radius: 0;
}
.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;
  --bs-alert-padding-y: 0;
  --bs-alert-margin-bottom: 1rem;
  --bs-alert-color: inherit;
  --bs-alert-border-color: transparent;
  --bs-alert-border: 0 solid var(--bs-alert-border-color);
  --bs-alert-border-radius: 2px;
  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;
}
.alert-dismissible {
  padding-right: 0;
}
.alert-dismissible .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 0 0;
}
.alert-primary {
  --bs-alert-color: #001d38;
  --bs-alert-bg: #ccd6df;
  --bs-alert-border-color: #b3c1ce;
}
.alert-primary .alert-link {
  color: #00172d;
}
.alert-secondary {
  --bs-alert-color: #925800;
  --bs-alert-bg: #fde9cc;
  --bs-alert-border-color: #fbdeb3;
}
.alert-secondary .alert-link {
  color: #754600;
}
.alert-success {
  --bs-alert-color: #24743a;
  --bs-alert-bg: #d8f3df;
  --bs-alert-border-color: #c5edd0;
}
.alert-success .alert-link {
  color: #1d5d2e;
}
.alert-info {
  --bs-alert-color: #176d7c;
  --bs-alert-bg: #d4f0f5;
  --bs-alert-border-color: #bee9f1;
}
.alert-info .alert-link {
  color: #125763;
}
.alert-warning {
  --bs-alert-color: #664c25;
  --bs-alert-bg: #fff2df;
  --bs-alert-border-color: #ffebce;
}
.alert-warning .alert-link {
  color: #523d1e;
}
.alert-danger {
  --bs-alert-color: #891617;
  --bs-alert-bg: #fad3d4;
  --bs-alert-border-color: #f7bdbe;
}
.alert-danger .alert-link {
  color: #6e1212;
}
.alert-light {
  --bs-alert-color: #646464;
  --bs-alert-bg: #fefefe;
  --bs-alert-border-color: #fdfdfd;
}
.alert-light .alert-link {
  color: #505050;
}
.alert-dark {
  --bs-alert-color: #2c3237;
  --bs-alert-bg: #dbddde;
  --bs-alert-border-color: #c9ccce;
}
.alert-dark .alert-link {
  color: #23282c;
}
@keyframes progress-bar-stripes {
  0% {
    background-position-x: 1rem;
  }
}
.progress {
  --bs-progress-height: 1rem;
  --bs-progress-font-size: 0.65625rem;
  --bs-progress-bg: #eee;
  --bs-progress-border-radius: 2px;
  --bs-progress-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  --bs-progress-bar-color: #fff;
  --bs-progress-bar-bg: #00305d;
  --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-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: #212529;
  --bs-list-group-bg: #fff;
  --bs-list-group-border-color: rgba(0, 0, 0, 0.125);
  --bs-list-group-border-width: 1px;
  --bs-list-group-border-radius: 2px;
  --bs-list-group-item-padding-x: 1rem;
  --bs-list-group-item-padding-y: 0.5rem;
  --bs-list-group-action-color: #495057;
  --bs-list-group-action-hover-color: #495057;
  --bs-list-group-action-hover-bg: #f9f9f9;
  --bs-list-group-action-active-color: #373737;
  --bs-list-group-action-active-bg: #eee;
  --bs-list-group-disabled-color: #798490;
  --bs-list-group-disabled-bg: #fff;
  --bs-list-group-active-color: #fff;
  --bs-list-group-active-bg: #00305d;
  --bs-list-group-active-border-color: #00305d;
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: var(--bs-list-group-border-radius);
}
.list-group-numbered {
  list-style-type: none;
  counter-reset: section;
}
.list-group-numbered > .list-group-item::before {
  content: counters(section, ".") ". ";
  counter-increment: section;
}
.list-group-item-action {
  width: 100%;
  color: var(--bs-list-group-action-color);
  text-align: inherit;
}
.list-group-item-action:hover, .list-group-item-action:focus {
  z-index: 1;
  color: var(--bs-list-group-action-hover-color);
  text-decoration: none;
  background-color: var(--bs-list-group-action-hover-bg);
}
.list-group-item-action:active {
  color: var(--bs-list-group-action-active-color);
  background-color: var(--bs-list-group-action-active-bg);
}
.list-group-item {
  position: relative;
  display: block;
  padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);
  color: var(--bs-list-group-color);
  background-color: var(--bs-list-group-bg);
  border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color);
}
.list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}
.list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}
.list-group-item.disabled, .list-group-item:disabled {
  color: var(--bs-list-group-disabled-color);
  pointer-events: none;
  background-color: var(--bs-list-group-disabled-bg);
}
.list-group-item.active {
  z-index: 2;
  color: var(--bs-list-group-active-color);
  background-color: var(--bs-list-group-active-bg);
  border-color: var(--bs-list-group-active-border-color);
}
.list-group-item + .list-group-item {
  border-top-width: 0;
}
.list-group-item + .list-group-item.active {
  margin-top: calc(-1 * var(--bs-list-group-border-width));
  border-top-width: var(--bs-list-group-border-width);
}
.list-group-horizontal {
  flex-direction: row;
}
.list-group-horizontal > .list-group-item:first-child:not(:last-child) {
  border-bottom-left-radius: var(--bs-list-group-border-radius);
  border-top-right-radius: 0;
}
.list-group-horizontal > .list-group-item:last-child:not(:first-child) {
  border-top-right-radius: var(--bs-list-group-border-radius);
  border-bottom-left-radius: 0;
}
.list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item {
  border-top-width: var(--bs-list-group-border-width);
  border-left-width: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: calc(-1 * var(--bs-list-group-border-width));
  border-left-width: var(--bs-list-group-border-width);
}
@media (min-width: 576px) {
  .list-group-horizontal-sm {
    flex-direction: row;
  }
  .list-group-horizontal-sm > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
@media (min-width: 768px) {
  .list-group-horizontal-md {
    flex-direction: row;
  }
  .list-group-horizontal-md > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
@media (min-width: 992px) {
  .list-group-horizontal-lg {
    flex-direction: row;
  }
  .list-group-horizontal-lg > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
@media (min-width: 1200px) {
  .list-group-horizontal-xl {
    flex-direction: row;
  }
  .list-group-horizontal-xl > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
@media (min-width: 1400px) {
  .list-group-horizontal-xxl {
    flex-direction: row;
  }
  .list-group-horizontal-xxl > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xxl > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xxl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xxl > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
.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 {
  color: #001d38;
  background-color: #ccd6df;
}
.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: #001d38;
  background-color: #b8c1c9;
}
.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #001d38;
  border-color: #001d38;
}
.list-group-item-secondary {
  color: #925800;
  background-color: #fde9cc;
}
.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  color: #925800;
  background-color: #e4d2b8;
}
.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #925800;
  border-color: #925800;
}
.list-group-item-success {
  color: #24743a;
  background-color: #d8f3df;
}
.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  color: #24743a;
  background-color: #c2dbc9;
}
.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #24743a;
  border-color: #24743a;
}
.list-group-item-info {
  color: #176d7c;
  background-color: #d4f0f5;
}
.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  color: #176d7c;
  background-color: #bfd8dd;
}
.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #176d7c;
  border-color: #176d7c;
}
.list-group-item-warning {
  color: #664c25;
  background-color: #fff2df;
}
.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  color: #664c25;
  background-color: #e6dac9;
}
.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #664c25;
  border-color: #664c25;
}
.list-group-item-danger {
  color: #891617;
  background-color: #fad3d4;
}
.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  color: #891617;
  background-color: #e1bebf;
}
.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #891617;
  border-color: #891617;
}
.list-group-item-light {
  color: #646464;
  background-color: #fefefe;
}
.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  color: #646464;
  background-color: #e5e5e5;
}
.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #646464;
  border-color: #646464;
}
.list-group-item-dark {
  color: #2c3237;
  background-color: #dbddde;
}
.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  color: #2c3237;
  background-color: #c5c7c8;
}
.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #2c3237;
  border-color: #2c3237;
}
.btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: #000;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center / 1em auto no-repeat;
  border: 0;
  border-radius: 2px;
  opacity: 0.5;
}
.btn-close:hover {
  color: #000;
  text-decoration: none;
  opacity: 0.75;
}
.btn-close:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(0, 48, 93, 0.25);
  opacity: 1;
}
.btn-close:disabled, .btn-close.disabled {
  pointer-events: none;
  user-select: none;
  opacity: 0.25;
}
.btn-close-white {
  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(255, 255, 255, 0.85);
  --bs-toast-border-width: 1px;
  --bs-toast-border-color: var(--bs-border-color-translucent);
  --bs-toast-border-radius: 2px;
  --bs-toast-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --bs-toast-header-color: #798490;
  --bs-toast-header-bg: rgba(255, 255, 255, 0.85);
  --bs-toast-header-border-color: rgba(0, 0, 0, 0.05);
  width: var(--bs-toast-max-width);
  max-width: 100%;
  font-size: var(--bs-toast-font-size);
  color: var(--bs-toast-color);
  pointer-events: auto;
  background-color: var(--bs-toast-bg);
  background-clip: padding-box;
  border: var(--bs-toast-border-width) solid var(--bs-toast-border-color);
  box-shadow: var(--bs-toast-box-shadow);
  border-radius: var(--bs-toast-border-radius);
}
.toast.showing {
  opacity: 0;
}
.toast:not(.show) {
  display: none;
}
.toast-container {
  --bs-toast-zindex: 1090;
  position: absolute;
  z-index: var(--bs-toast-zindex);
  width: max-content;
  max-width: 100%;
  pointer-events: none;
}
.toast-container > :not(:last-child) {
  margin-bottom: var(--bs-toast-spacing);
}
.toast-header {
  display: flex;
  align-items: center;
  padding: var(--bs-toast-padding-y) var(--bs-toast-padding-x);
  color: var(--bs-toast-header-color);
  background-color: var(--bs-toast-header-bg);
  background-clip: padding-box;
  border-bottom: var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);
  border-top-left-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
  border-top-right-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
}
.toast-header .btn-close {
  margin-right: calc(-.5 * var(--bs-toast-padding-x));
  margin-left: var(--bs-toast-padding-x);
}
.toast-body {
  padding: var(--bs-toast-padding-x);
  word-wrap: break-word;
}
.modal {
  --bs-modal-zindex: 1055;
  --bs-modal-width: 500px;
  --bs-modal-padding: 1rem;
  --bs-modal-margin: 0.5rem;
  --bs-modal-color: ;
  --bs-modal-bg: #fff;
  --bs-modal-border-color: var(--bs-border-color-translucent);
  --bs-modal-border-width: 0;
  --bs-modal-border-radius: 0;
  --bs-modal-box-shadow: 0 43px 43px -6px rgba(0, 0, 0, 0.2);
  --bs-modal-inner-border-radius: 0;
  --bs-modal-header-padding-x: 10px;
  --bs-modal-header-padding-y: 10px;
  --bs-modal-header-padding: 10px 10px;
  --bs-modal-header-border-color: var(--bs-border-color);
  --bs-modal-header-border-width: 0;
  --bs-modal-title-line-height: 1.5;
  --bs-modal-footer-gap: 0.5rem;
  --bs-modal-footer-bg: ;
  --bs-modal-footer-border-color: var(--bs-border-color);
  --bs-modal-footer-border-width: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-modal-zindex);
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: var(--bs-modal-margin);
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: opacity 0.45s cubic-bezier(0.3, 0, 0.15, 1), visibility 0.45s linear;
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}
.modal-dialog-scrollable {
  height: calc(100% - var(--bs-modal-margin) * 2);
}
.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}
.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - var(--bs-modal-margin) * 2);
}
.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  color: var(--bs-modal-color);
  pointer-events: auto;
  background-color: var(--bs-modal-bg);
  background-clip: padding-box;
  border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
  border-radius: var(--bs-modal-border-radius);
  outline: 0;
}
.modal-backdrop {
  --bs-backdrop-zindex: 1050;
  --bs-backdrop-bg: rgba(0, 0, 0, 0.5);
  --bs-backdrop-opacity: 0.5;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-backdrop-zindex);
  width: 100vw;
  height: 100vh;
  background-color: var(--bs-backdrop-bg);
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: var(--bs-backdrop-opacity);
}
.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: var(--bs-modal-header-padding);
  border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
  border-top-left-radius: var(--bs-modal-inner-border-radius);
  border-top-right-radius: var(--bs-modal-inner-border-radius);
}
.modal-header .btn-close {
  padding: calc(var(--bs-modal-header-padding-y) * .5) calc(var(--bs-modal-header-padding-x) * .5);
  margin: calc(-.5 * var(--bs-modal-header-padding-y)) calc(-.5 * var(--bs-modal-header-padding-x)) calc(-.5 * var(--bs-modal-header-padding-y)) auto;
}
.modal-title {
  margin-bottom: 0;
  line-height: var(--bs-modal-title-line-height);
}
.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: var(--bs-modal-padding);
}
.modal-footer {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * .5);
  background-color: var(--bs-modal-footer-bg);
  border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
  border-bottom-right-radius: var(--bs-modal-inner-border-radius);
  border-bottom-left-radius: var(--bs-modal-inner-border-radius);
}
.modal-footer > * {
  margin: calc(var(--bs-modal-footer-gap) * .5);
}
@media (min-width: 576px) {
  .modal {
    --bs-modal-margin: 1.75rem;
    --bs-modal-box-shadow: 0 43px 43px -6px rgba(0, 0, 0, 0.2);
  }
  .modal-dialog {
    max-width: var(--bs-modal-width);
    margin-right: auto;
    margin-left: auto;
  }
  .modal-sm {
    --bs-modal-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg, .address-editor-modal .modal-dialog, .quickview-modal .modal-dialog, .modal-xl {
    --bs-modal-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    --bs-modal-width: 1140px;
  }
}
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}
.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}
.modal-fullscreen .modal-header, .modal-fullscreen .modal-footer {
  border-radius: 0;
}
.modal-fullscreen .modal-body {
  overflow-y: auto;
}
@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-header, .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-header, .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-header, .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1199.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-header, .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1399.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-header, .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
}
.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.75rem;
  --bs-tooltip-color: #fff;
  --bs-tooltip-bg: #000;
  --bs-tooltip-border-radius: 2px;
  --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;
  padding: var(--bs-tooltip-arrow-height);
  margin: var(--bs-tooltip-margin);
  font-family: "Inter", 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: 0;
}
.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: 0;
  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: 0;
}
.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: 0;
  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.75rem;
  --bs-popover-bg: #fff;
  --bs-popover-border-width: 1px;
  --bs-popover-border-color: var(--bs-border-color-translucent);
  --bs-popover-border-radius: 0;
  --bs-popover-inner-border-radius: -1px;
  --bs-popover-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --bs-popover-header-padding-x: 1rem;
  --bs-popover-header-padding-y: 0.5rem;
  --bs-popover-header-font-size: 0.875rem;
  --bs-popover-header-color: #333;
  --bs-popover-header-bg: #f0f0f0;
  --bs-popover-body-padding-x: 1rem;
  --bs-popover-body-padding-y: 1rem;
  --bs-popover-body-color: #373737;
  --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: "Inter", 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;
}
/* rtl:begin:ignore */
.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%);
}
/* rtl:end:ignore */
.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}
.carousel-fade .carousel-item.active, .carousel-fade .carousel-item-next.carousel-item-start, .carousel-fade .carousel-item-prev.carousel-item-end {
  z-index: 1;
  opacity: 1;
}
.carousel-fade .active.carousel-item-start, .carousel-fade .active.carousel-item-end {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-start, .carousel-fade .active.carousel-item-end {
    transition: none;
  }
}
.carousel-control-prev, .carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: #fff;
  text-align: center;
  background: none;
  border: 0;
  opacity: 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%;
}
/* rtl:options: {
  "autoRename": true,
  "stringMap":[ {
    "name"    : "prev-next",
    "search"  : "prev",
    "replace" : "next"
  } ]
} */
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}
.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.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%;
  list-style: none;
}
.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-indicators [data-bs-target] {
    transition: none;
  }
}
.carousel-indicators .active {
  opacity: 1;
}
.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 1.25rem;
  left: 15%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #fff;
  text-align: center;
}
.carousel-dark .carousel-control-prev-icon, .carousel-dark .carousel-control-next-icon {
  filter: invert(1) grayscale(100);
}
.carousel-dark .carousel-indicators [data-bs-target] {
  background-color: #000;
}
.carousel-dark .carousel-caption {
  color: #000;
}
.spinner-grow, .spinner-border, .loader {
  display: inline-block;
  width: var(--bs-spinner-width);
  height: var(--bs-spinner-height);
  vertical-align: var(--bs-spinner-vertical-align);
  border-radius: 50%;
  animation: var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name);
}
@keyframes spinner-border {
  to {
    transform: rotate(360deg) /* rtl:ignore */;
  }
}
.spinner-border, .loader {
  --bs-spinner-width: 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: ;
  --bs-offcanvas-bg: #fff;
  --bs-offcanvas-border-width: 0;
  --bs-offcanvas-border-color: transparent;
  --bs-offcanvas-box-shadow: 0 43px 43px -6px rgba(0, 0, 0, 0.2);
}
@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: transform 0.3s ease-in-out;
  }
  .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: transform 0.3s ease-in-out;
  }
  .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: transform 0.3s ease-in-out;
  }
  .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: transform 0.3s ease-in-out;
  }
  .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: transform 0.3s ease-in-out;
  }
  .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: transform 0.3s ease-in-out;
}
@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;
  justify-content: space-between;
  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));
}
.offcanvas-title {
  margin-bottom: 0;
  line-height: 1.5;
}
.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 !important;
  background-color: rgba(0, 48, 93, var(--bs-bg-opacity, 1)) !important;
}
.text-bg-secondary {
  color: #000 !important;
  background-color: rgba(243, 146, 0, var(--bs-bg-opacity, 1)) !important;
}
.text-bg-success {
  color: #000 !important;
  background-color: rgba(60, 194, 97, var(--bs-bg-opacity, 1)) !important;
}
.text-bg-info {
  color: #000 !important;
  background-color: rgba(38, 182, 207, var(--bs-bg-opacity, 1)) !important;
}
.text-bg-warning {
  color: #000 !important;
  background-color: rgba(255, 189, 93, var(--bs-bg-opacity, 1)) !important;
}
.text-bg-danger {
  color: #fff !important;
  background-color: rgba(229, 36, 39, var(--bs-bg-opacity, 1)) !important;
}
.text-bg-light {
  color: #000 !important;
  background-color: rgba(249, 249, 249, var(--bs-bg-opacity, 1)) !important;
}
.text-bg-dark {
  color: #fff !important;
  background-color: rgba(74, 84, 91, var(--bs-bg-opacity, 1)) !important;
}
.link-primary {
  color: #00305d !important;
}
.link-primary:hover, .link-primary:focus {
  color: #00264a !important;
}
.link-secondary {
  color: #f39200 !important;
}
.link-secondary:hover, .link-secondary:focus {
  color: #f5a833 !important;
}
.link-success {
  color: #3cc261 !important;
}
.link-success:hover, .link-success:focus {
  color: #63ce81 !important;
}
.link-info {
  color: #26b6cf !important;
}
.link-info:hover, .link-info:focus {
  color: #51c5d9 !important;
}
.link-warning {
  color: #ffbd5d !important;
}
.link-warning:hover, .link-warning:focus {
  color: #ffca7d !important;
}
.link-danger {
  color: #e52427 !important;
}
.link-danger:hover, .link-danger:focus {
  color: #b71d1f !important;
}
.link-light {
  color: #f9f9f9 !important;
}
.link-light:hover, .link-light:focus {
  color: #fafafa !important;
}
.link-dark {
  color: #4a545b !important;
}
.link-dark:hover, .link-dark:focus {
  color: #3b4349 !important;
}
.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) {
  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;
}
.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: 1px;
  min-height: 1em;
  background-color: currentcolor;
  opacity: 0.25;
}
.align-baseline {
  vertical-align: baseline !important;
}
.align-top {
  vertical-align: top !important;
}
.align-middle {
  vertical-align: middle !important;
}
.align-bottom {
  vertical-align: bottom !important;
}
.align-text-bottom {
  vertical-align: text-bottom !important;
}
.align-text-top {
  vertical-align: text-top !important;
}
.float-start {
  float: left !important;
}
.float-end {
  float: right !important;
}
.float-none {
  float: none !important;
}
.opacity-0 {
  opacity: 0 !important;
}
.opacity-25 {
  opacity: 0.25 !important;
}
.opacity-50 {
  opacity: 0.5 !important;
}
.opacity-75 {
  opacity: 0.75 !important;
}
.opacity-100 {
  opacity: 1 !important;
}
.overflow-auto {
  overflow: auto !important;
}
.overflow-hidden {
  overflow: hidden !important;
}
.overflow-visible {
  overflow: visible !important;
}
.overflow-scroll {
  overflow: scroll !important;
}
.d-inline {
  display: inline !important;
}
.d-inline-block {
  display: inline-block !important;
}
.d-block {
  display: block !important;
}
.d-grid {
  display: grid !important;
}
.d-table {
  display: table !important;
}
.d-table-row {
  display: table-row !important;
}
.d-table-cell {
  display: table-cell !important;
}
.d-flex {
  display: flex !important;
}
.d-inline-flex {
  display: inline-flex !important;
}
.d-none, .is-act-checkoutregisterpage .checkout .checkout-aside {
  display: none !important;
}
.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}
.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}
.shadow-none {
  box-shadow: none !important;
}
.position-static {
  position: static !important;
}
.position-relative {
  position: relative !important;
}
.position-absolute {
  position: absolute !important;
}
.position-fixed {
  position: fixed !important;
}
.position-sticky {
  position: sticky !important;
}
.top-0 {
  top: 0 !important;
}
.top-50 {
  top: 50% !important;
}
.top-100 {
  top: 100% !important;
}
.bottom-0 {
  bottom: 0 !important;
}
.bottom-50 {
  bottom: 50% !important;
}
.bottom-100 {
  bottom: 100% !important;
}
.start-0 {
  left: 0 !important;
}
.start-50 {
  left: 50% !important;
}
.start-100 {
  left: 100% !important;
}
.end-0 {
  right: 0 !important;
}
.end-50 {
  right: 50% !important;
}
.end-100 {
  right: 100% !important;
}
.translate-middle {
  transform: translate(-50%, -50%) !important;
}
.translate-middle-x {
  transform: translateX(-50%) !important;
}
.translate-middle-y {
  transform: translateY(-50%) !important;
}
.border {
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}
.border-0 {
  border: 0 !important;
}
.border-top {
  border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}
.border-top-0 {
  border-top: 0 !important;
}
.border-end {
  border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}
.border-end-0 {
  border-right: 0 !important;
}
.border-bottom {
  border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}
.border-bottom-0 {
  border-bottom: 0 !important;
}
.border-start {
  border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}
.border-start-0 {
  border-left: 0 !important;
}
.border-primary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
}
.border-secondary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
}
.border-success {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important;
}
.border-info {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;
}
.border-warning {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important;
}
.border-danger {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
}
.border-light {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
}
.border-dark {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
}
.border-white {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;
}
.border-1 {
  --bs-border-width: 1px;
}
.border-2 {
  --bs-border-width: 2px;
}
.border-3 {
  --bs-border-width: 3px;
}
.border-4 {
  --bs-border-width: 4px;
}
.border-5 {
  --bs-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% !important;
}
.w-50 {
  width: 50% !important;
}
.w-75 {
  width: 75% !important;
}
.w-100 {
  width: 100% !important;
}
.w-auto {
  width: auto !important;
}
.mw-100 {
  max-width: 100% !important;
}
.vw-100 {
  width: 100vw !important;
}
.min-vw-100 {
  min-width: 100vw !important;
}
.h-25 {
  height: 25% !important;
}
.h-50 {
  height: 50% !important;
}
.h-75 {
  height: 75% !important;
}
.h-100 {
  height: 100% !important;
}
.h-auto {
  height: auto !important;
}
.mh-100 {
  max-height: 100% !important;
}
.vh-100 {
  height: 100vh !important;
}
.min-vh-100 {
  min-height: 100vh !important;
}
.flex-fill {
  flex: 1 1 auto !important;
}
.flex-row {
  flex-direction: row !important;
}
.flex-column {
  flex-direction: column !important;
}
.flex-row-reverse {
  flex-direction: row-reverse !important;
}
.flex-column-reverse {
  flex-direction: column-reverse !important;
}
.flex-grow-0 {
  flex-grow: 0 !important;
}
.flex-grow-1 {
  flex-grow: 1 !important;
}
.flex-shrink-0 {
  flex-shrink: 0 !important;
}
.flex-shrink-1 {
  flex-shrink: 1 !important;
}
.flex-wrap {
  flex-wrap: wrap !important;
}
.flex-nowrap {
  flex-wrap: nowrap !important;
}
.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}
.justify-content-start {
  justify-content: flex-start !important;
}
.justify-content-end {
  justify-content: flex-end !important;
}
.justify-content-center {
  justify-content: center !important;
}
.justify-content-between {
  justify-content: space-between !important;
}
.justify-content-around {
  justify-content: space-around !important;
}
.justify-content-evenly {
  justify-content: space-evenly !important;
}
.align-items-start {
  align-items: flex-start !important;
}
.align-items-end {
  align-items: flex-end !important;
}
.align-items-center {
  align-items: center !important;
}
.align-items-baseline {
  align-items: baseline !important;
}
.align-items-stretch {
  align-items: stretch !important;
}
.align-content-start {
  align-content: flex-start !important;
}
.align-content-end {
  align-content: flex-end !important;
}
.align-content-center {
  align-content: center !important;
}
.align-content-between {
  align-content: space-between !important;
}
.align-content-around {
  align-content: space-around !important;
}
.align-content-stretch {
  align-content: stretch !important;
}
.align-self-auto {
  align-self: auto !important;
}
.align-self-start {
  align-self: flex-start !important;
}
.align-self-end {
  align-self: flex-end !important;
}
.align-self-center {
  align-self: center !important;
}
.align-self-baseline {
  align-self: baseline !important;
}
.align-self-stretch {
  align-self: stretch !important;
}
.order-first {
  order: -1 !important;
}
.order-0 {
  order: 0 !important;
}
.order-1 {
  order: 1 !important;
}
.order-2 {
  order: 2 !important;
}
.order-3 {
  order: 3 !important;
}
.order-4 {
  order: 4 !important;
}
.order-5 {
  order: 5 !important;
}
.order-last {
  order: 6 !important;
}
.m-0 {
  margin: 0 !important;
}
.m-1 {
  margin: 0.25rem !important;
}
.m-2 {
  margin: 0.5rem !important;
}
.m-3 {
  margin: 1rem !important;
}
.m-4 {
  margin: 1.5rem !important;
}
.m-5 {
  margin: 3rem !important;
}
.m-auto {
  margin: auto !important;
}
.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}
.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}
.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}
.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}
.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}
.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}
.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}
.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}
.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}
.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}
.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}
.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}
.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}
.mt-0 {
  margin-top: 0 !important;
}
.mt-1 {
  margin-top: 0.25rem !important;
}
.mt-2 {
  margin-top: 0.5rem !important;
}
.mt-3 {
  margin-top: 1rem !important;
}
.mt-4 {
  margin-top: 1.5rem !important;
}
.mt-5 {
  margin-top: 3rem !important;
}
.mt-auto {
  margin-top: auto !important;
}
.me-0 {
  margin-right: 0 !important;
}
.me-1 {
  margin-right: 0.25rem !important;
}
.me-2 {
  margin-right: 0.5rem !important;
}
.me-3 {
  margin-right: 1rem !important;
}
.me-4 {
  margin-right: 1.5rem !important;
}
.me-5 {
  margin-right: 3rem !important;
}
.me-auto {
  margin-right: auto !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-1 {
  margin-bottom: 0.25rem !important;
}
.mb-2 {
  margin-bottom: 0.5rem !important;
}
.mb-3 {
  margin-bottom: 1rem !important;
}
.mb-4 {
  margin-bottom: 1.5rem !important;
}
.mb-5 {
  margin-bottom: 3rem !important;
}
.mb-auto {
  margin-bottom: auto !important;
}
.ms-0 {
  margin-left: 0 !important;
}
.ms-1 {
  margin-left: 0.25rem !important;
}
.ms-2 {
  margin-left: 0.5rem !important;
}
.ms-3 {
  margin-left: 1rem !important;
}
.ms-4 {
  margin-left: 1.5rem !important;
}
.ms-5 {
  margin-left: 3rem !important;
}
.ms-auto {
  margin-left: auto !important;
}
.p-0 {
  padding: 0 !important;
}
.p-1 {
  padding: 0.25rem !important;
}
.p-2 {
  padding: 0.5rem !important;
}
.p-3 {
  padding: 1rem !important;
}
.p-4 {
  padding: 1.5rem !important;
}
.p-5 {
  padding: 3rem !important;
}
.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}
.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}
.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}
.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}
.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}
.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}
.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.py-1, .swag-paypal-checkout-finish-pui-instructions-content .instruction-title, .swag-paypal-checkout-finish-pui-instructions-content .instruction-description {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}
.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}
.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}
.pt-0 {
  padding-top: 0 !important;
}
.pt-1 {
  padding-top: 0.25rem !important;
}
.pt-2 {
  padding-top: 0.5rem !important;
}
.pt-3 {
  padding-top: 1rem !important;
}
.pt-4 {
  padding-top: 1.5rem !important;
}
.pt-5 {
  padding-top: 3rem !important;
}
.pe-0 {
  padding-right: 0 !important;
}
.pe-1 {
  padding-right: 0.25rem !important;
}
.pe-2 {
  padding-right: 0.5rem !important;
}
.pe-3 {
  padding-right: 1rem !important;
}
.pe-4 {
  padding-right: 1.5rem !important;
}
.pe-5 {
  padding-right: 3rem !important;
}
.pb-0 {
  padding-bottom: 0 !important;
}
.pb-1 {
  padding-bottom: 0.25rem !important;
}
.pb-2 {
  padding-bottom: 0.5rem !important;
}
.pb-3 {
  padding-bottom: 1rem !important;
}
.pb-4 {
  padding-bottom: 1.5rem !important;
}
.pb-5 {
  padding-bottom: 3rem !important;
}
.ps-0 {
  padding-left: 0 !important;
}
.ps-1 {
  padding-left: 0.25rem !important;
}
.ps-2 {
  padding-left: 0.5rem !important;
}
.ps-3 {
  padding-left: 1rem !important;
}
.ps-4 {
  padding-left: 1.5rem !important;
}
.ps-5 {
  padding-left: 3rem !important;
}
.gap-0 {
  gap: 0 !important;
}
.gap-1 {
  gap: 0.25rem !important;
}
.gap-2 {
  gap: 0.5rem !important;
}
.gap-3 {
  gap: 1rem !important;
}
.gap-4 {
  gap: 1.5rem !important;
}
.gap-5 {
  gap: 3rem !important;
}
.font-monospace {
  font-family: var(--bs-font-monospace) !important;
}
.fs-1 {
  font-size: calc(1.35rem + 1.2vw) !important;
}
.fs-2 {
  font-size: calc(1.3rem + 0.6vw) !important;
}
.fs-3 {
  font-size: calc(1.275rem + 0.3vw) !important;
}
.fs-4 {
  font-size: 1.25rem !important;
}
.fs-5 {
  font-size: 1rem !important;
}
.fs-6 {
  font-size: 0.875rem !important;
}
.fst-italic {
  font-style: italic !important;
}
.fst-normal {
  font-style: normal !important;
}
.fw-light {
  font-weight: 300 !important;
}
.fw-lighter {
  font-weight: lighter !important;
}
.fw-normal {
  font-weight: 400 !important;
}
.fw-bold {
  font-weight: 700 !important;
}
.fw-semibold {
  font-weight: 600 !important;
}
.fw-bolder {
  font-weight: bolder !important;
}
.lh-1 {
  line-height: 1 !important;
}
.lh-sm {
  line-height: 1.25 !important;
}
.lh-base {
  line-height: 1.5 !important;
}
.lh-lg {
  line-height: 2 !important;
}
.text-start {
  text-align: left !important;
}
.text-end {
  text-align: right !important;
}
.text-center {
  text-align: center !important;
}
.text-decoration-none {
  text-decoration: none !important;
}
.text-decoration-underline {
  text-decoration: underline !important;
}
.text-decoration-line-through {
  text-decoration: line-through !important;
}
.text-lowercase {
  text-transform: lowercase !important;
}
.text-uppercase {
  text-transform: uppercase !important;
}
.text-capitalize {
  text-transform: capitalize !important;
}
.text-wrap {
  white-space: normal !important;
}
.text-nowrap {
  white-space: nowrap !important;
}
/* rtl:begin:remove */
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}
/* rtl:end:remove */
.text-primary, .loader {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}
.text-secondary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}
.text-success {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}
.text-info {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
}
.text-warning {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}
.text-danger {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}
.text-light {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}
.text-dark {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}
.text-black {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}
.text-white {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}
.text-body {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}
.text-muted {
  --bs-text-opacity: 1;
  color: #798490 !important;
}
.text-black-50 {
  --bs-text-opacity: 1;
  color: rgba(0, 0, 0, 0.5) !important;
}
.text-white-50 {
  --bs-text-opacity: 1;
  color: rgba(255, 255, 255, 0.5) !important;
}
.text-reset {
  --bs-text-opacity: 1;
  color: inherit !important;
}
.text-opacity-25 {
  --bs-text-opacity: 0.25;
}
.text-opacity-50 {
  --bs-text-opacity: 0.5;
}
.text-opacity-75 {
  --bs-text-opacity: 0.75;
}
.text-opacity-100 {
  --bs-text-opacity: 1;
}
.bg-primary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}
.bg-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
}
.bg-success {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}
.bg-info {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
}
.bg-warning {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
}
.bg-danger {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}
.bg-light, .order-detail-table-footer {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}
.bg-dark {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}
.bg-black {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}
.bg-white {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}
.bg-body {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
}
.bg-transparent {
  --bs-bg-opacity: 1;
  background-color: transparent !important;
}
.bg-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-gradient {
  background-image: var(--bs-gradient) !important;
}
.user-select-all {
  user-select: all !important;
}
.user-select-auto {
  user-select: auto !important;
}
.user-select-none {
  user-select: none !important;
}
.pe-none {
  pointer-events: none !important;
}
.pe-auto {
  pointer-events: auto !important;
}
.rounded {
  border-radius: var(--bs-border-radius) !important;
}
.rounded-0 {
  border-radius: 0 !important;
}
.rounded-1 {
  border-radius: var(--bs-border-radius-sm) !important;
}
.rounded-2 {
  border-radius: var(--bs-border-radius) !important;
}
.rounded-3 {
  border-radius: var(--bs-border-radius-lg) !important;
}
.rounded-4 {
  border-radius: var(--bs-border-radius-xl) !important;
}
.rounded-5 {
  border-radius: var(--bs-border-radius-2xl) !important;
}
.rounded-circle {
  border-radius: 50% !important;
}
.rounded-pill {
  border-radius: var(--bs-border-radius-pill) !important;
}
.rounded-top {
  border-top-left-radius: var(--bs-border-radius) !important;
  border-top-right-radius: var(--bs-border-radius) !important;
}
.rounded-end {
  border-top-right-radius: var(--bs-border-radius) !important;
  border-bottom-right-radius: var(--bs-border-radius) !important;
}
.rounded-bottom {
  border-bottom-right-radius: var(--bs-border-radius) !important;
  border-bottom-left-radius: var(--bs-border-radius) !important;
}
.rounded-start {
  border-bottom-left-radius: var(--bs-border-radius) !important;
  border-top-left-radius: var(--bs-border-radius) !important;
}
.visible {
  visibility: visible !important;
}
.invisible {
  visibility: hidden !important;
}
@media (min-width: 576px) {
  .float-sm-start {
    float: left !important;
  }
  .float-sm-end {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
  .order-sm-first {
    order: -1 !important;
  }
  .order-sm-0 {
    order: 0 !important;
  }
  .order-sm-1 {
    order: 1 !important;
  }
  .order-sm-2 {
    order: 2 !important;
  }
  .order-sm-3 {
    order: 3 !important;
  }
  .order-sm-4 {
    order: 4 !important;
  }
  .order-sm-5 {
    order: 5 !important;
  }
  .order-sm-last {
    order: 6 !important;
  }
  .m-sm-0, .swag-paypal-checkout-finish-pui-instructions-content .instruction-title, .swag-paypal-checkout-finish-pui-instructions-content .instruction-description {
    margin: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-5 {
    margin-top: 3rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  .me-sm-3 {
    margin-right: 1rem !important;
  }
  .me-sm-4 {
    margin-right: 1.5rem !important;
  }
  .me-sm-5 {
    margin-right: 3rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-3 {
    margin-left: 1rem !important;
  }
  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }
  .ms-sm-5 {
    margin-left: 3rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .p-sm-3, .swag-paypal-checkout-finish-pui-instructions-content .instruction-title, .swag-paypal-checkout-finish-pui-instructions-content .instruction-description {
    padding: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-5 {
    padding-top: 3rem !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pe-sm-3 {
    padding-right: 1rem !important;
  }
  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pe-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }
  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  .ps-sm-3 {
    padding-left: 1rem !important;
  }
  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }
  .ps-sm-5 {
    padding-left: 3rem !important;
  }
  .gap-sm-0 {
    gap: 0 !important;
  }
  .gap-sm-1 {
    gap: 0.25rem !important;
  }
  .gap-sm-2 {
    gap: 0.5rem !important;
  }
  .gap-sm-3 {
    gap: 1rem !important;
  }
  .gap-sm-4 {
    gap: 1.5rem !important;
  }
  .gap-sm-5 {
    gap: 3rem !important;
  }
  .text-sm-start {
    text-align: left !important;
  }
  .text-sm-end {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .float-md-start {
    float: left !important;
  }
  .float-md-end {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
  .order-md-first {
    order: -1 !important;
  }
  .order-md-0 {
    order: 0 !important;
  }
  .order-md-1 {
    order: 1 !important;
  }
  .order-md-2 {
    order: 2 !important;
  }
  .order-md-3 {
    order: 3 !important;
  }
  .order-md-4 {
    order: 4 !important;
  }
  .order-md-5 {
    order: 5 !important;
  }
  .order-md-last {
    order: 6 !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .mt-md-5 {
    margin-top: 3rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-1 {
    margin-right: 0.25rem !important;
  }
  .me-md-2 {
    margin-right: 0.5rem !important;
  }
  .me-md-3 {
    margin-right: 1rem !important;
  }
  .me-md-4 {
    margin-right: 1.5rem !important;
  }
  .me-md-5 {
    margin-right: 3rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  .ms-md-3 {
    margin-left: 1rem !important;
  }
  .ms-md-4 {
    margin-left: 1.5rem !important;
  }
  .ms-md-5 {
    margin-left: 3rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .pt-md-5 {
    padding-top: 3rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  .pe-md-3 {
    padding-right: 1rem !important;
  }
  .pe-md-4 {
    padding-right: 1.5rem !important;
  }
  .pe-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  .ps-md-3 {
    padding-left: 1rem !important;
  }
  .ps-md-4 {
    padding-left: 1.5rem !important;
  }
  .ps-md-5 {
    padding-left: 3rem !important;
  }
  .gap-md-0 {
    gap: 0 !important;
  }
  .gap-md-1 {
    gap: 0.25rem !important;
  }
  .gap-md-2 {
    gap: 0.5rem !important;
  }
  .gap-md-3 {
    gap: 1rem !important;
  }
  .gap-md-4 {
    gap: 1.5rem !important;
  }
  .gap-md-5 {
    gap: 3rem !important;
  }
  .text-md-start {
    text-align: left !important;
  }
  .text-md-end {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .float-lg-start {
    float: left !important;
  }
  .float-lg-end {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block, .is-act-checkoutregisterpage .checkout .checkout-aside {
    display: block !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
  .order-lg-first {
    order: -1 !important;
  }
  .order-lg-0 {
    order: 0 !important;
  }
  .order-lg-1 {
    order: 1 !important;
  }
  .order-lg-2 {
    order: 2 !important;
  }
  .order-lg-3 {
    order: 3 !important;
  }
  .order-lg-4 {
    order: 4 !important;
  }
  .order-lg-5 {
    order: 5 !important;
  }
  .order-lg-last {
    order: 6 !important;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-5 {
    margin-top: 3rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  .me-lg-3 {
    margin-right: 1rem !important;
  }
  .me-lg-4 {
    margin-right: 1.5rem !important;
  }
  .me-lg-5 {
    margin-right: 3rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-3 {
    margin-left: 1rem !important;
  }
  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }
  .ms-lg-5 {
    margin-left: 3rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-3 {
    padding-top: 1rem !important;
  }
  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-5 {
    padding-top: 3rem !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pe-lg-3 {
    padding-right: 1rem !important;
  }
  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pe-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-3 {
    padding-left: 1rem !important;
  }
  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }
  .ps-lg-5 {
    padding-left: 3rem !important;
  }
  .gap-lg-0 {
    gap: 0 !important;
  }
  .gap-lg-1 {
    gap: 0.25rem !important;
  }
  .gap-lg-2 {
    gap: 0.5rem !important;
  }
  .gap-lg-3 {
    gap: 1rem !important;
  }
  .gap-lg-4 {
    gap: 1.5rem !important;
  }
  .gap-lg-5 {
    gap: 3rem !important;
  }
  .text-lg-start {
    text-align: left !important;
  }
  .text-lg-end {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-start {
    float: left !important;
  }
  .float-xl-end {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
  .order-xl-first {
    order: -1 !important;
  }
  .order-xl-0 {
    order: 0 !important;
  }
  .order-xl-1 {
    order: 1 !important;
  }
  .order-xl-2 {
    order: 2 !important;
  }
  .order-xl-3 {
    order: 3 !important;
  }
  .order-xl-4 {
    order: 4 !important;
  }
  .order-xl-5 {
    order: 5 !important;
  }
  .order-xl-last {
    order: 6 !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 1rem !important;
  }
  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-5 {
    margin-top: 3rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xl-3 {
    margin-right: 1rem !important;
  }
  .me-xl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xl-5 {
    margin-right: 3rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-3 {
    margin-left: 1rem !important;
  }
  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xl-5 {
    margin-left: 3rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-3 {
    padding-top: 1rem !important;
  }
  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-5 {
    padding-top: 3rem !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xl-3 {
    padding-right: 1rem !important;
  }
  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xl-3 {
    padding-left: 1rem !important;
  }
  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xl-5 {
    padding-left: 3rem !important;
  }
  .gap-xl-0 {
    gap: 0 !important;
  }
  .gap-xl-1 {
    gap: 0.25rem !important;
  }
  .gap-xl-2 {
    gap: 0.5rem !important;
  }
  .gap-xl-3 {
    gap: 1rem !important;
  }
  .gap-xl-4 {
    gap: 1.5rem !important;
  }
  .gap-xl-5 {
    gap: 3rem !important;
  }
  .text-xl-start {
    text-align: left !important;
  }
  .text-xl-end {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1400px) {
  .float-xxl-start {
    float: left !important;
  }
  .float-xxl-end {
    float: right !important;
  }
  .float-xxl-none {
    float: none !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xxl-row {
    flex-direction: row !important;
  }
  .flex-xxl-column {
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    align-content: center !important;
  }
  .align-content-xxl-between {
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    align-self: auto !important;
  }
  .align-self-xxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
  .order-xxl-first {
    order: -1 !important;
  }
  .order-xxl-0 {
    order: 0 !important;
  }
  .order-xxl-1 {
    order: 1 !important;
  }
  .order-xxl-2 {
    order: 2 !important;
  }
  .order-xxl-3 {
    order: 3 !important;
  }
  .order-xxl-4 {
    order: 4 !important;
  }
  .order-xxl-5 {
    order: 5 !important;
  }
  .order-xxl-last {
    order: 6 !important;
  }
  .m-xxl-0 {
    margin: 0 !important;
  }
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .m-xxl-3 {
    margin: 1rem !important;
  }
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .m-xxl-5 {
    margin: 3rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xxl-0 {
    margin-top: 0 !important;
  }
  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xxl-3 {
    margin-top: 1rem !important;
  }
  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xxl-5 {
    margin-top: 3rem !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .me-xxl-0 {
    margin-right: 0 !important;
  }
  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xxl-3 {
    margin-right: 1rem !important;
  }
  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xxl-5 {
    margin-right: 3rem !important;
  }
  .me-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .ms-xxl-0 {
    margin-left: 0 !important;
  }
  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xxl-3 {
    margin-left: 1rem !important;
  }
  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xxl-5 {
    margin-left: 3rem !important;
  }
  .ms-xxl-auto {
    margin-left: auto !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .p-xxl-3 {
    padding: 1rem !important;
  }
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  .p-xxl-5 {
    padding: 3rem !important;
  }
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xxl-3 {
    padding-top: 1rem !important;
  }
  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xxl-5 {
    padding-top: 3rem !important;
  }
  .pe-xxl-0 {
    padding-right: 0 !important;
  }
  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xxl-3 {
    padding-right: 1rem !important;
  }
  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xxl-5 {
    padding-right: 3rem !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xxl-0 {
    padding-left: 0 !important;
  }
  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xxl-3 {
    padding-left: 1rem !important;
  }
  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xxl-5 {
    padding-left: 3rem !important;
  }
  .gap-xxl-0 {
    gap: 0 !important;
  }
  .gap-xxl-1 {
    gap: 0.25rem !important;
  }
  .gap-xxl-2 {
    gap: 0.5rem !important;
  }
  .gap-xxl-3 {
    gap: 1rem !important;
  }
  .gap-xxl-4 {
    gap: 1.5rem !important;
  }
  .gap-xxl-5 {
    gap: 3rem !important;
  }
  .text-xxl-start {
    text-align: left !important;
  }
  .text-xxl-end {
    text-align: right !important;
  }
  .text-xxl-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .fs-1 {
    font-size: 2.25rem !important;
  }
  .fs-2 {
    font-size: 1.75rem !important;
  }
  .fs-3 {
    font-size: 1.5rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-grid {
    display: grid !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
  .d-print-none {
    display: none !important;
  }
}
/*
Tiny slider
==================================================
Import of Tiny slider vendor.

https://github.com/ganlanyuan/tiny-slider
*/
.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
*/
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::before {
  position: absolute;
  top: -100%;
  font-size: 0;
}
@media (max-width: 575.98px) {
  html::before {
    content: "xs";
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  html::before {
    content: "sm";
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  html::before {
    content: "md";
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  html::before {
    content: "lg";
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  html::before {
    content: "xl";
  }
}
@media (min-width: 1400px) {
  html::before {
    content: "xxl";
  }
}
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;
}
/*
Reboot
==================================================
Reboot styles using only element selectors.

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-has-icon {
  display: flex;
  align-items: center;
}
.alert-has-icon .alert-content-container {
  padding-left: 1rem;
}
.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: #333;
  font-size: 1rem;
  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 #bcc1c7;
}
.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: #373737;
}
.category-navigation-link:hover {
  text-decoration: none;
}
.category-navigation-link.is-active {
  color: #00305d;
  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: #bcc1c7;
  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: #798490;
}
.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 {
  margin-bottom: 35px;
}
.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%);
  color: #798490;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.5);
  line-height: 68px;
  opacity: 0.5;
  transition: opacity 0.15s ease;
  cursor: pointer;
  padding: 0;
}
.base-slider-controls-prev:hover, .base-slider-controls-next:hover {
  border-color: rgba(0, 48, 93, 0.5);
  color: #00305d;
  opacity: 1;
}
.base-slider-controls-prev.is-nav-prev-outside, .base-slider-controls-prev.is-nav-next-outside, .base-slider-controls-next.is-nav-prev-outside, .base-slider-controls-next.is-nav-next-outside {
  border: 0;
  background-color: rgba(255, 255, 255, 0.8);
}
.base-slider-controls-prev[disabled], .base-slider-controls-next[disabled] {
  opacity: 0.2;
  cursor: default;
}
.base-slider-controls-prev {
  border-radius: 0 2px 2px 0;
}
.base-slider-controls-prev.is-nav-prev-outside {
  border-radius: 2px 0 0 2px;
}
.base-slider-controls-next {
  border-radius: 2px 0 0 2px;
}
.base-slider-controls-next.is-nav-next-outside {
  border-radius: 0 2px 2px 0;
}
@media (min-width: 768px) {
  .base-slider .tns-nav .base-slider-dot, .base-slider .tns-nav button, .base-slider .base-slider-dots .base-slider-dot, .base-slider .base-slider-dots button {
    margin: 0 5px;
  }
  .base-slider .tns-nav.hide-dots, .base-slider .base-slider-dots.hide-dots {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .base-slider .tns-nav, .base-slider .base-slider-dots {
    width: 55%;
    text-align: center;
  }
  .base-slider .tns-nav.hide-dots, .base-slider .tns-nav.hide-dots-mobile, .base-slider .base-slider-dots.hide-dots, .base-slider .base-slider-dots.hide-dots-mobile {
    display: none;
  }
}
/*
Image slider
==============================================
Styling for image slider component.
Displays images in a reusable slider component.
based on "base-slider" component and "tiny-slider" (https://github.com/ganlanyuan/tiny-slider)
*/
.image-slider.has-nav-outside .image-slider-item-container {
  padding: 0 25px;
}
.image-slider-container {
  position: relative;
  height: 100%;
}
.image-slider-container .image-slider-image {
  display: block;
  width: 100%;
}
.image-slider-container .image-slider-item {
  display: grid;
  max-width: 100%;
  position: relative;
}
.image-slider-container .image-slider-item.is-not-first {
  display: none;
}
.image-slider-container .image-slider-item.is-cover {
  height: 100%;
}
.image-slider-container .image-slider-item.is-cover .image-slider-image {
  object-fit: cover;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.image-slider-container .image-slider-link {
  display: block;
}
.js-slider-initialized .image-slider-item.is-not-first {
  display: block;
}
.image-slider-controls-prev.is-nav-prev-inside {
  left: 0;
}
.image-slider-controls-prev.is-nav-prev-outside {
  left: 0;
}
.image-slider-controls-next.is-nav-next-inside {
  right: 0;
}
.image-slider-controls-next.is-nav-next-outside {
  right: 0;
}
@media (min-width: 768px) {
  .image-slider-controls-prev.is-nav-prev-outside {
    left: -5px;
  }
  .image-slider-controls-next.is-nav-next-outside {
    right: -5px;
  }
}
/*
Product slider
==============================================
Styling for product slider component.
Displays product-boxes in a reusable slider component.
based on "base-slider" component and "tiny-slider" (https://github.com/ganlanyuan/tiny-slider)
*/
.product-slider.has-border {
  border: 1px solid #bcc1c7;
  border-radius: 2px;
}
.product-slider.has-border {
  padding: 25px;
}
.product-slider.has-nav {
  padding-left: 20px;
  padding-right: 20px;
}
.product-slider.has-border.has-nav {
  padding-left: 40px;
  padding-right: 40px;
}
.product-slider-container {
  padding-bottom: 1px;
}
.product-slider-controls-prev, .product-slider-controls-next {
  border: 0;
  background: none;
}
.product-slider-controls-prev {
  left: -10px;
}
.product-slider-controls-prev.has-border {
  left: 0;
}
.product-slider-controls-next {
  right: -10px;
}
.product-slider-controls-next.has-border {
  right: 0;
}
/*
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: 430px;
  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-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: #00305d;
}
.gallery-slider-thumbnails-item-inner {
  border: 1px solid #bcc1c7;
  border-radius: 2px;
  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-controls {
  display: none;
  margin: 0;
}
.gallery-slider-canvas-disabled .spatial-canvas-spinner {
  display: none;
}
.gallery-slider-canvas-disabled .gallery-slider-spatial-canvas-wrapper {
  display: none;
}
.spatial-canvas-note {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #798490;
  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 {
  position: absolute;
  bottom: 10px;
  right: 9px;
  padding: 0px;
  width: 32px;
  height: 32px;
  border: 2px solid #adb5bd;
  border-radius: 5px;
  text-align: center;
}
.ar-button .icon-augmented {
  margin-top: 1px;
  height: 18px;
  width: 18px;
}
.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 #bcc1c7;
}
.magnifier-zoom-image {
  width: 100%;
  height: 100%;
  position: absolute;
  background-repeat: no-repeat;
  background-position: 0 0;
  top: 0;
  left: 0;
}
@keyframes magnifyLensFade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*
Zoom modal
==============================================
Styling for zoom modal component.
Displays a single image or a gallery slider in a zoom modal with zoom functions.
*/
.zoom-modal-wrapper {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.modal.zoom-modal {
  overflow: hidden;
}
.modal.zoom-modal .zoom-modal-actions, .modal.zoom-modal .btn-close {
  position: absolute;
  top: 0;
  opacity: 1;
  z-index: 1051;
  margin: 15px;
}
.modal.zoom-modal .zoom-modal-actions {
  left: 0;
}
.modal.zoom-modal .btn-close {
  right: 0;
}
.modal.zoom-modal .modal-dialog .modal-content, .modal.zoom-modal .modal-dialog .modal-body {
  padding: 0;
  overflow: hidden;
}
.modal.zoom-modal .modal-footer {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 0 1rem;
  justify-content: center;
  background-color: #fff;
  margin: 0 30px;
}
.modal.zoom-modal .gallery-slider {
  top: 0;
  bottom: 0;
  position: absolute;
  height: auto;
  width: 100%;
}
.modal.zoom-modal .gallery-slider-thumbnails {
  margin: 0 auto;
}
.modal.zoom-modal .gallery-slider-controls-next {
  right: 0;
}
.modal.zoom-modal .gallery-slider-controls-prev {
  left: 0;
}
.modal.zoom-modal .gallery-slider-thumbnails-item {
  width: auto;
}
.modal.zoom-modal .gallery-slider-thumbnails-controls-next {
  right: -30px;
}
.modal.zoom-modal .gallery-slider-thumbnails-controls-prev {
  left: -30px;
}
.modal.zoom-modal .image-zoom-container {
  height: 100%;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
}
.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 {
  box-shadow: none;
}
.offcanvas .offcanvas-close, .offcanvas .offcanvas-close .icon {
  color: #798490;
}
.offcanvas > .loader, .offcanvas .offcanvas-body > .loader {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -1rem;
  margin-top: -1rem;
}
@media (max-width: 420px) {
  .offcanvas.offcanvas-end, .offcanvas.offcanvas-start {
    width: calc(100% - 20px);
  }
}
/*
Product box
==============================================
Styling for productbox component.
*/
.product-box {
  height: 100%;
}
.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.75rem;
}
.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: #333;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  height: 44px;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 22px;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
}
.product-name:hover {
  color: var(--text-color-brand-primary);
  text-decoration: none;
}
.product-description {
  height: 54px;
  margin-top: 10px;
  font-size: 14px;
  line-height: 18px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
/* stylelint-enable value-no-vendor-prefix, property-no-vendor-prefix */
.product-price-info {
  margin-top: 10px;
}
.product-price-info .product-advanced-list-price-wrapper {
  font-weight: 400;
}
.product-price-unit {
  height: 36px;
  font-size: 14px;
  line-height: 18px;
  overflow: hidden;
}
.product-unit-label {
  font-weight: 700;
}
.product-cheapest-price {
  min-height: 20px;
  font-size: 0.75rem;
  line-height: 20px;
  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: #333;
  min-height: 20px;
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  overflow: hidden;
}
.product-price.with-list-price {
  color: #e52427;
}
.product-price .list-price {
  color: #333;
  font-weight: 400;
  padding-left: 5px;
  font-size: 12px;
}
.product-price .list-price .list-price-price {
  text-decoration: line-through;
}
.product-price .regulation-price {
  color: #333;
  font-weight: 400;
  padding-left: 5px;
  font-size: 12px;
  padding-left: 0;
}
.product-price .list-price-no-line-through .list-price-price {
  text-decoration: none;
}
.product-price .strikeprice-text {
  color: #333;
  font-weight: 400;
  padding-left: 5px;
  font-size: 12px;
}
.product-action {
  margin-top: 20px;
}
.product-badges {
  position: absolute;
  top: 30px;
  left: -1px;
  z-index: 10;
}
.product-badges .badge {
  padding: 0 8px;
  height: 32px;
  margin: 0 0 8px;
  line-height: 32px;
  font-weight: 700;
  color: #fff;
  border-radius: 0 3px 3px 0;
  border-color: transparent;
  font-size: 18px;
  letter-spacing: 0;
}
.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-price-wrapper {
  font-size: 18px;
}
/*
Loader
==============================================
Defines the loader icon
*/
/*
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-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: 2px;
  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: 2px;
  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;
}
/*
Modal
==============================================
Custom styling for bootstrap modal component.

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

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

en-GB: we need to use svg for en-GB, cause it's smaller than the CSS-Version
*/
.language-flag {
  display: inline-block;
  height: 12px;
  width: 16px;
  border: 1px solid #adb5bd;
  margin-top: 1px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100%;
}
.language-flag.country-de {
  background-image: linear-gradient(to bottom, #000 33%, #f00 33%, #f00 66%, #fc0 66%);
}
.language-flag.country-gb {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGlkPSJmbGFnLWljb24tY3NzLWdiIiB2aWV3Qm94PSIwIDAgNjQwIDQ4MCI+CiAgPHBhdGggZmlsbD0iIzAxMjE2OSIgZD0iTTAgMGg2NDB2NDgwSDB6Ii8+CiAgPHBhdGggZmlsbD0iI0ZGRiIgZD0iTTc1IDBsMjQ0IDE4MUw1NjIgMGg3OHY2Mkw0MDAgMjQxbDI0MCAxNzh2NjFoLTgwTDMyMCAzMDEgODEgNDgwSDB2LTYwbDIzOS0xNzhMMCA2NFYwaDc1eiIvPgogIDxwYXRoIGZpbGw9IiNDODEwMkUiIGQ9Ik00MjQgMjgxbDIxNiAxNTl2NDBMMzY5IDI4MWg1NXptLTE4NCAyMGw2IDM1TDU0IDQ4MEgwbDI0MC0xNzl6TTY0MCAwdjNMMzkxIDE5MWwyLTQ0TDU5MCAwaDUwek0wIDBsMjM5IDE3NmgtNjBMMCA0MlYweiIvPgogIDxwYXRoIGZpbGw9IiNGRkYiIGQ9Ik0yNDEgMHY0ODBoMTYwVjBIMjQxek0wIDE2MHYxNjBoNjQwVjE2MEgweiIvPgogIDxwYXRoIGZpbGw9IiNDODEwMkUiIGQ9Ik0wIDE5M3Y5Nmg2NDB2LTk2SDB6TTI3MyAwdjQ4MGg5NlYwaC05NnoiLz4KPC9zdmc+Cg==");
}
/*
Icons
==============================================
Basic styling for icon component plus helper classes for sizing and colors.
Credit: https://github.com/FortAwesome/Font-Awesome
*/
.icon {
  width: 22px;
  height: 22px;
  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: #f39200;
}
.icon-success {
  color: #3cc261;
}
.icon-info {
  color: #26b6cf;
}
.icon-warning {
  color: #ffbd5d;
}
.icon-danger {
  color: #e52427;
}
.icon-light {
  color: #eee;
}
.icon-dark {
  color: #4a545b;
}
.icon-review {
  color: #fedc70;
}
.icon-fluid {
  width: 100%;
  height: 100%;
}
.icon-lg {
  width: 29.3333333333px;
  height: 29.3333333333px;
}
.icon-sm, .navigation-offcanvas-link-icon .loader {
  width: 19.25px;
  height: 19.25px;
}
.icon-xs {
  width: 16.5px;
  height: 16.5px;
}
.icon-1x {
  width: 22px;
  height: 22px;
}
.icon-2x {
  width: 44px;
  height: 44px;
}
.icon-3x {
  width: 66px;
  height: 66px;
}
.icon-4x {
  width: 88px;
  height: 88px;
}
.icon-5x {
  width: 110px;
  height: 110px;
}
.icon-6x {
  width: 132px;
  height: 132px;
}
.icon-7x {
  width: 154px;
  height: 154px;
}
.icon-8x {
  width: 176px;
  height: 176px;
}
.icon-9x {
  width: 198px;
  height: 198px;
}
.icon-10x {
  width: 220px;
  height: 220px;
}
.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: #00305d;
}
.alert-secondary .icon {
  color: #f39200;
}
.alert-success .icon {
  color: #3cc261;
}
.alert-info .icon {
  color: #26b6cf;
}
.alert-warning .icon {
  color: #ffbd5d;
}
.alert-danger .icon {
  color: #e52427;
}
.alert-light .icon {
  color: #f9f9f9;
}
.alert-dark .icon {
  color: #4a545b;
}
.btn-primary .icon, .address-editor-select:not(.collapsed) .icon, .address-editor-edit:not(.collapsed) .icon, .address-editor-create:not(.collapsed) .icon {
  color: #fff;
}
.btn-secondary .icon {
  color: #000;
}
.btn-success .icon {
  color: #000;
}
.btn-info .icon {
  color: #000;
}
.btn-warning .icon {
  color: #000;
}
.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 {
  top: 0.3rem;
}
.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 .cms-section-sidebar {
  display: flex;
}
@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 {
  overflow: hidden;
}
.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 .cms-block-container-row {
  flex-direction: row;
}
.cms-block-center-text .cms-element-text {
  padding: 30px;
}
.cms-block-image-three-cover .row, .cms-block-image-three-cover .account-content, .cms-block-image-three-cover .is-act-cartpage .checkout .checkout-container, .is-act-cartpage .checkout .cms-block-image-three-cover .checkout-container, .cms-block-image-three-cover .is-act-checkoutregisterpage .checkout .checkout-container, .is-act-checkoutregisterpage .checkout .cms-block-image-three-cover .checkout-container, .cms-block-image-three-cover .is-act-confirmpage .checkout .checkout-container, .is-act-confirmpage .checkout .cms-block-image-three-cover .checkout-container, .cms-block-image-three-cover .is-ctl-accountorder .checkout .checkout-container, .is-ctl-accountorder .checkout .cms-block-image-three-cover .checkout-container, .cms-block-image-three-cover .is-act-finishpage .checkout .checkout-container, .is-act-finishpage .checkout .cms-block-image-three-cover .checkout-container {
  margin: 0;
}
.cms-block-image-three-cover [class^=col-] {
  padding: 0;
}
.cms-block-image-text-bubble .cms-element-image .cms-image-container, .cms-block-image-bubble-row .cms-element-image .cms-image-container {
  height: 300px;
  width: 300px;
  margin: auto;
  border-radius: 50%;
  background-clip: padding-box;
  overflow: hidden;
}
.cms-block-image-highlight-row .cms-element-image {
  border: 12px solid #fff;
}
.cms-block-image-text-bubble .cms-element-text, .cms-block-image-text-row .cms-element-text {
  padding-top: 20px;
}
.cms-block-image-text-gallery .image-text-gallery-card {
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
}
.cms-block-image-text-gallery .cms-element-text {
  padding: 20px;
}
.cms-block-text-on-image .cms-element-text {
  padding: 30px;
  align-items: center;
  min-height: 240px;
}
.cms-block-image-text-cover .cms-element-text {
  padding-top: 30px;
}
.cms-block-image-simple-grid .left-top {
  margin-bottom: 40px;
}
.cms-block-image-simple-grid .right {
  height: 100%;
}
@media (min-width: 992px) {
  .cms-block-container .cms-block-container-row.has--sidebar {
    flex-direction: column;
  }
  .cms-block-container .cms-block-container-row.has--sidebar > div {
    flex-basis: auto;
    flex-grow: 1;
    max-width: 100%;
  }
}
@media (max-width: 767.98px) {
  .cms-block-image-text-gallery .cms-row > :not(:last-child), .cms-block-image-two-column .cms-row > :not(:last-child), .cms-block-image-three-column .cms-row > :not(:last-child), .cms-block-image-four-column .cms-row > :not(:last-child), .cms-block-image-bubble-row .cms-row > :not(:last-child), .cms-block-image-highlight-row .cms-row > :not(:last-child) {
    margin-bottom: 40px;
  }
  .cms-block-image-text .cms-row > :first-child, .cms-block-image-text-cover .cms-row > :first-child {
    margin-bottom: 40px;
  }
  .cms-block-image-simple-grid .left-bottom {
    margin-bottom: 40px;
  }
}
.cms-block-sidebar-filter {
  overflow: visible;
  /*
    The filter's col is set to "initial" because the "boundary" option
    of the filter panel bootstrap dropdown is not working otherwise.
    The "boundary" option sets the dropdown container to "static" to
    be able to "break out" of "overflow: hidden". But this interferes
    with position "relative" on surrounding columns.
    */
}
.cms-block-sidebar-filter .col-12 {
  position: initial;
}
.cms-element-product-name {
  display: inline-block;
}
.cms-element-manufacturer-logo .cms-image-link {
  height: 100%;
}
.cms-element-manufacturer-logo .cms-image-container.is-standard img {
  max-width: 200px;
  max-height: 70px;
}
/*
CMS elements
==============================================
General styling for cms elements
*/
.cms-element-image {
  position: relative;
  height: 100%;
}
.cms-element-image .cms-image {
  display: block;
  max-width: 100%;
}
.cms-element-image .cms-image-container {
  display: block;
  max-width: 100%;
  position: relative;
}
.cms-element-image .cms-image-container.is-cover {
  object-fit: contain;
  height: 100%;
}
.cms-element-image .cms-image-container.is-cover .cms-image {
  object-fit: cover;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cms-element-image .cms-image-container.is-cover .cms-image, .cms-element-image .cms-image-container.is-stretch .cms-image {
  width: 100%;
}
.cms-element-image .cms-image-link {
  display: block;
}
.cms-element-youtube-video {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cms-element-youtube-video.is--streched {
  height: 100%;
}
.cms-element-youtube-video::before {
  display: block;
  content: "";
  width: 100%;
  padding-top: calc((9 / 16) * 100%);
}
.cms-element-youtube-video__video, .cms-element-youtube-video__placeholder {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 0 none;
}
.cms-element-youtube-video__placeholder img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cms-element-youtube-video__backdrop {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.cms-element-youtube-video__backdrop > div {
  background: rgba(255, 255, 255, 0.5);
  padding: 1rem;
}
.cms-element-vimeo-video {
  position: relative;
  width: 100%;
}
.cms-element-vimeo-video::before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 56.25%;
}
.cms-element-vimeo-video__video, .cms-element-vimeo-video__placeholder {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 0 none;
}
.cms-element-vimeo-video__placeholder img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cms-element-vimeo-video__backdrop {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.cms-element-vimeo-video__backdrop > div {
  background: rgba(255, 255, 255, 0.5);
  padding: 1rem;
}
.cms-element-product-listing .cms-listing-col {
  margin-bottom: 1.5rem;
}
.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: 1rem;
  font-weight: 700;
  color: #333;
}
.cms-element-product-slider.has-border .cms-element-title {
  margin-top: 0.5rem;
}
.cms-element-text, .cms-element-image, .cms-element-product-box, .cms-element-buy-box, .cms-element-product-slider, .cms-element-image-slider, .cms-element-product-description-reviews, .cms-element-image-gallery {
  word-break: break-word;
}
.cms-element-text.has-vertical-alignment, .cms-element-image.has-vertical-alignment, .cms-element-product-box.has-vertical-alignment, .cms-element-buy-box.has-vertical-alignment, .cms-element-product-slider.has-vertical-alignment, .cms-element-image-slider.has-vertical-alignment, .cms-element-product-description-reviews.has-vertical-alignment, .cms-element-image-gallery.has-vertical-alignment {
  display: flex;
  height: 100%;
}
.cms-element-image-gallery .js-magnifier-zoom-image-container .magnifier-overlay {
  display: none;
}
@media (max-width: 991.98px) {
  .cms-element-product-listing-actions {
    flex-wrap: wrap;
    justify-content: center;
  }
  .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;
}
.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 .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;
}
.forms-boolean {
  display: block;
  border: 1px solid #bcc1c7;
  padding: 0 36px;
  margin: 12px 0;
  height: 40px;
  border-radius: 3px;
  cursor: pointer;
}
.forms-boolean.is-active {
  border-color: #00305d;
}
.forms-boolean:hover {
  border-color: #00305d;
  color: #00305d;
}
.forms-boolean-label {
  cursor: pointer;
  height: 38px;
  line-height: 38px;
  width: 100%;
}
.forms-boolean-label::before, .forms-boolean-label::after {
  top: 11px;
}
/*
Address editor
==============================================
Custom styling for an address modal which allows the user to create and edit addresses.

based on: https://getbootstrap.com/docs/5.2/components/modal
*/
.address-editor-select, .address-editor-edit, .address-editor-create {
  cursor: pointer;
}
.address-editor-select {
  margin-bottom: 1rem;
}
.address-editor-list-wrapper, .address-editor-create-address-wrapper {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.address-editor-card {
  padding-top: 1rem;
}
.address-editor-card:not(:last-child) {
  padding-bottom: 1rem;
  border-bottom: 1px solid #bcc1c7;
}
@media (min-width: 768px) {
  .address-editor-select {
    margin-bottom: 0;
  }
}
.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-description > p {
  color: #bcc1c7;
}
.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 {
  border: 1px solid #bcc1c7;
  font-weight: 400;
}
.filter-panel-item-toggle.show {
  color: #00305d;
  border-color: #00305d;
}
.filter-panel-item-toggle.show .icon-filter-panel-item-toggle svg {
  color: #00305d;
  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 #00305d;
  background-color: #fff;
  color: #4a545b;
}
.filter-active {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
  align-items: center;
  padding: 2px 35px 2px 14px;
  border-radius: 50px;
  height: 32px;
  line-height: 26px;
  border: 1px solid #bcc1c7;
  margin-right: 6px;
  margin-bottom: 8px;
  vertical-align: top;
  position: relative;
  max-width: 245px;
}
.filter-active-preview {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid #bcc1c7;
  margin-right: 8px;
  background-position: center center;
  background-size: cover;
  vertical-align: text-bottom;
}
.filter-active-remove {
  padding: 0 12px;
  margin: 0;
  line-height: 1;
  border: 0 none;
  font-weight: 700;
  color: #4a545b;
  font-size: 16px;
  background-color: transparent;
  appearance: none;
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  height: 100%;
  bottom: 0;
  width: 35px;
  text-align: left;
}
.filter-active-remove:focus {
  outline: none;
}
.filter-active-remove:hover {
  color: #00305d;
}
.btn.filter-reset-all {
  display: inline-block;
  border-radius: 50px;
  height: 32px;
  line-height: 26px;
  font-weight: 400;
  vertical-align: top;
  margin-right: 8px;
}
.is--sidebar .filter-panel, .is--sidebar .filter-panel-items-container {
  display: block;
}
.is--sidebar .filter-panel-item-dropdown {
  min-width: 100%;
  border: 1px solid #00305d;
  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: #00305d;
  border-color: #00305d;
  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: #00305d;
  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 {
  display: none;
  width: 100%;
  padding: 6px;
}
.btn.filter-panel-wrapper-toggle .icon {
  color: #00305d;
  width: 20px;
  height: 20px;
  margin-right: 6px;
}
.btn.filter-panel-wrapper-toggle:hover {
  background-color: #eee;
  color: #00305d;
}
.filter-panel-offcanvas-only {
  display: none;
}
.filter-panel-offcanvas-header {
  height: 80px;
  align-items: center;
  padding: 25px;
  display: none;
}
.filter-panel-offcanvas-title {
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 700;
  color: #333;
}
.filter-panel-offcanvas-close {
  cursor: pointer;
  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-offcanvas-close {
  display: block;
}
.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;
}
.offcanvas-filter .filter-panel-offcanvas-only {
  display: inherit;
}
/*
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 #bcc1c7;
  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;
  background-color: #798490;
  position: absolute;
  border: 1px solid #fff;
  border-radius: 50%;
  top: -4px;
  right: -4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease-in-out;
  opacity: 0;
  transform: translateY(-5px);
}
.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%;
  appearance: none;
  opacity: 0;
}
.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 #bcc1c7;
  padding-left: 12px;
  padding-right: 12px;
  height: 40px;
  border-radius: 2px;
  cursor: pointer;
}
.filter-boolean.is-active {
  border-color: #00305d;
}
.filter-boolean:hover {
  border-color: #00305d;
  color: #00305d;
}
.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: #e52427;
}
.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: 2px;
}
.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-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: #00305d;
  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: #373737;
  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;
}
/** @deprecated tag:v6.6.0 - File "_ellipsis.scss" will be removed without replacement. Corresponding JS-Plugin "ellipsis.plugin.js" is not used anymore. */
/**
 * @deprecated tag:v6.6.0 - File "_ellipsis.scss" will be removed without replacement. Corresponding JS-Plugin "ellipsis.plugin.js" is not used anymore.
 */
.swag-ellipsis-total-span, .swag-ellipsis-span {
  word-break: break-word;
}
.product-feature-list-list {
  list-style: none;
  padding-left: unset;
}
.product-feature-feature {
  font-size: 0.75rem;
}
.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: #00305d;
}
.notification-dot.notification-dot-secondary {
  background-color: #f39200;
}
.notification-dot.notification-dot-success {
  background-color: #3cc261;
}
.notification-dot.notification-dot-danger {
  background-color: #e52427;
}
.notification-dot.notification-dot-warning {
  background-color: #ffbd5d;
}
.notification-dot.notification-dot-info {
  background-color: #26b6cf;
}
.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-wishlist {
  margin-top: 10px;
}
.product-wishlist .icon-wishlist {
  width: 20px;
  height: 20px;
}
.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 {
  height: 40px;
  width: 40px;
  background: #f9f9f9;
  border-radius: 50%;
  border-style: none;
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  padding: 10px;
}
.product-wishlist-action-circle::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  left: calc(50% - 24px);
  top: calc(50% - 24px);
}
.product-wishlist-action-circle:focus {
  outline: none;
}
.product-wishlist-action {
  background: transparent;
  border-style: none;
  padding: 0;
  display: inline-flex;
}
.product-wishlist-action:focus {
  outline: none;
}
.product-wishlist-btn {
  height: 40px;
  width: 40px;
}
.product-wishlist-btn-remove {
  z-index: 10;
  position: absolute;
  background: #f9f9f9;
  border-radius: 50%;
  border-style: none;
  right: 25px;
  top: 25px;
  padding: 0;
}
.product-wishlist-btn-remove:focus {
  outline: none;
}
.product-wishlist .icon-wishlist {
  width: 20px;
  height: 20px;
}
.product-wishlist .icon-wishlist svg {
  top: 0;
}
.product-wishlist .icon-wishlist-remove {
  color: #4a545b;
}
.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.75rem;
}
.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;
}
.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 {
  border: 1px solid #bcc1c7;
}
.quantity-selector-group .btn.btn-plus {
  border-left: 0;
}
.quantity-selector-group .btn.btn-minus {
  border-right: 0;
}
.quantity-selector-group .btn:active {
  border-color: #bcc1c7;
}
.quantity-selector-group .btn svg {
  top: 4px;
}
/** @deprecated tag:v6.6.0 - File "_fading-plugin.scss" will be removed without replacement. Corresponding JS-Plugin "fading.plugin.js" is not used anymore. */
/**
 * @deprecated tag:v6.6.0 - File "_fading-plugin.scss" will be removed without replacement. Corresponding JS-Plugin "fading.plugin.js" is not used anymore.
 */
.swag-fade-container-shrinked {
  height: 3em;
}
.swag-fade-container-collapsed {
  height: auto;
}
.swag-fade-container {
  position: relative;
  overflow: hidden;
}
.swag-fading-link-more, .swag-fading-link-less {
  color: #00305d;
  text-align: right;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 4.5em;
  height: 1.5em;
}
.swag-fading-link-more {
  background: linear-gradient(90deg, transparent, #f9f9f9 60%);
}
.swag-fade-link-hidden {
  display: none;
}
.basic-captcha-content-image {
  width: 85%;
}
.basic-captcha-content-image img {
  border: 1px solid #bcc1c7;
  border-radius: 2px;
  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: #bcc1c7;
}
.basic-captcha-content-refresh-icon.btn .icon > svg {
  top: 0;
}
.basic-captcha-content-refresh-icon:hover {
  cursor: pointer;
  border-color: #00305d;
  background-color: #fff;
}
.basic-captcha-content-refresh-icon:hover .icon.icon-arrow-switch {
  color: #00305d;
}
.line-item {
  margin-bottom: 1rem;
}
.line-item.is-discount .line-item-total-price {
  color: #3cc261;
}
.line-item-info {
  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 {
  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 {
  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 {
  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 {
  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 {
  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%;
}
.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;
}
@media (min-width: 768px) {
  .no-remove-button .line-item-info {
    flex: 0 0 auto;
    width: 50%;
  }
}
.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: #3cc261;
}
.line-item-container .line-item-icon .icon {
  color: #f39200;
}
.line-item-nested-icon {
  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-info {
  order: 1;
}
.line-item-quantity {
  order: 3;
}
.line-item-quantity-container.disabled {
  background-color: #eee;
  border: 1px solid #798490;
}
.line-item-quantity-container.disabled .icon {
  color: #bcc1c7;
}
.line-item-quantity-container.disabled input {
  background-color: #eee;
  color: #798490;
  border: 0;
}
.line-item-unit-price, .line-item-tax-price {
  order: 5;
}
.line-item-total-price {
  order: 4;
}
.line-item-remove {
  order: 2;
  text-align: right;
}
.line-item-img-container {
  text-align: center;
  width: 70px;
}
.line-item-img-link {
  display: block;
}
.line-item-img {
  width: 100%;
  height: 70px;
  object-fit: contain;
}
.line-item-info {
  margin-bottom: 1rem;
}
.line-item-total-price {
  font-weight: 700;
}
.line-item-total-price, .line-item-tax-price {
  justify-content: space-between;
  display: flex;
}
.line-item-total-price {
  justify-content: flex-end;
}
.line-item-tax-price {
  justify-content: flex-end;
}
@media (max-width: 575.98px) {
  .line-item-tax-price, .line-item-unit-price {
    font-size: 0.75rem;
    font-style: italic;
  }
}
.line-item-unit-price {
  display: none;
}
@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;
}
.is-offcanvas .line-item-unit-price {
  display: none;
  font-size: 0.75rem;
  font-style: italic;
}
.is-offcanvas .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-quantity {
  margin-bottom: 0.5rem;
}
.line-item-details {
  padding-top: 8px;
}
.line-item-details-characteristics {
  margin: 0.5rem 0;
  font-size: 0.75rem;
}
.line-item-details-characteristics .line-item-details-characteristics-option {
  font-weight: 700;
}
.line-item-variants {
  margin-bottom: 0.5rem;
}
.line-item-variants-properties {
  display: flex;
}
.line-item-variants-properties-name {
  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;
  }
  .is-default .line-item-unit-price, .is-default .line-item-total-price, .is-default .line-item-tax-price, .is-order .line-item-unit-price, .is-order .line-item-total-price, .is-order .line-item-tax-price {
    justify-content: normal;
    flex-direction: column;
  }
  .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-default .line-item-unit-price-label, .is-default .line-item-total-price-label, .is-default .line-item-tax-price-label, .is-order .line-item-quantity-label, .is-order .line-item-unit-price-label, .is-order .line-item-total-price-label, .is-order .line-item-tax-price-label {
    display: none;
  }
}
.line-item-children {
  background-color: #f9f9f9;
  font-size: 0.75rem;
  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;
}
.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 #bcc1c7;
  margin: 1rem 0;
}
@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-children {
  font-size: 0.75rem;
}
.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;
}
.line-item-children .line-item-collapse {
  align-items: center;
}
.line-item {
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid #bcc1c7;
}
.line-item:last-child {
  border-bottom: 0;
}
.line-item-nested-icon {
  background-color: #798490;
}
.line-item-img {
  padding: 0.25rem;
  border: 1px solid #bcc1c7;
  border-radius: 0;
}
.line-item-ordernumber, line-item-product-number {
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
}
.line-item-delivery-date {
  font-size: 0.75rem;
}
.line-item-variants {
  font-size: 0.75rem;
}
.line-item-variants-properties-name {
  font-weight: 700;
}
.line-item-label {
  color: #373737;
  font-weight: 700;
}
a.line-item-label:hover {
  color: #00305d;
  text-decoration: none;
}
.line-item-quantity-label, .line-item-unit-price-label, .line-item-total-price-label, .line-item-tax-price-label {
  color: #4a545b;
}
.line-item-total-price-value {
  text-align: right;
}
.line-item-unit-price-label {
  display: none;
}
.line-item-tax-price-label {
  display: inline;
  font-weight: normal;
  margin-right: 5px;
}
.line-item-total-price-label {
  display: none;
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .line-item-unit-price-label {
    display: block;
  }
}
@media (min-width: 576px) {
  .line-item-unit-price-value-descriptor {
    display: none;
  }
  .line-item-total-price-label {
    display: block;
  }
  .line-item-tax-price-label {
    display: block;
    font-weight: bold;
    margin-right: 0;
  }
}
.is-offcanvas .line-item-unit-price-label {
  display: none;
}
.is-offcanvas .line-item-total-price-label {
  display: none;
}
.is-offcanvas .line-item-unit-price-value-descriptor {
  display: inline;
}
@media (min-width: 768px) {
  .line-item-details-container {
    padding-left: 1rem;
  }
}
.line-item-characteristics {
  margin: 0.5rem 0;
  font-size: 0.75rem;
}
.line-item-characteristics .line-item-characteristics-option {
  font-weight: 700;
}
@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;
}
/*
 * 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;
  }
}
/*
Top bar
==================================================
Contains styles for the top bar located at the top of the page.
The top bar contains the language switcher, the currency switcher and the service menu.
*/
.top-bar-nav {
  display: flex;
  justify-content: flex-end;
  min-height: 10px;
}
.top-bar-nav-item {
  display: flex;
  align-items: center;
  margin-right: 1rem;
}
.top-bar-nav-item:last-child {
  margin-right: 0;
}
.top-bar-nav-text {
  display: none;
}
.top-bar-list-label {
  display: inline-block;
  width: 100%;
  margin-bottom: 0;
}
.top-bar-list-radio {
  position: absolute;
  clip: rect(0 0 0 0);
  pointer-events: none;
}
.top-bar-list-icon {
  margin-right: 0.5rem;
}
@media (min-width: 768px) {
  .top-bar-nav-text {
    display: inline;
  }
}
/*
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-col {
  margin: 1rem 0;
}
.header-logo-main {
  text-align: center;
  display: block;
}
.header-logo-main-link {
  width: 100%;
}
.header-logo-picture {
  display: block;
  max-width: 300px;
  min-width: 200px;
  margin: auto;
}
.header-search {
  margin: 0.5rem 0;
}
.header-search-form {
  position: relative;
}
.header-search-btn .loader ~ .header-search-icon {
  display: none;
}
.header-cart-total {
  display: none;
}
.header-cart .header-cart-badge, .header-wishlist .header-wishlist-badge {
  position: absolute;
  right: -0.25rem;
}
.header-actions-btn {
  position: relative;
}
@media (min-width: 576px) {
  .header-row {
    padding-bottom: 1rem;
  }
  .header-logo-col {
    padding-bottom: 0.5rem;
  }
  .header-search-col .collapse:not(.show) {
    display: block;
  }
  .header-search {
    max-width: 400px;
    margin: auto;
  }
  .header-cart-total {
    display: inline-block;
    margin-left: 0.5rem;
  }
}
@media (min-width: 992px) {
  .header-logo-col {
    margin: 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-back-to-shop {
  display: flex;
  justify-content: flex-end;
}
.header-minimal-back-to-shop-button {
  color: #373737;
}
.header-minimal-logo {
  display: flex;
  align-items: center;
  margin-bottom: 0.25rem;
}
.header-minimal-home {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header-minimal-home-btn {
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 768px) {
  .header-minimal-contact {
    display: block;
  }
  .header-minimal-logo, .header-minimal-switch {
    margin-bottom: 0;
  }
}
/*
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 .footer-minus-icon {
  display: none;
}
.footer-column-headline.show .footer-plus-icon {
  display: none;
}
.footer-column-headline.show .footer-minus-icon {
  display: block;
}
.footer-column-toggle {
  pointer-events: none;
}
.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-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;
  }
}
/*
Main navigation
==============================================
Custom styling for main navigation on larger screens.

Based on bootstrap nav:
https://getbootstrap.com/docs/5.2/components/navs-tabs
*/
.main-navigation {
  display: none;
}
@media (min-width: 992px) {
  .main-navigation {
    display: inherit;
  }
}
/*
Navigation flyout
==============================================
Custom styling for navigation flyout which opens on hover over the main navigation.
*/
.navigation-flyouts {
  position: absolute;
  z-index: 750;
  height: 0;
  width: 100%;
}
.navigation-flyout {
  width: 100%;
  box-shadow: 0 43px 43px -6px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  pointer-events: none;
  position: absolute;
  display: none;
  height: 0;
}
.navigation-flyout.is-open {
  pointer-events: all;
  display: block;
  height: auto;
}
.navigation-flyout-content {
  padding-bottom: 60px;
}
.navigation-flyout-close {
  padding: 10px 0 10px 10px;
  cursor: pointer;
}
.navigation-flyout-teaser-image-container {
  display: block;
  max-width: 100%;
  height: 250px;
}
.navigation-flyout-teaser-image {
  object-fit: cover;
  display: block;
  max-width: 100%;
  width: 100%;
  height: 100%;
}
/*
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 .top-bar-nav-item {
  padding: 0 1rem;
}
.navigation-offcanvas-actions .top-bar-nav-name {
  display: inline;
}
.navigation-offcanvas-headline {
  padding: 20px 1rem 1rem;
}
.navigation-offcanvas-link-icon {
  display: inline-flex;
}
.navigation-offcanvas-link {
  transition: color 0.45s cubic-bezier(0.3, 0, 0.15, 1);
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 12px 1rem;
}
@media (prefers-reduced-motion: reduce) {
  .navigation-offcanvas-link {
    transition: none;
  }
}
.navigation-offcanvas-link.is-home-link, .navigation-offcanvas-link.is-back-link {
  justify-content: flex-start;
}
.navigation-offcanvas-link.is-home-link .navigation-offcanvas-link-icon, .navigation-offcanvas-link.is-back-link .navigation-offcanvas-link-icon {
  margin-right: 0.5rem;
}
/*
Offcanvas cart
==============================================
Extends the basic offcanvas component with additional cart styles.
*/
.offcanvas-cart {
  /** @deprecated tag:v6.6.0 - Unused CSS rules for "cart-item" will be removed. The corresponding templates were removed in v6.5.0. Please build upon the CSS for "line-item" instead. */
  /** @deprecated tag:v6.6.0 - Unused CSS rules for "cart-item" will be removed. The corresponding templates were removed in v6.5.0. Please build upon the CSS for "line-item" instead. */
  /** @deprecated tag:v6.6.0 - Unused CSS rules for "cart-item" will be removed. The corresponding templates were removed in v6.5.0. Please build upon the CSS for "line-item" instead. */
  /** @deprecated tag:v6.6.0 - Unused CSS rules for "cart-item" will be removed. The corresponding templates were removed in v6.5.0. Please build upon the CSS for "line-item" instead. */
  /** @deprecated tag:v6.6.0 - Unused CSS rules for "cart-item" will be removed. The corresponding templates were removed in v6.5.0. Please build upon the CSS for "line-item" instead. */
  /** @deprecated tag:v6.6.0 - Unused CSS rules for "cart-item" will be removed. The corresponding templates were removed in v6.5.0. Please build upon the CSS for "line-item" instead. */
  /** @deprecated tag:v6.6.0 - Unused CSS rules for "cart-item" will be removed. The corresponding templates were removed in v6.5.0. Please build upon the CSS for "line-item" instead. */
  /** @deprecated tag:v6.6.0 - Unused CSS rules for "cart-item" will be removed. The corresponding templates were removed in v6.5.0. Please build upon the CSS for "line-item" instead. */
  /** @deprecated tag:v6.6.0 - Unused CSS rules for "cart-item" will be removed. The corresponding templates were removed in v6.5.0. Please build upon the CSS for "line-item" instead. */
}
.offcanvas-cart .alert {
  margin-top: 1rem;
}
.offcanvas-cart .cart-item {
  padding: 1rem 0;
  position: relative;
}
.offcanvas-cart .cart-item.is-empty {
  padding-top: 0;
  border-bottom: 0;
}
.offcanvas-cart .cart-item.is-nested, .offcanvas-cart .cart-item.is-child {
  padding-left: 1rem;
}
.offcanvas-cart .cart-item.is-nested .cart-item-img {
  background: none;
  border: 0;
}
.offcanvas-cart .cart-item.is-discount .cart-item-price {
  color: #3cc261;
}
.offcanvas-cart .cart-item-img {
  height: 75px;
  width: 75px;
}
.offcanvas-cart .cart-item-img-link {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  width: 100%;
}
.offcanvas-cart .cart-item-img-link .cart-item-img-source {
  flex: 0 0 auto;
  width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.offcanvas-cart .cart-item-details {
  margin-bottom: 1rem;
  word-break: break-word;
}
.offcanvas-cart .cart-item-details-container .cart-item-details {
  margin-right: 58px;
}
.offcanvas-cart .cart-item-children {
  margin-left: 4px;
  margin-right: 4px;
  width: 100%;
}
.offcanvas-cart .cart-item-remove {
  position: absolute;
  right: 0;
}
.offcanvas-cart .cart-quantity-price {
  justify-content: space-between;
  display: flex;
  align-items: center;
  min-height: 50px;
}
.offcanvas-cart .cart-item-price {
  font-weight: 700;
  margin-left: 1rem;
  text-align: right;
}
.offcanvas-cart .cart-item-price .cart-item-reference-price {
  color: #6a6a6a;
  display: inline-block;
  line-height: 0.85rem;
}
.offcanvas-cart-items, .offcanvas-summary {
  margin: 1rem 0;
}
.offcanvas-cart-items {
  border-bottom: 1px solid #bcc1c7;
}
.offcanvas-summary-list {
  margin-bottom: 0;
}
.offcanvas-cart-promotion-form {
  margin-bottom: 1rem;
}
.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(--bs-body-color);
  --bs-btn-line-height: inherit;
  text-decoration: underline;
}
.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;
}
/** @deprecated tag:v6.6.0 - Unused CSS rules for "cart-item" will be removed. The corresponding templates were removed in v6.5.0. Please build upon the CSS for "line-item" instead. */
@media (max-width: 575.98px) {
  .cart-offcanvas .cart-item-price {
    order: 4;
  }
}
/*
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 #bcc1c7;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.5rem 0;
  color: #333;
}
.account-menu-register {
  text-align: center;
}
.account-menu-login {
  padding: 1rem 0;
  border-bottom: 1px solid #bcc1c7;
  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-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 #bcc1c7;
  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 #bcc1c7;
  border-top: 0 none;
  border-right: 0 none;
}
.search-suggest-product.is-active .search-suggest-product-link {
  color: #00305d;
}
.search-suggest-product-link:hover, .search-suggest-total-link:hover {
  text-decoration: none;
}
.search-suggest-product-link {
  display: block;
  padding: 0.5rem 0;
}
.search-suggest-product-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-suggest-product-price {
  text-align: right;
}
.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.
*/
.cookie-permission-container {
  display: none;
  border-top: 1px solid #bcc1c7;
  background: #fff;
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  text-align: center;
  padding: 0.5rem;
  font-size: 0.75rem;
  z-index: 1100;
}
.cookie-permission-content {
  margin-bottom: 0.5rem;
}
.cookie-permission-content a {
  display: inline-block;
}
.cookie-permission-actions {
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .cookie-permission-content {
    text-align: left;
    margin-bottom: 0;
  }
}
/*
    Cookie configuration
    ==============================================
    Offcanvas containing a list of cookies which need to be manually selected by the user.
*/
.offcanvas-cookie-description, .offcanvas-cookie-list {
  margin-bottom: 32px;
  border-bottom: 1px solid #bcc1c7;
}
.offcanvas-cookie-list {
  padding-bottom: 32px;
}
.offcanvas-cookie-group {
  margin: 12px 0;
}
.offcanvas-cookie-group input ~ label {
  user-select: none;
}
.offcanvas-cookie-group input:not([disabled]) ~ label {
  cursor: pointer;
}
.offcanvas-cookie-entries {
  position: relative;
}
.offcanvas-cookie-entries .icon {
  position: absolute;
  transform: translateY(-100%);
  top: -4px;
  right: 0;
  cursor: pointer;
  user-select: none;
}
.offcanvas-cookie-entries svg {
  transform-origin: center center;
  transition: transform 0.3s ease;
}
.offcanvas-cookie-entries > p, .offcanvas-cookie-entries .offcanvas-cookie-entry {
  padding: 0 8px 0 24px;
  height: 0;
  opacity: 0;
  transition: opacity 0.3s ease, padding-top 0.3s ease;
  margin: 0;
  visibility: hidden;
  overflow: hidden;
}
.offcanvas-cookie-entries > p > p, .offcanvas-cookie-entries .offcanvas-cookie-entry > p {
  margin: 8px 0;
}
.offcanvas-cookie-entries .offcanvas-cookie-entry {
  margin-left: 24px;
  overflow: visible;
}
.offcanvas-cookie-entries .offcanvas-cookie-entry.custom-control, .offcanvas-cookie-entries .offcanvas-cookie-entry.form-check {
  min-height: unset;
}
.offcanvas-cookie-entries--active svg {
  transform: rotate(90deg);
}
.offcanvas-cookie-entries--active > p, .offcanvas-cookie-entries--active .offcanvas-cookie-entry {
  height: auto;
  opacity: 1;
  padding-top: 8px;
  visibility: visible;
}
/*
Scroll up
==============================================
Shows a scroll up button at the bottom right of the page.
*/
.scroll-up-button {
  bottom: 1.5rem;
  cursor: pointer;
  opacity: 0;
  position: fixed;
  right: 1.5rem;
  transform: scale(0);
  transition: 0.45s cubic-bezier(0.3, 0, 0.15, 1);
  visibility: hidden;
  z-index: 700;
}
.scroll-up-button.is-visible {
  opacity: 1;
  transform: scale(1);
  visibility: visible;
}
.grecaptcha-badge {
  visibility: hidden;
  opacity: 0;
}
.grecaptcha-v2-container iframe.has-error {
  border: 1px solid #dc3545;
  border-radius: 3px;
}
/*
 * Page-specific styles
 * -------------------- */
.product-detail-headline {
  margin-bottom: 3rem;
}
.product-detail-content {
  margin-bottom: 1.5rem;
}
.product-detail-content .product-breadcrumb {
  padding: 0;
  margin: 1rem 0;
}
.product-detail-name-container {
  display: flex;
  align-items: center;
}
.product-detail-name-container .product-detail-variant-characteristics {
  padding-left: 0.5rem;
  font-size: 1rem;
  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.75rem;
}
.product-detail-tax {
  font-size: 0.875rem;
}
.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.75rem;
  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-group {
  margin-bottom: 1rem;
}
.product-detail-configurator-group-title {
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.product-detail-configurator-options {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.product-detail-configurator-option {
  display: inline-flex;
  margin-right: 0.5rem;
}
.product-detail-configurator-option-input {
  display: none;
}
.product-detail-configurator-option-input + .product-detail-configurator-option-label {
  align-items: center;
  cursor: pointer;
  border: 1px solid #4a545b;
  border-radius: 2px;
  box-shadow: inset 3px 3px 0 #fff, inset -3px -3px 0 #fff;
  background-color: #fff;
  display: inline-flex;
  justify-content: center;
  height: 60px;
  min-width: 60px;
  opacity: 0.35;
  padding: 3px;
  margin-bottom: 0.5rem;
  transition: border-color 0.45s cubic-bezier(0.3, 0, 0.15, 1), background-color 0.45s cubic-bezier(0.3, 0, 0.15, 1);
}
.product-detail-configurator-option-input + .product-detail-configurator-option-label.is-display-text {
  box-shadow: none;
  height: auto;
  padding: 5px 10px;
}
.product-detail-configurator-option-input.is-combinable + .product-detail-configurator-option-label {
  opacity: 1;
  border: 1px solid #bcc1c7;
}
.product-detail-configurator-option-input:checked + .product-detail-configurator-option-label {
  border: 1px solid #00305d;
}
.product-detail-configurator-option-input:checked + .product-detail-configurator-option-label.is-display-text {
  background-color: #00305d;
  color: #fff;
}
.product-detail-configurator-option-input.is-combinable + .product-detail-configurator-option-label:hover, .product-detail-configurator-option-input.is-combinable + .product-detail-configurator-option-label:active, .product-detail-configurator-option-input.is-combinable + .product-detail-configurator-option-label:focus, .product-detail-configurator-option-input + .product-detail-configurator-option-label:hover, .product-detail-configurator-option-input + .product-detail-configurator-option-label:active, .product-detail-configurator-option-input + .product-detail-configurator-option-label:focus {
  border: 1px solid #00305d;
}
.product-detail-configurator-option-image {
  height: 100%;
}
.product-detail-tabs-content {
  display: none;
}
.product-detail-tabs-content .offcanvas-body {
  overflow: initial;
  padding: 0;
}
.product-detail-description-text {
  margin-bottom: 1.5rem;
}
@media (min-width: 576px) {
  .product-detail-tabs-content {
    display: block;
  }
  .product-detail-tabs .offcanvas-close, .product-detail-tab-navigation-icon, .product-detail-tab-preview {
    display: none;
  }
}
@media screen and (max-width: 575px) {
  .product-detail-tab-preview {
    flex-basis: 100%;
  }
}
.product-detail-review-widget {
  margin-bottom: 1rem;
  z-index: 1;
}
.product-detail-reviews {
  margin-bottom: 1rem;
}
.product-detail-reviews .icon svg {
  top: 2px;
}
.product-detail-review-teaser-btn .product-detail-review-teaser-hide {
  display: none;
}
.product-detail-review-teaser-btn.collapsed .product-detail-review-teaser-show {
  display: none;
}
.product-detail-review-teaser-btn.collapsed .product-detail-review-teaser-hide {
  display: block;
}
.product-review-rating {
  margin-right: 1rem;
}
.product-detail-review-item-points {
  margin-bottom: 0.5rem;
}
.product-detail-review-item-content {
  word-break: break-word;
}
.product-detail-review-form-radio {
  display: none;
}
.product-detail-review-form-rating-input {
  display: flex;
  align-items: center;
}
.product-review-point svg {
  top: 0;
}
.product-review-point, .point-container {
  display: inline-block;
  position: relative;
}
.point-rating {
  display: block;
  top: 0;
  left: 0;
}
.point-rating.point-blank .icon {
  color: #eee;
}
.point-partial {
  position: absolute;
}
.product-detail-review-form-rating-text {
  margin-left: 0.5rem;
  margin-bottom: 0;
}
.product-detail-review-form-star {
  margin-right: 10px;
}
.product-detail-review-login .login-card .card-body {
  padding-top: 0;
}
.product-detail-review-language {
  margin-bottom: 1rem;
}
.product-detail-review-sortby-label {
  margin-right: 0.25rem;
}
.product-detail-review-cancel {
  margin-right: 5px;
}
.offcanvas .product-detail-review-widget {
  position: static;
}
.offcanvas .product-detail-review-form-rating-input .product-review-point {
  margin-right: 0.5rem;
}
@media (min-width: 768px) {
  .product-detail-review-widget {
    margin-bottom: 0;
  }
  .product-detail-review-sortby-form {
    justify-content: flex-end;
  }
  .product-detail-review-language {
    margin-bottom: 0;
  }
  .product-detail-review-item-points {
    padding-right: 0;
    margin-bottom: 0;
  }
  .product-detail-review-item-title {
    padding-left: 0;
  }
  .product-detail-review-form-star {
    margin-right: 5px;
  }
}
.account-recover-password-info {
  margin-bottom: 1rem;
}
.account-guest-auth-info {
  margin-bottom: 1rem;
}
.account-welcome {
  padding-top: 1rem;
  margin-bottom: 1.5rem;
}
.account-breadcrumb {
  margin-bottom: 1.5rem;
}
.account-item-children {
  background-color: #f9f9f9;
  order: 10;
  margin: 12px 0;
  padding: 16px;
}
.account-item-children .nesting-level-1 {
  margin-left: 27px;
}
.account-item-children .nesting-level-2 {
  margin-left: 45px;
}
.account-item-children .nesting-level-3 {
  margin-left: 63px;
}
.account-item-children .nesting-level-4 {
  margin-left: 81px;
}
.account-item-children .nesting-level-5 {
  margin-left: 99px;
}
.account-item-children .nesting-level-6 {
  margin-left: 117px;
}
.account-item-children .nesting-level-7 {
  margin-left: 135px;
}
.account-item-children .nesting-level-8 {
  margin-left: 153px;
}
.account-item-children .nesting-level-9 {
  margin-left: 171px;
}
.account-item-children .nesting-level-10 {
  margin-left: 189px;
}
.account-item-children .account-item-children-elements {
  padding: 12px 0 0;
}
.account-item-children .account-item-headline {
  padding: 0;
  font-weight: 600;
}
.account-item-children .account-item-collapse {
  margin: 0;
}
.account-item-children .account-item-collapse-container, .account-item-children .account-item-child-label {
  padding: 0;
}
.account-item-children .account-item-collapse-icon-container {
  padding: 0;
  text-align: right;
}
.account-item-children .account-item-collapse-button {
  background-color: transparent;
  border-style: none;
}
.account-item-children .account-item-collapse-button:focus {
  outline: none;
}
.account-item-children .account-item-collapse-button > .account-item-collapse-icon {
  transform: rotate(180deg);
  transition: all 0.2s ease-out;
}
.account-item-children .account-item-collapse-button.collapsed > .account-item-collapse-icon {
  transform: rotate(0deg);
}
.account-item-children .account-item-children-element {
  margin: 0;
  padding: 8px 4px 0;
}
.account-item-children .account-item-children-element > .nesting-level-0 {
  list-style: none;
}
.account-item-children .account-item-children-element:last-child {
  border-style: none;
}
.account-item-children .account-item-child-label-bullet {
  display: list-item;
}
.account-item-children .account-item-children-element-divider:last-child {
  display: none;
}
.account-item-children .account-item-child-total-price {
  padding: 0;
  text-align: right;
  font-weight: 600;
}
.account-item-children .account-item-children-element-divider {
  border-top: 1px solid #bcc1c7;
  margin: 1rem 0;
}
@media (max-width: 991.98px) {
  .account-content-aside {
    display: none;
  }
}
@media (min-width: 1200px) {
  .account-item-children {
    margin: 0 30px 12px 96px;
  }
}
.account .account-aside-list-group {
  flex-direction: row;
  overflow-x: auto;
  overflow-y: hidden;
}
.account-aside {
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .account-aside {
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .account .account-aside-list-group {
    flex-direction: column;
    overflow: visible;
  }
}
.account-overview-card {
  margin-bottom: 3rem;
}
.register-personal {
  margin-bottom: 1rem;
}
.register-address {
  margin-bottom: 3rem;
}
.register-different-shipping {
  margin-bottom: 1rem;
}
.register-shipping {
  padding-top: 1.5rem;
}
.register-form .privacy-notice {
  margin-bottom: 1rem;
}
.login-card {
  margin-bottom: 1rem;
}
.login-advantages {
  display: none;
}
.login-password-recover {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .login-advantages {
    display: block;
  }
}
.address-card-title {
  margin-bottom: 1.5rem;
}
.address-actions-defaults {
  margin-bottom: 0.5rem;
}
.address-list {
  padding-top: 1.5rem;
}
.address-card {
  margin-bottom: 2.5rem;
}
.address-action-set-default {
  line-height: 1.5rem;
}
.address-action-delete {
  margin-left: 0.5rem;
}
.address-action-create {
  margin-bottom: 1.5rem;
}
.account-profile-personal {
  margin-bottom: 3rem;
}
.account-profile-credentials {
  margin-bottom: 1.5rem;
}
.order-table, .subscription-table, .purchase-table {
  margin-bottom: 1.5rem;
  border: 1px solid #bcc1c7;
  position: relative;
}
.order-table .order-item-detail, .subscription-table .order-item-detail, .subscription-table .subscription-item-detail, .purchase-table .order-item-detail, .purchase-table .subscription-item-detail, .order-table .subscription-item-detail {
  border-top: 0 none;
}
.order-table .order-detail-content, .subscription-table .order-detail-content, .subscription-table .subscription-detail-content, .purchase-table .order-detail-content, .purchase-table .subscription-detail-content, .order-table .subscription-detail-content {
  border-top: 1px solid #bcc1c7;
  padding: 0;
  box-shadow: none;
}
.order-table-header {
  display: none;
}
.order-table-header :first-child {
  position: relative;
}
.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-table-header:last-of-type, .order-wrapper:last-of-type, .subscription-wrapper:last-of-type {
  border-bottom: 0;
}
.order-table-header, .order-item-header, .subscription-item-header {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.order-table-header, .order-item-header, .subscription-item-header {
  padding-left: 20px;
  padding-right: 20px;
}
.order-table-header-heading, .order-table-header-order-status, .subscription-table-header-status, .order-table-header-context-menu, .subscription-table-header-context-menu {
  display: inline-block;
}
.order-table-header-heading {
  max-width: 290px;
}
.order-table-header-order-status, .subscription-table-header-status {
  font-weight: 700;
}
.order-table-header-context-menu-wrapper, .subscription-table-header-context-menu-wrapper {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
}
.order-table-header-context-menu-wrapper, .subscription-table-header-context-menu-wrapper, .order-table-header-heading {
  margin-top: 0.5rem;
}
.order-table-header-context-menu, .subscription-table-header-context-menu {
  float: right;
  border: 1px solid #bcc1c7;
  border-radius: 2px;
  width: 35px;
  height: 35px;
  padding: 0;
}
.order-table-header-context-menu::after, .subscription-table-header-context-menu::after {
  display: none;
}
.order-table-header-context-menu .icon, .subscription-table-header-context-menu .icon {
  position: relative;
  margin: 5px;
}
.order-table-header-context-menu .icon > svg, .subscription-table-header-context-menu .icon > svg {
  color: #373737;
  position: absolute;
  top: 0;
  left: 0;
}
.order-table-header-context-menu-content, .subscription-table-header-context-menu-content {
  padding-left: 10px;
  padding-right: 10px;
}
.order-table-header-context-menu-content-link, .subscription-table-header-context-menu-content-link {
  display: block;
  border: 0 none;
  padding: 0;
  width: 100%;
  color: #373737;
  background: none;
  cursor: pointer;
  text-align: left;
}
.order-table-header-context-menu-content-link:hover, .subscription-table-header-context-menu-content-link:hover {
  text-decoration: none;
  color: #00305d;
}
.order-table-header-context-menu-content-link:active, .subscription-table-header-context-menu-content-link:active {
  outline: none;
}
.order-table-header-order-number, .subscription-table-header-info-wrapper {
  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, .subscription-table-header-info-wrapper .order-table-header-label, .order-table-header-order-number .subscription-table-header-label, .subscription-table-header-info-wrapper .subscription-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 #bcc1c7;
  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%;
}
.order-table-header-label, .subscription-table-header-label {
  display: none;
}
.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, .subscription-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-open.subscription-item-status-badge, .order-item-status-badge.order-item-status-badge-in_progress, .order-item-status-badge-in_progress.subscription-item-status-badge {
  background-color: #26b6cf;
  color: #fff;
}
.order-item-status-badge.order-item-status-badge-completed, .order-item-status-badge-completed.subscription-item-status-badge {
  background-color: #3cc261;
  color: #fff;
}
.order-item-status-badge.order-item-status-badge-failed, .order-item-status-badge-failed.subscription-item-status-badge, .order-item-status-badge.order-item-status-badge-cancelled, .order-item-status-badge-cancelled.subscription-item-status-badge {
  background-color: #e52427;
  color: #fff;
}
.order-item-status-badge .icon, .subscription-item-status-badge .icon {
  color: currentColor;
}
.order-item-status-badge .icon svg, .subscription-item-status-badge .icon svg {
  top: 5px;
}
@media (min-width: 768px) {
  .order-table-header {
    display: block;
  }
  .order-table-header, .order-item-header, .subscription-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 (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, .subscription-table-header-label {
    display: inline;
  }
  .order-table-header-order-number, .subscription-table-header-info-wrapper {
    margin-bottom: 0;
  }
  .order-table-header-label, .subscription-table-header-label {
    display: block;
    float: left;
    width: 50%;
  }
  .order-table-body-value, .subscription-table-body-value {
    width: 50%;
  }
  .order-table-header-order-status, .subscription-table-header-status {
    margin-top: 0;
    margin-bottom: 1rem;
  }
  .order-table-header-context-menu-wrapper, .subscription-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-cancel-order-modal-toggle-btn {
  margin-top: 1rem;
}
.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, .subscription-detail-content {
  border-top: 1px solid #bcc1c7;
}
.order-detail-content-header, .subscription-detail-content-header {
  display: none;
}
.document-detail-content-header {
  display: block;
  border-bottom: 1px solid #bcc1c7;
  padding-bottom: 0.5rem;
}
.download-detail-content-header {
  display: block;
  border-bottom: 1px solid #bcc1c7;
  padding-bottom: 0.5rem;
}
.order-detail-content-header, .subscription-detail-content-header, .order-item-detail-footer, .subscription-item-detail-footer {
  padding-left: 10px;
  padding-right: 10px;
}
.order-detail-content-body.has-element-loader, .has-element-loader.subscription-detail-content-body {
  min-height: 70px;
  display: flex;
}
.order-detail-content-body .element-loader-backdrop, .subscription-detail-content-body .element-loader-backdrop {
  box-shadow: none;
}
.order-detail-content-header, .subscription-detail-content-header, .order-detail-content-row {
  margin-right: 20px;
  margin-left: 20px;
}
.order-detail-content-row {
  font-weight: 400;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.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;
}
@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 #bcc1c7;
  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: #3cc261;
}
.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, .subscription-item-detail-footer {
  padding: 1rem;
}
.order-item-detail-footer dl dt.col, .subscription-item-detail-footer dl dt.col, .order-item-detail-footer dl .is-act-confirmpage .checkout dt.checkout-aside, .is-act-confirmpage .checkout .order-item-detail-footer dl dt.checkout-aside, .order-item-detail-footer dl .is-ctl-accountorder .checkout dt.checkout-aside, .is-ctl-accountorder .checkout .order-item-detail-footer dl dt.checkout-aside, .order-item-detail-footer dl .is-act-finishpage .checkout dt.checkout-aside, .is-act-finishpage .checkout .order-item-detail-footer dl dt.checkout-aside, .subscription-item-detail-footer dl .is-act-confirmpage .checkout dt.checkout-aside, .is-act-confirmpage .checkout .subscription-item-detail-footer dl dt.checkout-aside, .subscription-item-detail-footer dl .is-ctl-accountorder .checkout dt.checkout-aside, .is-ctl-accountorder .checkout .subscription-item-detail-footer dl dt.checkout-aside, .subscription-item-detail-footer dl .is-act-finishpage .checkout dt.checkout-aside, .is-act-finishpage .checkout .subscription-item-detail-footer dl dt.checkout-aside, .order-item-detail-footer dl dt[class*="col-"], .subscription-item-detail-footer dl dt[class*="col-"] {
  margin-bottom: 0.5rem;
  padding-right: 0.5rem;
}
.order-item-detail-labels, .subscription-item-detail-labels {
  margin-bottom: 0;
}
.order-item-detail-labels-value, .subscription-item-detail-labels-value {
  font-weight: 400;
}
.order-detail-content-header, .subscription-detail-content-header {
  padding-left: 0;
  padding-right: 0;
}
.order-item-detail-summary, .subscription-item-detail-summary, .order-item-detail-summary dd:last-child, .subscription-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, .subscription-detail-content-header {
    display: block;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .order-item-label {
    display: none;
  }
  .order-detail-content-header, .subscription-detail-content-header {
    border-bottom: 1px solid #bcc1c7;
  }
  .order-detail-content, .subscription-detail-content {
    border-top: 0;
  }
  .order-header-price, .subscription-header-price, .order-item-price, .order-header-total, .subscription-header-total, .order-item-total, .order-header-actions {
    text-align: right;
  }
  .order-header-quantity, .subscription-header-quantity, .order-item-quantity {
    text-align: center;
  }
  .order-item-reorder {
    justify-content: flex-end;
  }
  .order-item-detail-summary dt, .subscription-item-detail-summary dt, .order-item-detail-summary dd, .subscription-item-detail-summary dd {
    text-align: right;
  }
  .document-item-view-file-icon-btn {
    display: none;
  }
  .download-item-view-file-icon-btn {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .document-header-date {
    display: none;
  }
  .document-item-view-file-text-btn {
    display: none;
  }
  .download-header-date {
    display: none;
  }
  .download-item-view-file-text-btn {
    display: none;
  }
}
.checkout-container {
  margin-bottom: 1.5rem;
}
.checkout-product-table {
  margin-bottom: 1.5rem;
}
.checkout-confirm-tos-checkbox, .checkout-confirm-tos-label {
  cursor: pointer;
}
.is-ctl-checkout .footer-minimal .footer-service-menu-list, .is-act-checkoutregisterpage .footer-minimal .footer-service-menu-list {
  display: block;
}
.checkout-aside-summary-label {
  font-weight: 400;
}
.checkout-aside-summary-list.display-rounded .checkout-aside-summary-total {
  font-weight: 400;
  font-size: 0.875rem;
}
.checkout-aside-summary-total {
  font-size: 1rem;
  font-weight: 700;
  padding-top: 13px;
  border-top: 1px solid #bcc1c7;
  margin-top: 5px;
}
.checkout-aside-summary-total-rounded {
  font-size: 1rem;
  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-total {
  font-size: 1rem;
  font-weight: 700;
}
.checkout-aside-summary-value {
  text-align: right;
}
.checkout-aside-product-header {
  margin-bottom: 1.5rem;
}
/** @deprecated tag:v6.6.0 - Styling for "checkout-aside-item" will be removed because the corresponding templates were replaced with "line-item" in v6.5.0. Please build upon the CSS for "line-item" instead. */
.checkout-aside-item {
  margin-bottom: 1rem;
}
.checkout-aside-item .checkout-aside-item-title {
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.checkout-aside-item .checkout-aside-item-characteristics {
  margin-bottom: 0.25rem;
}
.checkout-aside-item .checkout-aside-item-characteristics .checkout-aside-item-characteristics-option {
  font-weight: 700;
}
.checkout-aside-item .checkout-aside-item-link-quantity {
  margin-bottom: 0.25rem;
}
/** @deprecated tag:v6.6.0 - Styling for "checkout-aside-item" will be removed because the corresponding templates were replaced with "line-item" in v6.5.0. Please build upon the CSS for "line-item" instead. */
.checkout-aside-item-price {
  font-weight: 700;
  text-align: right;
}
.checkout-aside-action {
  margin-top: 1rem;
}
.checkout-aside-add-code {
  margin-top: 1rem;
}
/** @deprecated tag:v6.6.0 - File "_aside-children.scss" will be removed. The corresponding templates were removed in v6.5.0. Please build upon the CSS for "line-item" instead. */
/**
 * @deprecated tag:v6.6.0 - File "_aside-children.scss" will be removed. The corresponding templates were removed in v6.5.0. Please build upon the CSS for "line-item" instead.
 */
.cart-aside-item-children {
  background-color: #f9f9f9;
  width: 100%;
  margin-top: 0.5rem;
  padding: 16px 16px 10px;
  order: 10;
}
.cart-aside-item-children .nesting-level-1 {
  margin-left: 27px;
}
.cart-aside-item-children .nesting-level-2 {
  margin-left: 45px;
}
.cart-aside-item-children .nesting-level-3 {
  margin-left: 63px;
}
.cart-aside-item-children .nesting-level-4 {
  margin-left: 81px;
}
.cart-aside-item-children .nesting-level-5 {
  margin-left: 99px;
}
.cart-aside-item-children .nesting-level-6 {
  margin-left: 117px;
}
.cart-aside-item-children .nesting-level-7 {
  margin-left: 135px;
}
.cart-aside-item-children .nesting-level-8 {
  margin-left: 153px;
}
.cart-aside-item-children .nesting-level-9 {
  margin-left: 171px;
}
.cart-aside-item-children .nesting-level-10 {
  margin-left: 189px;
}
.cart-aside-item-children .cart-aside-item-children-elements {
  padding: 12px 0 0;
}
.cart-aside-item-children .cart-aside-item-headline {
  padding: 0;
  font-weight: 600;
}
.cart-aside-item-children .cart-aside-item-change-button {
  width: fit-content;
  margin: 0 12px;
  font-size: 12px;
  text-decoration: underline;
  background-color: transparent;
  border-style: none;
}
.cart-aside-item-children .cart-aside-item-change-button:focus {
  outline: none;
}
.cart-aside-item-children .cart-aside-item-collapse {
  margin: 0;
}
.cart-aside-item-children .cart-aside-item-collapse-container, .cart-aside-item-children .cart-aside-item-child-label {
  padding: 0;
}
.cart-aside-item-children .cart-aside-item-collapse-icon-container {
  padding: 0;
  text-align: right;
}
.cart-aside-item-children .cart-aside-item-collapse-button {
  background-color: transparent;
  border-style: none;
}
.cart-aside-item-children .cart-aside-item-collapse-button:focus {
  outline: none;
}
.cart-aside-item-children .cart-aside-item-collapse-button > .cart-aside-item-collapse-icon {
  transform: rotate(180deg);
  transition: all 0.2s ease-out;
}
.cart-aside-item-children .cart-aside-item-collapse-button.collapsed > .cart-aside-item-collapse-icon {
  transform: rotate(0deg);
}
.cart-aside-item-children .cart-aside-item-children-element {
  margin: 0;
  padding: 8px 4px 0;
}
.cart-aside-item-children .cart-aside-item-children-element > .nesting-level-0 {
  list-style: none;
}
.cart-aside-item-children .cart-aside-item-children-element:last-child, .cart-aside-item-children .cart-aside-item-children-element-divider:last-child {
  border-style: none;
}
.cart-aside-item-children .cart-aside-item-child-label-bullet {
  display: list-item;
}
.cart-aside-item-children .cart-aside-item-child-total-price {
  padding: 0;
  text-align: right;
  font-weight: 600;
}
.cart-aside-item-children .cart-aside-item-children-element-divider {
  border-top: 1px solid #bcc1c7;
  margin: 1rem 0;
}
.is-act-cartpage .checkout .checkout-main {
  margin-bottom: 1.5rem;
}
.is-act-cartpage .checkout .checkout-aside-container {
  position: sticky;
  top: 0;
  z-index: 1;
}
.cart-main-header {
  margin-bottom: 1.5rem;
}
.cart-table-header {
  display: none;
}
.cart-header-unit-price, .cart-header-total-price, .cart-header-tax-price {
  text-align: right;
}
.cart-header-quantity {
  text-align: center;
}
.cart-header-row, .cart-item-row, .line-item-row {
  margin-right: -0.25rem;
  margin-left: -0.25rem;
}
.cart-header-row > .col, .is-act-confirmpage .checkout .cart-header-row > .checkout-aside, .is-ctl-accountorder .checkout .cart-header-row > .checkout-aside, .is-act-finishpage .checkout .cart-header-row > .checkout-aside, .cart-header-row > [class*="col-"], .cart-item-row > .col, .is-act-confirmpage .checkout .cart-item-row > .checkout-aside, .is-ctl-accountorder .checkout .cart-item-row > .checkout-aside, .is-act-finishpage .checkout .cart-item-row > .checkout-aside, .cart-item-row > [class*="col-"], .line-item-row > .col, .is-act-confirmpage .checkout .line-item-row > .checkout-aside, .is-ctl-accountorder .checkout .line-item-row > .checkout-aside, .is-act-finishpage .checkout .line-item-row > .checkout-aside, .line-item-row > [class*="col-"] {
  padding-right: 0.25rem;
  padding-left: 0.25rem;
}
.cart-add-product-container {
  margin-bottom: 1rem;
}
.cart-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 {
    max-width: 250px;
  }
  .cart-add-product-container {
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .cart-table-header {
    display: block;
  }
}
.is-act-checkoutregisterpage .checkout {
  padding-top: 70px;
}
.is-act-checkoutregisterpage .checkout .checkout-main {
  margin-bottom: 1.5rem;
}
.register-guest-control {
  margin-bottom: 1rem;
}
.register-login-collapse-toogle {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .is-act-checkoutregisterpage .checkout .checkout-main {
    margin-bottom: 0;
  }
}
.is-act-confirmpage .checkout, .is-ctl-accountorder .checkout {
  padding-top: 70px;
}
.is-act-confirmpage .checkout .checkout-additional, .is-ctl-accountorder .checkout .checkout-additional {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.is-act-confirmpage .checkout .checkout-aside-no-offset, .is-ctl-accountorder .checkout .checkout-aside-no-offset {
  margin-left: 0;
}
.confirm-main-header, .confirm-tos, .confirm-address, .confirm-payment-shipping, .confirm-payment, .confirm-product {
  margin-bottom: 1.5rem;
}
.confirm-payment-current, .confirm-shipping-current {
  margin-bottom: 3rem;
}
.confirm-payment-current.is-invalid, .confirm-shipping-current.is-invalid {
  color: #e52427;
}
.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%;
}
.confirm-checkout-collapse-trigger {
  text-underline: #00305d;
}
.confirm-checkout-collapse-trigger:hover {
  cursor: pointer;
}
.confirm-checkout-collapse-trigger .icon-confirm-checkout-chevron {
  height: 1.375rem;
}
.confirm-checkout-collapse-trigger .icon-confirm-checkout-chevron > svg {
  color: #00305d;
  transition: transform 0.2s ease-in-out;
}
.is-act-finishpage .checkout {
  padding-top: 70px;
}
.is-act-finishpage .checkout .checkout-additional {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.is-act-finishpage .checkout .checkout-aside-no-offset {
  margin-left: 0;
}
.finish-content {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 6rem;
}
.finish-ordernumber {
  font-size: 1rem;
  font-weight: 700;
}
.finish-teaser {
  text-align: center;
}
.finish-header {
  margin-bottom: 1.5rem;
  text-align: center;
}
.finish-ordernumber {
  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;
}
.breadcrumb.cms-breadcrumb {
  padding-left: 20px;
  padding-right: 20px;
}
.contact-headline {
  margin-bottom: 1.5rem;
}
.contact-content {
  margin: 0 auto;
}
.newsletter-headline {
  margin-bottom: 1rem;
}
.newsletter-content {
  margin: 0 auto;
}
.search-page .filter-panel-wrapper-toggle {
  margin-bottom: 1rem;
}
.search-headline {
  text-align: center;
  margin-bottom: 1.5rem;
}
.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: #333;
}
.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
*/
/*
 * Vendors
 * ------- */
/*
Inter typeface family
==================================================
Import of Inter font vendor.

https://rsms.me/inter/
*/
@supports not (font-variation-settings: normal) {
  @font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 400;
    font-display: fallback;
    src: url("../../0ad336262e4548e18c8d4d6ec380062a/assets/font/Inter-Regular-Roman.woff2") format("woff2"), url("../../0ad336262e4548e18c8d4d6ec380062a/assets/font/Inter-Regular-Roman.woff") format("woff");
  }
  @font-face {
    font-family: "Inter";
    font-style: italic;
    font-weight: 400;
    font-display: fallback;
    src: url("../../0ad336262e4548e18c8d4d6ec380062a/assets/font/Inter-Regular-Italic.woff2") format("woff2"), url("../../0ad336262e4548e18c8d4d6ec380062a/assets/font/Inter-Regular-Italic.woff") format("woff");
  }
  @font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 600;
    font-display: fallback;
    src: url("../../0ad336262e4548e18c8d4d6ec380062a/assets/font/Inter-SemiBold-Roman.woff2") format("woff2"), url("../../0ad336262e4548e18c8d4d6ec380062a/assets/font/Inter-SemiBold-Roman.woff") format("woff");
  }
  @font-face {
    font-family: "Inter";
    font-style: italic;
    font-weight: 600;
    font-display: fallback;
    src: url("../../0ad336262e4548e18c8d4d6ec380062a/assets/font/Inter-SemiBold-Italic.woff2") format("woff2"), url("../../0ad336262e4548e18c8d4d6ec380062a/assets/font/Inter-SemiBold-Italic.woff") format("woff");
  }
  @font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 700;
    font-display: fallback;
    src: url("../../0ad336262e4548e18c8d4d6ec380062a/assets/font/Inter-Bold-Roman.woff2") format("woff2"), url("../../0ad336262e4548e18c8d4d6ec380062a/assets/font/Inter-Bold-Roman.woff") format("woff");
  }
  @font-face {
    font-family: "Inter";
    font-style: italic;
    font-weight: 700;
    font-display: fallback;
    src: url("../../0ad336262e4548e18c8d4d6ec380062a/assets/font/Inter-Bold-Italic.woff2") format("woff2"), url("../../0ad336262e4548e18c8d4d6ec380062a/assets/font/Inter-Bold-Italic.woff") format("woff");
  }
}
@supports (font-variation-settings: normal) {
  @font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 400 700;
    font-display: fallback;
    src: url("../../0ad336262e4548e18c8d4d6ec380062a/assets/font/Inter-Variable-Roman-CyrillicExt.woff2") format("woff2 supports variations"), url("../../0ad336262e4548e18c8d4d6ec380062a/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("../../0ad336262e4548e18c8d4d6ec380062a/assets/font/Inter-Variable-Roman-Cyrillic.woff2") format("woff2 supports variations"), url("../../0ad336262e4548e18c8d4d6ec380062a/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("../../0ad336262e4548e18c8d4d6ec380062a/assets/font/Inter-Variable-Roman-GreekExt.woff2") format("woff2 supports variations"), url("../../0ad336262e4548e18c8d4d6ec380062a/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("../../0ad336262e4548e18c8d4d6ec380062a/assets/font/Inter-Variable-Roman-Greek.woff2") format("woff2 supports variations"), url("../../0ad336262e4548e18c8d4d6ec380062a/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("../../0ad336262e4548e18c8d4d6ec380062a/assets/font/Inter-Variable-Roman-Vietnamese.woff2") format("woff2 supports variations"), url("../../0ad336262e4548e18c8d4d6ec380062a/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("../../0ad336262e4548e18c8d4d6ec380062a/assets/font/Inter-Variable-Roman-LatinExt.woff2") format("woff2 supports variations"), url("../../0ad336262e4548e18c8d4d6ec380062a/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("../../0ad336262e4548e18c8d4d6ec380062a/assets/font/Inter-Variable-Roman-Latin.woff2") format("woff2 supports variations"), url("../../0ad336262e4548e18c8d4d6ec380062a/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("../../0ad336262e4548e18c8d4d6ec380062a/assets/font/Inter-Variable-Italic-CyrillicExt.woff2") format("woff2 supports variations"), url("../../0ad336262e4548e18c8d4d6ec380062a/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("../../0ad336262e4548e18c8d4d6ec380062a/assets/font/Inter-Variable-Italic-Cyrillic.woff2") format("woff2 supports variations"), url("../../0ad336262e4548e18c8d4d6ec380062a/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("../../0ad336262e4548e18c8d4d6ec380062a/assets/font/Inter-Variable-Italic-GreekExt.woff2") format("woff2 supports variations"), url("../../0ad336262e4548e18c8d4d6ec380062a/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("../../0ad336262e4548e18c8d4d6ec380062a/assets/font/Inter-Variable-Italic-Greek.woff2") format("woff2 supports variations"), url("../../0ad336262e4548e18c8d4d6ec380062a/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("../../0ad336262e4548e18c8d4d6ec380062a/assets/font/Inter-Variable-Italic-Vietnamese.woff2") format("woff2 supports variations"), url("../../0ad336262e4548e18c8d4d6ec380062a/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("../../0ad336262e4548e18c8d4d6ec380062a/assets/font/Inter-Variable-Italic-LatinExt.woff2") format("woff2 supports variations"), url("../../0ad336262e4548e18c8d4d6ec380062a/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("../../0ad336262e4548e18c8d4d6ec380062a/assets/font/Inter-Variable-Italic-Latin.woff2") format("woff2 supports variations"), url("../../0ad336262e4548e18c8d4d6ec380062a/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
*/
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
*/
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  margin-bottom: 10px;
}
h1, .h1 {
  line-height: 40px;
}
h2, .h2 {
  line-height: 34px;
}
h3, .h3 {
  line-height: 33px;
}
h4, .h4 {
  line-height: 24px;
}
h5, .h5 {
  line-height: 21px;
}
h6, .h6 {
  line-height: 20px;
}
/*
 * Components
 * ---------- */
/*
Alert
==============================================
Custom skin styling for bootstrap alert component.

https://getbootstrap.com/docs/5.2/components/alerts
*/
.alert .icon {
  margin: 0.5rem;
  flex: 0 0 auto;
}
.alert .icon svg {
  top: 0;
}
.alert-has-icon {
  align-items: normal;
}
.alert-content-container {
  padding: 0.5rem;
  flex-grow: 1;
}
.alert-primary {
  background-color: #00305d;
}
.alert-primary .alert-content-container {
  background-color: #ccd6df;
  color: #00305d;
}
.alert-primary .icon {
  color: #fff;
}
.alert-secondary {
  background-color: #f39200;
}
.alert-secondary .alert-content-container {
  background-color: #fde9cc;
  color: #f39200;
}
.alert-secondary .icon {
  color: #fff;
}
.alert-success {
  background-color: #3cc261;
}
.alert-success .alert-content-container {
  background-color: #d8f3df;
  color: #3cc261;
}
.alert-success .icon {
  color: #fff;
}
.alert-info {
  background-color: #26b6cf;
}
.alert-info .alert-content-container {
  background-color: #d4f0f5;
  color: #26b6cf;
}
.alert-info .icon {
  color: #fff;
}
.alert-warning {
  background-color: #ffbd5d;
}
.alert-warning .alert-content-container {
  background-color: #fff2df;
  color: #ffbd5d;
}
.alert-warning .icon {
  color: #fff;
}
.alert-danger {
  background-color: #e52427;
}
.alert-danger .alert-content-container {
  background-color: #fad3d4;
  color: #e52427;
}
.alert-danger .icon {
  color: #fff;
}
.alert-light {
  background-color: #f9f9f9;
}
.alert-light .alert-content-container {
  background-color: #fefefe;
  color: #f9f9f9;
}
.alert-light .icon {
  color: #fff;
}
.alert-dark {
  background-color: #4a545b;
}
.alert-dark .alert-content-container {
  background-color: #dbddde;
  color: #4a545b;
}
.alert-dark .icon {
  color: #fff;
}
/*
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 svg {
  height: 0.875rem;
  width: auto;
  top: 3px;
}
.breadcrumb .breadcrumb-container {
  display: flex;
}
.breadcrumb .breadcrumb-placeholder {
  margin: 0 0.5rem;
}
.breadcrumb a {
  color: #373737;
  font-size: 0.875rem;
}
.breadcrumb a:hover {
  color: #00305d;
  text-decoration: none;
}
.breadcrumb a.is-active {
  color: #00305d;
  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;
  white-space: nowrap;
}
.btn-buy {
  --bs-btn-color: #ffffff;
  --bs-btn-bg: #de8500;
  --bs-btn-border-color: #de8500;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #bd7100;
  --bs-btn-hover-border-color: #b26a00;
  --bs-btn-focus-shadow-rgb: 227, 151, 38;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #b26a00;
  --bs-btn-active-border-color: #a76400;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #de8500;
  --bs-btn-disabled-border-color: #de8500;
}
.btn-buy.disabled, .btn-buy:disabled {
  opacity: 1;
  background: #eee;
  border-color: #eee;
  color: #bcc1c7;
}
.btn-link {
  --bs-btn-font-weight: 600;
}
/*
Card
==============================================
Custom skin styling for bootstrap card component.

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

https://getbootstrap.com/docs/5.2/forms/overview
*/
.form-group {
  margin-bottom: 20px;
}
/*
Modal
==============================================
Custom skin styling for bootstrap modal component.

https://getbootstrap.com/docs/5.2/components/modal
*/
.modal-content {
  box-shadow: var(--bs-modal-box-shadow);
}
.modal-content .modal-title {
  margin: 0;
  line-height: 1.5;
}
.js-pseudo-modal-back-btn .icon {
  color: currentColor;
  margin-right: 0.5rem;
}
/*
Product box
==============================================
Styling for productbox component.
*/
.product-box {
  border-color: #bcc1c7;
  background-color: #fff;
}
.product-box .card-body {
  --bs-card-spacer-y: 1rem;
  --bs-card-spacer-x: 1rem;
}
.product-name {
  font-weight: 600;
}
.product-price {
  color: #4a545b;
}
/*
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: #373737;
  --bs-nav-tabs-border-width: 0;
  --bs-nav-tabs-border-radius: 0;
  --bs-nav-tabs-link-hover-border-color: #00305d;
  --bs-nav-link-hover-color: #00305d;
  --bs-nav-tabs-link-active-color: #373737;
  --bs-nav-tabs-link-active-border-color: #00305d;
  border-bottom: 2px solid #bcc1c7;
}
.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 {
  margin-right: -15px;
  margin-left: -15px;
}
.cms-element-product-listing .cms-listing-col {
  padding-right: 15px;
  padding-left: 15px;
}
.cms-element-product-listing .cms-listing-col {
  margin-bottom: 30px;
}
.cms-element-text blockquote {
  font-size: 1rem;
  font-style: italic;
  line-height: 24px;
  margin-top: 16px;
  margin-left: 20px;
  position: relative;
}
.cms-element-text blockquote::before {
  content: '"';
  font-size: 40px;
  line-height: 16px;
  color: #9aa7be;
  position: absolute;
  top: 10px;
  left: -24px;
}
.quickview-minimal-product-name {
  color: #333;
}
.quickview-minimal-product-name:hover {
  text-decoration: none;
}
.quickview-minimal-product-number {
  font-size: 0.75rem;
}
.quickview-minimal-footer-heading {
  border-bottom: 1px solid #bcc1c7;
}
.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 {
  color: #373737;
  font-weight: 400;
  padding: 0;
  border: 0 none;
}
.top-bar-nav-btn.btn:hover, .top-bar-nav-btn.btn:hover .icon {
  color: #00305d;
}
.top-bar-nav-btn.btn:focus {
  box-shadow: none;
}
.dropdown.show .top-bar-nav-btn, .dropdown.show .top-bar-nav-btn .icon {
  color: #00305d;
}
.top-bar-list-item {
  color: #373737;
}
.top-bar-list-item.is-checked {
  color: #00305d;
}
.top-bar-list-item:hover {
  color: #00305d;
  background: transparent;
  text-decoration: none;
}
.top-bar-list-item:hover .top-bar-list-label {
  cursor: pointer;
}
/*
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 {
  background: #fff;
  border: 1px solid #bcc1c7;
  border-left: 0;
}
.header-search-btn:hover {
  border-color: #bcc1c7;
}
.header-search-btn:hover .icon {
  color: #00305d;
}
.header-search-btn:focus {
  box-shadow: none;
}
.header-search-btn.btn:disabled {
  background: #fff;
  border-color: #bcc1c7;
  display: flex;
  align-items: center;
}
.header-search-input {
  border-right: 0;
}
.header-search-input:focus, .header-search-input:focus ~ .header-search-btn {
  border-color: #00305d;
}
.header-actions-btn, .header-actions-btn:active, .header-actions-btn:hover {
  background: none;
  border: 0 none;
}
.header-actions-btn:hover, .header-actions-btn:hover .icon {
  color: #00305d;
}
.header-actions-btn:focus {
  box-shadow: none;
}
.header-cart-total {
  color: #00305d;
  font-size: 1rem;
}
@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 #bcc1c7;
}
.footer-column {
  border-bottom: 1px solid #bcc1c7;
}
.footer-column-headline {
  color: #00305d;
  font-size: 1rem;
  font-weight: 700;
}
.footer-link, .footer-contact-hotline a {
  color: #373737;
}
.footer-link:hover, .footer-contact-hotline a:hover {
  color: #00305d;
  text-decoration: none;
}
.footer-contact-hotline a {
  display: block;
  margin: 1rem 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
}
.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
*/
.main-navigation-menu {
  font-size: 1rem;
}
@media (min-width: 768px) {
  .main-navigation-link {
    color: #373737;
    padding-left: 0;
    padding-right: 32px;
  }
  .main-navigation-link .main-navigation-link-text {
    border-bottom: 2px solid transparent;
    padding-bottom: 3px;
  }
  .main-navigation-link:hover, .main-navigation-link.is-open {
    color: #00305d;
  }
  .main-navigation-link.active {
    color: #4a545b;
    font-weight: 700;
  }
  .main-navigation-link.active .main-navigation-link-text {
    border-color: #00305d;
  }
}
/*
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 #bcc1c7;
  content: "";
  height: 100%;
  left: 15px;
  position: absolute;
  top: 0;
}
.navigation-flyout-categories.is-level-0 > .navigation-flyout-col.col-3:nth-child(4n+1), .navigation-flyout-categories.is-level-0 > .navigation-flyout-col.col-4:nth-child(3n+1) {
  border-left: 0;
}
.navigation-flyout-link {
  transition: padding 0.25s cubic-bezier(0, 0.77, 0.33, 1);
  color: #373737;
  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: 0.875rem;
  padding: 0.125rem 0;
}
.navigation-flyout-link:hover {
  color: #00305d;
  padding-left: 5px;
}
.navigation-flyout-link.active {
  color: #00305d;
  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: #f39200;
}
.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: #373737;
}
.navigation-offcanvas-link.is-home-link, .navigation-offcanvas-link.is-home-link .icon {
  color: #00305d;
}
.navigation-offcanvas-link.is-back-link {
  border-top: 1px solid #bcc1c7;
  font-weight: 700;
  color: #f39200;
}
.navigation-offcanvas-link.is-current-category {
  color: #00305d;
  font-weight: 700;
}
/*
Offcanvas cart
==============================================
Custom skin styling for the cart offcanvas.
*/
.offcanvas-cart-header-count {
  color: #798490;
  font-weight: 700;
}
.offcanvas-cart-tax {
  color: #798490;
}
/*
Search suggest
==================================================
Contains custom skin styles for the search suggest popover in the shop header.
*/
.search-suggest-product {
  border-bottom: 1px solid #bcc1c7;
}
.search-suggest-product:last-child {
  border-bottom: 0;
}
.search-suggest-product-link {
  color: #373737;
}
.search-suggest-product-link:hover {
  color: #00305d;
}
/*
 * Page-specific styles
 * -------------------- */
.product-detail-name {
  color: #333;
}
.product-detail-manufacturer-logo {
  max-width: 200px;
  max-height: 70px;
}
.product-detail-price {
  color: #4a545b;
  margin-bottom: 0;
  font-weight: 700;
  vertical-align: middle;
}
.product-detail-price.with-list-price {
  color: #e52427;
  display: inline-block;
}
.product-detail-price.with-regulation-price {
  display: inline-block;
}
.product-detail-price.with-advanced-list-price {
  color: #e52427;
  font-size: 0.875rem;
  display: inline-block;
}
.product-detail-price.with-advanced-list-price {
  color: #e52427;
  font-size: 0.875rem;
  display: inline-block;
}
.list-price-badge {
  display: inline-block;
  background: #e52427;
  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: #333;
  font-weight: 400;
  font-size: 12px;
  display: inline-block;
  height: 26px;
  vertical-align: bottom;
}
@media (max-width: 991.98px) {
  .product-detail-regulation-price-wrapper, .product-detail-list-price-wrapper {
    height: 22px;
  }
}
.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: #333;
  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: #00305d;
  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 #bcc1c7;
  margin-bottom: 10px;
}
.product-detail-review-item-date {
  color: #798490;
}
.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: #333;
  font-weight: 700;
}
.account-aside-item {
  border: 0;
}
.account-aside-item.is-active {
  color: #00305d;
  background: #fff;
  font-weight: 700;
}
.account-aside-item:hover {
  color: #00305d;
  background: #fff;
}
.account-aside-footer {
  background: none;
  margin-top: 1px;
  border-top: 1px solid #bcc1c7;
}
.account-aside-btn {
  line-height: normal;
  padding: 3px 0;
}
.account-guest-abort {
  border-top: 0;
}
@media (min-width: 768px) {
  .register-submit {
    text-align: right;
  }
}
.address-action-set-default {
  padding-left: 0;
  text-align: left;
}
.account-profile-mail-label {
  font-weight: 700;
}
.account-profile-change {
  font-weight: 700;
  font-size: 0.75rem;
}
.order-item-status-badge, .subscription-item-status-badge {
  margin: 10px 0;
}
@media (max-width: 575.98px) {
  .order-item-status-badge, .subscription-item-status-badge {
    margin-top: 0;
  }
}
.order-table-header .row, .order-table-header .account-content, .order-table-header .is-act-cartpage .checkout .checkout-container, .is-act-cartpage .checkout .order-table-header .checkout-container, .order-table-header .is-act-checkoutregisterpage .checkout .checkout-container, .is-act-checkoutregisterpage .checkout .order-table-header .checkout-container, .order-table-header .is-act-confirmpage .checkout .checkout-container, .is-act-confirmpage .checkout .order-table-header .checkout-container, .order-table-header .is-ctl-accountorder .checkout .checkout-container, .is-ctl-accountorder .checkout .order-table-header .checkout-container, .order-table-header .is-act-finishpage .checkout .checkout-container, .is-act-finishpage .checkout .order-table-header .checkout-container, .order-item-header .row, .subscription-item-header .row, .order-item-header .account-content, .order-item-header .is-act-cartpage .checkout .checkout-container, .is-act-cartpage .checkout .order-item-header .checkout-container, .order-item-header .is-act-checkoutregisterpage .checkout .checkout-container, .is-act-checkoutregisterpage .checkout .order-item-header .checkout-container, .order-item-header .is-act-confirmpage .checkout .checkout-container, .is-act-confirmpage .checkout .order-item-header .checkout-container, .order-item-header .is-ctl-accountorder .checkout .checkout-container, .is-ctl-accountorder .checkout .order-item-header .checkout-container, .order-item-header .is-act-finishpage .checkout .checkout-container, .is-act-finishpage .checkout .order-item-header .checkout-container, .subscription-item-header .account-content, .subscription-item-header .is-act-cartpage .checkout .checkout-container, .is-act-cartpage .checkout .subscription-item-header .checkout-container, .subscription-item-header .is-act-checkoutregisterpage .checkout .checkout-container, .is-act-checkoutregisterpage .checkout .subscription-item-header .checkout-container, .subscription-item-header .is-act-confirmpage .checkout .checkout-container, .is-act-confirmpage .checkout .subscription-item-header .checkout-container, .subscription-item-header .is-ctl-accountorder .checkout .checkout-container, .is-ctl-accountorder .checkout .subscription-item-header .checkout-container, .subscription-item-header .is-act-finishpage .checkout .checkout-container, .is-act-finishpage .checkout .subscription-item-header .checkout-container, .order-detail-content-header .row, .subscription-detail-content-header .row, .order-detail-content-header .account-content, .order-detail-content-header .is-act-cartpage .checkout .checkout-container, .is-act-cartpage .checkout .order-detail-content-header .checkout-container, .order-detail-content-header .is-act-checkoutregisterpage .checkout .checkout-container, .is-act-checkoutregisterpage .checkout .order-detail-content-header .checkout-container, .order-detail-content-header .is-act-confirmpage .checkout .checkout-container, .is-act-confirmpage .checkout .order-detail-content-header .checkout-container, .order-detail-content-header .is-ctl-accountorder .checkout .checkout-container, .is-ctl-accountorder .checkout .order-detail-content-header .checkout-container, .order-detail-content-header .is-act-finishpage .checkout .checkout-container, .is-act-finishpage .checkout .order-detail-content-header .checkout-container, .subscription-detail-content-header .account-content, .subscription-detail-content-header .is-act-cartpage .checkout .checkout-container, .is-act-cartpage .checkout .subscription-detail-content-header .checkout-container, .subscription-detail-content-header .is-act-checkoutregisterpage .checkout .checkout-container, .is-act-checkoutregisterpage .checkout .subscription-detail-content-header .checkout-container, .subscription-detail-content-header .is-act-confirmpage .checkout .checkout-container, .is-act-confirmpage .checkout .subscription-detail-content-header .checkout-container, .subscription-detail-content-header .is-ctl-accountorder .checkout .checkout-container, .is-ctl-accountorder .checkout .subscription-detail-content-header .checkout-container, .subscription-detail-content-header .is-act-finishpage .checkout .checkout-container, .is-act-finishpage .checkout .subscription-detail-content-header .checkout-container {
  margin-right: 0;
  margin-left: 0;
}
.order-table-header .row > .col, .order-table-header .account-content > .col, .order-table-header .is-act-confirmpage .checkout .account-content > .checkout-aside, .is-act-confirmpage .checkout .order-table-header .account-content > .checkout-aside, .order-table-header .is-ctl-accountorder .checkout .account-content > .checkout-aside, .is-ctl-accountorder .checkout .order-table-header .account-content > .checkout-aside, .order-table-header .is-act-finishpage .checkout .account-content > .checkout-aside, .is-act-finishpage .checkout .order-table-header .account-content > .checkout-aside, .order-table-header .is-act-cartpage .checkout .checkout-container > .col, .order-table-header .is-act-cartpage .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-table-header .is-act-cartpage .checkout .checkout-container > .checkout-aside, .order-table-header .is-act-cartpage .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-table-header .is-act-cartpage .checkout .checkout-container > .checkout-aside, .order-table-header .is-act-cartpage .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-table-header .is-act-cartpage .checkout .checkout-container > .checkout-aside, .is-act-cartpage .checkout .order-table-header .checkout-container > .col, .order-table-header .is-act-checkoutregisterpage .checkout .checkout-container > .col, .order-table-header .is-act-checkoutregisterpage .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-table-header .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .order-table-header .is-act-checkoutregisterpage .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-table-header .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .order-table-header .is-act-checkoutregisterpage .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-table-header .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .is-act-checkoutregisterpage .checkout .order-table-header .checkout-container > .col, .order-table-header .is-act-confirmpage .checkout .checkout-container > .col, .order-table-header .is-act-confirmpage .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-table-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .order-table-header .is-act-confirmpage .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-table-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .order-table-header .is-act-confirmpage .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-table-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-table-header .checkout-container > .col, .order-table-header .is-ctl-accountorder .checkout .checkout-container > .col, .order-table-header .is-ctl-accountorder .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-table-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .order-table-header .is-ctl-accountorder .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-table-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .order-table-header .is-ctl-accountorder .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-table-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-table-header .checkout-container > .col, .order-table-header .is-act-finishpage .checkout .checkout-container > .col, .order-table-header .is-act-finishpage .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-table-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .order-table-header .is-act-finishpage .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-table-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .order-table-header .is-act-finishpage .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-table-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-table-header .checkout-container > .col, .order-table-header .is-act-confirmpage .checkout .row > .checkout-aside, .order-table-header .is-act-confirmpage .checkout .is-act-cartpage .checkout .checkout-container > .checkout-aside, .is-act-cartpage .checkout .order-table-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .order-table-header .is-act-confirmpage .checkout .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .is-act-checkoutregisterpage .checkout .order-table-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-table-header .row > .checkout-aside, .order-table-header .is-ctl-accountorder .checkout .row > .checkout-aside, .order-table-header .is-ctl-accountorder .checkout .is-act-cartpage .checkout .checkout-container > .checkout-aside, .is-act-cartpage .checkout .order-table-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .order-table-header .is-ctl-accountorder .checkout .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .is-act-checkoutregisterpage .checkout .order-table-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-table-header .row > .checkout-aside, .order-table-header .is-act-finishpage .checkout .row > .checkout-aside, .order-table-header .is-act-finishpage .checkout .is-act-cartpage .checkout .checkout-container > .checkout-aside, .is-act-cartpage .checkout .order-table-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .order-table-header .is-act-finishpage .checkout .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .is-act-checkoutregisterpage .checkout .order-table-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-table-header .row > .checkout-aside, .order-table-header .row > [class*="col-"], .order-table-header .account-content > [class*="col-"], .order-table-header .is-act-cartpage .checkout .checkout-container > [class*="col-"], .is-act-cartpage .checkout .order-table-header .checkout-container > [class*="col-"], .order-table-header .is-act-checkoutregisterpage .checkout .checkout-container > [class*="col-"], .is-act-checkoutregisterpage .checkout .order-table-header .checkout-container > [class*="col-"], .order-table-header .is-act-confirmpage .checkout .checkout-container > [class*="col-"], .is-act-confirmpage .checkout .order-table-header .checkout-container > [class*="col-"], .order-table-header .is-ctl-accountorder .checkout .checkout-container > [class*="col-"], .is-ctl-accountorder .checkout .order-table-header .checkout-container > [class*="col-"], .order-table-header .is-act-finishpage .checkout .checkout-container > [class*="col-"], .is-act-finishpage .checkout .order-table-header .checkout-container > [class*="col-"], .order-item-header .row > .col, .subscription-item-header .row > .col, .order-item-header .account-content > .col, .order-item-header .is-act-confirmpage .checkout .account-content > .checkout-aside, .is-act-confirmpage .checkout .order-item-header .account-content > .checkout-aside, .order-item-header .is-ctl-accountorder .checkout .account-content > .checkout-aside, .is-ctl-accountorder .checkout .order-item-header .account-content > .checkout-aside, .order-item-header .is-act-finishpage .checkout .account-content > .checkout-aside, .is-act-finishpage .checkout .order-item-header .account-content > .checkout-aside, .order-item-header .is-act-cartpage .checkout .checkout-container > .col, .order-item-header .is-act-cartpage .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-item-header .is-act-cartpage .checkout .checkout-container > .checkout-aside, .order-item-header .is-act-cartpage .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-item-header .is-act-cartpage .checkout .checkout-container > .checkout-aside, .order-item-header .is-act-cartpage .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-item-header .is-act-cartpage .checkout .checkout-container > .checkout-aside, .is-act-cartpage .checkout .order-item-header .checkout-container > .col, .order-item-header .is-act-checkoutregisterpage .checkout .checkout-container > .col, .order-item-header .is-act-checkoutregisterpage .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-item-header .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .order-item-header .is-act-checkoutregisterpage .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-item-header .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .order-item-header .is-act-checkoutregisterpage .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-item-header .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .is-act-checkoutregisterpage .checkout .order-item-header .checkout-container > .col, .order-item-header .is-act-confirmpage .checkout .checkout-container > .col, .order-item-header .is-act-confirmpage .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-item-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .order-item-header .is-act-confirmpage .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-item-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .order-item-header .is-act-confirmpage .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-item-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-item-header .checkout-container > .col, .order-item-header .is-ctl-accountorder .checkout .checkout-container > .col, .order-item-header .is-ctl-accountorder .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-item-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .order-item-header .is-ctl-accountorder .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-item-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .order-item-header .is-ctl-accountorder .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-item-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-item-header .checkout-container > .col, .order-item-header .is-act-finishpage .checkout .checkout-container > .col, .order-item-header .is-act-finishpage .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-item-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .order-item-header .is-act-finishpage .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-item-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .order-item-header .is-act-finishpage .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-item-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-item-header .checkout-container > .col, .order-item-header .is-act-confirmpage .checkout .row > .checkout-aside, .order-item-header .is-act-confirmpage .checkout .is-act-cartpage .checkout .checkout-container > .checkout-aside, .is-act-cartpage .checkout .order-item-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .order-item-header .is-act-confirmpage .checkout .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .is-act-checkoutregisterpage .checkout .order-item-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-item-header .row > .checkout-aside, .order-item-header .is-ctl-accountorder .checkout .row > .checkout-aside, .order-item-header .is-ctl-accountorder .checkout .is-act-cartpage .checkout .checkout-container > .checkout-aside, .is-act-cartpage .checkout .order-item-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .order-item-header .is-ctl-accountorder .checkout .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .is-act-checkoutregisterpage .checkout .order-item-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-item-header .row > .checkout-aside, .order-item-header .is-act-finishpage .checkout .row > .checkout-aside, .order-item-header .is-act-finishpage .checkout .is-act-cartpage .checkout .checkout-container > .checkout-aside, .is-act-cartpage .checkout .order-item-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .order-item-header .is-act-finishpage .checkout .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .is-act-checkoutregisterpage .checkout .order-item-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-item-header .row > .checkout-aside, .subscription-item-header .account-content > .col, .subscription-item-header .is-act-confirmpage .checkout .account-content > .checkout-aside, .is-act-confirmpage .checkout .subscription-item-header .account-content > .checkout-aside, .subscription-item-header .is-ctl-accountorder .checkout .account-content > .checkout-aside, .is-ctl-accountorder .checkout .subscription-item-header .account-content > .checkout-aside, .subscription-item-header .is-act-finishpage .checkout .account-content > .checkout-aside, .is-act-finishpage .checkout .subscription-item-header .account-content > .checkout-aside, .subscription-item-header .is-act-cartpage .checkout .checkout-container > .col, .subscription-item-header .is-act-cartpage .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .subscription-item-header .is-act-cartpage .checkout .checkout-container > .checkout-aside, .subscription-item-header .is-act-cartpage .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .subscription-item-header .is-act-cartpage .checkout .checkout-container > .checkout-aside, .subscription-item-header .is-act-cartpage .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .subscription-item-header .is-act-cartpage .checkout .checkout-container > .checkout-aside, .is-act-cartpage .checkout .subscription-item-header .checkout-container > .col, .subscription-item-header .is-act-checkoutregisterpage .checkout .checkout-container > .col, .subscription-item-header .is-act-checkoutregisterpage .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .subscription-item-header .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .subscription-item-header .is-act-checkoutregisterpage .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .subscription-item-header .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .subscription-item-header .is-act-checkoutregisterpage .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .subscription-item-header .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .is-act-checkoutregisterpage .checkout .subscription-item-header .checkout-container > .col, .subscription-item-header .is-act-confirmpage .checkout .checkout-container > .col, .subscription-item-header .is-act-confirmpage .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .subscription-item-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .subscription-item-header .is-act-confirmpage .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .subscription-item-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .subscription-item-header .is-act-confirmpage .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .subscription-item-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .subscription-item-header .checkout-container > .col, .subscription-item-header .is-ctl-accountorder .checkout .checkout-container > .col, .subscription-item-header .is-ctl-accountorder .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .subscription-item-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .subscription-item-header .is-ctl-accountorder .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .subscription-item-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .subscription-item-header .is-ctl-accountorder .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .subscription-item-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .subscription-item-header .checkout-container > .col, .subscription-item-header .is-act-finishpage .checkout .checkout-container > .col, .subscription-item-header .is-act-finishpage .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .subscription-item-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .subscription-item-header .is-act-finishpage .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .subscription-item-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .subscription-item-header .is-act-finishpage .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .subscription-item-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .subscription-item-header .checkout-container > .col, .subscription-item-header .is-act-confirmpage .checkout .row > .checkout-aside, .subscription-item-header .is-act-confirmpage .checkout .is-act-cartpage .checkout .checkout-container > .checkout-aside, .is-act-cartpage .checkout .subscription-item-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .subscription-item-header .is-act-confirmpage .checkout .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .is-act-checkoutregisterpage .checkout .subscription-item-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .subscription-item-header .row > .checkout-aside, .subscription-item-header .is-ctl-accountorder .checkout .row > .checkout-aside, .subscription-item-header .is-ctl-accountorder .checkout .is-act-cartpage .checkout .checkout-container > .checkout-aside, .is-act-cartpage .checkout .subscription-item-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .subscription-item-header .is-ctl-accountorder .checkout .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .is-act-checkoutregisterpage .checkout .subscription-item-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .subscription-item-header .row > .checkout-aside, .subscription-item-header .is-act-finishpage .checkout .row > .checkout-aside, .subscription-item-header .is-act-finishpage .checkout .is-act-cartpage .checkout .checkout-container > .checkout-aside, .is-act-cartpage .checkout .subscription-item-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .subscription-item-header .is-act-finishpage .checkout .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .is-act-checkoutregisterpage .checkout .subscription-item-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .subscription-item-header .row > .checkout-aside, .order-item-header .row > [class*="col-"], .subscription-item-header .row > [class*="col-"], .order-item-header .account-content > [class*="col-"], .order-item-header .is-act-cartpage .checkout .checkout-container > [class*="col-"], .is-act-cartpage .checkout .order-item-header .checkout-container > [class*="col-"], .order-item-header .is-act-checkoutregisterpage .checkout .checkout-container > [class*="col-"], .is-act-checkoutregisterpage .checkout .order-item-header .checkout-container > [class*="col-"], .order-item-header .is-act-confirmpage .checkout .checkout-container > [class*="col-"], .is-act-confirmpage .checkout .order-item-header .checkout-container > [class*="col-"], .order-item-header .is-ctl-accountorder .checkout .checkout-container > [class*="col-"], .is-ctl-accountorder .checkout .order-item-header .checkout-container > [class*="col-"], .order-item-header .is-act-finishpage .checkout .checkout-container > [class*="col-"], .is-act-finishpage .checkout .order-item-header .checkout-container > [class*="col-"], .subscription-item-header .account-content > [class*="col-"], .subscription-item-header .is-act-cartpage .checkout .checkout-container > [class*="col-"], .is-act-cartpage .checkout .subscription-item-header .checkout-container > [class*="col-"], .subscription-item-header .is-act-checkoutregisterpage .checkout .checkout-container > [class*="col-"], .is-act-checkoutregisterpage .checkout .subscription-item-header .checkout-container > [class*="col-"], .subscription-item-header .is-act-confirmpage .checkout .checkout-container > [class*="col-"], .is-act-confirmpage .checkout .subscription-item-header .checkout-container > [class*="col-"], .subscription-item-header .is-ctl-accountorder .checkout .checkout-container > [class*="col-"], .is-ctl-accountorder .checkout .subscription-item-header .checkout-container > [class*="col-"], .subscription-item-header .is-act-finishpage .checkout .checkout-container > [class*="col-"], .is-act-finishpage .checkout .subscription-item-header .checkout-container > [class*="col-"], .order-detail-content-header .row > .col, .subscription-detail-content-header .row > .col, .order-detail-content-header .account-content > .col, .order-detail-content-header .is-act-confirmpage .checkout .account-content > .checkout-aside, .is-act-confirmpage .checkout .order-detail-content-header .account-content > .checkout-aside, .order-detail-content-header .is-ctl-accountorder .checkout .account-content > .checkout-aside, .is-ctl-accountorder .checkout .order-detail-content-header .account-content > .checkout-aside, .order-detail-content-header .is-act-finishpage .checkout .account-content > .checkout-aside, .is-act-finishpage .checkout .order-detail-content-header .account-content > .checkout-aside, .order-detail-content-header .is-act-cartpage .checkout .checkout-container > .col, .order-detail-content-header .is-act-cartpage .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-detail-content-header .is-act-cartpage .checkout .checkout-container > .checkout-aside, .order-detail-content-header .is-act-cartpage .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-detail-content-header .is-act-cartpage .checkout .checkout-container > .checkout-aside, .order-detail-content-header .is-act-cartpage .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-detail-content-header .is-act-cartpage .checkout .checkout-container > .checkout-aside, .is-act-cartpage .checkout .order-detail-content-header .checkout-container > .col, .order-detail-content-header .is-act-checkoutregisterpage .checkout .checkout-container > .col, .order-detail-content-header .is-act-checkoutregisterpage .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-detail-content-header .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .order-detail-content-header .is-act-checkoutregisterpage .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-detail-content-header .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .order-detail-content-header .is-act-checkoutregisterpage .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-detail-content-header .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .is-act-checkoutregisterpage .checkout .order-detail-content-header .checkout-container > .col, .order-detail-content-header .is-act-confirmpage .checkout .checkout-container > .col, .order-detail-content-header .is-act-confirmpage .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-detail-content-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .order-detail-content-header .is-act-confirmpage .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-detail-content-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .order-detail-content-header .is-act-confirmpage .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-detail-content-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-detail-content-header .checkout-container > .col, .order-detail-content-header .is-ctl-accountorder .checkout .checkout-container > .col, .order-detail-content-header .is-ctl-accountorder .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-detail-content-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .order-detail-content-header .is-ctl-accountorder .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-detail-content-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .order-detail-content-header .is-ctl-accountorder .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-detail-content-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-detail-content-header .checkout-container > .col, .order-detail-content-header .is-act-finishpage .checkout .checkout-container > .col, .order-detail-content-header .is-act-finishpage .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-detail-content-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .order-detail-content-header .is-act-finishpage .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-detail-content-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .order-detail-content-header .is-act-finishpage .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-detail-content-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-detail-content-header .checkout-container > .col, .order-detail-content-header .is-act-confirmpage .checkout .row > .checkout-aside, .order-detail-content-header .is-act-confirmpage .checkout .is-act-cartpage .checkout .checkout-container > .checkout-aside, .is-act-cartpage .checkout .order-detail-content-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .order-detail-content-header .is-act-confirmpage .checkout .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .is-act-checkoutregisterpage .checkout .order-detail-content-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-detail-content-header .row > .checkout-aside, .order-detail-content-header .is-ctl-accountorder .checkout .row > .checkout-aside, .order-detail-content-header .is-ctl-accountorder .checkout .is-act-cartpage .checkout .checkout-container > .checkout-aside, .is-act-cartpage .checkout .order-detail-content-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .order-detail-content-header .is-ctl-accountorder .checkout .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .is-act-checkoutregisterpage .checkout .order-detail-content-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-detail-content-header .row > .checkout-aside, .order-detail-content-header .is-act-finishpage .checkout .row > .checkout-aside, .order-detail-content-header .is-act-finishpage .checkout .is-act-cartpage .checkout .checkout-container > .checkout-aside, .is-act-cartpage .checkout .order-detail-content-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .order-detail-content-header .is-act-finishpage .checkout .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .is-act-checkoutregisterpage .checkout .order-detail-content-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-detail-content-header .row > .checkout-aside, .subscription-detail-content-header .account-content > .col, .subscription-detail-content-header .is-act-confirmpage .checkout .account-content > .checkout-aside, .is-act-confirmpage .checkout .subscription-detail-content-header .account-content > .checkout-aside, .subscription-detail-content-header .is-ctl-accountorder .checkout .account-content > .checkout-aside, .is-ctl-accountorder .checkout .subscription-detail-content-header .account-content > .checkout-aside, .subscription-detail-content-header .is-act-finishpage .checkout .account-content > .checkout-aside, .is-act-finishpage .checkout .subscription-detail-content-header .account-content > .checkout-aside, .subscription-detail-content-header .is-act-cartpage .checkout .checkout-container > .col, .subscription-detail-content-header .is-act-cartpage .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .subscription-detail-content-header .is-act-cartpage .checkout .checkout-container > .checkout-aside, .subscription-detail-content-header .is-act-cartpage .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .subscription-detail-content-header .is-act-cartpage .checkout .checkout-container > .checkout-aside, .subscription-detail-content-header .is-act-cartpage .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .subscription-detail-content-header .is-act-cartpage .checkout .checkout-container > .checkout-aside, .is-act-cartpage .checkout .subscription-detail-content-header .checkout-container > .col, .subscription-detail-content-header .is-act-checkoutregisterpage .checkout .checkout-container > .col, .subscription-detail-content-header .is-act-checkoutregisterpage .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .subscription-detail-content-header .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .subscription-detail-content-header .is-act-checkoutregisterpage .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .subscription-detail-content-header .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .subscription-detail-content-header .is-act-checkoutregisterpage .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .subscription-detail-content-header .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .is-act-checkoutregisterpage .checkout .subscription-detail-content-header .checkout-container > .col, .subscription-detail-content-header .is-act-confirmpage .checkout .checkout-container > .col, .subscription-detail-content-header .is-act-confirmpage .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .subscription-detail-content-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .subscription-detail-content-header .is-act-confirmpage .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .subscription-detail-content-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .subscription-detail-content-header .is-act-confirmpage .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .subscription-detail-content-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .subscription-detail-content-header .checkout-container > .col, .subscription-detail-content-header .is-ctl-accountorder .checkout .checkout-container > .col, .subscription-detail-content-header .is-ctl-accountorder .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .subscription-detail-content-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .subscription-detail-content-header .is-ctl-accountorder .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .subscription-detail-content-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .subscription-detail-content-header .is-ctl-accountorder .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .subscription-detail-content-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .subscription-detail-content-header .checkout-container > .col, .subscription-detail-content-header .is-act-finishpage .checkout .checkout-container > .col, .subscription-detail-content-header .is-act-finishpage .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .subscription-detail-content-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .subscription-detail-content-header .is-act-finishpage .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .subscription-detail-content-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .subscription-detail-content-header .is-act-finishpage .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .subscription-detail-content-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .subscription-detail-content-header .checkout-container > .col, .subscription-detail-content-header .is-act-confirmpage .checkout .row > .checkout-aside, .subscription-detail-content-header .is-act-confirmpage .checkout .is-act-cartpage .checkout .checkout-container > .checkout-aside, .is-act-cartpage .checkout .subscription-detail-content-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .subscription-detail-content-header .is-act-confirmpage .checkout .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .is-act-checkoutregisterpage .checkout .subscription-detail-content-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .subscription-detail-content-header .row > .checkout-aside, .subscription-detail-content-header .is-ctl-accountorder .checkout .row > .checkout-aside, .subscription-detail-content-header .is-ctl-accountorder .checkout .is-act-cartpage .checkout .checkout-container > .checkout-aside, .is-act-cartpage .checkout .subscription-detail-content-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .subscription-detail-content-header .is-ctl-accountorder .checkout .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .is-act-checkoutregisterpage .checkout .subscription-detail-content-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .subscription-detail-content-header .row > .checkout-aside, .subscription-detail-content-header .is-act-finishpage .checkout .row > .checkout-aside, .subscription-detail-content-header .is-act-finishpage .checkout .is-act-cartpage .checkout .checkout-container > .checkout-aside, .is-act-cartpage .checkout .subscription-detail-content-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .subscription-detail-content-header .is-act-finishpage .checkout .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .is-act-checkoutregisterpage .checkout .subscription-detail-content-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .subscription-detail-content-header .row > .checkout-aside, .order-detail-content-header .row > [class*="col-"], .subscription-detail-content-header .row > [class*="col-"], .order-detail-content-header .account-content > [class*="col-"], .order-detail-content-header .is-act-cartpage .checkout .checkout-container > [class*="col-"], .is-act-cartpage .checkout .order-detail-content-header .checkout-container > [class*="col-"], .order-detail-content-header .is-act-checkoutregisterpage .checkout .checkout-container > [class*="col-"], .is-act-checkoutregisterpage .checkout .order-detail-content-header .checkout-container > [class*="col-"], .order-detail-content-header .is-act-confirmpage .checkout .checkout-container > [class*="col-"], .is-act-confirmpage .checkout .order-detail-content-header .checkout-container > [class*="col-"], .order-detail-content-header .is-ctl-accountorder .checkout .checkout-container > [class*="col-"], .is-ctl-accountorder .checkout .order-detail-content-header .checkout-container > [class*="col-"], .order-detail-content-header .is-act-finishpage .checkout .checkout-container > [class*="col-"], .is-act-finishpage .checkout .order-detail-content-header .checkout-container > [class*="col-"], .subscription-detail-content-header .account-content > [class*="col-"], .subscription-detail-content-header .is-act-cartpage .checkout .checkout-container > [class*="col-"], .is-act-cartpage .checkout .subscription-detail-content-header .checkout-container > [class*="col-"], .subscription-detail-content-header .is-act-checkoutregisterpage .checkout .checkout-container > [class*="col-"], .is-act-checkoutregisterpage .checkout .subscription-detail-content-header .checkout-container > [class*="col-"], .subscription-detail-content-header .is-act-confirmpage .checkout .checkout-container > [class*="col-"], .is-act-confirmpage .checkout .subscription-detail-content-header .checkout-container > [class*="col-"], .subscription-detail-content-header .is-ctl-accountorder .checkout .checkout-container > [class*="col-"], .is-ctl-accountorder .checkout .subscription-detail-content-header .checkout-container > [class*="col-"], .subscription-detail-content-header .is-act-finishpage .checkout .checkout-container > [class*="col-"], .is-act-finishpage .checkout .subscription-detail-content-header .checkout-container > [class*="col-"] {
  padding-right: 10px;
  padding-left: 10px;
}
@media (max-width: 575.98px) {
  .order-table-header .row > .col, .order-table-header .account-content > .col, .order-table-header .is-act-confirmpage .checkout .account-content > .checkout-aside, .is-act-confirmpage .checkout .order-table-header .account-content > .checkout-aside, .order-table-header .is-ctl-accountorder .checkout .account-content > .checkout-aside, .is-ctl-accountorder .checkout .order-table-header .account-content > .checkout-aside, .order-table-header .is-act-finishpage .checkout .account-content > .checkout-aside, .is-act-finishpage .checkout .order-table-header .account-content > .checkout-aside, .order-table-header .is-act-cartpage .checkout .checkout-container > .col, .order-table-header .is-act-cartpage .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-table-header .is-act-cartpage .checkout .checkout-container > .checkout-aside, .order-table-header .is-act-cartpage .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-table-header .is-act-cartpage .checkout .checkout-container > .checkout-aside, .order-table-header .is-act-cartpage .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-table-header .is-act-cartpage .checkout .checkout-container > .checkout-aside, .is-act-cartpage .checkout .order-table-header .checkout-container > .col, .order-table-header .is-act-checkoutregisterpage .checkout .checkout-container > .col, .order-table-header .is-act-checkoutregisterpage .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-table-header .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .order-table-header .is-act-checkoutregisterpage .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-table-header .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .order-table-header .is-act-checkoutregisterpage .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-table-header .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .is-act-checkoutregisterpage .checkout .order-table-header .checkout-container > .col, .order-table-header .is-act-confirmpage .checkout .checkout-container > .col, .order-table-header .is-act-confirmpage .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-table-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .order-table-header .is-act-confirmpage .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-table-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .order-table-header .is-act-confirmpage .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-table-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-table-header .checkout-container > .col, .order-table-header .is-ctl-accountorder .checkout .checkout-container > .col, .order-table-header .is-ctl-accountorder .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-table-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .order-table-header .is-ctl-accountorder .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-table-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .order-table-header .is-ctl-accountorder .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-table-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-table-header .checkout-container > .col, .order-table-header .is-act-finishpage .checkout .checkout-container > .col, .order-table-header .is-act-finishpage .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-table-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .order-table-header .is-act-finishpage .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-table-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .order-table-header .is-act-finishpage .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-table-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-table-header .checkout-container > .col, .order-table-header .is-act-confirmpage .checkout .row > .checkout-aside, .order-table-header .is-act-confirmpage .checkout .is-act-cartpage .checkout .checkout-container > .checkout-aside, .is-act-cartpage .checkout .order-table-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .order-table-header .is-act-confirmpage .checkout .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .is-act-checkoutregisterpage .checkout .order-table-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-table-header .row > .checkout-aside, .order-table-header .is-ctl-accountorder .checkout .row > .checkout-aside, .order-table-header .is-ctl-accountorder .checkout .is-act-cartpage .checkout .checkout-container > .checkout-aside, .is-act-cartpage .checkout .order-table-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .order-table-header .is-ctl-accountorder .checkout .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .is-act-checkoutregisterpage .checkout .order-table-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-table-header .row > .checkout-aside, .order-table-header .is-act-finishpage .checkout .row > .checkout-aside, .order-table-header .is-act-finishpage .checkout .is-act-cartpage .checkout .checkout-container > .checkout-aside, .is-act-cartpage .checkout .order-table-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .order-table-header .is-act-finishpage .checkout .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .is-act-checkoutregisterpage .checkout .order-table-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-table-header .row > .checkout-aside, .order-table-header .row > [class*="col-"], .order-table-header .account-content > [class*="col-"], .order-table-header .is-act-cartpage .checkout .checkout-container > [class*="col-"], .is-act-cartpage .checkout .order-table-header .checkout-container > [class*="col-"], .order-table-header .is-act-checkoutregisterpage .checkout .checkout-container > [class*="col-"], .is-act-checkoutregisterpage .checkout .order-table-header .checkout-container > [class*="col-"], .order-table-header .is-act-confirmpage .checkout .checkout-container > [class*="col-"], .is-act-confirmpage .checkout .order-table-header .checkout-container > [class*="col-"], .order-table-header .is-ctl-accountorder .checkout .checkout-container > [class*="col-"], .is-ctl-accountorder .checkout .order-table-header .checkout-container > [class*="col-"], .order-table-header .is-act-finishpage .checkout .checkout-container > [class*="col-"], .is-act-finishpage .checkout .order-table-header .checkout-container > [class*="col-"], .order-item-header .row > .col, .subscription-item-header .row > .col, .order-item-header .account-content > .col, .order-item-header .is-act-confirmpage .checkout .account-content > .checkout-aside, .is-act-confirmpage .checkout .order-item-header .account-content > .checkout-aside, .order-item-header .is-ctl-accountorder .checkout .account-content > .checkout-aside, .is-ctl-accountorder .checkout .order-item-header .account-content > .checkout-aside, .order-item-header .is-act-finishpage .checkout .account-content > .checkout-aside, .is-act-finishpage .checkout .order-item-header .account-content > .checkout-aside, .order-item-header .is-act-cartpage .checkout .checkout-container > .col, .order-item-header .is-act-cartpage .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-item-header .is-act-cartpage .checkout .checkout-container > .checkout-aside, .order-item-header .is-act-cartpage .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-item-header .is-act-cartpage .checkout .checkout-container > .checkout-aside, .order-item-header .is-act-cartpage .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-item-header .is-act-cartpage .checkout .checkout-container > .checkout-aside, .is-act-cartpage .checkout .order-item-header .checkout-container > .col, .order-item-header .is-act-checkoutregisterpage .checkout .checkout-container > .col, .order-item-header .is-act-checkoutregisterpage .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-item-header .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .order-item-header .is-act-checkoutregisterpage .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-item-header .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .order-item-header .is-act-checkoutregisterpage .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-item-header .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .is-act-checkoutregisterpage .checkout .order-item-header .checkout-container > .col, .order-item-header .is-act-confirmpage .checkout .checkout-container > .col, .order-item-header .is-act-confirmpage .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-item-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .order-item-header .is-act-confirmpage .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-item-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .order-item-header .is-act-confirmpage .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-item-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-item-header .checkout-container > .col, .order-item-header .is-ctl-accountorder .checkout .checkout-container > .col, .order-item-header .is-ctl-accountorder .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-item-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .order-item-header .is-ctl-accountorder .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-item-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .order-item-header .is-ctl-accountorder .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-item-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-item-header .checkout-container > .col, .order-item-header .is-act-finishpage .checkout .checkout-container > .col, .order-item-header .is-act-finishpage .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-item-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .order-item-header .is-act-finishpage .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-item-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .order-item-header .is-act-finishpage .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-item-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-item-header .checkout-container > .col, .order-item-header .is-act-confirmpage .checkout .row > .checkout-aside, .order-item-header .is-act-confirmpage .checkout .is-act-cartpage .checkout .checkout-container > .checkout-aside, .is-act-cartpage .checkout .order-item-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .order-item-header .is-act-confirmpage .checkout .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .is-act-checkoutregisterpage .checkout .order-item-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-item-header .row > .checkout-aside, .order-item-header .is-ctl-accountorder .checkout .row > .checkout-aside, .order-item-header .is-ctl-accountorder .checkout .is-act-cartpage .checkout .checkout-container > .checkout-aside, .is-act-cartpage .checkout .order-item-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .order-item-header .is-ctl-accountorder .checkout .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .is-act-checkoutregisterpage .checkout .order-item-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-item-header .row > .checkout-aside, .order-item-header .is-act-finishpage .checkout .row > .checkout-aside, .order-item-header .is-act-finishpage .checkout .is-act-cartpage .checkout .checkout-container > .checkout-aside, .is-act-cartpage .checkout .order-item-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .order-item-header .is-act-finishpage .checkout .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .is-act-checkoutregisterpage .checkout .order-item-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-item-header .row > .checkout-aside, .subscription-item-header .account-content > .col, .subscription-item-header .is-act-confirmpage .checkout .account-content > .checkout-aside, .is-act-confirmpage .checkout .subscription-item-header .account-content > .checkout-aside, .subscription-item-header .is-ctl-accountorder .checkout .account-content > .checkout-aside, .is-ctl-accountorder .checkout .subscription-item-header .account-content > .checkout-aside, .subscription-item-header .is-act-finishpage .checkout .account-content > .checkout-aside, .is-act-finishpage .checkout .subscription-item-header .account-content > .checkout-aside, .subscription-item-header .is-act-cartpage .checkout .checkout-container > .col, .subscription-item-header .is-act-cartpage .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .subscription-item-header .is-act-cartpage .checkout .checkout-container > .checkout-aside, .subscription-item-header .is-act-cartpage .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .subscription-item-header .is-act-cartpage .checkout .checkout-container > .checkout-aside, .subscription-item-header .is-act-cartpage .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .subscription-item-header .is-act-cartpage .checkout .checkout-container > .checkout-aside, .is-act-cartpage .checkout .subscription-item-header .checkout-container > .col, .subscription-item-header .is-act-checkoutregisterpage .checkout .checkout-container > .col, .subscription-item-header .is-act-checkoutregisterpage .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .subscription-item-header .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .subscription-item-header .is-act-checkoutregisterpage .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .subscription-item-header .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .subscription-item-header .is-act-checkoutregisterpage .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .subscription-item-header .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .is-act-checkoutregisterpage .checkout .subscription-item-header .checkout-container > .col, .subscription-item-header .is-act-confirmpage .checkout .checkout-container > .col, .subscription-item-header .is-act-confirmpage .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .subscription-item-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .subscription-item-header .is-act-confirmpage .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .subscription-item-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .subscription-item-header .is-act-confirmpage .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .subscription-item-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .subscription-item-header .checkout-container > .col, .subscription-item-header .is-ctl-accountorder .checkout .checkout-container > .col, .subscription-item-header .is-ctl-accountorder .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .subscription-item-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .subscription-item-header .is-ctl-accountorder .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .subscription-item-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .subscription-item-header .is-ctl-accountorder .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .subscription-item-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .subscription-item-header .checkout-container > .col, .subscription-item-header .is-act-finishpage .checkout .checkout-container > .col, .subscription-item-header .is-act-finishpage .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .subscription-item-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .subscription-item-header .is-act-finishpage .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .subscription-item-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .subscription-item-header .is-act-finishpage .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .subscription-item-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .subscription-item-header .checkout-container > .col, .subscription-item-header .is-act-confirmpage .checkout .row > .checkout-aside, .subscription-item-header .is-act-confirmpage .checkout .is-act-cartpage .checkout .checkout-container > .checkout-aside, .is-act-cartpage .checkout .subscription-item-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .subscription-item-header .is-act-confirmpage .checkout .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .is-act-checkoutregisterpage .checkout .subscription-item-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .subscription-item-header .row > .checkout-aside, .subscription-item-header .is-ctl-accountorder .checkout .row > .checkout-aside, .subscription-item-header .is-ctl-accountorder .checkout .is-act-cartpage .checkout .checkout-container > .checkout-aside, .is-act-cartpage .checkout .subscription-item-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .subscription-item-header .is-ctl-accountorder .checkout .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .is-act-checkoutregisterpage .checkout .subscription-item-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .subscription-item-header .row > .checkout-aside, .subscription-item-header .is-act-finishpage .checkout .row > .checkout-aside, .subscription-item-header .is-act-finishpage .checkout .is-act-cartpage .checkout .checkout-container > .checkout-aside, .is-act-cartpage .checkout .subscription-item-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .subscription-item-header .is-act-finishpage .checkout .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .is-act-checkoutregisterpage .checkout .subscription-item-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .subscription-item-header .row > .checkout-aside, .order-item-header .row > [class*="col-"], .subscription-item-header .row > [class*="col-"], .order-item-header .account-content > [class*="col-"], .order-item-header .is-act-cartpage .checkout .checkout-container > [class*="col-"], .is-act-cartpage .checkout .order-item-header .checkout-container > [class*="col-"], .order-item-header .is-act-checkoutregisterpage .checkout .checkout-container > [class*="col-"], .is-act-checkoutregisterpage .checkout .order-item-header .checkout-container > [class*="col-"], .order-item-header .is-act-confirmpage .checkout .checkout-container > [class*="col-"], .is-act-confirmpage .checkout .order-item-header .checkout-container > [class*="col-"], .order-item-header .is-ctl-accountorder .checkout .checkout-container > [class*="col-"], .is-ctl-accountorder .checkout .order-item-header .checkout-container > [class*="col-"], .order-item-header .is-act-finishpage .checkout .checkout-container > [class*="col-"], .is-act-finishpage .checkout .order-item-header .checkout-container > [class*="col-"], .subscription-item-header .account-content > [class*="col-"], .subscription-item-header .is-act-cartpage .checkout .checkout-container > [class*="col-"], .is-act-cartpage .checkout .subscription-item-header .checkout-container > [class*="col-"], .subscription-item-header .is-act-checkoutregisterpage .checkout .checkout-container > [class*="col-"], .is-act-checkoutregisterpage .checkout .subscription-item-header .checkout-container > [class*="col-"], .subscription-item-header .is-act-confirmpage .checkout .checkout-container > [class*="col-"], .is-act-confirmpage .checkout .subscription-item-header .checkout-container > [class*="col-"], .subscription-item-header .is-ctl-accountorder .checkout .checkout-container > [class*="col-"], .is-ctl-accountorder .checkout .subscription-item-header .checkout-container > [class*="col-"], .subscription-item-header .is-act-finishpage .checkout .checkout-container > [class*="col-"], .is-act-finishpage .checkout .subscription-item-header .checkout-container > [class*="col-"], .order-detail-content-header .row > .col, .subscription-detail-content-header .row > .col, .order-detail-content-header .account-content > .col, .order-detail-content-header .is-act-confirmpage .checkout .account-content > .checkout-aside, .is-act-confirmpage .checkout .order-detail-content-header .account-content > .checkout-aside, .order-detail-content-header .is-ctl-accountorder .checkout .account-content > .checkout-aside, .is-ctl-accountorder .checkout .order-detail-content-header .account-content > .checkout-aside, .order-detail-content-header .is-act-finishpage .checkout .account-content > .checkout-aside, .is-act-finishpage .checkout .order-detail-content-header .account-content > .checkout-aside, .order-detail-content-header .is-act-cartpage .checkout .checkout-container > .col, .order-detail-content-header .is-act-cartpage .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-detail-content-header .is-act-cartpage .checkout .checkout-container > .checkout-aside, .order-detail-content-header .is-act-cartpage .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-detail-content-header .is-act-cartpage .checkout .checkout-container > .checkout-aside, .order-detail-content-header .is-act-cartpage .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-detail-content-header .is-act-cartpage .checkout .checkout-container > .checkout-aside, .is-act-cartpage .checkout .order-detail-content-header .checkout-container > .col, .order-detail-content-header .is-act-checkoutregisterpage .checkout .checkout-container > .col, .order-detail-content-header .is-act-checkoutregisterpage .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-detail-content-header .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .order-detail-content-header .is-act-checkoutregisterpage .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-detail-content-header .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .order-detail-content-header .is-act-checkoutregisterpage .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-detail-content-header .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .is-act-checkoutregisterpage .checkout .order-detail-content-header .checkout-container > .col, .order-detail-content-header .is-act-confirmpage .checkout .checkout-container > .col, .order-detail-content-header .is-act-confirmpage .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-detail-content-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .order-detail-content-header .is-act-confirmpage .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-detail-content-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .order-detail-content-header .is-act-confirmpage .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-detail-content-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-detail-content-header .checkout-container > .col, .order-detail-content-header .is-ctl-accountorder .checkout .checkout-container > .col, .order-detail-content-header .is-ctl-accountorder .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-detail-content-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .order-detail-content-header .is-ctl-accountorder .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-detail-content-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .order-detail-content-header .is-ctl-accountorder .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-detail-content-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-detail-content-header .checkout-container > .col, .order-detail-content-header .is-act-finishpage .checkout .checkout-container > .col, .order-detail-content-header .is-act-finishpage .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-detail-content-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .order-detail-content-header .is-act-finishpage .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-detail-content-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .order-detail-content-header .is-act-finishpage .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-detail-content-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-detail-content-header .checkout-container > .col, .order-detail-content-header .is-act-confirmpage .checkout .row > .checkout-aside, .order-detail-content-header .is-act-confirmpage .checkout .is-act-cartpage .checkout .checkout-container > .checkout-aside, .is-act-cartpage .checkout .order-detail-content-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .order-detail-content-header .is-act-confirmpage .checkout .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .is-act-checkoutregisterpage .checkout .order-detail-content-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .order-detail-content-header .row > .checkout-aside, .order-detail-content-header .is-ctl-accountorder .checkout .row > .checkout-aside, .order-detail-content-header .is-ctl-accountorder .checkout .is-act-cartpage .checkout .checkout-container > .checkout-aside, .is-act-cartpage .checkout .order-detail-content-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .order-detail-content-header .is-ctl-accountorder .checkout .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .is-act-checkoutregisterpage .checkout .order-detail-content-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .order-detail-content-header .row > .checkout-aside, .order-detail-content-header .is-act-finishpage .checkout .row > .checkout-aside, .order-detail-content-header .is-act-finishpage .checkout .is-act-cartpage .checkout .checkout-container > .checkout-aside, .is-act-cartpage .checkout .order-detail-content-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .order-detail-content-header .is-act-finishpage .checkout .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .is-act-checkoutregisterpage .checkout .order-detail-content-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .order-detail-content-header .row > .checkout-aside, .subscription-detail-content-header .account-content > .col, .subscription-detail-content-header .is-act-confirmpage .checkout .account-content > .checkout-aside, .is-act-confirmpage .checkout .subscription-detail-content-header .account-content > .checkout-aside, .subscription-detail-content-header .is-ctl-accountorder .checkout .account-content > .checkout-aside, .is-ctl-accountorder .checkout .subscription-detail-content-header .account-content > .checkout-aside, .subscription-detail-content-header .is-act-finishpage .checkout .account-content > .checkout-aside, .is-act-finishpage .checkout .subscription-detail-content-header .account-content > .checkout-aside, .subscription-detail-content-header .is-act-cartpage .checkout .checkout-container > .col, .subscription-detail-content-header .is-act-cartpage .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .subscription-detail-content-header .is-act-cartpage .checkout .checkout-container > .checkout-aside, .subscription-detail-content-header .is-act-cartpage .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .subscription-detail-content-header .is-act-cartpage .checkout .checkout-container > .checkout-aside, .subscription-detail-content-header .is-act-cartpage .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .subscription-detail-content-header .is-act-cartpage .checkout .checkout-container > .checkout-aside, .is-act-cartpage .checkout .subscription-detail-content-header .checkout-container > .col, .subscription-detail-content-header .is-act-checkoutregisterpage .checkout .checkout-container > .col, .subscription-detail-content-header .is-act-checkoutregisterpage .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .subscription-detail-content-header .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .subscription-detail-content-header .is-act-checkoutregisterpage .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .subscription-detail-content-header .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .subscription-detail-content-header .is-act-checkoutregisterpage .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .subscription-detail-content-header .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .is-act-checkoutregisterpage .checkout .subscription-detail-content-header .checkout-container > .col, .subscription-detail-content-header .is-act-confirmpage .checkout .checkout-container > .col, .subscription-detail-content-header .is-act-confirmpage .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .subscription-detail-content-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .subscription-detail-content-header .is-act-confirmpage .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .subscription-detail-content-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .subscription-detail-content-header .is-act-confirmpage .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .subscription-detail-content-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .subscription-detail-content-header .checkout-container > .col, .subscription-detail-content-header .is-ctl-accountorder .checkout .checkout-container > .col, .subscription-detail-content-header .is-ctl-accountorder .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .subscription-detail-content-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .subscription-detail-content-header .is-ctl-accountorder .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .subscription-detail-content-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .subscription-detail-content-header .is-ctl-accountorder .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .subscription-detail-content-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .subscription-detail-content-header .checkout-container > .col, .subscription-detail-content-header .is-act-finishpage .checkout .checkout-container > .col, .subscription-detail-content-header .is-act-finishpage .checkout .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .subscription-detail-content-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .subscription-detail-content-header .is-act-finishpage .checkout .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .subscription-detail-content-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .subscription-detail-content-header .is-act-finishpage .checkout .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .subscription-detail-content-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .subscription-detail-content-header .checkout-container > .col, .subscription-detail-content-header .is-act-confirmpage .checkout .row > .checkout-aside, .subscription-detail-content-header .is-act-confirmpage .checkout .is-act-cartpage .checkout .checkout-container > .checkout-aside, .is-act-cartpage .checkout .subscription-detail-content-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .subscription-detail-content-header .is-act-confirmpage .checkout .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .is-act-checkoutregisterpage .checkout .subscription-detail-content-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside, .is-act-confirmpage .checkout .subscription-detail-content-header .row > .checkout-aside, .subscription-detail-content-header .is-ctl-accountorder .checkout .row > .checkout-aside, .subscription-detail-content-header .is-ctl-accountorder .checkout .is-act-cartpage .checkout .checkout-container > .checkout-aside, .is-act-cartpage .checkout .subscription-detail-content-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .subscription-detail-content-header .is-ctl-accountorder .checkout .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .is-act-checkoutregisterpage .checkout .subscription-detail-content-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside, .is-ctl-accountorder .checkout .subscription-detail-content-header .row > .checkout-aside, .subscription-detail-content-header .is-act-finishpage .checkout .row > .checkout-aside, .subscription-detail-content-header .is-act-finishpage .checkout .is-act-cartpage .checkout .checkout-container > .checkout-aside, .is-act-cartpage .checkout .subscription-detail-content-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .subscription-detail-content-header .is-act-finishpage .checkout .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside, .is-act-checkoutregisterpage .checkout .subscription-detail-content-header .is-act-finishpage .checkout .checkout-container > .checkout-aside, .is-act-finishpage .checkout .subscription-detail-content-header .row > .checkout-aside, .order-detail-content-header .row > [class*="col-"], .subscription-detail-content-header .row > [class*="col-"], .order-detail-content-header .account-content > [class*="col-"], .order-detail-content-header .is-act-cartpage .checkout .checkout-container > [class*="col-"], .is-act-cartpage .checkout .order-detail-content-header .checkout-container > [class*="col-"], .order-detail-content-header .is-act-checkoutregisterpage .checkout .checkout-container > [class*="col-"], .is-act-checkoutregisterpage .checkout .order-detail-content-header .checkout-container > [class*="col-"], .order-detail-content-header .is-act-confirmpage .checkout .checkout-container > [class*="col-"], .is-act-confirmpage .checkout .order-detail-content-header .checkout-container > [class*="col-"], .order-detail-content-header .is-ctl-accountorder .checkout .checkout-container > [class*="col-"], .is-ctl-accountorder .checkout .order-detail-content-header .checkout-container > [class*="col-"], .order-detail-content-header .is-act-finishpage .checkout .checkout-container > [class*="col-"], .is-act-finishpage .checkout .order-detail-content-header .checkout-container > [class*="col-"], .subscription-detail-content-header .account-content > [class*="col-"], .subscription-detail-content-header .is-act-cartpage .checkout .checkout-container > [class*="col-"], .is-act-cartpage .checkout .subscription-detail-content-header .checkout-container > [class*="col-"], .subscription-detail-content-header .is-act-checkoutregisterpage .checkout .checkout-container > [class*="col-"], .is-act-checkoutregisterpage .checkout .subscription-detail-content-header .checkout-container > [class*="col-"], .subscription-detail-content-header .is-act-confirmpage .checkout .checkout-container > [class*="col-"], .is-act-confirmpage .checkout .subscription-detail-content-header .checkout-container > [class*="col-"], .subscription-detail-content-header .is-ctl-accountorder .checkout .checkout-container > [class*="col-"], .is-ctl-accountorder .checkout .subscription-detail-content-header .checkout-container > [class*="col-"], .subscription-detail-content-header .is-act-finishpage .checkout .checkout-container > [class*="col-"], .is-act-finishpage .checkout .subscription-detail-content-header .checkout-container > [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
  }
}
.order-table-header {
  font-weight: 700;
}
.order-item-header .row > .order-table-header-heading, .subscription-item-header .row > .order-table-header-heading, .order-item-header .account-content > .order-table-header-heading, .order-item-header .is-act-cartpage .checkout .checkout-container > .order-table-header-heading, .is-act-cartpage .checkout .order-item-header .checkout-container > .order-table-header-heading, .order-item-header .is-act-checkoutregisterpage .checkout .checkout-container > .order-table-header-heading, .is-act-checkoutregisterpage .checkout .order-item-header .checkout-container > .order-table-header-heading, .order-item-header .is-act-confirmpage .checkout .checkout-container > .order-table-header-heading, .is-act-confirmpage .checkout .order-item-header .checkout-container > .order-table-header-heading, .order-item-header .is-ctl-accountorder .checkout .checkout-container > .order-table-header-heading, .is-ctl-accountorder .checkout .order-item-header .checkout-container > .order-table-header-heading, .order-item-header .is-act-finishpage .checkout .checkout-container > .order-table-header-heading, .is-act-finishpage .checkout .order-item-header .checkout-container > .order-table-header-heading, .subscription-item-header .account-content > .order-table-header-heading, .subscription-item-header .is-act-cartpage .checkout .checkout-container > .order-table-header-heading, .is-act-cartpage .checkout .subscription-item-header .checkout-container > .order-table-header-heading, .subscription-item-header .is-act-checkoutregisterpage .checkout .checkout-container > .order-table-header-heading, .is-act-checkoutregisterpage .checkout .subscription-item-header .checkout-container > .order-table-header-heading, .subscription-item-header .is-act-confirmpage .checkout .checkout-container > .order-table-header-heading, .is-act-confirmpage .checkout .subscription-item-header .checkout-container > .order-table-header-heading, .subscription-item-header .is-ctl-accountorder .checkout .checkout-container > .order-table-header-heading, .is-ctl-accountorder .checkout .subscription-item-header .checkout-container > .order-table-header-heading, .subscription-item-header .is-act-finishpage .checkout .checkout-container > .order-table-header-heading, .is-act-finishpage .checkout .subscription-item-header .checkout-container > .order-table-header-heading, .order-item-header .row > .order-table-header-order-number, .subscription-item-header .row > .order-table-header-order-number, .order-item-header .account-content > .order-table-header-order-number, .order-item-header .account-content > .subscription-table-header-info-wrapper, .order-item-header .is-act-cartpage .checkout .checkout-container > .order-table-header-order-number, .order-item-header .is-act-cartpage .checkout .checkout-container > .subscription-table-header-info-wrapper, .is-act-cartpage .checkout .order-item-header .checkout-container > .order-table-header-order-number, .order-item-header .is-act-checkoutregisterpage .checkout .checkout-container > .order-table-header-order-number, .order-item-header .is-act-checkoutregisterpage .checkout .checkout-container > .subscription-table-header-info-wrapper, .is-act-checkoutregisterpage .checkout .order-item-header .checkout-container > .order-table-header-order-number, .order-item-header .is-act-confirmpage .checkout .checkout-container > .order-table-header-order-number, .order-item-header .is-act-confirmpage .checkout .checkout-container > .subscription-table-header-info-wrapper, .is-act-confirmpage .checkout .order-item-header .checkout-container > .order-table-header-order-number, .order-item-header .is-ctl-accountorder .checkout .checkout-container > .order-table-header-order-number, .order-item-header .is-ctl-accountorder .checkout .checkout-container > .subscription-table-header-info-wrapper, .is-ctl-accountorder .checkout .order-item-header .checkout-container > .order-table-header-order-number, .order-item-header .is-act-finishpage .checkout .checkout-container > .order-table-header-order-number, .order-item-header .is-act-finishpage .checkout .checkout-container > .subscription-table-header-info-wrapper, .is-act-finishpage .checkout .order-item-header .checkout-container > .order-table-header-order-number, .order-item-header .row > .subscription-table-header-info-wrapper, .subscription-item-header .account-content > .order-table-header-order-number, .subscription-item-header .account-content > .subscription-table-header-info-wrapper, .subscription-item-header .is-act-cartpage .checkout .checkout-container > .order-table-header-order-number, .subscription-item-header .is-act-cartpage .checkout .checkout-container > .subscription-table-header-info-wrapper, .is-act-cartpage .checkout .subscription-item-header .checkout-container > .order-table-header-order-number, .subscription-item-header .is-act-checkoutregisterpage .checkout .checkout-container > .order-table-header-order-number, .subscription-item-header .is-act-checkoutregisterpage .checkout .checkout-container > .subscription-table-header-info-wrapper, .is-act-checkoutregisterpage .checkout .subscription-item-header .checkout-container > .order-table-header-order-number, .subscription-item-header .is-act-confirmpage .checkout .checkout-container > .order-table-header-order-number, .subscription-item-header .is-act-confirmpage .checkout .checkout-container > .subscription-table-header-info-wrapper, .is-act-confirmpage .checkout .subscription-item-header .checkout-container > .order-table-header-order-number, .subscription-item-header .is-ctl-accountorder .checkout .checkout-container > .order-table-header-order-number, .subscription-item-header .is-ctl-accountorder .checkout .checkout-container > .subscription-table-header-info-wrapper, .is-ctl-accountorder .checkout .subscription-item-header .checkout-container > .order-table-header-order-number, .subscription-item-header .is-act-finishpage .checkout .checkout-container > .order-table-header-order-number, .subscription-item-header .is-act-finishpage .checkout .checkout-container > .subscription-table-header-info-wrapper, .is-act-finishpage .checkout .subscription-item-header .checkout-container > .order-table-header-order-number, .subscription-item-header .row > .subscription-table-header-info-wrapper {
  padding-right: 0;
  padding-left: 0;
}
.order-item-name {
  color: #4a545b;
}
.order-detail-content-header, .subscription-detail-content-header {
  margin-top: 1rem;
  font-weight: 700;
}
.order-detail-content-header .order-detail-content-header-cell[class*="col-"]:first-of-type, .subscription-detail-content-header .order-detail-content-header-cell[class*="col-"]:first-of-type, .order-detail-content-header .subscription-detail-content-header-cell[class*="col-"]:first-of-type, .subscription-detail-content-header .subscription-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, .subscription-detail-content-header .order-detail-content-header-cell[class*="col-"]:last-of-type, .order-detail-content-header .subscription-detail-content-header-cell[class*="col-"]:last-of-type, .subscription-detail-content-header .subscription-detail-content-header-cell[class*="col-"]:last-of-type {
  padding-right: 0;
}
.order-item-product-name {
  color: #333;
}
.order-item-product-name:hover {
  color: #00305d;
  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, .subscription-item-detail-footer {
  background-color: #f9f9f9;
}
.order-item-detail-summary dd, .subscription-item-detail-summary dd {
  font-weight: 700;
}
.order-price-unit {
  font-size: 0.75rem;
}
.order-item-variants {
  font-size: 0.75rem;
}
.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;
}
.secategory--listing-card {
  height: 90%;
  background-color: #fff;
  cursor: pointer;
  padding: 0;
  text-align: center;
  transition: box-shadow 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.secategory--listing-card:hover {
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.15);
}
.secategory--listing-card:after {
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.15);
  content: "";
  border-bottom: solid 3px #00305d;
  transform: scaleX(0);
  transition: transform 250ms ease-in-out;
}
.secategory--listing-card:hover:after {
  transform: scaleX(1);
}
.secategory--listing-card.fromRight:after {
  transform-origin: 100% 50%;
}
.secategory--listing-card.fromLeft:after {
  transform-origin: 0% 50%;
}
.secategory--listing-card .product-image-wrapper {
  margin-bottom: 0;
  height: 100%;
}
.secategory--listing-link {
  height: 100%;
  padding: 1rem;
  font-size: 1.625rem;
  color: #4a4a4a;
  overflow: visible;
  font-weight: normal;
  position: relative;
}
.secategory--listing-link:hover {
  text-decoration: none;
  color: #4a4a4a;
}
.secategory--listing-count {
  font-size: 0.8125rem;
  color: #999;
  text-transform: uppercase;
}
.secategory--listing-name {
  margin-bottom: 1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.secategory--listing-name:hover {
  color: #4a4a4a;
  text-decoration: none;
}
.secategory--listing-image {
  max-height: 75%;
  max-width: 90%;
  margin: 1rem auto 0 auto;
}
.secategory--listing-all-count {
  font-size: 1rem;
  color: #4a4a4a;
  margin-top: -6px;
}
.secategory--listing-no-img-card {
  border: 1px solid #bcc1c7;
  padding: 1.25rem 0 0 1.25rem;
  color: #373737;
}
.secategory--listing-no-img-card a {
  font-size: 1rem;
}
.secategory--listing-no-img-card:hover {
  background-color: #fff;
  border-color: black;
  color: black;
}
.secategory--listing-no-img-count {
  font-weight: lighter;
  color: #999;
}
.secategory--listing-variant-card {
  height: 100%;
}
.secategory--listing-variant-card:hover .category--listing-link {
  text-decoration: underline;
}
.secategory--listing-variant-item {
  color: #bcc1c7;
  font-weight: lighter;
  font-size: 16px;
  height: 8.1rem;
  margin: auto;
}
@media only screen and (max-width: 960px) {
  .secategory--listing-variant-item {
    height: 5.8rem;
  }
}
.secategory--listing-variant-item:hover {
  color: #00305d;
}
.secategory--listing-variant-item .product-image {
  margin: auto;
}
.secategory--listing-variant-divider {
  height: 0.36rem;
  background-color: #fff;
}
.sevariant--img {
  height: 17.5rem;
  margin: auto;
}
@media only screen and (min-width: 960px) {
  .sevariant--img {
    max-height: 17.5rem;
  }
}
.selisting--img-box-wrapper {
  height: 13rem;
}
.wosoNavit-product-detail-extText .wosoNavit-product-detail-extText-image {
  display: block;
  max-width: 100%;
  height: auto;
  width: 100%;
}
.wosoNavit-product-detail-extText .wosoNavit-product-detail-extText-image-title {
  display: block;
  padding: 5px 0 10px 0;
  font-size: 12px;
}
.wosoNavit-product-detail-extText .wosoNavit-product-detail-extText-para {
  margin-bottom: 20px;
  display: block;
  overflow: hidden;
}
.wosoNavit-product-detail-extText .wosoNavit-product-detail-extText-para.halfFrame .wosoNavit-product-detail-extText-text-frame {
  width: 100%;
}
.wosoNavit-product-detail-extText .wosoNavit-product-detail-extText-para.halfFrame .wosoNavit-product-detail-extText-image-frame {
  width: 100%;
}
.wosoNavit-product-detail-extText .wosoNavit-product-detail-extText-para.imgleft .wosoNavit-product-detail-extText-text-frame {
  float: right;
}
.wosoNavit-product-detail-extText .wosoNavit-product-detail-extText-para.imgleft .wosoNavit-product-detail-extText-image-frame {
  float: left;
}
.wosoNavit-product-detail-extText .wosoNavit-product-detail-video {
  width: 646px;
  height: 390px;
}
.wosoNavit-product-shortDescription {
  display: block;
  width: 100%;
}
.wosoNavit-product-detail-extText-text-frame {
  font-size: 1rem;
}
@media (min-width: 576px) {
  .wosoNavit-product-detail-extText .wosoNavit-product-detail-extText-para.halfFrame.imgleft .wosoNavit-product-detail-extText-text-frame {
    width: 49%;
    float: right;
  }
  .wosoNavit-product-detail-extText .wosoNavit-product-detail-extText-para.halfFrame.imgleft .wosoNavit-product-detail-extText-image-frame {
    width: 49%;
    float: left;
  }
  .wosoNavit-product-detail-extText .wosoNavit-product-detail-extText-para.halfFrame.imgright .wosoNavit-product-detail-extText-text-frame {
    width: 49%;
    float: left;
  }
  .wosoNavit-product-detail-extText .wosoNavit-product-detail-extText-para.halfFrame.imgright .wosoNavit-product-detail-extText-image-frame {
    width: 49%;
    float: right;
  }
}
.wosonav-reg-addnames-container, .wosonav-req-addtoggle-container {
  display: block;
  margin-top: -15px;
  margin-bottom: 10px;
  font-size: 0.8rem;
}
.register-woso-private-data {
  margin-top: -50px;
}
.register-woso-company-data {
  margin-top: 20px;
}
.js-woso-toggle-flip .js-woso-toggle-flip-open {
  display: initial;
}
.js-woso-toggle-flip .js-woso-toggle-flip-close {
  display: none;
}
.js-woso-toggle-flip[aria-expanded="true"] .js-woso-toggle-flip-open {
  display: none;
}
.js-woso-toggle-flip[aria-expanded="true"] .js-woso-toggle-flip-close {
  display: initial;
}
.regBullet {
  counter-increment: wizard;
  display: inline-block;
  color: #fff;
  background-color: #999;
  border: 2px solid #999;
  text-align: center;
  width: 1.4em;
  height: 1.4em;
  line-height: 1.2em;
  border-radius: 1.2em;
  margin-right: 0.42em;
  z-index: 1;
}
.current ~ .regBullet {
  background-color: #fff;
  color: #00305d;
  border-color: #00305d;
}
.woso-register-tabs .register-form .form-label {
  display: none;
}
.woso-register-tabs .card-title {
  margin-bottom: 2rem !important;
}
.woso-register-tabs .contact-type {
  margin-bottom: 0 !important;
}
.woso-register-tabs .form-row:last-child {
  margin-bottom: 2rem;
}
.woso-register-tabs .register-woso-private-data {
  margin-bottom: 2rem;
}
.woso-register-tabs .wosonav-reg-private-label {
  color: #0069B4;
  margin-bottom: 0.5rem;
}
.woso-register-tabs .wosonav-reg-private-label:hover {
  text-decoration: underline;
  cursor: pointer;
}
.woso-register-tabs .register-submit .btn {
  min-width: 200px;
}
.woso-register-tabs .row, .woso-register-tabs .account-content, .woso-register-tabs .is-act-cartpage .checkout .checkout-container, .is-act-cartpage .checkout .woso-register-tabs .checkout-container, .woso-register-tabs .is-act-checkoutregisterpage .checkout .checkout-container, .is-act-checkoutregisterpage .checkout .woso-register-tabs .checkout-container, .woso-register-tabs .is-act-confirmpage .checkout .checkout-container, .is-act-confirmpage .checkout .woso-register-tabs .checkout-container, .woso-register-tabs .is-ctl-accountorder .checkout .checkout-container, .is-ctl-accountorder .checkout .woso-register-tabs .checkout-container, .woso-register-tabs .is-act-finishpage .checkout .checkout-container, .is-act-finishpage .checkout .woso-register-tabs .checkout-container {
  max-width: 800px;
}
.account-content-main form {
  max-width: 800px;
}
.wosonav-customer-subtype-modal {
  z-index: 10000;
}
.wosonav-customer-subtype-modal .modal-dialog .modal-content .wosonav-modal-body {
  overflow: hidden;
}
.wosonav-customer-subtype-modal .modal-dialog .modal-content .wosonav-modal-body .wosonav_modal_body {
  margin-top: 1rem;
}
.wosonav-customer-subtype-modal .modal-dialog .modal-content .wosonav-modal-body .wosonav_modal_footer .form-check.woa-required {
  border-bottom: 1px solid #00305d;
}
.woso-d-none {
  display: none;
}
.woso-register-button-header-container .btn:disabled {
  color: var(--bs-btn-color);
  pointer-events: none;
  background-color: var(--bs-btn-bg);
  border-color: var(--bs-btn-border-color);
  opacity: var(--bs-btn-opacity);
}
.woso-register-button-header-container button:not(:disabled) {
  cursor: pointer;
  color: var(--bs-btn-disabled-color);
  background-color: var(--bs-btn-disabled-bg);
  border-color: var(--bs-btn-disabled-border-color);
  opacity: var(--bs-btn-disabled-opacity);
}
.woso-register-button-header-container button:not(:disabled):hover {
  color: var(--bs-btn-color);
  background-color: var(--bs-btn-bg);
  border-color: var(--bs-btn-border-color);
  opacity: var(--bs-btn-opacity);
}
.account-register {
  max-width: 800px;
  margin: 0 auto;
}
.woso-register-button-header-container div {
  margin-bottom: 0.5rem;
}
.swag-customized-products__line-item-collapse-unit-price {
  text-align: right;
}
@media (min-width: 768px) {
  .swag-customized-products__line-item-grid_component.no-remove-button {
    grid-template-columns: 1.25fr 5fr 2fr 2fr 2fr !important;
    grid-template-rows: repeat(3, auto);
    grid-template-areas: "image label            quantity         unit-price    total-price   " "image collapse-options collapse-options collapse-unit collapse-total" "image details          .                .             .             " !important;
  }
}
.woso_lineitem-quantity-justify {
  justify-content: center !important;
}
.line-item-custom-products-data {
  flex: 0 0 auto;
  width: 100%;
  order: 3;
}
.line-item-custom-products-data .line-item-custom-products-data-row {
  align-items: center;
  margin-bottom: 0.5rem;
}
.is-offcanvas .woso_lineitem-quantity-justify {
  justify-content: flex-end !important;
}
.is-offcanvas .line-item-custom-products-data {
  flex: 0 0 auto;
  width: 100%;
  order: 3;
}
.is-offcanvas .swag-customized-products__line-item-collapse-total-price {
  margin-top: 0rem;
}
.is-offcanvas .swag-customized-products__line-item-details {
  padding-bottom: 0rem;
}
.swag-customized-products__line-item-collapse-unit-price {
  display: none;
}
.swag-customized-products__line-item-option-element .col-3, .swag-customized-products__line-item-option-element .col-9 {
  padding: 0;
}
.swag-customized-products-cart__configuration {
  margin-top: 12px;
  padding: 4px;
  width: 100%;
}
.swag-customized-products-cart__item {
  margin: 12px 0;
  font-size: 9pt;
}
.swag-customized-products-cart__list {
  margin-left: 16px;
  padding: 0;
}
.swag-customized-products-cart__price-tag {
  white-space: nowrap;
}
.swag-customized-products-cart__title-link:hover {
  text-decoration: none;
}
.swag-customized-products-cart__title-link .toggle-icon-plus {
  display: block;
}
.swag-customized-products-cart__title-link .toggle-icon-minus {
  display: none;
}
.swag-customized-products-cart__title-link[aria-expanded="true"] .toggle-icon-plus {
  display: none;
}
.swag-customized-products-cart__title-link[aria-expanded="true"] .toggle-icon-minus {
  display: block;
}
.swag-customized-products-cart__title-container {
  padding: 0;
}
.swag-customized-products-cart__title-toggle {
  width: auto;
  top: 2px;
}
.swag-customized-products-cart__title-toggle-icon {
  text-align: right;
}
.swag-customized-products-cart__title-toggle-icon.col, .is-act-confirmpage .checkout .swag-customized-products-cart__title-toggle-icon.checkout-aside, .is-ctl-accountorder .checkout .swag-customized-products-cart__title-toggle-icon.checkout-aside, .is-act-finishpage .checkout .swag-customized-products-cart__title-toggle-icon.checkout-aside {
  display: inline-block;
}
.cart-item-remove.col-2 {
  order: 1;
}
/*
More information about css grid layouts:
https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Grid_Layout
https://developer.mozilla.org/en-US/docs/Web/CSS/grid-area
*/
.swag-customized-products__line-item-image-container {
  text-align: center;
  width: 70px;
  padding-right: 0.25rem;
  padding-left: 0.25rem;
}
.swag-customized-products__line-item-label {
  padding-top: 8px;
}
.swag-customized-products__line-item-unit-price {
  text-align: right;
}
.swag-customized-products__line-item-unit-price .line-item-unit-price-label, .swag-customized-products__line-item-unit-price .line-item-tax-price-label {
  display: none;
}
.swag-customized-products__line-item-total-price {
  text-align: right;
  font-weight: 700;
}
.swag-customized-products__line-item-total-price .line-item-total-price-label {
  display: none;
}
.swag-customized-products__line-item-remove {
  text-align: right;
}
.swag-customized-products__line-item-collapse-options {
  font-size: 0.75rem;
}
.swag-customized-products__line-item-collapse-options .swag-customized-products__line-item-option-elements {
  margin-top: 0.5rem;
}
.swag-customized-products__line-item-collapse-unit-price {
  margin-top: 2rem;
  font-size: 0.75rem;
}
.swag-customized-products__line-item-collapse-unit-price .swag-customized-products__line-item-option-elements {
  padding-left: 0;
  padding-right: 0;
}
.swag-customized-products__line-item-collapse-total-price {
  margin-top: 2rem;
  font-size: 0.75rem;
  display: block;
}
.swag-customized-products__line-item-collapse-total-price .swag-customized-products__line-item-option-elements {
  padding-left: 0;
  padding-right: 0;
}
.swag-customized-products__line-item-details {
  padding-bottom: 1rem;
}
.swag-customized-products__line-item-options-control-wrapper {
  height: 1.5rem;
}
.swag-customized-products__line-item-options-control-wrapper .swag-customized-products__line-item-control-headline, .swag-customized-products__line-item-options-control-wrapper .swag-customized-products__line-item-control-icon-container {
  display: inline-block;
}
.swag-customized-products__line-item-options-control-wrapper .line-item-collapse-button, .swag-customized-products__line-item-options-control-wrapper .line-item-child-remove-icon {
  background-color: transparent;
  border-style: none;
}
.swag-customized-products__line-item-options-control-wrapper .line-item-collapse-button:focus, .swag-customized-products__line-item-options-control-wrapper .line-item-child-remove-icon:focus {
  outline: none;
}
.swag-customized-products__line-item-options-control-wrapper .line-item-collapse-button > .line-item-collapse-icon > .icon-arrow-down {
  height: 16px;
}
.swag-customized-products__line-item-options-control-wrapper .line-item-collapse-button > .line-item-collapse-icon {
  transform: rotate(0deg);
  transition: all 0.2s ease-out;
}
.swag-customized-products__line-item-options-control-wrapper .line-item-collapse-button.collapsed > .line-item-collapse-icon {
  transform: rotate(-90deg);
}
.swag-customized-products__line-item-option-element .line-item-unit-price-label, .swag-customized-products__line-item-option-element .line-item-tax-price-label, .swag-customized-products__line-item-option-element .line-item-total-price-label {
  display: none;
}
.swag-customized-products__line-item-option-element .line-item-total-price-value {
  font-weight: 700;
}
.swag-customized-products__line-item-option-element .line-item-unit-price-value, .swag-customized-products__line-item-option-element .line-item-tax-price-value, .swag-customized-products__line-item-option-element .line-item-total-price-value {
  text-align: right;
}
.swag-customized-products__line-item-option-element-detailed-price {
  margin-left: calc(var(--bs-gutter-x) * .5);
  display: none;
}
.swag-customized-products__line-item-option-element-detailed-price .line-item-unit-price-label, .swag-customized-products__line-item-option-element-detailed-price .line-item-tax-price-label, .swag-customized-products__line-item-option-element-detailed-price .line-item-total-price-label {
  display: inline-block;
  margin: 0;
  text-align: left;
  font-weight: normal;
  font-size: 0.75rem;
}
.swag-customized-products__line-item-option-element-detailed-price .line-item-total-price-label {
  font-weight: 700;
}
.swag-customized-products__line-item-option-element-detailed-price .line-item-unit-price-value, .swag-customized-products__line-item-option-element-detailed-price .line-item-tax-price-value, .swag-customized-products__line-item-option-element-detailed-price .line-item-total-price-value {
  display: inline-block;
  text-align: right;
  float: right;
}
.swag-customized-products__line-item-image {
  grid-area: image;
}
.swag-customized-products__line-item-label {
  grid-area: label;
}
.swag-customized-products__line-item-quantity {
  grid-area: quantity;
}
.swag-customized-products__line-item-unit-price {
  grid-area: unit-price;
}
.swag-customized-products__line-item-total-price {
  grid-area: total-price;
}
.swag-customized-products__line-item-remove {
  grid-area: remove;
}
.swag-customized-products__line-item-collapse-options {
  grid-area: collapse-options;
}
.swag-customized-products__line-item-collapse-unit-price {
  grid-area: collapse-unit;
}
.swag-customized-products__line-item-collapse-total-price {
  grid-area: collapse-total;
}
.swag-customized-products__line-item-details {
  grid-area: details;
}
@media (min-width: 576px) {
  *:not(.cart-offcanvas) .swag-customized-products__line-item-label {
    padding-left: 0.25rem;
  }
}
@media (min-width: 576px) {
  *:not(.cart-offcanvas) .swag-customized-products__line-item-quantity {
    text-align: right;
  }
  *:not(.cart-offcanvas) .swag-customized-products__line-item-quantity .line-item-quantity {
    text-align: right;
    width: 100%;
  }
}
@media (min-width: 768px) {
  *:not(.cart-offcanvas) .swag-customized-products__line-item-quantity .line-item-quantity-label {
    display: none;
    width: 100%;
  }
}
*:not(.cart-offcanvas) .swag-customized-products__line-item-unit-price .line-item-unit-price-label, *:not(.cart-offcanvas) .swag-customized-products__line-item-unit-price .line-item-tax-price-label {
  display: none;
}
@media (min-width: 576px) {
  *:not(.cart-offcanvas) .swag-customized-products__line-item-unit-price .line-item-unit-price-label, *:not(.cart-offcanvas) .swag-customized-products__line-item-unit-price .line-item-tax-price-label {
    display: block;
  }
}
@media (min-width: 768px) {
  *:not(.cart-offcanvas) .swag-customized-products__line-item-unit-price .line-item-unit-price-label, *:not(.cart-offcanvas) .swag-customized-products__line-item-unit-price .line-item-tax-price-label {
    display: none;
  }
}
*:not(.cart-offcanvas) .swag-customized-products__line-item-total-price .line-item-total-price-label {
  display: none;
}
@media (min-width: 576px) {
  *:not(.cart-offcanvas) .swag-customized-products__line-item-total-price .line-item-total-price-label {
    display: block;
  }
}
@media (min-width: 768px) {
  *:not(.cart-offcanvas) .swag-customized-products__line-item-total-price .line-item-total-price-label {
    display: none;
  }
}
@media (min-width: 576px) {
  *:not(.cart-offcanvas) .swag-customized-products__line-item-collapse-options {
    padding-left: 0.25rem;
  }
}
@media (min-width: 576px) {
  *:not(.cart-offcanvas) .swag-customized-products__line-item-details {
    padding-left: 0.25rem;
  }
}
*:not(.cart-offcanvas) .swag-customized-products__line-item-option-element-detailed-price {
  display: none;
}
@media (min-width: 576px) {
  *:not(.cart-offcanvas) .swag-customized-products__line-item-option-element-detailed-price {
    display: block;
  }
}
@media (min-width: 768px) {
  *:not(.cart-offcanvas) .swag-customized-products__line-item-option-element-detailed-price {
    display: none;
  }
}
*:not(.cart-offcanvas) .swag-customized-products__line-item-grid_component {
  display: grid;
  grid-template-columns: 5fr 1fr;
  grid-template-rows: repeat(6, auto);
  grid-template-areas: "image            remove" "label            label" "collapse-options collapse-total" "details          details" "quantity         quantity" "total-price      total-price";
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}
*:not(.cart-offcanvas) .swag-customized-products__line-item-image {
  grid-area: image;
}
*:not(.cart-offcanvas) .swag-customized-products__line-item-unit-price {
  display: none;
}
*:not(.cart-offcanvas) .swag-customized-products__line-item-collapse-unit-price {
  display: none;
}
@media (min-width: 576px) {
  *:not(.cart-offcanvas) .swag-customized-products__line-item-grid_component {
    grid-template-columns: 0.6666666667fr 1.3333333333fr 2fr 2fr;
    grid-template-rows: repeat(3, auto);
    grid-template-areas: "image label            label            remove" "image collapse-options collapse-options collapse-options" "image details          details          ." "image quantity         unit-price       total-price";
  }
  *:not(.cart-offcanvas) .swag-customized-products__line-item-unit-price {
    display: unset;
  }
  *:not(.cart-offcanvas) .swag-customized-products__line-item-collapse-unit-price {
    display: none;
  }
  *:not(.cart-offcanvas) .swag-customized-products__line-item-collapse-total-price {
    display: none;
  }
}
@media (min-width: 768px) {
  *:not(.cart-offcanvas) .swag-customized-products__line-item-grid_component {
    grid-template-columns: 1.25fr 3.75fr 2fr 2fr 2fr 1fr;
    grid-template-rows: repeat(3, auto);
    grid-template-areas: "image label            quantity         unit-price    total-price    remove" "image collapse-options collapse-options collapse-unit collapse-total remove" "image details          .                .             .              remove";
  }
  *:not(.cart-offcanvas) .swag-customized-products__line-item-collapse-unit-price {
    display: unset;
  }
  *:not(.cart-offcanvas) .swag-customized-products__line-item-collapse-total-price {
    display: unset;
  }
}
.cart-offcanvas .swag-customized-products__line-item-quantity {
  text-align: left;
}
.cart-offcanvas .swag-customized-products__line-item-quantity .line-item-quantity {
  text-align: right;
  width: auto;
}
.cart-offcanvas .swag-customized-products__line-item-quantity .line-item-quantity-select-wrapper {
  flex-grow: 1;
}
.cart-offcanvas .swag-customized-products__line-item-quantity .line-item-quantity-label {
  display: inline-block;
  width: auto;
}
.cart-offcanvas .swag-customized-products__line-item-option-element-detailed-price {
  display: none;
}
.cart-offcanvas .swag-customized-products__line-item-grid_component {
  display: grid;
  grid-template-columns: 5fr 1fr;
  grid-template-rows: repeat(6, auto);
  grid-template-areas: "image            remove" "label            label" "collapse-options collapse-total" "details          details" "quantity         quantity" "total-price      total-price";
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}
.cart-offcanvas .swag-customized-products__line-item-total-price .line-item-total-price-label {
  display: none;
}
.cart-offcanvas .swag-customized-products__line-item-unit-price {
  display: none;
}
.cart-offcanvas .swag-customized-products__line-item-collapse-unit-price {
  display: none;
}
.cart-offcanvas .swag-customized-products__line-item-collapse-total-price {
  display: block;
}
.swag-customized-products-option-type__checkbox-wrapper {
  border-radius: 2px;
  border: 1px solid #bcc1c7;
  padding: 1rem;
}
.swag-customized-products-option-type__checkbox-wrapper:hover {
  border-color: #00305d;
}
.swag-customized-products-options-datetime-wrapper .swag-customized-products-options-datetime[disabled] {
  background-color: #eee;
  opacity: 1;
}
.swag-customized-products-options-datetime-wrapper .swag-customized-products-date-picker-button {
  border: none;
  background-color: transparent;
}
.swag-customized-products-options-datetime-wrapper .swag-customized-products-date-picker-button > span {
  color: #373737;
}
.swag-customized-products-options-datetime-wrapper .date-picker-clear[disabled] > span {
  color: rgba(55, 55, 55, 0.3);
}
.swag-custommized-product-html-editor {
  width: 100%;
  border-radius: 3px;
  border: 1px solid #bcc1c7;
  overflow: hidden;
}
.swag-custommized-product-html-editor__editor-wrapper {
  position: relative;
}
.swag-custommized-product-html-editor__placeholder {
  top: 16px;
  left: 16px;
  right: 0;
  bottom: 0;
  position: absolute;
  color: #798490;
  cursor: text;
}
.swag-custommized-product-html-editor__toolbar {
  background: #eee;
  border-bottom: 1px solid #bcc1c7;
}
.swag-custommized-product-html-editor__toolbar-button {
  appearance: none;
  border: 0 none;
  margin: 0;
  padding: 4px 12px;
}
.swag-custommized-product-html-editor__toolbar-button[aria-pressed="true"] .icon {
  color: #000;
}
.swag-custommized-product-html-editor__toolbar-button > .icon {
  width: 12px;
  height: 12px;
}
.swag-custommized-product-html-editor__toolbar-button > .icon > svg {
  top: 2px;
}
.swag-custommized-product-html-editor__editor {
  padding: 16px;
  min-height: 75px;
  height: 150px;
  max-height: 250px;
  resize: vertical;
  border-radius: 0;
  overflow-y: scroll;
}
.swag-custommized-product-html-editor__editor > div {
  margin-bottom: 12px;
}
.swag-custommized-product-html-editor__editor:focus {
  outline: none;
}
.swag-customized-products-option-type-select-wrapper {
  display: block;
  width: 100%;
}
.swag-customized-products-option-type-select-wrapper .forms-boolean {
  height: auto;
  padding: 0;
}
.swag-customized-products-option-type-select-wrapper .forms-boolean-label {
  position: relative;
}
.swag-customized-products-option-type-select-wrapper .forms-boolean-label::before {
  content: "";
  border-radius: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: transparent;
  border: 1px solid #bcc1c7;
}
.swag-customized-products-option-type-select-wrapper .form-check-input {
  background: green;
}
.swag-customized-products-option-type-select-wrapper .form-check-input:checked {
  background: red;
}
.swag-customized-products-option-type-select-wrapper .form-check-input:checked ~ .form-check-label::before {
  background-color: transparent;
  border-color: #00305d;
  border-width: 2px;
}
.swag-customized-products-option-type-select-wrapper .form-check-input:not(:disabled):active ~ .form-check-label::before {
  background-color: transparent;
}
.swag-customized-products-option-type-select-wrapper .form-check-input:focus ~ .form-check-label::before {
  box-shadow: none;
}
.swag-customized-products-option-type-select-wrapper .form-check .form-check-input:checked ~ .form-check-label::after {
  visibility: hidden;
}
.swag-customized-products-option-type-select-wrapper .form-control.form-check-input {
  position: absolute;
  left: 0;
  height: 100%;
}
.swag-customized-products-option-type-select-wrapper .swag-customized-products-form-control:not(select) {
  opacity: 0;
  z-index: -100;
}
.swag-customized-products__type-colorselect .swag-customized-products-option-type-select-checkboxes-label__property-bubble, .swag-customized-products__type-imageselect .swag-customized-products-option-type-select-checkboxes-label__property-bubble {
  width: 24px;
  height: 24px;
  border-radius: 100%;
  margin: 0 12px 0 0;
  border: 1px solid #bcc1c7;
}
.swag-customized-products__type-colorselect .swag-customized-products-option-type-select-checkboxes-label__property-bubble.no-selection, .swag-customized-products__type-imageselect .swag-customized-products-option-type-select-checkboxes-label__property-bubble.no-selection {
  margin-top: 0;
  border: 0 none;
}
.swag-customized-products__type-colorselect .swag-customized-products-option-type-select-checkboxes-label__property-bubble .icon > svg, .swag-customized-products__type-imageselect .swag-customized-products-option-type-select-checkboxes-label__property-bubble .icon > svg {
  top: 0;
  position: initial;
}
.swag-customized-products__type-imageselect .swag-customized-products-option-type-select-checkboxes-label__property-bubble {
  width: 48px;
}
.swag-customized-products__type-imageselect .swag-customized-products-option-type-select-checkboxes-label__property-bubble .icon {
  margin-left: 12px;
}
.swag-customized-products__type-imageselect .swag-customized-products-option-type-select-checkboxes-label__property-image {
  width: 48px;
  margin: 8px 14px 8px 0;
}
.swag-customized-products__type-imageselect .swag-customized-products-option-type-select-checkboxes-label__property-image .swag-customized-products-image-zoom__template {
  display: none;
}
.swag-customized-products__type-imageselect .swag-customized-products-option-type-select-checkboxes-label__property-image .swag-customized-products-option__image {
  border: 1px solid #bcc1c7;
  border-radius: 2px;
}
.swag-customized-products__type-imageselect .swag-customized-products-option-type-select-checkboxes-label__property-image .swag-customized-products-option__image:hover {
  border-color: #00305d;
}
.swag-customized-products__type-imageselect .swag-customized-products-option-type-select-checkboxes-label__property-image .swag-customized-products-option__image:hover + .icon-editor-expand > svg {
  color: #00305d;
}
.swag-customized-products__type-imageselect .swag-customized-products-option-type-select-checkboxes-label__property-image.swag-customized-products-image-zoom {
  position: relative;
  margin: 8px 32px 8px 0;
}
.swag-customized-products__type-imageselect .swag-customized-products-option-type-select-checkboxes-label__property-image.swag-customized-products-image-zoom .icon-editor-expand {
  position: absolute;
  width: 12px;
  height: 12px;
  right: -20px;
  top: 50%;
  margin-top: -10px;
}
.swag-customized-products__type-imageselect .swag-customized-products-option-type-select-checkboxes-label__property-image.swag-customized-products-image-zoom .icon-editor-expand:hover svg {
  color: #00305d;
}
.swag-customized-products-option-type-select-checkboxes-label {
  height: 100%;
  display: flex;
  padding: 10px 16px;
  text-align: left;
  align-items: center;
}
.swag-customized-products-option-type-select-checkboxes-label:after {
  content: none;
}
.swag-customized-products-option-type-select-checkboxes-label .swag-customized-products__boolean-label {
  text-align: left;
  padding-left: 12px;
  padding-right: 12px;
}
.swag-customized-products-option-type-select-checkboxes-label .swag-customized-products-option-type-select-checkboxes-label__property {
  border-radius: 100%;
  word-break: break-word;
  flex: 5;
}
.swag-customized-products-option-type-select-checkboxes-label .swag-customized-products-option-type-select-checkboxes-label__property.limit-two-lines {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: normal;
  text-overflow: ellipsis;
}
.swag-customized-products-option-type-select-checkboxes-label .swag-customized-products-option-type-colorselect-checkboxes-label-name {
  padding-bottom: 0;
  flex: 1;
}
.swag-customized-products-option-type-select-checkboxes-label .swag-customized-products-option-type-select-checkboxes-label__surcharge-info {
  font-weight: bold;
  word-break: keep-all;
  flex: 1;
}
.swag-customized-products__type-textarea-clear-button {
  border: none;
  background-color: transparent;
  color: #373737;
}
.swag-customized-products__type-textarea-clear-button:hover {
  color: #00305d;
}
.swag-customized-products__type-textarea-clear-button[disabled] {
  color: rgba(55, 55, 55, 0.3);
}
.customized-products-upload__dropzone {
  display: block;
  padding: 1.5rem;
  border: 2px dashed rgba(0, 48, 93, 0.38);
  border-radius: 2px;
  background-color: rgba(0, 48, 93, 0.03);
}
.customized-products-upload__dropzone.dragover {
  padding: calc(1.5rem + 1px);
  border: 1px solid #00305d;
  background-color: rgba(0, 48, 93, 0.15);
}
.customized-products-upload__dropzone-col {
  padding: 0;
}
.customized-products-upload__dropzone-icon {
  display: inline-block;
  margin-right: 12px;
  vertical-align: top;
}
.customized-products-upload__dropzone-icon > .icon {
  color: #00305d;
}
.customized-products-upload__dropzone-text {
  display: inline-block;
}
.customized-products-upload__dropzone-text-headline {
  display: block;
  color: #00305d;
  font-weight: 600;
}
.customized-products-upload__dropzone-text-restrictions {
  display: block;
  color: #bcc1c7;
}
.customized-products-upload__dropzone-button {
  padding: 0;
  text-align: right;
}
.customized-products-upload-files-element.is--success > .customized-products-upload-files-element__container {
  border-color: #3cc261;
}
.customized-products-upload-files-element.is--success > .customized-products-upload-files-element__container .customized-products-upload-files-element__container-icon > .icon {
  color: #3cc261;
}
.customized-products-upload-files-element.is--error > .customized-products-upload-files-element__container {
  border-color: #e52427;
}
.customized-products-upload-files-element.is--error > .customized-products-upload-files-element__container .customized-products-upload-files-element__container-icon > .icon {
  color: #e52427;
}
.customized-products-upload-files-element__container {
  display: flex;
  margin: 1rem 0 1px 0;
  padding: 1rem;
  border: 1px solid #00305d;
  border-radius: 2px;
}
.customized-products-upload-files-element__container-icon {
  margin-right: 12px;
  vertical-align: top;
}
.customized-products-upload-files-element__container-icon > .icon {
  color: #00305d;
}
.customized-products-upload-files-element__container-filename {
  width: 100%;
  align-self: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.customized-products-upload-files-element__container-close {
  margin-top: -1px;
  text-align: right;
}
.customized-products-upload-files-element__container-close-button {
  border: none;
  background-color: transparent;
}
.customized-products-upload-files-element__container-close-button > .icon {
  height: 16px;
  width: 16px;
}
.customized-products-upload template.customized-products-upload-files-element__container {
  display: none;
}
.swag-customized-product__order-detail-configuration {
  margin: 0 1rem;
  border-bottom: 1px solid #bcc1c7;
}
.order-detail-item-customized-products .order-detail-content-row {
  border-bottom: 0 none;
}
.swag-customized-products .swag-customized-products__violation-list-holder .swag-customized-products__violation-list-holder-template {
  display: none;
}
.swag-customized-products .swag-customized-products__violation-list-holder .alert-content-container {
  padding: 1.5rem;
}
.swag-customized-products .swag-customized-products__violation-list-holder .violation-list, .swag-customized-products .swag-customized-products__violation-list-holder .excluded-element-list {
  margin-left: 0;
  padding-left: 1.15rem;
}
.swag-customized-products .swag-customized-products__violation-list-holder .violation-list {
  margin-bottom: 0;
}
.swag-customized-products .swag-customized-products__violation-list-holder .excluded-element-list {
  list-style: none;
  padding-left: 0;
}
.swag-customized-products .swag-customized-products__violation-list-holder .entry__link {
  font-weight: bold;
  color: #e52427;
  text-decoration: underline;
  cursor: pointer;
}
.swag-customized-products .swag-customized-products__violation-list-holder .icon.icon-blocked {
  align-self: flex-start;
}
.swag-customized-products .swag-customized-products__card {
  padding: 1.5rem 1.5rem 0.5rem;
  margin: 0 0 1rem;
  border: 1px solid #bcc1c7;
}
.swag-customized-products .swag-customized-products__title {
  margin-bottom: 1.5rem;
}
.swag-customized-products .swag-customized-products__title-link {
  color: #333;
}
.swag-customized-products .swag-customized-products__title-link:hover {
  text-decoration: none;
}
.swag-customized-products .swag-customized-products__title-link .toggle-icon-plus {
  display: block;
}
.swag-customized-products .swag-customized-products__title-link .toggle-icon-minus {
  display: none;
}
.swag-customized-products .swag-customized-products__title-link[aria-expanded="true"] .toggle-icon-plus {
  display: none;
}
.swag-customized-products .swag-customized-products__title-link[aria-expanded="true"] .toggle-icon-minus {
  display: block;
}
.swag-customized-products .swag-customized-products__title-link-toggle-icon {
  text-align: right;
  align-self: center;
  top: -2px;
}
.swag-customized-products .customized-products-error-subtitle {
  color: #e52427;
  padding-left: 2px;
  font-size: 14px;
}
.swag-customized-products .swag-customized-products__image {
  margin-bottom: 1rem;
}
.swag-customized-products .swag-customized-products__no-selection-icon {
  text-align: center;
  width: 1.5rem;
  max-width: 1.5rem;
}
.swag-customized-products .swag-customized-products__description {
  margin-bottom: 1.5rem;
}
.swag-customized-products .swag-customized-products-option {
  margin-bottom: 0.5rem;
}
.swag-customized-products .swag-customized-products-option__image {
  text-align: center;
  align-self: center;
  max-width: 100%;
}
.swag-customized-products .swag-customized-products-option--required {
  font-weight: normal;
  font-size: 0.875em;
}
.swag-customized-products .swag-customized-products-option__title {
  cursor: pointer;
}
.swag-customized-products .swag-customized-products-configuration__items, .swag-customized-products .swag-customized-products-configuration__description {
  margin: 0.5rem 0;
  width: 100%;
}
.swag-customized-products .is-error.swag-customized-products-form-control {
  border-color: #e52427;
}
.swag-customized-products .swag-customized-products__boolean {
  height: auto;
  width: 100%;
  padding: 0;
}
.swag-customized-products .swag-customized-products__boolean-label {
  height: auto;
  line-height: 1.5;
}
.swag-customized-products .swag-customized-products__boolean-label-price {
  text-align: right;
  right: 0.5rem;
}
.swag-customized-products .input-group > .form-control {
  border-radius: 0;
  padding-right: 3rem;
  overflow: hidden;
}
.swag-customized-products .input-group .form-control ~ .swag-customized-products-date-picker-button {
  position: absolute;
  align-self: center;
  right: 0.25rem;
  z-index: 3;
}
.swag-customized-products .swag-customized-products-options-datetime {
  background: #fff;
}
.swag-customized-products .swag-customized-products__title-link-container, .swag-customized-products .swag-customized-products-form-control {
  margin: 0.25rem 0;
}
.swag-customized-products .swag-customized-products-form-control[type="checkbox"]:disabled {
  opacity: 0;
}
.swag-customized-products .forms-boolean {
  margin-top: 0;
  margin-bottom: 16px;
  position: relative;
}
.swag-customized-products .forms-boolean:last-child {
  margin-bottom: 0;
}
.swag-customized-products .swag-customized-products-share__card {
  padding: 1.5rem;
  margin: 0 0 1rem;
  border: 1px solid #bcc1c7;
}
.swag-customized-products .share-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.swag-customized-products .share-container .form-switch {
  padding: 0;
}
.swag-customized-products .swag-customized-products-share-icons {
  display: none;
}
.swag-customized-products .swag-customized-products-confirm-input-container {
  margin: 30px 0;
}
@media (max-width: 575.98px) {
  .swag-customized-products .swag-customized-products__card {
    padding: 0.5rem;
  }
}
.swag-customized-products.is--step-by-step .swag-customized-products-option__title {
  cursor: default;
}
.swag-customized-products.is--step-by-step .swag-customized-products__card {
  overflow: hidden;
  padding: 0;
}
.swag-customized-products.is--step-by-step .swag-customized-products__scrollable {
  padding: 1.75rem;
}
.swag-customized-products.is--step-by-step .swag-customized-products__item {
  transition: 0.5s ease-in-out;
  -webkit-transition: 0.5s ease-in-out;
  height: auto;
  overflow-y: auto;
}
.swag-customized-products.is--step-by-step .swag-customized-products_step-mode-hidden {
  max-height: 0;
  opacity: 0;
}
.swag-customized-products.is--step-by-step .swag-customized-products_step-mode-shown {
  max-height: 500px;
  opacity: 1;
}
.swag-customized-products.is--step-by-step .swag-customized-products__navigation-holder {
  border-bottom: 1px solid #bcc1c7;
}
.swag-customized-products.is--step-by-step .swag-customized-products__navigation-holder > .form-group {
  margin: 1.5rem 2rem 0.5rem;
  position: relative;
}
.swag-customized-products.is--step-by-step .swag-customized-products__navigation-holder .swag-customized-products-navigation__text {
  color: #373737;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}
.swag-customized-products.is--step-by-step .swag-customized-products__navigation-holder .swag-customized-products-navigation__icon {
  width: 24px;
  height: 24px;
  position: absolute;
  right: 0;
}
.swag-customized-products.is--step-by-step .swag-customized-products__navigation-holder .swag-customized-products-navigation__icon > use {
  fill: #373737;
}
.swag-customized-products.is--step-by-step .swag-customized-products__navigation-holder .swag-customized-products-navigation {
  padding-bottom: 1rem;
}
.swag-customized-products.is--step-by-step .swag-customized-products__navigation-holder .swag-customized-products-navigation select {
  display: block;
  width: 100%;
  opacity: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  cursor: pointer;
}
.swag-customized-products.is--step-by-step textarea.swag-customized-products-form-control {
  min-height: 150px;
  max-height: 150px;
  resize: none;
}
.swag-customized-products.is--step-by-step .swag-customized-products__type-htmleditor textarea.swag-customized-products-form-control {
  position: absolute;
}
.swag-customized-products.is--step-by-step .swag-customized-products__item {
  padding: 0;
  margin: 0;
}
.swag-customized-products.is--step-by-step .swag-customized-products__item.is--scrollable > div {
  padding-bottom: 0;
  margin-bottom: 0;
}
.swag-customized-products.is--step-by-step .swag-customized-products__link:hover {
  transform: none;
}
.swag-customized-products.is--step-by-step .swag-customized-products-pager {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  padding: 1rem 1.5rem;
  background: #fff;
  z-index: 1;
  position: relative;
  border-top: 1px solid #bcc1c7;
}
.swag-customized-products.is--step-by-step .swag-customized-products-pager .swag-customized-products-pager__button {
  flex-grow: 1;
}
.swag-customized-products.is--step-by-step .swag-customized-products-pager__page-number {
  display: block;
  text-align: center;
  flex-grow: 4;
}
.swag-customized-products-image-zoom__wrapper {
  position: fixed;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  padding: 4rem;
  z-index: 1050;
}
.swag-customized-products-image-zoom__wrapper .swag-customized-products-image-zoom__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: fit-content;
  margin: 0;
  left: 50%;
  transform: translateX(-50%);
}
.swag-customized-products-image-zoom__wrapper .swag-customized-products-image-zoom__image {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 2px;
  background-clip: padding-box;
}
.swag-customized-products-image-zoom__wrapper .swag-customized-products-image-zoom__caption {
  margin-top: 10px;
  font-weight: bold;
  text-align: center;
  display: block;
  color: #fff;
}
.swag-customized-products-image-zoom__wrapper .swag-customized-products-image-zoom__icon-close {
  align-self: flex-end;
  appearance: none;
  background: transparent;
  border: 0 none;
  padding: 6px;
  transform: translateX(100%);
}
.swag-customized-products-image-zoom__wrapper .swag-customized-products-image-zoom__icon-close .icon {
  color: #fff;
}
@media (max-width: 575.98px) {
  .swag-customized-products-image-zoom__wrapper {
    padding: 3rem;
  }
}
.swag-customized-product__price-display-holder:not(:empty) {
  min-height: 80px;
}
.swag-customized-product__price-display {
  padding: 1.5rem;
  margin: 0 0 1rem;
  border: 1px solid #bcc1c7;
}
.swag-customized-product__price-display .price-display__list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}
.swag-customized-product__price-display .price-display__list > li {
  display: table;
  width: 100%;
  margin: 0 0 0.5rem 1rem;
}
.swag-customized-product__price-display .price-display__list .price-display__item {
  width: calc(100% - 1rem);
}
.swag-customized-product__price-display .price-display__list .price-display__product-price, .swag-customized-product__price-display .price-display__list .price-display__summary {
  margin: 0 0 0.5rem;
}
.swag-customized-product__price-display .price-display__list:last-child {
  margin-bottom: 0;
}
.swag-customized-product__price-display .price-display__price {
  text-align: right;
  display: table-cell;
}
.swag-customized-product__price-display .price-display__label {
  display: table-cell;
  line-break: auto;
}
.swag-customized-product__price-display .price-display__summary .price-display__price, .swag-customized-product__price-display .price-display__summary .price-display__label {
  font-size: 1rem;
  font-weight: 700;
}
.swag-customized-products__price-label-notice {
  margin-top: 10px;
  font-size: 12px;
}
.swag-customized-products-option__price-tag {
  display: inline-block;
  font-weight: bold;
  margin-left: 4px;
  text-overflow: ellipsis;
}
[data-swag-paypal-express-button].is-disabled {
  position: relative;
  opacity: 0.3;
}
[data-swag-paypal-express-button].is-disabled::after {
  content: "";
  z-index: 1090;
  position: absolute;
  height: 40px;
  top: 0;
  left: 5px;
  right: 5px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 3px;
}
[data-swag-paypal-express-button] {
  display: grid;
  gap: 0.5rem;
}
.swag-paypal-ecs-spb-google-pay .gpay-card-info-container {
  width: 100%;
}
.swag-paypal-checkout-finish-pui-instructions-content dt:nth-of-type(odd), .swag-paypal-checkout-finish-pui-instructions-content dd:nth-of-type(odd) {
  background-color: #f9f9f9;
}
.swag-paypal-checkout-finish-pui-instructions-content .instruction-title {
  font-weight: normal;
}
.swag-paypal-checkout-finish-pui-instructions-content .instruction-description {
  font-weight: bold;
}
.swag-paypal-pui-polling .loader {
  width: 44px;
  height: 44px;
}
.cms-element-custom-form .not-resizable textarea {
  resize: none;
}
.swag-cms-extensions-quickview-modal {
  padding-right: 0;
}
.swag-cms-extensions-quickview-modal .swag-cms-extensions-quickview-close-button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1051;
}
.swag-cms-extensions-quickview-modal .swag-cms-extensions-quickview-close-button button.close {
  font-size: 2rem;
  font-weight: 300;
}
.swag-cms-extensions-quickview-modal .modal-content {
  margin: 0 1.8rem;
  border-radius: 0;
  align-items: center;
  box-shadow: none;
}
.swag-cms-extensions-quickview-modal .modal-content .quickview-loading-indicator .loader {
  margin: 3rem;
}
.swag-cms-extensions-quickview-modal .modal-body {
  padding: unset;
  align-self: stretch;
}
.swag-cms-extensions-quickview-modal .quickview-loading-indicator {
  display: flex;
  justify-content: center;
}
.swag-cms-extensions-quickview-container {
  padding: 1rem;
  overflow: hidden;
  overflow-y: auto;
  max-height: 95vh;
}
.swag-cms-extensions-quickview-container .swag-cms-extensions-quickview-header-headline {
  padding-right: 3rem;
}
.swag-cms-extensions-quickview-container .swag-cms-extensions-quickview-manufacturer-logo {
  display: none;
}
.swag-cms-extensions-quickview-container .swag-cms-extensions-quickview-manufacturer-name {
  display: block;
}
.swag-cms-extensions-quickview-container .swag-cms-extensions-quickview-content {
  margin-top: 1.5rem;
}
.swag-cms-extensions-quickview-container .swag-cms-extensions-quickview-content--buy-quantity {
  margin-bottom: 0.5rem;
}
.swag-cms-extensions-quickview-container .swag-cms-extensions-quickview-product-buy-form {
  padding: 0;
  margin: 0;
}
.swag-cms-extensions-quickview-container .swag-cms-extensions-quickview-product-buy-form form {
  margin-bottom: 0.75rem;
}
.swag-cms-extensions-quickview-container .swag-cms-extensions-quickview-product-buy-container {
  margin-left: 0;
  margin-right: 0;
}
#swag-cms-extensions-quickview-carousel .carousel-control-prev, #swag-cms-extensions-quickview-carousel .carousel-control-next {
  position: fixed;
  opacity: 1;
  background: #fff;
  width: 1.8rem;
  height: 80%;
  top: 10%;
  right: 0;
  border-radius: 0;
}
#swag-cms-extensions-quickview-carousel .carousel-control-prev .icon, #swag-cms-extensions-quickview-carousel .carousel-control-next .icon {
  width: 29.3333333333px;
  height: 29.3333333333px;
}
#swag-cms-extensions-quickview-carousel .carousel-control-prev .icon-white, #swag-cms-extensions-quickview-carousel .carousel-control-next .icon-white {
  color: #798490;
}
@media (min-width: 1200px) {
  #swag-cms-extensions-quickview-carousel .carousel-control-prev, #swag-cms-extensions-quickview-carousel .carousel-control-next {
    background: none;
    width: 5rem;
  }
  #swag-cms-extensions-quickview-carousel .carousel-control-prev .icon, #swag-cms-extensions-quickview-carousel .carousel-control-next .icon {
    width: 5rem;
    height: 5rem;
  }
  #swag-cms-extensions-quickview-carousel .carousel-control-prev .icon-white, #swag-cms-extensions-quickview-carousel .carousel-control-next .icon-white {
    color: #f9f9f9;
  }
  #swag-cms-extensions-quickview-carousel .carousel-control-prev {
    left: calc(32vw - 25rem);
  }
  #swag-cms-extensions-quickview-carousel .carousel-control-next {
    right: calc(32vw - 25rem);
  }
}
@media (min-width: 992px) {
  #swag-cms-extensions-quickview-carousel .carousel-control-prev, #swag-cms-extensions-quickview-carousel .carousel-control-next {
    height: 33%;
    top: 33%;
  }
  .swag-cms-extensions-quickview-container .swag-cms-extensions-quickview-manufacturer-logo {
    display: block;
  }
  .swag-cms-extensions-quickview-container .swag-cms-extensions-quickview-manufacturer-name {
    display: none;
  }
  .swag-cms-extensions-quickview-container .swag-cms-extensions-quickview-product-buy-form {
    padding-top: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  #swag-cms-extensions-quickview-carousel .carousel-control-prev, #swag-cms-extensions-quickview-carousel .carousel-control-next {
    width: 3rem;
    height: 50%;
    top: 25%;
  }
}
@media (min-width: 768px) {
  .swag-cms-extensions-quickview-close-button {
    display: none;
  }
  .swag-cms-extensions-quickview-container {
    padding: 3rem;
  }
  .swag-cms-extensions-quickview-container .swag-cms-extensions-quickview-header-headline {
    padding-right: unset;
  }
  .swag-cms-extensions-quickview-container .swag-cms-extensions-quickview-content--buy-quantity {
    margin-bottom: unset;
  }
  .swag-cms-extensions-quickview-modal .modal-content {
    border-radius: unset;
  }
}
@media (min-width: 576px) {
  .swag-cms-extensions-quickview-container .swag-cms-extensions-quickview-manufacturer-logo {
    text-align: right;
  }
}
.scroll-navigation-sidebar {
  position: fixed;
  width: 36px;
  right: 20px;
  bottom: 20px;
  padding: 26px 9px;
  border-radius: 50px;
  z-index: 800;
  transition: all 0.3s ease-out;
}
.scroll-navigation-sidebar a, .scroll-navigation-sidebar a:hover {
  text-decoration: none;
  color: #373737;
}
.scroll-navigation-sidebar button {
  border: none;
  background-color: transparent;
  padding: 0;
}
.scroll-navigation-sidebar-close, .scroll-navigation-sidebar-list {
  display: none;
}
.scroll-navigation-sidebar-mobile-menu {
  position: absolute;
  display: block;
  height: 50px;
  width: 154px;
  right: 0;
  bottom: 2px;
  border-radius: 12px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  background-color: #fff;
}
.scroll-navigation-sidebar-mobile-button {
  display: inline-block;
  padding: 13px 8px;
}
.scroll-navigation-sidebar-mobile-button:first-child {
  height: 50px;
  padding-left: 16px;
  padding-right: 16px;
  border-right: 1px solid #eee;
}
.scroll-navigation-sidebar-mobile-button:nth-child(2) {
  padding-left: 16px;
}
.scroll-navigation-sidebar-mobile-button:last-child {
  padding-right: 16px;
}
.scroll-navigation-sidebar-mobile-button-icon {
  position: relative;
  top: -3px;
}
.scroll-navigation-sidebar-mobile-button-icon > span {
  color: #373737;
}
.scroll-navigation-sidebar.list--visible {
  left: 39px;
  width: auto;
  padding-right: 0;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
}
.scroll-navigation-sidebar.list--visible .scroll-navigation-sidebar-mobile-menu {
  display: none;
}
.scroll-navigation-sidebar.list--visible .scroll-navigation-sidebar-close {
  position: absolute;
  display: block;
  top: 9px;
  right: 9px;
}
.scroll-navigation-sidebar.list--visible .scroll-navigation-sidebar-list {
  position: relative;
  display: flex;
  height: auto;
  max-height: 300px;
  padding: 0 12px;
  line-height: 0;
  overflow-y: auto;
  flex-direction: column;
}
.scroll-navigation-sidebar-entry {
  display: flex;
  height: 20px;
  padding: 22px 9px;
  align-items: center;
  justify-content: flex-start;
}
.scroll-navigation-sidebar-entry-line {
  position: relative;
  display: block;
  height: 44px;
  margin-right: -5px;
  margin-bottom: -44px;
  border-right: 2px solid #373737;
}
.scroll-navigation-sidebar-entry:last-child > .scroll-navigation-sidebar-entry-line {
  border-right: 1px solid transparent;
}
.scroll-navigation-sidebar-entry-bullet {
  display: block;
  height: 8px;
  width: 8px;
  margin-left: 1px;
  transform: scale(1);
  transition: all 0.2s ease-out;
  border-radius: 50%;
  background-color: #333;
  z-index: 6;
}
.scroll-navigation-sidebar-entry--active > .scroll-navigation-sidebar-entry-bullet {
  background-color: #00305d;
  transform: scale(2);
}
.scroll-navigation-sidebar-entry-label {
  width: 100%;
  left: 26px;
  padding: 22px;
  margin-left: -5px;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.scroll-navigation-sidebar-entry--active > .scroll-navigation-sidebar-entry-label {
  color: #00305d;
  font-weight: 600;
}
.scroll-navigation-anchor {
  position: relative;
}
.scroll-up-button {
  display: block;
  left: 1.5rem;
  right: auto;
}
@media (min-width: 576px) {
  .scroll-navigation-sidebar.list--visible {
    left: auto;
    width: 422px;
  }
}
@media (min-width: 1200px) {
  .scroll-navigation-sidebar {
    top: 50%;
    left: 39px;
    right: auto;
    bottom: auto;
    padding: 0;
    transform: translateY(-50%);
    background-color: #fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  }
  .scroll-navigation-sidebar.list--visible {
    left: 39px;
    width: 36px;
    border-radius: 50px;
  }
  .scroll-navigation-sidebar.list--visible .scroll-navigation-sidebar-close, .scroll-navigation-sidebar.list--visible .scroll-navigation-sidebar-mobile-menu {
    display: none;
  }
  .scroll-navigation-sidebar.list--visible .scroll-navigation-sidebar-list {
    padding: 12px;
  }
  .scroll-navigation-sidebar-close, .scroll-navigation-sidebar-mobile-menu {
    display: none;
  }
  .scroll-navigation-sidebar-list {
    position: relative;
    display: flex;
    height: auto;
    width: 77px;
    padding: 12px;
    margin-left: -4px;
    line-height: 0;
    flex-direction: column;
  }
  .scroll-navigation-sidebar-entry {
    width: 64px;
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .scroll-navigation-sidebar-entry-bullet {
    margin-left: 0;
  }
  .scroll-navigation-sidebar-entry-label {
    opacity: 0;
    padding: 14px;
    border-radius: 0;
  }
  .scroll-navigation-sidebar-entry-line {
    height: 32px;
    margin-bottom: -32px;
    pointer-events: none;
  }
  .scroll-navigation-sidebar-entry:hover {
    width: auto;
    margin-right: auto;
  }
  .scroll-navigation-sidebar-entry:hover > .scroll-navigation-sidebar-entry-label {
    opacity: 1;
    width: auto;
    margin-left: 12px;
    background-color: #fff;
    box-shadow: 4px 3px 6px 0 rgba(0, 0, 0, 0.15);
    pointer-events: none;
    transition: all 0.2s ease-out;
  }
  .scroll-navigation-sidebar-entry:last-child > .scroll-navigation-sidebar-entry-line {
    border-right: 2px solid transparent;
  }
  .scroll-up-button {
    left: auto;
    right: 1.5rem;
  }
}
/*
 * Layout-related sections
 * ----------------------- */
.bo-sel-mainnav {
  background-color: #951B81;
}
.account-bulkorder-main {
  padding-top: 1rem;
}
.bo-state-active {
  color: #3cc261;
}
.bo-state-active .icon {
  color: #3cc261;
}
.bo-state-inactive {
  color: #e52427;
}
.bo-state-inactive .icon {
  color: #e52427;
}
.bulkorder-table-td-status .btn {
  padding: 2px 3px;
}
.form--update-bulkorder-product button {
  border: 0;
  background: 0;
  padding: 0;
}
.bo-account-productlist-close {
  margin: 15px 0;
}
.bo-list-indent1 .bo-list-firstrow {
  padding-left: 30px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.form--finish-bulkorder .form-group {
  padding: 0;
}
.form--finish-bulkorder .form-group h4, .form--finish-bulkorder .form-group .h4 {
  background: transparent;
  color: #951B81;
  padding: 5px;
  font-size: 1rem;
  padding-bottom: 10px;
  border-bottom: 1px solid #aaa;
}
.form--finish-bulkorder .form-group .col-lg-12 {
  padding: 0;
}
.form--finish-bulkorder .form-group .bo-finishbulkorder-saveinfo {
  margin-top: 15px;
}
.form--finish-bulkorder .form-group .bo-blockrow, .form--finish-bulkorder .form-group .bo-border-bottom {
  display: flex;
  width: 100%;
  margin: 0px 0px;
  padding: 7px 0;
  border-bottom: 1px solid #CCC;
}
.form--finish-bulkorder .form-group .bo-blockrow .col-12.col-md-8, .form--finish-bulkorder .form-group .bo-blockrow .col-12.col-md-4, .form--finish-bulkorder .form-group .bo-blockrow .is-act-checkoutregisterpage .checkout .col-12.checkout-aside, .is-act-checkoutregisterpage .checkout .form--finish-bulkorder .form-group .bo-blockrow .col-12.checkout-aside, .form--finish-bulkorder .form-group .bo-blockrow .col-12.col-md-6, .form--finish-bulkorder .form-group .bo-blockrow .is-act-confirmpage .checkout .col-12.checkout-aside, .is-act-confirmpage .checkout .form--finish-bulkorder .form-group .bo-blockrow .col-12.checkout-aside, .form--finish-bulkorder .form-group .bo-blockrow .is-ctl-accountorder .checkout .col-12.checkout-aside, .is-ctl-accountorder .checkout .form--finish-bulkorder .form-group .bo-blockrow .col-12.checkout-aside, .form--finish-bulkorder .form-group .bo-blockrow .is-act-finishpage .checkout .col-12.checkout-additional, .is-act-finishpage .checkout .form--finish-bulkorder .form-group .bo-blockrow .col-12.checkout-additional, .form--finish-bulkorder .form-group .bo-blockrow .is-act-finishpage .checkout .col-12.checkout-aside, .is-act-finishpage .checkout .form--finish-bulkorder .form-group .bo-blockrow .col-12.checkout-aside, .form--finish-bulkorder .form-group .bo-border-bottom .col-12.col-md-8, .form--finish-bulkorder .form-group .bo-border-bottom .col-12.col-md-4, .form--finish-bulkorder .form-group .bo-border-bottom .is-act-checkoutregisterpage .checkout .col-12.checkout-aside, .is-act-checkoutregisterpage .checkout .form--finish-bulkorder .form-group .bo-border-bottom .col-12.checkout-aside, .form--finish-bulkorder .form-group .bo-border-bottom .col-12.col-md-6, .form--finish-bulkorder .form-group .bo-border-bottom .is-act-confirmpage .checkout .col-12.checkout-aside, .is-act-confirmpage .checkout .form--finish-bulkorder .form-group .bo-border-bottom .col-12.checkout-aside, .form--finish-bulkorder .form-group .bo-border-bottom .is-ctl-accountorder .checkout .col-12.checkout-aside, .is-ctl-accountorder .checkout .form--finish-bulkorder .form-group .bo-border-bottom .col-12.checkout-aside, .form--finish-bulkorder .form-group .bo-border-bottom .is-act-finishpage .checkout .col-12.checkout-additional, .is-act-finishpage .checkout .form--finish-bulkorder .form-group .bo-border-bottom .col-12.checkout-additional, .form--finish-bulkorder .form-group .bo-border-bottom .is-act-finishpage .checkout .col-12.checkout-aside, .is-act-finishpage .checkout .form--finish-bulkorder .form-group .bo-border-bottom .col-12.checkout-aside {
  padding-left: 0;
  padding-right: 0;
}
.form--finish-bulkorder .form-group .bo-blockrow .bo-list-firstrow, .form--finish-bulkorder .form-group .bo-border-bottom .bo-list-firstrow {
  padding-left: 0;
}
.form--finish-bulkorder .form-group .bo-blockrow {
  border: 0;
}
.form--finish-bulkorder .form-group .bulkorder-table-td-title {
  padding: 0 20px 0 0;
  word-wrap: anywhere;
}
.form--finish-bulkorder .form-group .bulkorder-table-td-info {
  white-space: nowrap;
  padding: 0 20px 0 0;
}
.form--finish-bulkorder .form-group .bulkorder-table-tr-info {
  padding: 0 20px 0 0;
}
.form--finish-bulkorder .form-group .bulkorder-table-th-title {
  font-weight: bold;
}
.form--finish-bulkorder .bulkorder-mainproduct-price {
  font-weight: bold;
  font-size: 1.5rem;
  text-align: right;
  padding: 0;
}
.form--finish-bulkorder .bo-finishbulkorder-savebutton {
  white-space: initial;
  line-height: 1.5rem;
  padding: 9px 12px;
}
.form--finish-bulkorder .order-item-img {
  padding-bottom: 10px;
}
.woso-bundle .bulkorder-table-td-title, .woso-acc .bulkorder-table-td-title {
  padding: 0 20px 0 0;
}
span.bulkorder-modal--button {
  cursor: pointer;
}
span.bulkorder-modal--button.bo-deactivated {
  cursor: not-allowed;
}
.form--update-bulkorder .custom-control {
  min-height: 1.8rem;
}
.bulkorder-modal-window .modal-dialog .modal-content .modal-header, #bulkorder-orderinfo-modal-window .modal-dialog .modal-content .modal-header, #bulkorder-finish-modal-window .modal-dialog .modal-content .modal-header, #bulkorder-groupdelete-modal-window .modal-dialog .modal-content .modal-header, #bulkorder-delete-modal-window .modal-dialog .modal-content .modal-header, #bulkorder-productsedit-modal-window .modal-dialog .modal-content .modal-header, #bulkorder-productdelete-modal-window .modal-dialog .modal-content .modal-header, #bulkorder-groupedit-modal-window .modal-dialog .modal-content .modal-header, #bulkorder-infoletter-modal-window .modal-dialog .modal-content .modal-header, #bulkorder-edit-modal-window .modal-dialog .modal-content .modal-header {
  background-color: #951B81;
  color: #fff;
}
.bulkorder-modal-window .modal-dialog .modal-content .modal-header h5, .bulkorder-modal-window .modal-dialog .modal-content .modal-header .h5, .bulkorder-modal-window .modal-dialog .modal-content .modal-header .modal-title, #bulkorder-orderinfo-modal-window .modal-dialog .modal-content .modal-header h5, #bulkorder-orderinfo-modal-window .modal-dialog .modal-content .modal-header .h5, #bulkorder-orderinfo-modal-window .modal-dialog .modal-content .modal-header .modal-title, #bulkorder-finish-modal-window .modal-dialog .modal-content .modal-header h5, #bulkorder-finish-modal-window .modal-dialog .modal-content .modal-header .h5, #bulkorder-finish-modal-window .modal-dialog .modal-content .modal-header .modal-title, #bulkorder-groupdelete-modal-window .modal-dialog .modal-content .modal-header h5, #bulkorder-groupdelete-modal-window .modal-dialog .modal-content .modal-header .h5, #bulkorder-groupdelete-modal-window .modal-dialog .modal-content .modal-header .modal-title, #bulkorder-delete-modal-window .modal-dialog .modal-content .modal-header h5, #bulkorder-delete-modal-window .modal-dialog .modal-content .modal-header .h5, #bulkorder-delete-modal-window .modal-dialog .modal-content .modal-header .modal-title, #bulkorder-productsedit-modal-window .modal-dialog .modal-content .modal-header h5, #bulkorder-productsedit-modal-window .modal-dialog .modal-content .modal-header .h5, #bulkorder-productsedit-modal-window .modal-dialog .modal-content .modal-header .modal-title, #bulkorder-productdelete-modal-window .modal-dialog .modal-content .modal-header h5, #bulkorder-productdelete-modal-window .modal-dialog .modal-content .modal-header .h5, #bulkorder-productdelete-modal-window .modal-dialog .modal-content .modal-header .modal-title, #bulkorder-groupedit-modal-window .modal-dialog .modal-content .modal-header h5, #bulkorder-groupedit-modal-window .modal-dialog .modal-content .modal-header .h5, #bulkorder-groupedit-modal-window .modal-dialog .modal-content .modal-header .modal-title, #bulkorder-infoletter-modal-window .modal-dialog .modal-content .modal-header h5, #bulkorder-infoletter-modal-window .modal-dialog .modal-content .modal-header .h5, #bulkorder-infoletter-modal-window .modal-dialog .modal-content .modal-header .modal-title, #bulkorder-edit-modal-window .modal-dialog .modal-content .modal-header h5, #bulkorder-edit-modal-window .modal-dialog .modal-content .modal-header .h5, #bulkorder-edit-modal-window .modal-dialog .modal-content .modal-header .modal-title {
  color: #fff;
}
.bulkorder-modal-window .modal-dialog .modal-content .modal-header span.icon, #bulkorder-orderinfo-modal-window .modal-dialog .modal-content .modal-header span.icon, #bulkorder-finish-modal-window .modal-dialog .modal-content .modal-header span.icon, #bulkorder-groupdelete-modal-window .modal-dialog .modal-content .modal-header span.icon, #bulkorder-delete-modal-window .modal-dialog .modal-content .modal-header span.icon, #bulkorder-productsedit-modal-window .modal-dialog .modal-content .modal-header span.icon, #bulkorder-productdelete-modal-window .modal-dialog .modal-content .modal-header span.icon, #bulkorder-groupedit-modal-window .modal-dialog .modal-content .modal-header span.icon, #bulkorder-infoletter-modal-window .modal-dialog .modal-content .modal-header span.icon, #bulkorder-edit-modal-window .modal-dialog .modal-content .modal-header span.icon {
  color: #fff;
}
.chk-bulkordercol .custom-control-label::before {
  border-color: #951B81;
}
.chk-bulkordercol .form-check-input:checked ~ .custom-control-label::before, .chk-bulkordercol .form-check-input:not(:disabled):active ~ .custom-control-label::before {
  background-color: #951B81;
  border-color: #951B81;
}
.chk-bulkordercol .form-check-input:focus ~ .custom-control-label::before {
  border-color: #951B81;
  box-shadow: 0 0 0 0.2rem rgba(149, 27, 129, 0.25);
}
.chk-bulkordercol .form-check-input:checked {
  background-color: #951B81;
  border-color: #951B81;
}
.bo-chk-switch-nopadleft {
  padding-left: 0;
}
.bo-chk-switch-nopadleft .form-check-input {
  margin-left: -5px;
}
.bg-bulkordercol {
  color: #fff;
  background-color: #951B81;
}
.bo-bulkordercol {
  border-color: #951B81;
}
.btn-bulkorder-icon .icon {
  color: #fff;
}
.btn-bulkorder {
  color: #fff;
  background-color: #951B81;
  border-color: #951B81;
}
.btn-bulkorder.bo-deselected {
  background-color: #CCCCCC;
  border-color: #CCCCCC;
}
.btn-bulkorder:hover {
  color: #fff;
  background-color: #951B81;
  border-color: #951B81;
}
.btn-bulkorder .icon {
  color: #fff;
}
.bulkorder-wizzard-header {
  margin-bottom: 30px;
}
.bulkorder-wizzard-header ul {
  position: relative;
  overflow: hidden;
  counter-reset: wizard;
  list-style-type: none;
  padding: 0;
}
.bulkorder-wizzard-header li {
  position: relative;
  float: left;
  width: 33.3333333333%;
  text-align: center;
  color: #951B81;
  font-weight: bold;
  font-size: 1rem;
}
.bulkorder-wizzard-header .wizzardBullet, .bulkorder-wizzard-header li:before {
  counter-increment: wizard;
  content: counter(wizard);
  display: block;
  color: #fff;
  background-color: #951B81;
  border: 2px solid #951B81;
  text-align: center;
  width: 3em;
  height: 3em;
  line-height: 3em;
  border-radius: 3em;
  position: relative;
  left: 50%;
  margin-bottom: 0.75em;
  margin-left: -1.5em;
  z-index: 1;
}
.current ~ .bulkorder-wizzard-header .wizzardBullet, .current ~ .bulkorder-wizzard-header li:before {
  background-color: #aaa;
  color: #555;
  border-color: #aaa;
}
.bulkorder-wizzard-header li + li:after {
  content: "";
  display: block;
  width: 100%;
  background-color: #951B81;
  height: 2px;
  position: absolute;
  left: -50%;
  top: 1.5em;
  z-index: 0;
}
.bulkorder-wizzard-header .current ~ li:after {
  background-color: #aaa;
}
.bulkorder-wizzard-header .current ~ li {
  color: #aaa;
}
.bulkorder-wizzard-header .current ~ li:before {
  background-color: #b1b1b1;
  border-color: #b1b1b1;
}
.wizzardBullet {
  counter-increment: wizard;
  display: inline-block;
  color: #fff;
  background-color: #951B81;
  border: 2px solid #951B81;
  text-align: center;
  width: 2em;
  height: 2em;
  line-height: 1.8em;
  border-radius: 2em;
  margin-right: 0.6em;
  margin-left: -0.3em;
  z-index: 1;
}
.current ~ .wizzardBullet {
  background-color: #fff;
  color: #555;
  border-color: #555;
}
.bulkorder-list {
  margin-top: 0;
  margin-bottom: 40px;
}
.bulkorder-list .bulkorder-table-tr {
  vertical-align: top;
  border-bottom: 1px solid #eee;
}
.bulkorder-list .bulkorder--head .col-12 {
  font-weight: 600;
  font-size: 12px;
}
.bulkorder-list .bulkorder-table-td-rb {
  border-right: 1px solid #999;
}
.bulkorder-list .bulkorder-table-td-status {
  text-align: right;
  padding: 0 10px 0 0 !important;
}
.bulkorder-list .bulkorder-table-td-status .bulkorder-modal--button .icon {
  color: #951B81;
}
.bulkorder-list .bulkorder-table-td-status .bulkorder-modal--button.bo-deactivated .icon {
  color: #878787;
}
.bulkorder-list .row, .bulkorder-list .account-content, .bulkorder-list .is-act-cartpage .checkout .checkout-container, .is-act-cartpage .checkout .bulkorder-list .checkout-container, .bulkorder-list .is-act-checkoutregisterpage .checkout .checkout-container, .is-act-checkoutregisterpage .checkout .bulkorder-list .checkout-container, .bulkorder-list .is-act-confirmpage .checkout .checkout-container, .is-act-confirmpage .checkout .bulkorder-list .checkout-container, .bulkorder-list .is-ctl-accountorder .checkout .checkout-container, .is-ctl-accountorder .checkout .bulkorder-list .checkout-container, .bulkorder-list .is-act-finishpage .checkout .checkout-container, .is-act-finishpage .checkout .bulkorder-list .checkout-container {
  margin: 0;
  padding-top: 5px;
  padding-bottom: 5px;
}
.bulkorder-list .row div, .bulkorder-list .account-content div, .bulkorder-list .is-act-cartpage .checkout .checkout-container div, .is-act-cartpage .checkout .bulkorder-list .checkout-container div, .bulkorder-list .is-act-checkoutregisterpage .checkout .checkout-container div, .is-act-checkoutregisterpage .checkout .bulkorder-list .checkout-container div, .bulkorder-list .is-act-confirmpage .checkout .checkout-container div, .is-act-confirmpage .checkout .bulkorder-list .checkout-container div, .bulkorder-list .is-ctl-accountorder .checkout .checkout-container div, .is-ctl-accountorder .checkout .bulkorder-list .checkout-container div, .bulkorder-list .is-act-finishpage .checkout .checkout-container div, .is-act-finishpage .checkout .bulkorder-list .checkout-container div {
  padding-left: 0;
}
.bulkorder-list .bulkorder-list-head {
  font-size: 1rem;
  border-bottom: 1px solid #aaa;
}
.bulkorder-list .bulkorder-list-head div {
  font-weight: bold;
}
.bulkorder-list .bulkorder-table-tr-title {
  padding: 0 20px 0 0;
}
.bulkorder-list .bulkorder-table-tr-status {
  text-align: right;
  padding: 0 10px 0 0 !important;
}
#bulkorder-orderinfo-modal-window .bulkorder-list {
  margin-top: 0;
}
.bulkorder-infoletter-info {
  margin-top: 20px;
}
.bulkorder-infoletter-info a {
  color: #951B81;
}
.bo-dlg-yn {
  margin-top: 20px;
  margin-bottom: 20px;
}
.bo-dlg-yn .col-12 {
  text-align: center;
}
.bo-dlg-yn .col-12 button {
  max-width: 60%;
  width: 60%;
}
.bo-modal-body {
  padding: 20px;
}
.bo-modal-body hr {
  border: 1px solid #CCCCCC;
}
.bulkorder-modal--header-button-cont {
  cursor: pointer;
}
.bulkorder-modal--header-button-cont.current {
  cursor: auto;
}
.bo-accessories-content {
  font-size: 0.8rem;
  padding: 5px 0;
}
.bo-accessories-content .woso-subheadline {
  padding: 0;
}
.bo-accessories-content .bulkorder-table-td-subheadline {
  font-weight: 600;
}
.bo-accessories-content .bulkorder-table-tr {
  padding-left: 20px;
}
.woso-acc .bulkorder-table-td-status .bulkorder-modal--button, .woso-bundle .bulkorder-table-td-status .bulkorder-modal--button {
  padding: 0px 5px;
  line-height: 24px;
}
.woso-acc .bulkorder-table-td-status .bulkorder-modal--button .icon-xs, .woso-bundle .bulkorder-table-td-status .bulkorder-modal--button .icon-xs {
  line-height: 24px;
}
.icon-xxs {
  height: 12px;
  width: 12px;
  vertical-align: 1px;
}
.bo-infoletter-headline {
  text-align: center;
}
.bo-infoletter-headline h3, .bo-infoletter-headline .h3 {
  color: #951B81;
}
.bo-infoletter-headline h4, .bo-infoletter-headline .h4 {
  color: #951B81;
}
.bo-color {
  color: #951B81;
}
.bulkorder-modal--jslink, bulkorder-modal--link {
  color: #951B81;
}
.form--update-bulkorder .customDate.form-control[readonly] {
  background-color: inherit;
}
a.bo-color:hover {
  color: #951B81;
}
.sw-cms-el-bulkorder-registerbutton-form form, .sw-cms-el-bulkorder-mainbutton-form form, .cms-block-bulkorder-registerbutton form, .cms-block-bulkorder-mainbutton form {
  text-align: center;
}
.sw-cms-el-bulkorder-registerbutton-form form label, .sw-cms-el-bulkorder-mainbutton-form form label, .cms-block-bulkorder-registerbutton form label, .cms-block-bulkorder-mainbutton form label {
  display: block;
}
.sw-cms-el-bulkorder-registerbutton-form form button, .sw-cms-el-bulkorder-mainbutton-form form button, .cms-block-bulkorder-registerbutton form button, .cms-block-bulkorder-mainbutton form button {
  color: #fff;
  background-color: #951B81;
  border-color: #951B81;
}
.sw-cms-el-bulkorder-registerbutton-form form button:hover, .sw-cms-el-bulkorder-mainbutton-form form button:hover, .cms-block-bulkorder-registerbutton form button:hover, .cms-block-bulkorder-mainbutton form button:hover {
  color: #fff;
  background-color: #951B81;
  border-color: #951B81;
}
.sw-cms-el-bulkorder-registerbutton-form a.btn, .sw-cms-el-bulkorder-mainbutton-form a.btn, .cms-block-bulkorder-registerbutton a.btn, .cms-block-bulkorder-mainbutton a.btn {
  color: #fff;
  background-color: #951B81;
  border-color: #951B81;
}
.sw-cms-el-bulkorder-registerbutton a.btn, .sw-cms-el-bulkorder-mainbutton a.btn {
  color: #fff;
  background-color: #951B81;
  border-color: #951B81;
}
.sw-cms-el-bulkorder-registerbutton a.btn:hover, .sw-cms-el-bulkorder-mainbutton a.btn:hover {
  color: #fff;
  background-color: #951B81;
  border-color: #951B81;
}
.form-wizzard .form-group label {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.form-wizzard .headline {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.form-wizzard hr {
  margin: 30px 0 30px 0;
  border: 1px solid #eee;
}
.form-wizzard .row .col-lg-6, .form-wizzard .account-content .col-lg-6, .form-wizzard .is-act-cartpage .checkout .checkout-container .col-lg-6, .is-act-cartpage .checkout .form-wizzard .checkout-container .col-lg-6, .form-wizzard .is-act-checkoutregisterpage .checkout .checkout-container .col-lg-6, .is-act-checkoutregisterpage .checkout .form-wizzard .checkout-container .col-lg-6, .form-wizzard .is-act-confirmpage .checkout .checkout-container .col-lg-6, .is-act-confirmpage .checkout .form-wizzard .checkout-container .col-lg-6, .form-wizzard .is-ctl-accountorder .checkout .checkout-container .col-lg-6, .is-ctl-accountorder .checkout .form-wizzard .checkout-container .col-lg-6, .form-wizzard .is-act-finishpage .checkout .checkout-container .col-lg-6, .is-act-finishpage .checkout .form-wizzard .checkout-container .col-lg-6 {
  padding: 5px 20px;
}
.form-group .bulkorder-list {
  margin-top: 10px;
}
.bo-infoletter-list .bulkorder-list-head {
  font-size: 0.875rem;
}
.bo-infoletter-list .bulkorder-table-td-title {
  padding-right: 10px;
}
.bo-infoletter-list .bulkorder-table-td-info {
  padding-right: 10px;
}
.bo-infoletter-list .bulkorder-table-td-status {
  padding-right: 0px;
}
.bulkorder-main-table {
  margin-top: 40px;
}
.bulkorder-main-table .bulkorder-list-head {
  font-size: 0.875rem;
}
.bulkorder-main-table .bulkorder-table-td-title {
  padding-right: 10px;
}
.bulkorder-main-table .bulkorder-table-td-info {
  padding-right: 10px;
}
.bulkorder-main-table .bulkorder-table-td-status {
  padding-right: 0px;
}
.bulkorder-main-table .bulkorder-table-tr-title {
  padding-right: 10px;
}
.bulkorder-main-table .bulkorder-table-tr-info {
  padding-right: 10px;
}
.bulkorder-main-table .bulkorder-table-tr-status {
  padding-right: 0px;
}
.bulkorder-main-table .bulkorder-table-tr-status .btn {
  padding: 2px 3px;
}
.order-info .bulkorder-table-td-title {
  padding-right: 10px;
}
.order-info .bulkorder-table-td-info {
  padding-right: 10px;
}
.order-info .bulkorder-table-td-status {
  padding-right: 0px;
}
.custom-switch .form-check-label::before {
  left: 0;
}
.custom-switch .form-check-label::after {
  left: 2px;
}
.close {
  float: right;
  font-size: 1.3125rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
}
@media (max-width: 1200px) {
  .close {
    font-size: calc(1.25625rem + .075vw);
  }
}
.close:hover {
  color: #000;
  text-decoration: none;
}
.close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
  opacity: 0.75;
}
button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
a.close.disabled {
  pointer-events: none;
}
.paymentDate2Cont .form-check {
  margin-bottom: 0;
}
button.noBorder {
  border: none;
  -webkit-appearance: none;
  background: transparent;
}
.wosoBulkorder-product-info-container {
  margin: 2rem 4px;
  width: 100%;
  background-color: #eee;
  padding: 15px;
  border-radius: 3px;
  border: none;
}
.wosoBulkorder-product-add-container {
  border: 1px solid #999;
  margin: 1rem 5px;
  padding: 10px;
  width: 100%;
}
.wosoBulkorder-product-add-bottominfo {
  position: relative;
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  padding-top: 15px;
}
.btn-bulkorder-add {
  color: #fff;
  background-color: #951B81;
  border: 2px solid #951B81;
  text-align: center;
  width: 2.6em;
  height: 2.6em;
  border-radius: 2.6em;
  font-weight: 600;
  font-size: 1rem;
}
.btn-bulkorder-add.btn-sm, .btn-group-sm > .btn-bulkorder-add.btn {
  width: 1em;
  height: 1em;
  border-radius: 1em;
}
.btn-bulkorder-add .icon {
  color: #fff;
}
a.btn-bulkorder-add {
  text-overflow: clip;
}
a.btn-bulkorder-add .icon {
  height: 24px;
  width: 24px;
  margin-left: -5px;
}
a.btn-bulkorder-add:hover {
  background-color: #951B81;
  border-color: #A52B91;
}
#wosoBulkorder-product-add-modal-container .modal-dialog .modal-content .modal-header {
  background-color: #951B81;
  color: #fff;
}
#wosoBulkorder-product-add-modal-container .modal-dialog .modal-content .modal-header .h5 {
  color: #fff;
}
#wosoBulkorder-product-add-modal-container .modal-dialog .modal-content .modal-header span.icon {
  color: #fff;
}
.bulkorder-modal--button .icon {
  color: #951B81;
}
.bulkorder-modal--button.bo-deactivated .icon {
  color: #878787;
}
.wosoBulkorder-product-add-list {
  margin: 20px 5px 20px 20px;
}
.bulkorder-prices-headline .bulkorder-prices-min {
  background-color: #eee;
  padding: 5px;
  border-radius: 3px;
  margin-bottom: 0;
}
.bulkorder-prices-headline .bulkorder-prices-min .bulkorder-prices-pricecell {
  color: #00305d;
}
.bulkorder-prices-headline .bulkorder-prices-min .bulkorder-prices-titlecell {
  line-height: normal;
}
.bulkorder-prices-row {
  font-size: 1em;
  font-weight: 600;
  margin-left: 0;
  margin-right: 0;
  line-height: 2em;
  margin-bottom: 0.25rem;
}
.bulkorder-prices-titlecell {
  padding-left: 0;
}
.bulkorder-prices-titlecell span.icon-arrow-head-right {
  vertical-align: 3px;
}
.bulkorder-prices-titlecell span.icon-arrow-head-down {
  vertical-align: 3px;
}
.bulkorder-prices-iconcell {
  padding: 0;
  text-align: center;
}
.bulkorder-prices-pricecell {
  font-size: 1.3em;
  text-align: right;
  padding: 0;
}
.bulkorder-specprice-inner {
  color: #00305d;
  border: 1px solid #eee;
  border-top: 0;
  padding: 5px;
  padding-left: 10px;
}
.bulkorder-specprice-inner .bulkorder_specprice_bulkorder {
  color: #951B81;
}
.product-detail-price-container {
  margin-bottom: 1rem;
}
.js-woso-toggle-flip-open {
  vertical-align: super;
  margin: 0 5px;
}
.js-woso-toggle-flip-close {
  vertical-align: super;
  margin: 0 5px;
}
.js-woso-toggle-flip-open .icon {
  vertical-align: middle !important;
}
.js-woso-toggle-flip-close .icon {
  vertical-align: middle !important;
}
.woso-specprice-inner {
  color: #373737;
  border: 1px solid #eee;
  border-top: 0;
  padding: 5px;
  padding-left: 10px;
}
.woso-specprice-inner .bulkorder-prices-titlecell {
  line-height: 1.5em;
}
.woso-specprice-inner .woso_specprice_infoAdd {
  font-size: 0.8em;
  font-weight: 400;
  line-height: 0.8em;
}
.woso-specprice-inner .woso_specprice_bq {
  color: #373737;
}
.woso-specprice-inner .woso_specprice_bq .icon-price_bulkorder {
  color: #FFF;
}
.woso-specprice-inner .woso_specprice_staggered {
  color: #373737;
}
.woso-specprice-inner .woso_specprice_staggered .icon-price_school {
  color: #FFF;
}
.wosoBulkorderUserinfo-container {
  margin: 0 0 20px 0;
}
.wosoBulkorderUserinfo-container .wosoBulkorder-userinfo {
  width: 100%;
}
.wosoBulkorderUserinfo-container .wosoBulkorder-userinfo .btn {
  width: 100%;
}
.wosoBulkorderUserinfo-container .wosoBulkorder-userinfo label {
  margin: 10px 0 0.25rem 0;
}
.wosoBulkorder.row, .wosoBulkorder.account-content, .is-act-cartpage .checkout .wosoBulkorder.checkout-container, .is-act-checkoutregisterpage .checkout .wosoBulkorder.checkout-container, .is-act-confirmpage .checkout .wosoBulkorder.checkout-container, .is-ctl-accountorder .checkout .wosoBulkorder.checkout-container, .is-act-finishpage .checkout .wosoBulkorder.checkout-container {
  margin-left: 0;
  margin-right: 0;
}
.wosoBulkorder.collapse:not(.show) {
  display: block !important;
  height: 0px;
  overflow: hidden;
}
.wosoBulkorder .wosoBulkorder-sidebar .cms-listing-col {
  margin-bottom: 15px;
}
.wosoBulkorder .wosoBulkorder-sidebar .cms-listing-col .card .card-body .product-image-wrapper {
  height: 100px;
  flex-basis: 80px;
}
.wosoBulkorder .wosoBulkorder-sidebar .cms-listing-col .card .card-body .bo_list_card_description {
  line-height: 22px;
}
.wosoBulkorder .wosoBulkorder-sidebar .cms-listing-col .card .card-body .bo_list_card_description .bo_list_card_infotitle {
  line-height: 30px;
}
.wosoBulkorder .wosoBulkorder-sidebar .cms-listing-col .card .card-body .bo_list_card_description .bo_list_card_info {
  float: right;
}
.wosoBulkorder .wosoBulkorder-sidebar .cms-listing-col .card .card-body .bo_list_card_description .bo_list_card_info .bo_list_card_info_icon_checked {
  display: none;
}
.wosoBulkorder .wosoBulkorder-sidebar .cms-listing-col .card .card-body .bo_list_card_description .bo_list_card_info.mandatory {
  color: #ff4136;
}
.wosoBulkorder .wosoBulkorder-sidebar .cms-listing-col .card .card-body .bo_list_card_description .bo_list_card_info.mandatory .icon {
  color: #ff4136;
}
.wosoBulkorder .wosoBulkorder-sidebar .cms-listing-col .bo_readytoorder .bo_list_card_info_amount, .wosoBulkorder .wosoBulkorder-sidebar .cms-listing-col .bo_readytoorder .btn-light, .wosoBulkorder .wosoBulkorder-sidebar .cms-listing-col .bo_readytoorder .bo_list_card_info.mandatory .icon, .wosoBulkorder .wosoBulkorder-sidebar .cms-listing-col .bo_readytoorder .btn-light .icon, .wosoBulkorder .wosoBulkorder-sidebar .cms-listing-col .bo_readytoorder .card-body .bo_list_card_description .bo_list_card_info.mandatory .icon, .wosoBulkorder .wosoBulkorder-sidebar .cms-listing-col .bo_readytoorder .bo_list_card_info.mandatory {
  color: #FFF;
}
.wosoBulkorder .wosoBulkorder-sidebar .cms-listing-col .bo_readytoorder .card-body .bo_list_card_description .bo_list_card_info .bo_list_card_info_icon_checked, .wosoBulkorder .wosoBulkorder-sidebar .cms-listing-col .bo_readytoorder .bo_list_card_info_icon_checked {
  display: inline-flex;
}
.wosoBulkorder .wosoBulkorder-sidebar .cms-listing-col .bo_readytoorder .bo_list_card_info_icon_std {
  display: none;
}
.wosoBulkorder .wosoBulkorder-sidebar .cms-listing-col .bo_readytoorder a.btn {
  background-color: #00305d;
}
.wosoBulkorder .wosoBulkorder-detail .card .product-image-wrapper .product-image {
  max-height: 140px;
}
.wosoBulkorder .wosoBulkorder-detail .card .card-header .product-header-image {
  float: left;
  margin-right: 20px;
  max-width: 100px;
  width: 100px;
  max-height: 70px;
}
.wosoBulkorder .wosoBulkorder-detail .card .card-header .product-header-image .product-image {
  max-height: 70px;
}
.wosoBulkorder .wosoBulkorder-detail .card .card-header h5 .bo_detailhead_info, .wosoBulkorder .wosoBulkorder-detail .card .card-header .h5 .bo_detailhead_info {
  float: right;
}
.wosoBulkorder .wosoBulkorder-detail .card .card-header h5 .bo_detailhead_info.mandatory, .wosoBulkorder .wosoBulkorder-detail .card .card-header .h5 .bo_detailhead_info.mandatory {
  color: #ff4136;
}
.wosoBulkorder .wosoBulkorder-detail .card .card-header h5 .bo_detailhead_info.mandatory .icon, .wosoBulkorder .wosoBulkorder-detail .card .card-header .h5 .bo_detailhead_info.mandatory .icon {
  color: #ff4136;
}
.wosoBulkorder .wosoBulkorder-detail .card .card-header .bo_list_card_info_icon_checked {
  display: none;
}
.wosoBulkorder .wosoBulkorder-detail .card .card-header.bo_readytoorder .bo_detailhead_info.mandatory .icon, .wosoBulkorder .wosoBulkorder-detail .card .card-header.bo_readytoorder .bo_detailhead_info.mandatory {
  color: inherit;
}
.wosoBulkorder .wosoBulkorder-detail .card .card-header.bo_readytoorder .bo_list_card_info_icon_checked {
  display: inline-flex;
}
.wosoBulkorder .wosoBulkorder-detail .card .card-header.bo_readytoorder .bo_list_card_info_icon_std {
  display: none;
}
.wosoBulkorder .wosoBulkorder-detail . bo_detaillist_orderbuttoncontainer {
  margin-top: 15px;
}
.wosoBulkorder.noleftmenu .wosoBulkorder-sidebar {
  display: none;
}
.wosoBulkorder.noleftmenu .wosoBulkorder-detail {
  width: 100%;
}
.wosoBulkorder_order_detail_container {
  border: 1px solid #CCC;
  background: transparent;
  margin-bottom: 20px;
}
.wosoBulkorder_order_detail_container .card-header {
  background-color: transparent;
}
.wosoBulkorder_order_detail_container .wosoBulkorder_order_detail_item {
  padding: 0px !important;
}
.wosoBulkorder_order_detail_container .wosoBulkorder_order_detail_item .product-detail-buy {
  margin-bottom: 0;
}
.wosoBulkorder_order_detail_container .wosoBulkorder_order_detail_item .product-detail-buy .product-detail-content {
  margin-bottom: 0;
}
.wosoBulkorder_order_detail_container .wosoBulkorder_order_detail_item .gallery-slider-row {
  height: auto;
}
.wosoBulkorder_order_detail_container .wosoBulkorder_order_detail_item .gallery-slider-thumbnails-col.is-left .gallery-slider-thumbnails-controls-prev {
  top: 0;
}
.wosoBulkorder_order_detail_container .wosoBulkorder_order_detail_item .gallery-slider-thumbnails-col.is-left .gallery-slider-thumbnails-controls-next {
  top: auto;
  bottom: -60px;
}
.wosoBulkorder_order_detail_container .wosoBulkorder_order_detail_item .bo-item-footer {
  bottom: 10px;
  margin: 0;
}
.wosoBulkorder_order_detail_container .wosoBulkorder_order_detail_item .bo-item-footer .bo-item-footer-nomainiteminfo {
  line-height: 40px;
}
.wosoBulkorder_order_detail_container .wosoBulkorder-product-detail-acc-cont .wosoBulkorder-acc-slider-cont {
  border-top: 1px solid rgba(0, 0, 0, 0.03);
}
.wosoBulkorder_order_detail_container .wosoBulkorder-product-detail-acc-cont .wosoBulkorder-acc-slider-cont .product-slider.has-nav {
  padding: 0px;
}
.wosoBulkorder_order_detail_container .wosoBulkorder-product-detail-acc-cont .wosoBulkorder-acc-slider-cont .cms-element-title {
  background: rgba(0, 0, 0, 0.03);
  padding: 5px;
}
.wosoBulkorder_order_detail_container .wosoBulkorder-product-detail-acc-cont .wosoBulkorder-acc-slider-cont .cms-element-title .cms-element-title-paragraph {
  margin: 0px;
  line-height: 28px;
}
.wosoBulkorder_order_detail_container .wosoBulkorder-product-detail-acc-cont .wosoBulkorder-acc-slider-cont .cms-element-title .cms-element-title-paragraph .icon-float-right {
  float: right !important;
}
.wosoBulkorder_order_detail_container .wosoBulkorder-product-detail-acc-cont .wosoBulkorder-acc-slider-cont .product-acc-slider-container {
  margin-bottom: 20px;
  margin-top: 10px;
}
.wosoBulkorder_order_detail_container .wosoBulkorder-product-detail-acc-cont .wosoBulkorder-acc-slider-cont .wosoBulkorder_order_detail_acc_container .product-image-wrapper {
  height: 150px;
  flex-basis: 130px;
}
.wosoBulkorder_order_detail_container .wosoBulkorder-product-detail-acc-cont .wosoBulkorder-acc-slider-cont .wosoBulkorder_order_detail_acc_container .card-body {
  display: flex;
  flex-direction: column;
}
.wosoBulkorder_order_detail_container .wosoBulkorder-product-detail-acc-cont .wosoBulkorder-product-detail-acc-headline {
  font-weight: bold;
  background-color: rgba(0, 0, 0, 0.03);
  padding: 20px;
}
.wosoBulkorder_order_detail_container .wosoBulkorder_product_detail_bundle_cont {
  margin-top: 20px;
}
.wosoBulkorder_order_detail_container .modal {
  overflow: auto;
}
.wosoBulkorder_order_detail_container .modal-lg, .wosoBulkorder_order_detail_container .address-editor-modal .modal-dialog, .address-editor-modal .wosoBulkorder_order_detail_container .modal-dialog, .wosoBulkorder_order_detail_container .quickview-modal .modal-dialog, .quickview-modal .wosoBulkorder_order_detail_container .modal-dialog {
  max-width: 1100px;
}
.wosoBulkorder_order_detail_container .product-slider-container {
  width: calc(100%);
  display: block;
}
.wosoBulkorder_order_detail_container .product-slider-item {
  width: calc(33%);
  padding-right: 30px;
  display: inline-block;
  vertical-align: top;
  white-space: normal;
}
.wosoBulkorder_order_detail_item .modal-dialog .modal-content .modal-header {
  background-color: #951B81;
  color: #fff;
}
.wosoBulkorder_order_detail_item .modal-dialog .modal-content .modal-header h5, .wosoBulkorder_order_detail_item .modal-dialog .modal-content .modal-header .h5 {
  color: #fff;
}
.wosoBulkorder_order_detail_item .modal-dialog .modal-content .modal-header .close {
  color: #fff;
}
.wosoBulkorder_order_detail_item .modal-dialog .modal-content .modal-header span.icon {
  color: #fff;
}
.wosoBulkorder_order_detail_product_container .product-image {
  margin: 0 auto;
}
.tns-horizontal.tns-subpixel > .tns-item {
  width: 100%;
}
@media (max-width: 991.98px) {
  .wosoBulkorder_order_detail_container .product-slider-item {
    width: 49%;
    padding: 0 1rem 1rem 0;
  }
}
@media (max-width: 767.98px) {
  /*
	.wosoBulkorder_order_detail_container .tns-horizontal.tns-subpixel{
		transform: none !important;
	}
    */
  .wosoBulkorder .wosoBulkorder-detail .card .card-header .product-header-image {
    float: unset;
    margin: 0 auto;
    max-width: 250px;
    width: unset;
    max-height: unset;
  }
  .wosoBulkorder .wosoBulkorder-detail .card .card-header .product-header-image .product-image {
    max-height: 250px;
  }
  .wosoBulkorder .wosoBulkorder-detail .card .card-header h5 .btn, .wosoBulkorder .wosoBulkorder-detail .card .card-header .h5 .btn {
    white-space: normal;
    line-height: normal;
    margin-bottom: 1rem;
  }
  .wosoBulkorder .wosoBulkorder-detail .card .card-header .bo_detailhead_info {
    position: absolute;
    top: 10px;
    right: 10px;
  }
  .wosoBulkorder .wosoBulkorder-detail .card .card-header .float-right {
    width: 100%;
  }
  .wosoBulkorder .wosoBulkorder-detail .card .card-header .btn-bulkorder {
    width: 100%;
  }
  .wosoBulkorder_order_detail_container .gallery-slider-thumbnails-col {
    display: none;
  }
  .wosoBulkorder_order_detail_container .product-slider-item {
    width: 100%;
    padding: 0 0 1rem 0;
  }
  .wosoBulkorder_order_detail_container .bo_detailhead_info {
    text-align: right;
    padding: 0;
  }
  .wosoBulkorder_order_detail_container .bo_detailhead_info_amount {
    vertical-align: super;
  }
}
.wosoBulkorder_recommended_container {
  color: var(--bs-success);
  font-size: 0.85rem;
}
.wosoBulkorder_recommended_container span.icon {
  color: var(--bs-success);
}
@media (min-width: 768px) {
  .wosoBulkorder_order_detail_container button.btn.btn-link {
    max-width: 70%;
  }
}
/**
 * digitvision
 *
 * @category  digitvision
 * @package   Shopware\Plugins\DvsnContextPrompt
 * @copyright (c) 2021 digitvision
 */
/**
 * digitvision
 *
 * @category  digitvision
 * @package   Shopware\Plugins\DvsnContextPrompt
 * @copyright (c) 2021 digitvision
 */
.dvsn-context-prompt .row, .dvsn-context-prompt .account-content, .dvsn-context-prompt .is-act-cartpage .checkout .checkout-container, .is-act-cartpage .checkout .dvsn-context-prompt .checkout-container, .dvsn-context-prompt .is-act-checkoutregisterpage .checkout .checkout-container, .is-act-checkoutregisterpage .checkout .dvsn-context-prompt .checkout-container, .dvsn-context-prompt .is-act-confirmpage .checkout .checkout-container, .is-act-confirmpage .checkout .dvsn-context-prompt .checkout-container, .dvsn-context-prompt .is-ctl-accountorder .checkout .checkout-container, .is-ctl-accountorder .checkout .dvsn-context-prompt .checkout-container, .dvsn-context-prompt .is-act-finishpage .checkout .checkout-container, .is-act-finishpage .checkout .dvsn-context-prompt .checkout-container {
  margin-bottom: 20px;
}
.dvsn-context-prompt .currency-label, .dvsn-context-prompt .country-label, .dvsn-context-prompt .language-label {
  line-height: 40px;
}
.dvsn-context-prompt .button-container {
  text-align: right;
}
.dvsn-context-prompt .button-container button {
  min-width: 150px;
}
/*
 * Layout-related sections
 * ----------------------- */
.search-suggest-container .woa-search-suggest-item .woa-suggest-link {
  display: block;
  color: #373737;
}
.search-suggest-container .woa-search-suggest-item.is-active .woa-suggest-link {
  background: #00305d;
}
.woa_addresserror_footer {
  padding: 20px 4px;
}
.woa_addresserror_footer .form-check.woa-required {
  border-bottom: 1px solid #00305d;
}
.woa_addressaccordion {
  margin-top: 1rem;
}
.woa_addressaccordion .card .card-header {
  padding: 0;
}
.woa_addressaccordion .card .card-header .btn-link {
  margin-bottom: 0;
}
.woa_addressaccordion .card .card-header .woa_addressaccordion-check {
  margin-left: 20px;
}
.woa_addressaccordion .card .card-header .woa_addressaccordion-check .icon {
  color: #00A000;
}
.woa_addressaccordion .card .collapse {
  border: 1px solid rgba(0, 0, 0, 0.03);
  border-top: 0;
  padding: 20px 20px 0 20px;
}
.woa_addressaccordion .card .collapse .card-body .form-group {
  margin-right: 20px;
}
.woa_addressaccordion .card .collapse .card-body .form-group .row.woa_disabled, .woa_addressaccordion .card .collapse .card-body .form-group .woa_disabled.account-content, .woa_addressaccordion .card .collapse .card-body .form-group .is-act-cartpage .checkout .woa_disabled.checkout-container, .is-act-cartpage .checkout .woa_addressaccordion .card .collapse .card-body .form-group .woa_disabled.checkout-container, .woa_addressaccordion .card .collapse .card-body .form-group .is-act-checkoutregisterpage .checkout .woa_disabled.checkout-container, .is-act-checkoutregisterpage .checkout .woa_addressaccordion .card .collapse .card-body .form-group .woa_disabled.checkout-container, .woa_addressaccordion .card .collapse .card-body .form-group .is-act-confirmpage .checkout .woa_disabled.checkout-container, .is-act-confirmpage .checkout .woa_addressaccordion .card .collapse .card-body .form-group .woa_disabled.checkout-container, .woa_addressaccordion .card .collapse .card-body .form-group .is-ctl-accountorder .checkout .woa_disabled.checkout-container, .is-ctl-accountorder .checkout .woa_addressaccordion .card .collapse .card-body .form-group .woa_disabled.checkout-container, .woa_addressaccordion .card .collapse .card-body .form-group .is-act-finishpage .checkout .woa_disabled.checkout-container, .is-act-finishpage .checkout .woa_addressaccordion .card .collapse .card-body .form-group .woa_disabled.checkout-container {
  opacity: 0.2;
}
.woa_addressaccordion .card .collapse .card-body .form-group .woa_errororig {
  display: block;
  padding: 0.5625rem 0.5625rem;
  border: 1px solid #bcc1c7;
}
.woa_addressaccordion .card .collapse .card-body .form-group .woa_errororig span.woa_err {
  color: #A00000;
}
.woa_addressaccordion .card .collapse .card-body .form-group .woa_errororig.woaerror {
  border-left: 4px solid #A00000;
}
.woa_addressaccordion .card .collapse .card-body .form-group .woa-select-orig {
  display: none;
}
.woa_addressaccordion .card .collapse .card-body .form-group .woa-select-orig.woaerror {
  border-left: 4px solid #A00000;
}
.woa_addressaccordion .card .collapse .card-body .form-group .woa-input-streetno.woaerror {
  border-left: 4px solid #A00000;
}
.woa_addressaccordion .card .collapse .card-body .form-group .woa-select-new {
  border-left: 4px solid #00A000;
}
.woa_addressaccordion .card .collapse .card-body .woa_select_btn_icon .icon {
  color: #FFF;
}
.woso-adr-modal-form {
  display: block;
  overflow: hidden;
}
.icon-60w {
  width: 60px;
}
.icon-50w {
  width: 50px;
}
.icon-dhl_packstation > svg path {
  fill: currentColor;
  /* Aktuelle Textfarbe verwenden */
}
.icon-dhl_packstation > svg path.c {
  fill: #de1923;
}
.subscription-product-box-select {
  border: 1px solid #bcc1c7;
  padding: 16px;
  margin-bottom: 16px;
}
.subscription-product-box-select-title {
  border-bottom: 1px solid #bcc1c7;
  padding: 12px 0;
  margin-bottom: 24px;
}
.subscription-product-box-select-options {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
}
.subscription-product-box-select-options-option {
  position: relative;
  list-style: none;
}
.subscription-product-box-select-options-option-radio {
  position: absolute;
  margin: 16px 24px;
}
.subscription-product-box-select-options-option-radio:hover {
  cursor: pointer;
}
.subscription-product-box-select-options-option-radio:checked ~ label {
  border-color: #00305d;
}
.subscription-product-box-select-options-option-radio:checked ~ label .subscription-product-box-select-options-interval-select {
  pointer-events: auto;
}
.subscription-product-box-select-options-option-label {
  width: 100%;
  border: 1px solid #bcc1c7;
  border-radius: 3px;
  padding: 16px 24px 16px 48px;
  margin: 0;
}
.subscription-product-box-select-options-option-label.is--active {
  border-color: #00305d;
}
.subscription-product-box-select-options-option-label:hover {
  cursor: pointer;
}
.subscription-product-box-select-options-option-label-description {
  display: flex;
  flex-direction: column;
  line-height: 16px;
}
.subscription-product-box-select-options-option-label-description-product {
  display: flex;
  justify-content: space-between;
}
.subscription-product-box-select-options-option-label-description-product-price {
  align-self: start;
  line-height: 16px;
}
.subscription-product-box-select-options-option-label-description-product-price-strikethrough {
  color: #bcc1c7;
  text-decoration: line-through;
  margin-right: 8px;
}
.subscription-product-box-select-options-interval-select {
  margin-top: 4px;
  pointer-events: none;
}
.subscription-product-box-select-options-interval-select-label {
  margin-top: 8px;
  line-height: 16px;
  pointer-events: none;
}
.subscription-minimum-execution-label {
  margin-top: 4px;
  margin-bottom: 0;
  font-size: 11px;
  line-height: 16px;
}
.subscription-table-header-heading {
  padding-right: 0 !important;
  padding-left: 0 !important;
  margin-bottom: 0;
}
.subscription-table-header-alert {
  margin-top: 16px;
  padding-left: 0;
  padding-right: 0;
}
.subscription-item-status-badge-active {
  background-color: #3cc261;
}
.subscription-item-status-badge-paused {
  background-color: #ffbd5d;
}
.subscription-item-status-badge-cancelled, .subscription-item-status-badge-flagged_cancelled, .subscription-item-status-badge-payment_failed {
  background-color: #e52427;
}
.subscription-link {
  display: block;
  font-weight: 400;
  margin-bottom: 1rem;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  cursor: pointer;
}
.subscription-summary-recurring-total {
  padding-top: 12px;
  border-top: 1px solid #bcc1c7;
  margin-top: 4px;
}
.subscription-badge {
  width: fit-content;
}
.order-header-quantity, .subscription-header-quantity {
  white-space: nowrap;
}
@media (min-width: 768px) {
  .order-header-status, .order-item-status {
    text-align: center;
  }
}
.cart-item-status {
  order: 2;
  justify-content: space-between;
  display: flex;
}
@media (min-width: 768px) {
  .cart-item-status .line-item-status-wrapper {
    width: 100%;
    text-align: center;
  }
}
.cart-item-status-label {
  font-weight: 700;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .cart-item-status {
    order: 0;
  }
  .cart-item-status-label {
    display: none;
  }
}
.cart-header-status {
  text-align: center;
}
.cart-header-quantity {
  white-space: nowrap;
}
.line-item-status {
  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%;
  order: 2;
  padding-right: 0.25rem;
  padding-left: 0.25rem;
}
@media (min-width: 576px) {
  .line-item-status {
    flex: 0 0 auto;
    width: 25%;
  }
}
@media (min-width: 768px) {
  .line-item-status {
    flex: 0 0 auto;
    width: 16.66666667%;
    order: 0;
  }
}
@media (min-width: 768px) {
  .line-item-status .line-item-status-wrapper {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .has-line-item-status .line-item-info {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
}
@media (min-width: 576px) {
  .has-line-item-status .line-item-unit-price, .has-line-item-status .line-item-total-price, .has-line-item-status .line-item-quantity {
    flex: 0 0 auto;
    width: 25%;
  }
}
@media (min-width: 768px) {
  .has-line-item-status .line-item-unit-price, .has-line-item-status .line-item-total-price {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
}
@media (min-width: 768px) {
  .has-line-item-status .line-item-quantity {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
}
.is-default .line-item-status, .is-order .line-item-status {
  justify-content: space-between;
  display: flex;
  text-align: center;
}
@media (min-width: 576px) {
  .is-default .line-item-status, .is-order .line-item-status {
    justify-content: normal;
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  .is-default .line-item-status-label, .is-order .line-item-status-label {
    display: none;
  }
}
.line-item-status-label {
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.finish-sweetener {
  margin: 1.5rem 0;
  text-align: center;
}
.finish-sweetener-text {
  font-size: 0.875rem;
}
.finish-sweetener-disclaimer {
  font-size: 0.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #bcc1c7;
}
.finish-sweetener.has--loader {
  padding-bottom: 1.5rem;
}
.product-detail-review-summary {
  padding: 30px;
  border: 1px solid #bcc1c7;
  margin-bottom: 30px;
  position: relative;
}
.product-detail-review-summary::before {
  position: absolute;
  background: #fff;
  font-size: 64px;
  font-weight: 600;
  line-height: 1;
  width: 34px;
  height: 34px;
  text-align: center;
  color: #4a545b;
  top: -12px;
  left: -12px;
  content: "“";
}
.product-detail-review-summary-title {
  font-size: 16px;
}
.product-detail-review-summary-title .icon {
  color: #798490;
  width: 18px;
  height: 18px;
}
.product-detail-review-summary-info-tooltip {
  margin-left: 5px;
}
.product-detail-review-summary-info-tooltip:hover {
  cursor: help;
}
.product-detail-review-summary-text {
  margin-bottom: 0;
}
/*
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
*/
/*
 * Abstracts
 * ---------------------------- */
/*
 * Base
 * ---------------------------- */
.b2b-checkbox-group.form-check {
  display: flex;
  align-items: center;
}
.b2b-checkbox-group.form-check > .form-check-label {
  margin-left: 8px;
}
/*
 * Components
 * ---------------------------- */
.b2b-table-header {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  background-color: #eee;
  padding: 12px 16px;
  gap: 16px;
  border-width: 1px 1px 0 1px;
  border-style: solid;
  border-color: #bcc1c7;
}
.b2b-table-header-search {
  width: 100%;
}
.b2b-table-header-actions {
  display: flex;
  flex-direction: row-reverse;
  gap: 12px;
}
@media (min-width: 576px) {
  .b2b-table-header {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
  }
  .b2b-table-header-search {
    flex-grow: 1;
    width: fit-content;
  }
}
.b2b-tree {
  margin: 19px 0 19px 0;
}
.b2b-tree-group-select {
  display: flex;
  align-items: center;
}
.b2b-tree-group-select .b2b-tree-select {
  margin: 0;
}
.b2b-tree-collapse-button {
  background-color: transparent;
  border-width: 0;
  padding: 0;
  position: relative;
  margin: 0 12px;
  width: 12px;
  height: 12px;
  transform: translateY(-3px);
  outline-offset: 4px;
}
.b2b-tree-collapse-button > .icon {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  color: #4a545b;
}
.b2b-tree-collapse-button.collapsed {
  transform: none;
}
.b2b-tree-collapse-button.collapsed > .icon {
  transform: translateX(-3px) rotate(-90deg);
}
.b2b-tree-permission-select {
  margin-left: 17.5px;
  border-left: 1px solid #798490;
  padding-left: 17.5px;
}
.b2b-tree-select {
  margin: 19px 0 19px 0;
}
.b2b-tree-permission-tooltip-title {
  padding: 0;
  margin: 0;
}
.b2b-tree-permission-tooltip-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.b2b-list {
  list-style: none;
  padding: 0;
}
.b2b-list-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 6px;
  border-bottom: 1px solid #bcc1c7;
  padding: 1rem 0;
}
.b2b-list-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.b2b-list-item:first-child {
  padding-top: 0;
}
.b2b-list-item-link {
  color: #373737;
  font-weight: 700;
}
.b2b-list-item-link:hover, .b2b-list-item-link:focus {
  color: #00305d;
  text-decoration: none;
}
.b2b-list .dropdown {
  position: absolute;
  top: 1rem;
  right: 0;
}
.b2b-table-context-menu-button {
  border: 1px solid #bcc1c7;
  padding: 2px 8px;
}
.b2b-table-context-menu-button::after {
  display: none;
}
.b2b-table-context-menu-button:hover, .b2b-table-context-menu-button:focus {
  border-color: rgba(0, 0, 0, 0.175);
}
.b2b-table .b2b-table > thead {
  border-bottom: 4px solid #00305d;
}
.b2b-table .b2b-table > thead th {
  white-space: nowrap;
}
.b2b-table-actions {
  padding: 0;
}
.b2b-table-actions.show {
  display: flex;
  flex-direction: column;
}
.b2b-table-action {
  text-align: left;
  padding: 4px 16px;
}
.b2b-table-action:hover {
  color: #00305d;
}
.b2b-table-action.is--danger:hover {
  color: #e52427;
}
.b2b-table .b2b-table-column {
  padding: 1rem;
  border-left: none;
  border-right: none;
}
.b2b-table .b2b-table-column:first-child {
  border-left: 1px solid #bcc1c7;
}
.b2b-table .b2b-table-column:last-child {
  border-right: 1px solid #bcc1c7;
}
.b2b-table .b2b-table-column.has-no-role {
  font-style: italic;
}
/*
 * Listing
 * ---------------------------- */
.b2b-listing-content {
  margin: 1.5rem 0;
}
/*
 * Pages
 * ---------------------------- */
.b2b-employees .b2b-listing-role-name-link, .b2b-employees .b2b-listing-role-name-link:hover {
  text-decoration: inherit;
  color: inherit;
  cursor: pointer;
}
.b2b-employees .b2b-list-item-no-role {
  color: #798490;
}
.b2b-employees .b2b-listing-employee-create-button {
  margin-top: -14px;
  margin-bottom: 60px;
}
.b2b-create-title, .b2b-create-actions {
  display: flex;
  gap: 1rem;
}
.b2b-create-back > .icon {
  color: #4a545b;
}
.b2b-create-form-role.no-selected-role {
  font-style: italic;
}
.order-table-header-order-number, .subscription-table-header-info-wrapper {
  margin-bottom: 8px;
}
.order-table-b2b-employee {
  display: block;
  font-weight: 400;
  margin-bottom: 0;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 576px) {
  .order-table-b2b-employee {
    margin-bottom: 1.5rem;
  }
}
.order-table-b2b-employee-label {
  display: block;
  float: left;
  width: 50%;
}
@media (min-width: 576px) {
  .order-table-b2b-employee-label {
    display: inline;
    width: initial;
    float: initial;
  }
}
.order-table .order-item-header .row > .order-table-b2b-employee, .subscription-table .order-item-header .row > .order-table-b2b-employee, .subscription-table .subscription-item-header .row > .order-table-b2b-employee, .subscription-table .order-item-header .account-content > .order-table-b2b-employee, .subscription-table .order-item-header .is-act-cartpage .checkout .checkout-container > .order-table-b2b-employee, .is-act-cartpage .checkout .subscription-table .order-item-header .checkout-container > .order-table-b2b-employee, .subscription-table .order-item-header .is-act-checkoutregisterpage .checkout .checkout-container > .order-table-b2b-employee, .is-act-checkoutregisterpage .checkout .subscription-table .order-item-header .checkout-container > .order-table-b2b-employee, .subscription-table .order-item-header .is-act-confirmpage .checkout .checkout-container > .order-table-b2b-employee, .is-act-confirmpage .checkout .subscription-table .order-item-header .checkout-container > .order-table-b2b-employee, .subscription-table .order-item-header .is-ctl-accountorder .checkout .checkout-container > .order-table-b2b-employee, .is-ctl-accountorder .checkout .subscription-table .order-item-header .checkout-container > .order-table-b2b-employee, .subscription-table .order-item-header .is-act-finishpage .checkout .checkout-container > .order-table-b2b-employee, .is-act-finishpage .checkout .subscription-table .order-item-header .checkout-container > .order-table-b2b-employee, .subscription-table .subscription-item-header .account-content > .order-table-b2b-employee, .subscription-table .subscription-item-header .is-act-cartpage .checkout .checkout-container > .order-table-b2b-employee, .is-act-cartpage .checkout .subscription-table .subscription-item-header .checkout-container > .order-table-b2b-employee, .subscription-table .subscription-item-header .is-act-checkoutregisterpage .checkout .checkout-container > .order-table-b2b-employee, .is-act-checkoutregisterpage .checkout .subscription-table .subscription-item-header .checkout-container > .order-table-b2b-employee, .subscription-table .subscription-item-header .is-act-confirmpage .checkout .checkout-container > .order-table-b2b-employee, .is-act-confirmpage .checkout .subscription-table .subscription-item-header .checkout-container > .order-table-b2b-employee, .subscription-table .subscription-item-header .is-ctl-accountorder .checkout .checkout-container > .order-table-b2b-employee, .is-ctl-accountorder .checkout .subscription-table .subscription-item-header .checkout-container > .order-table-b2b-employee, .subscription-table .subscription-item-header .is-act-finishpage .checkout .checkout-container > .order-table-b2b-employee, .is-act-finishpage .checkout .subscription-table .subscription-item-header .checkout-container > .order-table-b2b-employee, .purchase-table .order-item-header .row > .order-table-b2b-employee, .purchase-table .subscription-item-header .row > .order-table-b2b-employee, .purchase-table .order-item-header .account-content > .order-table-b2b-employee, .purchase-table .order-item-header .is-act-cartpage .checkout .checkout-container > .order-table-b2b-employee, .is-act-cartpage .checkout .purchase-table .order-item-header .checkout-container > .order-table-b2b-employee, .purchase-table .order-item-header .is-act-checkoutregisterpage .checkout .checkout-container > .order-table-b2b-employee, .is-act-checkoutregisterpage .checkout .purchase-table .order-item-header .checkout-container > .order-table-b2b-employee, .purchase-table .order-item-header .is-act-confirmpage .checkout .checkout-container > .order-table-b2b-employee, .is-act-confirmpage .checkout .purchase-table .order-item-header .checkout-container > .order-table-b2b-employee, .purchase-table .order-item-header .is-ctl-accountorder .checkout .checkout-container > .order-table-b2b-employee, .is-ctl-accountorder .checkout .purchase-table .order-item-header .checkout-container > .order-table-b2b-employee, .purchase-table .order-item-header .is-act-finishpage .checkout .checkout-container > .order-table-b2b-employee, .is-act-finishpage .checkout .purchase-table .order-item-header .checkout-container > .order-table-b2b-employee, .purchase-table .subscription-item-header .account-content > .order-table-b2b-employee, .purchase-table .subscription-item-header .is-act-cartpage .checkout .checkout-container > .order-table-b2b-employee, .is-act-cartpage .checkout .purchase-table .subscription-item-header .checkout-container > .order-table-b2b-employee, .purchase-table .subscription-item-header .is-act-checkoutregisterpage .checkout .checkout-container > .order-table-b2b-employee, .is-act-checkoutregisterpage .checkout .purchase-table .subscription-item-header .checkout-container > .order-table-b2b-employee, .purchase-table .subscription-item-header .is-act-confirmpage .checkout .checkout-container > .order-table-b2b-employee, .is-act-confirmpage .checkout .purchase-table .subscription-item-header .checkout-container > .order-table-b2b-employee, .purchase-table .subscription-item-header .is-ctl-accountorder .checkout .checkout-container > .order-table-b2b-employee, .is-ctl-accountorder .checkout .purchase-table .subscription-item-header .checkout-container > .order-table-b2b-employee, .purchase-table .subscription-item-header .is-act-finishpage .checkout .checkout-container > .order-table-b2b-employee, .is-act-finishpage .checkout .purchase-table .subscription-item-header .checkout-container > .order-table-b2b-employee, .order-table .subscription-item-header .row > .order-table-b2b-employee, .order-table .order-item-header .account-content > .order-table-b2b-employee, .order-table .order-item-header .is-act-cartpage .checkout .checkout-container > .order-table-b2b-employee, .is-act-cartpage .checkout .order-table .order-item-header .checkout-container > .order-table-b2b-employee, .order-table .order-item-header .is-act-checkoutregisterpage .checkout .checkout-container > .order-table-b2b-employee, .is-act-checkoutregisterpage .checkout .order-table .order-item-header .checkout-container > .order-table-b2b-employee, .order-table .order-item-header .is-act-confirmpage .checkout .checkout-container > .order-table-b2b-employee, .is-act-confirmpage .checkout .order-table .order-item-header .checkout-container > .order-table-b2b-employee, .order-table .order-item-header .is-ctl-accountorder .checkout .checkout-container > .order-table-b2b-employee, .is-ctl-accountorder .checkout .order-table .order-item-header .checkout-container > .order-table-b2b-employee, .order-table .order-item-header .is-act-finishpage .checkout .checkout-container > .order-table-b2b-employee, .is-act-finishpage .checkout .order-table .order-item-header .checkout-container > .order-table-b2b-employee, .order-table .subscription-item-header .account-content > .order-table-b2b-employee, .order-table .subscription-item-header .is-act-cartpage .checkout .checkout-container > .order-table-b2b-employee, .is-act-cartpage .checkout .order-table .subscription-item-header .checkout-container > .order-table-b2b-employee, .order-table .subscription-item-header .is-act-checkoutregisterpage .checkout .checkout-container > .order-table-b2b-employee, .is-act-checkoutregisterpage .checkout .order-table .subscription-item-header .checkout-container > .order-table-b2b-employee, .order-table .subscription-item-header .is-act-confirmpage .checkout .checkout-container > .order-table-b2b-employee, .is-act-confirmpage .checkout .order-table .subscription-item-header .checkout-container > .order-table-b2b-employee, .order-table .subscription-item-header .is-ctl-accountorder .checkout .checkout-container > .order-table-b2b-employee, .is-ctl-accountorder .checkout .order-table .subscription-item-header .checkout-container > .order-table-b2b-employee, .order-table .subscription-item-header .is-act-finishpage .checkout .checkout-container > .order-table-b2b-employee, .is-act-finishpage .checkout .order-table .subscription-item-header .checkout-container > .order-table-b2b-employee {
  padding-right: 0;
  padding-left: 0;
}
.account-quick-order-card .row, .account-quick-order-card .account-content, .account-quick-order-card .is-act-cartpage .checkout .checkout-container, .is-act-cartpage .checkout .account-quick-order-card .checkout-container, .account-quick-order-card .is-act-checkoutregisterpage .checkout .checkout-container, .is-act-checkoutregisterpage .checkout .account-quick-order-card .checkout-container, .account-quick-order-card .is-act-confirmpage .checkout .checkout-container, .is-act-confirmpage .checkout .account-quick-order-card .checkout-container, .account-quick-order-card .is-ctl-accountorder .checkout .checkout-container, .is-ctl-accountorder .checkout .account-quick-order-card .checkout-container, .account-quick-order-card .is-act-finishpage .checkout .checkout-container, .is-act-finishpage .checkout .account-quick-order-card .checkout-container {
  --bs-gutter-x: 16px;
}
.quick-order-item-header {
  font-weight: 600;
  padding: 16px 0;
  border-bottom: 1px solid #bcc1c7;
  margin-bottom: 12px;
}
.quick-order-item-name {
  position: relative;
}
.quick-order-item-name .no-product {
  pointer-events: none;
  padding: calc(0.5 * var(--bs-gutter-x)) var(--bs-gutter-x);
}
.quick-order-line-item {
  padding: 12px 0;
  position: relative;
}
.quick-order-line-item .js-quick-order-result {
  padding: calc(0.5 * var(--bs-gutter-x)) 0;
  list-style: none;
  position: absolute;
  background: #fff;
  width: calc(100% - 16px);
  border: 1px solid #bcc1c7;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  left: 8px;
  z-index: 10;
  max-height: 300px;
  overflow-y: auto;
}
.quick-order-line-item .js-quick-order-result-item {
  padding: calc(0.5 * var(--bs-gutter-x)) var(--bs-gutter-x);
}
.quick-order-line-item .js-quick-order-result-item:hover, .quick-order-line-item .js-quick-order-result-item.is-active {
  background: #eee;
}
.quick-order-line-item .js-quick-order-result-item strong {
  font-weight: 700;
}
.quick-order-line-item .input-product-name {
  height: 100%;
}
.quick-order-line-item .input-product-name:empty:not(:focus):before {
  content: attr(placeholder);
  color: #adb5bd;
}
.quick-order-line-item .input-product-name br {
  display: none;
}
.quick-order-line-item .input-product-name strong {
  font-weight: 700;
}
.quick-order-line-item .input-product-quantity {
  background-color: transparent;
}
.quick-order-line-item .line-item-quantity-group[disabled] {
  pointer-events: none;
}
.quick-order-line-item .line-item-quantity-group[disabled]:after {
  content: "";
  width: 100%;
  height: 100%;
  background: #eee;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid inherit;
  z-index: -1;
}
.quick-order-line-item .line-item-quantity-group[disabled] .icon {
  color: #bcc1c7;
}
.quick-order-line-item .line-item-quantity-group[disabled] .input-product-quantity {
  color: #798490;
}
.quick-order-item-loader {
  position: absolute;
  right: 24px;
  top: 7px;
  z-index: 9;
  width: auto;
}
.quick-order-item-quantity .btn {
  padding: 0 calc(var(--bs-btn-padding-y) * 5);
}
.quick-order-item-quantity .btn:disabled {
  border-color: #bcc1c7;
}
.item-search-highlight {
  color: #00305d;
}
.btn-clear-list:disabled {
  background-color: transparent;
}
.btn-clear-list .icon {
  margin-right: 10px;
  color: inherit;
}
.btn-clear-list .icon svg {
  top: 2px;
}
.btn-csv-upload {
  margin-left: 10px;
}
.quick-order-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.quick-order-remove-button .icon svg {
  top: 4px;
}
.quick-order-alert .alert-content-container {
  display: flex;
  align-items: center;
}
.quick-order-alert .alert-content {
  display: inline-block;
  width: calc(100% - 30px);
}
.quick-order-alert__close {
  width: 20px;
  padding: 0;
  display: inline-flex;
}
.quick-order-alert__close .icon {
  height: 16px;
  margin: 0;
}
.quick-order-alert .close-danger .icon {
  color: #e52427;
}
.quick-order-alert .close-warning .icon {
  color: #ffbd5d;
}
.confirm-modal .modal-body, .confirm-modal .modal-footer {
  padding: 32px;
}
.confirm-modal .modal-header {
  padding: 26px 32px;
}
.confirm-modal .modal-body {
  padding-bottom: 0;
}
.confirm-modal .modal-footer {
  border-top: none;
}
.quick-order-upload-modal .modal-dialog {
  --bs-modal-width: 720px;
}
.quick-order-upload-modal .modal-body {
  --bs-modal-padding: 32px;
}
.quick-order-upload-modal .modal-header {
  --bs-modal-header-padding: 26px 32px;
}
.quick-order-upload-modal .modal-header .btn-close {
  opacity: 1;
}
.quick-order-upload-modal .modal-footer {
  --bs-modal-footer-border-width: 0;
  padding: 0 32px 32px;
}
.quick-order-upload-modal .modal-footer .btn:disabled {
  color: #798490;
  background-color: #bcc1c7;
}
.quick-order-upload-modal .btn-light {
  background-color: #eee;
}
.quick-order-upload-modal .quick-order-upload__container {
  color: #00305d;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 24px;
  border: 2px dashed #00305d;
  background-color: #f9f9f9;
  min-height: 72px;
}
.quick-order-upload-modal .quick-order-upload__container--uploading {
  justify-content: center;
  border: 1px solid #798490;
}
.quick-order-upload-modal .quick-order-upload__container--uploading .quick-order-upload__text, .quick-order-upload-modal .quick-order-upload__container--uploading .quick-order-upload__button {
  display: none;
}
.quick-order-upload-modal .quick-order-upload__container--uploading .quick-order-upload__btn-remove {
  display: block;
}
.quick-order-upload-modal .quick-order-upload__container--uploading .quick-order-upload__content .icon {
  color: #373737;
}
.quick-order-upload-modal .quick-order-upload__container--success {
  border: 1px solid #798490;
}
.quick-order-upload-modal .quick-order-upload__container--success .quick-order-upload__button, .quick-order-upload-modal .quick-order-upload__container--success .quick-order-upload__text, .quick-order-upload-modal .quick-order-upload__container--success .icon, .quick-order-upload-modal .quick-order-upload__container--success .icon-cloud-upload {
  display: none;
}
.quick-order-upload-modal .quick-order-upload__container--success .quick-order-upload__btn-remove {
  display: block;
}
.quick-order-upload-modal .quick-order-upload__container--success .quick-order-upload__content .icon-file {
  display: inline-flex;
}
.quick-order-upload-modal .quick-order-upload__button {
  border: 1px solid #00305d;
  padding: 8px 14px;
  font-weight: 600;
  height: 40px;
  color: #00305d;
  background-color: transparent;
  flex-shrink: 0;
}
.quick-order-upload-modal .quick-order-upload__btn-remove {
  position: relative;
  display: none;
  padding: 13px;
  opacity: 1;
}
.quick-order-upload-modal .quick-order-upload__content {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-grow: 1;
}
.quick-order-upload-modal .quick-order-upload__content h5, .quick-order-upload-modal .quick-order-upload__content .h5 {
  line-height: 1;
  font-weight: 700;
  font-size: 16px;
  color: #00305d;
  margin: 0;
}
.quick-order-upload-modal .quick-order-upload__content .icon {
  color: #00305d;
  width: 24px;
}
.quick-order-upload-modal .quick-order-upload__content .icon svg {
  top: 0;
}
.quick-order-upload-modal .quick-order-upload__content span {
  color: #798490;
  font-size: 11px;
}
.quick-order-upload-modal .quick-order-upload__content .icon-file {
  display: none;
  color: #373737;
}
.quick-order-upload-modal .quick-order-upload__text {
  display: flex;
  flex-direction: column;
}
.quick-order-upload-modal .quick-order-upload__input {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
  opacity: 0;
}
.quick-order-upload-modal .quick-order-upload__input:focus {
  outline: none;
}
.quick-order-upload-modal .quick-order-upload__input:disabled {
  cursor: default;
}
.quick-order-upload-modal .quick-order-upload__uploading {
  font-size: 16px;
  font-weight: 700;
  color: #373737;
}
.quick-order-upload-modal .quick-order-upload__message {
  min-height: 43px;
  display: flex;
  margin-top: 16px;
}
.quick-order-upload-modal .quick-order-upload__message:empty {
  display: none;
}
.quick-order-upload-modal .quick-order-upload__message--error {
  background-color: rgba(229, 36, 39, 0.2);
}
.quick-order-upload-modal .quick-order-upload__message--error .quick-order-upload__message-icon {
  background-color: #e52427;
}
.quick-order-upload-modal .quick-order-upload__message--error .quick-order-upload__message-text {
  color: #e52427;
}
.quick-order-upload-modal .quick-order-upload__message--success {
  background-color: rgba(60, 194, 97, 0.2);
}
.quick-order-upload-modal .quick-order-upload__message--success .quick-order-upload__message-icon {
  background-color: #3cc261;
}
.quick-order-upload-modal .quick-order-upload__message--success .quick-order-upload__message-text {
  color: #3cc261;
}
.quick-order-upload-modal .quick-order-upload__message-icon {
  padding: 8px;
  width: 40px;
  justify-content: center;
  align-items: center;
  display: flex;
}
.quick-order-upload-modal .quick-order-upload__message-icon .icon {
  color: #fff;
  height: 24px;
  width: 24px;
}
.quick-order-upload-modal .quick-order-upload__message-icon .icon svg {
  top: 0;
}
.quick-order-upload-modal .quick-order-upload__message-text {
  align-self: center;
  margin-left: 16px;
}
.quick-order-upload-modal .quick-order-upload__description {
  margin-top: 8px;
  margin-bottom: 0;
  font-size: 12px;
}
.quick-order-upload-modal .quick-order-upload__options, .quick-order-upload-modal .quick-order-upload__table {
  margin-top: 32px;
}
.quick-order-upload-modal .quick-order-upload__options .form-label, .quick-order-upload-modal .quick-order-upload__table .form-label {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}
.quick-order-upload-modal .quick-order-upload__options .form-check, .quick-order-upload-modal .quick-order-upload__table .form-check {
  min-height: 24px;
  margin-bottom: 8px;
}
.quick-order-upload-modal .quick-order-upload__options .form-check + .form-check, .quick-order-upload-modal .quick-order-upload__table .form-check + .form-check {
  margin-bottom: 0;
}
.quick-order-upload-modal .quick-order-upload__options .form-check-label, .quick-order-upload-modal .quick-order-upload__table .form-check-label {
  line-height: 24px;
  cursor: pointer;
}
.quick-order-upload-modal .quick-order-upload__table thead th {
  font-weight: 600;
  padding: 14px 16px;
}
.quick-order-upload-modal .quick-order-upload__table tbody td {
  padding: 16px 16px;
  font-weight: 400;
}
.quick-order-upload-modal .quick-order-upload__table .quick-order-upload__name-cell {
  display: flex;
  flex-direction: column;
}
.quick-order-upload-modal .quick-order-upload__table .quick-order-upload__name-cell *:first-child {
  font-weight: 600;
}
.quick-order-upload-modal .quick-order-upload__table .form-check {
  margin-bottom: 0;
}
.quick-order-upload-modal .quick-order-upload__selection {
  display: none;
}
.quick-order-upload-modal .quick-order-upload__selection .quick-order-upload__product-name {
  margin-bottom: 12px;
  padding-top: 16px;
  border-top: 1px solid #798490;
}
.quick-order-upload-modal .quick-order-upload__selection .quick-order-upload__product-name:first-child {
  border-top: 0;
}
.quick-order-upload-modal .quick-order-upload__selection .form-select {
  margin-bottom: 16px;
}
.quick-order-upload-modal .quick-order-upload__product-name {
  display: flex;
  flex-direction: column;
}
.quick-order-upload-modal .quick-order-upload__product-number {
  font-weight: 600;
}
.quick-order-upload-modal .quick-order-upload__duplicated-title:not([hidden]) + .modal-title {
  display: none;
}
@media (max-width: 767.98px) {
  .quick-order-upload-modal .quick-order-upload__table {
    display: none;
  }
  .quick-order-upload-modal .quick-order-upload__selection {
    display: block;
  }
}
.advanced-search-suggest-container {
  width: 70vw;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 400px;
  padding: 20px;
}
.advanced-search-suggest-container .search-suggest-product-image-container {
  margin: 0 0 0 10px;
}
.advanced-search-suggest-container .suggest-result-header {
  font-size: 1rem;
  font-weight: 700;
}
.advanced-search-suggest-container .search-suggest-product-price {
  margin-left: 15px;
}
.advanced-search-suggest-container .suggest-product-listing {
  list-style-type: none;
  padding: 0;
}
.advanced-search-suggest-container .search-suggest-item {
  border-bottom: 1px solid #bcc1c7;
}
.advanced-search-suggest-container .search-suggest-item.is-active .search-suggest-product-link {
  color: #00305d;
}
.advanced-search-suggest-container .search-suggest-item:last-child {
  border-bottom: 0;
}
.advanced-search-suggest-container .search-suggest-item:hover {
  background-color: #f9f9f9;
}
.advanced-search-suggest-container .search-term-highlight {
  font-weight: 700;
}
@media (max-width: 767.98px) {
  .advanced-search-suggest-container {
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }
}
.sw-advanced-search-additional-results-container {
  background-color: #f9f9f9;
  padding-top: 20px;
  position: relative;
}
.sw-advanced-search-additional-results-container:before, .sw-advanced-search-additional-results-container:after {
  content: "";
  position: absolute;
  display: block;
  background-color: #f9f9f9;
  top: 0;
  bottom: 0;
}
.sw-advanced-search-additional-results-container:before {
  left: -100%;
  right: 100%;
}
.sw-advanced-search-additional-results-container:after {
  left: 100%;
  right: -100%;
}
.sw-advanced-search-additional-results-container .advanced-search-result-header {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.sw-advanced-search-additional-results-container .sw-advanced-search-additional-results-row {
  --bs-gutter-x: 15px;
  --bs-gutter-y: 15px;
  margin-bottom: 32px;
}
.sw-advanced-search-additional-results-container .advanced-search-result-item {
  font-size: 1rem;
  color: #373737;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sw-advanced-search-additional-results-container .advanced-search-result-item:hover {
  color: #00305d;
  text-decoration: none;
}
.sw-advanced-search-additional-results-container .advanced-search-result-listing {
  list-style-type: none;
  padding: 0;
}
.frc-captcha.has-success {
  border: 1px solid #3cc261;
  border-radius: 3px;
}
.frc-captcha.has-error {
  border: 1px solid #e52427;
  border-radius: 3px;
}
.quote-detail-content-header {
  display: none;
}
.quote-detail-comments {
  display: flex;
  flex-direction: column-reverse;
}
.quote-detail-comment {
  background-color: #f9f9f9;
  display: flex;
  flex-direction: column-reverse;
  padding: 24px 24px 24px 64px;
  gap: 8px;
  margin-top: 16px;
  color: #373737;
}
.quote-detail-comment--last {
  border: 1px solid #798490;
}
.quote-detail-comment__content {
  margin-top: -14px;
  white-space: pre-line;
  line-height: normal;
  font-size: 14px;
}
.quote-detail-comment__create-at {
  font-size: 11px;
  display: flex;
  column-gap: 8px;
  justify-content: flex-start;
  position: relative;
  flex-wrap: wrap;
}
.quote-detail-comment__avatar {
  position: absolute;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  text-transform: uppercase;
  background-color: #fff;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.quote-detail-comment__avatar--customer {
  background-color: rgba(38, 182, 207, 0.2);
}
.quote-detail-comment__date {
  color: #798490;
}
.quote-detail-comment__date, .quote-detail-comment__text {
  flex-shrink: 0;
}
.quote-detail-comment__date {
  order: 1;
  width: 100%;
}
.quote-detail-comment__latest {
  flex-grow: 1;
  text-align: right;
}
@media (min-width: 768px) {
  .quote-detail-content-header {
    display: block;
    padding: 0.5rem 0;
    margin-top: 1rem;
    font-weight: 700;
    border-bottom: 1px solid #bcc1c7;
  }
  .quote-header-price, .quote-header-total {
    text-align: right;
  }
  .quote-header-quantity {
    text-align: center;
  }
  .quote-detail-comment__create-at {
    flex-wrap: nowrap;
    font-size: 12px;
  }
  .quote-detail-comment__date {
    width: auto;
    order: 0;
  }
}
.cart-offcanvas ~ .modal-backdrop {
  z-index: 1000;
}
.offcanvas-quote-request-modal, .cart-quote-request-modal, .decline-quote-modal {
  --bs-modal-header-padding: 24px 32px;
  --bs-modal-header-border-width: 1px;
  --bs-modal-footer-border-width: 0;
  --bs-modal-footer-gap: 32px;
  --bs-modal-padding: 32px 32px 16px;
}
.offcanvas-quote-request-modal .modal-footer, .cart-quote-request-modal .modal-footer, .decline-quote-modal .modal-footer {
  padding: calc(var(--bs-modal-footer-gap) * 0.5) var(--bs-modal-footer-gap);
}
.offcanvas-quote-request-modal .modal-footer > *, .cart-quote-request-modal .modal-footer > *, .decline-quote-modal .modal-footer > * {
  margin: 0 0 0 calc(var(--bs-modal-footer-gap) * 0.125);
}
.quote-summary-list {
  margin-bottom: 0;
}
.quote-grid {
  margin-top: calc(var(--bs-offcanvas-padding-y) * 0.5);
}
.quote-comment {
  margin-top: 24px;
}
.quote-comment .form-label span {
  color: #798490;
}
.quote-comment textarea {
  color: #1f262e;
}
.quote-comment textarea::placeholder {
  color: #373737;
}
.account-quotes .row, .account-quotes .account-content, .account-quotes .is-act-cartpage .checkout .checkout-container, .is-act-cartpage .checkout .account-quotes .checkout-container, .account-quotes .is-act-checkoutregisterpage .checkout .checkout-container, .is-act-checkoutregisterpage .checkout .account-quotes .checkout-container, .account-quotes .is-act-confirmpage .checkout .checkout-container, .is-act-confirmpage .checkout .account-quotes .checkout-container, .account-quotes .is-ctl-accountorder .checkout .checkout-container, .is-ctl-accountorder .checkout .account-quotes .checkout-container, .account-quotes .is-act-finishpage .checkout .checkout-container, .is-act-finishpage .checkout .account-quotes .checkout-container {
  --bs-gutter-x: 32px;
  --bs-gutter-y: 0;
  margin-left: 0;
  margin-right: 0;
}
.quotes-wrapper {
  border: 1px solid #bcc1c7;
}
.quote-table-header-cell {
  text-align: left;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  padding-top: calc(var(--bs-gutter-x) * 0.5);
  padding-bottom: calc(var(--bs-gutter-x) * 0.5);
}
.quotes-table-header {
  border-bottom: solid 2px #00305d;
}
.quote-table-header-cell, .quote-table-body-cell {
  display: flex;
  align-items: center;
}
.quotes-table-header {
  border-bottom: solid 2px #00305d;
}
.quote-table-header-label {
  display: none;
}
.quote-item {
  padding: calc(var(--bs-gutter-x) * 0.5) 0;
  position: relative;
}
.quote-item:not(:last-child) {
  border-bottom: 1px solid;
}
.quote-item-status-badge {
  width: auto;
  height: auto;
  padding: 0 calc(var(--bs-gutter-x) * 0.5);
  margin: 0;
  color: white;
  font-weight: 600;
  line-height: 20px;
}
.quote-item-status-badge.quote-item-status-badge-open {
  background-color: #26b6cf;
}
.quote-item-status-badge.quote-item-status-badge-reopen {
  background-color: #ffbd5d;
}
.quote-item-status-badge.quote-item-status-badge-in_review {
  background-color: #f39200;
}
.quote-item-status-badge.quote-item-status-badge-accepted {
  background-color: #3cc261;
}
.quote-item-status-badge.quote-item-status-badge-replied {
  background-color: #26b6cf;
}
.quote-item-status-badge.quote-item-status-badge-declined {
  background-color: #e52427;
}
.quote-item-status-badge.quote-item-status-badge-expired {
  background-color: #e52427;
}
.quote-table-body-context-menu {
  float: right;
  border: 1px solid #798490;
  border-radius: 0;
  width: 24px;
  height: 24px;
  padding: 0;
}
.quote-table-body-context-menu:after {
  content: unset;
}
.quote-table-body-context-menu .icon {
  margin: 0;
  width: 14px;
  height: 22px;
}
.quote-table-body-context-menu .icon > svg {
  top: 0;
}
.quote-table-header-context-menu-content {
  padding-left: 10px;
  padding-right: 10px;
}
.account-quote-detail .card-title {
  margin-bottom: calc(var(--bs-card-spacer-y) * 0.5);
  font-size: 24px;
}
.account-quote-detail .item {
  margin-top: calc(var(--bs-gutter-x) * 0.4);
}
.account-quote-detail h1, .account-quote-detail .h1 {
  margin-bottom: 0;
}
.account-quote-detail .account-welcome {
  display: flex;
  gap: 16px;
  margin-bottom: var(--bs-gutter-x);
  align-items: center;
}
.account-quote-detail .btn-link {
  background: #eee;
  height: 40px;
  line-height: 32px;
}
.account-quote-detail .badge {
  font-size: 0.875rem;
  line-height: 32px;
}
.quote-detail-action {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}
.quote-detail-action .btn[disabled].btn-outline-danger, .quote-detail-action .btn[disabled].btn-quote-request-changes, .quote-detail-action .btn[disabled].btn-quote-checkout, .quote-detail-action .btn[disabled].btn-quote-document, .quote-detail-action .btn.disabled.btn-outline-danger, .quote-detail-action .btn.disabled.btn-quote-request-changes, .quote-detail-action .btn.disabled.btn-quote-checkout, .quote-detail-action .btn.disabled.btn-quote-document {
  --bs-btn-disabled-color: #798490;
  --bs-btn-disabled-border-color: #bcc1c7;
  --bs-btn-disabled-bg: #fff;
}
.quote-detail-action .btn[disabled].btn-quote-checkout, .quote-detail-action .btn.disabled.btn-quote-checkout {
  --bs-btn-disabled-bg: #bcc1c7;
}
#collapseRequestChanges.collapsing[style*="height"] ~ .quote-detail-action, #collapseRequestChanges.show ~ .quote-detail-action, #collapseDecline.collapsing[style*="height"] ~ .quote-detail-action, #collapseDecline.show ~ .quote-detail-action {
  display: none;
}
.quote-details, .quote-summary {
  margin-bottom: calc(var(--bs-gutter-x) * 0.6);
}
@media (max-width: 575.98px) {
  .quotes-table-header {
    display: none;
  }
  .quote-table-header-label {
    display: block;
  }
  .quote-table-body-cell:not(:last-child) {
    margin-bottom: 10px;
  }
  .quote-table-header-label {
    display: block;
    float: left;
    width: 50%;
  }
  .quote-table-body-context-menu {
    position: absolute;
    right: 16px;
    top: 16px;
    justify-content: flex-end;
  }
  .quote-detail-action {
    flex-direction: column;
  }
}
@media (min-width: 576px) {
  .quote-table-header-cell:last-child, .quote-table-body-cell:last-child {
    flex: 70px 0;
    width: 70px;
  }
}
.btn-quote-document {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: auto;
}
.btn-quote-document:hover .btn-quote-icon-download {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' id='meteor-icon-kit__regular-download' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M13 14.5858L17.2929 10.2929C17.6834 9.90237 18.3166 9.90237 18.7071 10.2929C19.0976 10.6834 19.0976 11.3166 18.7071 11.7071L12.7071 17.7071C12.3166 18.0976 11.6834 18.0976 11.2929 17.7071L5.29289 11.7071C4.90237 11.3166 4.90237 10.6834 5.29289 10.2929C5.68342 9.90237 6.31658 9.90237 6.70711 10.2929L11 14.5858V1C11 0.447715 11.4477 0 12 0C12.5523 0 13 0.447715 13 1V14.5858ZM2 22.0416H22V17C22 16.4477 22.4477 16 23 16C23.5523 16 24 16.4477 24 17V23.0416C24 23.5939 23.5523 24.0416 23 24.0416H1C0.447715 24.0416 0 23.5939 0 23.0416V17.0622C0 16.5099 0.447715 16.0622 1 16.0622C1.55228 16.0622 2 16.5099 2 17.0622V22.0416Z' fill='%23fff'/%3E%3C/svg%3E");
}
.btn-quote-document.disabled {
  border-color: #bcc1c7;
}
.btn-quote-document.disabled .btn-quote-icon-download {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' id='meteor-icon-kit__regular-download' viewBox='0 0 24 24' fill='%23798490'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M13 14.5858L17.2929 10.2929C17.6834 9.90237 18.3166 9.90237 18.7071 10.2929C19.0976 10.6834 19.0976 11.3166 18.7071 11.7071L12.7071 17.7071C12.3166 18.0976 11.6834 18.0976 11.2929 17.7071L5.29289 11.7071C4.90237 11.3166 4.90237 10.6834 5.29289 10.2929C5.68342 9.90237 6.31658 9.90237 6.70711 10.2929L11 14.5858V1C11 0.447715 11.4477 0 12 0C12.5523 0 13 0.447715 13 1V14.5858ZM2 22.0416H22V17C22 16.4477 22.4477 16 23 16C23.5523 16 24 16.4477 24 17V23.0416C24 23.5939 23.5523 24.0416 23 24.0416H1C0.447715 24.0416 0 23.5939 0 23.0416V17.0622C0 16.5099 0.447715 16.0622 1 16.0622C1.55228 16.0622 2 16.5099 2 17.0622V22.0416Z' fill='%23798490'/%3E%3C/svg%3E");
}
.btn-quote-icon-download {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' id='meteor-icon-kit__regular-download' viewBox='0 0 24 24' fill='%2300305d'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M13 14.5858L17.2929 10.2929C17.6834 9.90237 18.3166 9.90237 18.7071 10.2929C19.0976 10.6834 19.0976 11.3166 18.7071 11.7071L12.7071 17.7071C12.3166 18.0976 11.6834 18.0976 11.2929 17.7071L5.29289 11.7071C4.90237 11.3166 4.90237 10.6834 5.29289 10.2929C5.68342 9.90237 6.31658 9.90237 6.70711 10.2929L11 14.5858V1C11 0.447715 11.4477 0 12 0C12.5523 0 13 0.447715 13 1V14.5858ZM2 22.0416H22V17C22 16.4477 22.4477 16 23 16C23.5523 16 24 16.4477 24 17V23.0416C24 23.5939 23.5523 24.0416 23 24.0416H1C0.447715 24.0416 0 23.5939 0 23.0416V17.0622C0 16.5099 0.447715 16.0622 1 16.0622C1.55228 16.0622 2 16.5099 2 17.0622V22.0416Z' fill='%2300305d'/%3E%3C/svg%3E");
  height: 18px;
  width: 18px;
  display: inline-block;
  transition: background-image 0.15s ease-in-out;
}
/**
 * @experimental stableVersion:v6.7.0 feature:NaturalLanguageSearch
 */
.nls-search-bar {
  padding: 4px 0px;
  border-bottom: 2px solid #bcc1c7;
}
.nls-search-bar:focus-within {
  border-bottom: 2px solid #00305d;
}
.nls-search-error {
  font-size: 0.75rem;
}
.nls-search-error .icon-exclamation-circle {
  width: 12px;
  height: 12px;
}
.nls-example .nls-example-item {
  --bs-btn-border-radius: 4px;
  --bs-btn-font-weight: --400;
}
.nls-example .nls-example-description, .nls-example .nls-example-item, .nls-example .nls-example-suggestion {
  font-size: 0.75rem;
}
/**
 * @experimental stableVersion:v6.7.0 feature:ImageUploadSearch
 */
.image-upload-search__title {
  margin-top: -0.75rem;
}
.image-upload-search__description {
  font-size: 0.875rem;
  margin-bottom: 0;
}
.image-upload-search__sub-description {
  font-size: 0.75rem;
  margin-top: -1rem;
}
/**
 * @experimental stableVersion:v6.7.0 feature:ImageUploadSearch
 */
.image-upload .btn-light {
  background-color: #eee;
}
.image-upload .btn-image-search {
  height: fit-content;
  overflow: initial;
}
.image-upload__dropzone {
  padding: 22px 24px;
  color: #00305d;
  position: relative;
  border: 2px dashed #00305d;
  background-color: #f9f9f9;
  min-height: 72px;
  overflow: hidden;
}
.image-upload__dropzone.dragover {
  background-color: rgba(0, 48, 93, 0.15);
}
.image-upload__description {
  gap: 16px;
}
.image-upload__description h5, .image-upload__description .h5 {
  line-height: 1;
  font-weight: 700;
  font-size: 16px;
  color: #00305d;
  margin: 0;
}
.image-upload__description .icon {
  color: #00305d;
  width: 24px;
}
.image-upload__description .icon svg {
  top: 0;
}
.image-upload__description span {
  color: #798490;
  font-size: 0.75rem;
}
.image-upload__text {
  display: flex;
  flex-direction: column;
}
.image-upload__file-name {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.image-upload .thumbnail-info {
  overflow: hidden;
}
.image-upload .thumbnail-container {
  width: 75px;
  height: 75px;
}
/**
 * @experimental stableVersion:v6.7.0 feature:NaturalLanguageSearch
 */
.header-search {
  display: flex;
}
.ai-search-page {
  padding-top: 80px;
  gap: 60px;
}
.ai-search-container {
  gap: 80px;
}
.ai-search-results {
  gap: 48px;
}
@keyframes sparkleAnimation3 {
  0% {
    transform: translateY(0%);
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: translateY(-25%);
  }
}
@keyframes sparkleAnimation2 {
  0% {
    transform: translateY(5%);
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: translateY(-25%);
  }
}
@keyframes sparkleAnimation1 {
  0% {
    transform: translateY(10%);
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: translateY(-25%);
  }
}
.ai-search-loading-spinner svg > path {
  opacity: 0;
}
.ai-search-loading-spinner svg > path:nth-child(1) {
  animation: sparkleAnimation1 3s infinite ease-in-out;
  animation-delay: 0s;
}
.ai-search-loading-spinner svg > path:nth-child(2) {
  animation: sparkleAnimation2 3s infinite ease-in-out;
  animation-delay: 0.2s;
}
.ai-search-loading-spinner svg > path:nth-child(3) {
  animation: sparkleAnimation3 3s infinite ease-in-out;
  animation-delay: 0.4s;
}
.icon-ai-primary {
  color: #00305d;
}
.icon-ai-search {
  width: 47px;
  height: 31px;
}
.icon-ai-loading {
  color: #00305d;
  width: 128px;
  height: 128px;
}
.cms-spatial-viewer-container {
  position: relative;
  height: 100%;
  width: 100%;
}
.cms-spatial-viewer-container .cms-spatial-viewer-container-with-canvas {
  display: block;
  width: 100%;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  min-height: 200px;
  max-height: 70vh;
  aspect-ratio: 1;
}
.cms-spatial-viewer-container .cms-spatial-viewer-container-with-canvas.is-tall {
  aspect-ratio: 0.5;
}
.cms-spatial-viewer-container .cms-spatial-viewer-container-with-canvas.is-wide {
  aspect-ratio: 2;
}
.cms-spatial-viewer-container.spatial-fullscreen-view {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  box-sizing: border-box;
  z-index: 800;
  background: #fff;
}
.cms-spatial-viewer-container.spatial-fullscreen-view .cms-spatial-viewer-container-with-canvas {
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-height: 100%;
}
.cms-spatial-viewer-container.spatial-fullscreen-view .spatial-open-fullscreen-btn {
  display: none;
}
.cms-spatial-viewer-container.spatial-fullscreen-view .spatial-close-fullscreen-btn {
  display: block;
  top: 30px;
  right: 30px;
}
.cms-spatial-viewer-container.spatial-fullscreen-view .spatial-button-actions-group {
  bottom: 30px;
  right: 30px;
}
.cms-spatial-viewer-container .cms-spatial-viewer-canvas {
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  margin: 0px;
  padding: 0px;
}
.cms-spatial-viewer-container .spatial-button-actions-group {
  position: absolute;
  bottom: 20px;
  right: 20px;
}
.cms-spatial-viewer-container .spatial-open-fullscreen-btn, .cms-spatial-viewer-container .spatial-ar-button, .cms-spatial-viewer-container .spatial-close-fullscreen-btn {
  background-color: transparent;
  margin: 0px;
  padding: 1px;
  box-sizing: border-box;
  width: 32px;
  height: 32px;
  border: 2px solid #bcc1c7;
  border-radius: 5px;
  z-index: 800;
}
.cms-spatial-viewer-container .spatial-open-fullscreen-btn .icon, .cms-spatial-viewer-container .spatial-ar-button .icon, .cms-spatial-viewer-container .spatial-close-fullscreen-btn .icon {
  margin-top: 4px;
  height: 18px;
  width: 18px;
}
.cms-spatial-viewer-container .spatial-open-fullscreen-btn .icon svg, .cms-spatial-viewer-container .spatial-ar-button .icon svg, .cms-spatial-viewer-container .spatial-close-fullscreen-btn .icon svg {
  top: unset;
}
.cms-spatial-viewer-container .spatial-close-fullscreen-btn {
  position: absolute;
  display: none;
  top: 20px;
  right: 20px;
}
.cms-spatial-viewer-container .spatial-cms-canvas-note {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #798490;
  color: #fff;
  padding: 0 8px;
  border-radius: 8px;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
.cms-spatial-viewer-container .spatial-cms-canvas-note.spatial-canvas-note--hidden {
  opacity: 0;
}
.cms-spatial-viewer-container .spatial-cms-canvas-note.spatial-cms-movement-note {
  bottom: 86px;
}
.spatial-viewer-remove-scroll-bars {
  overflow: hidden;
}
.full-width > .cms-block-spatial-viewer .cms-spatial-viewer-container-with-canvas {
  height: 75vh;
}
@media (max-width: 991.98px) {
  .full-width > .cms-block-spatial-viewer .cms-spatial-viewer-container-with-canvas {
    height: 70vh;
  }
}
@media (max-width: 991.98px) and (orientation: landscape) {
  .full-width > .cms-block-spatial-viewer .cms-spatial-viewer-container-with-canvas {
    height: 45vh;
  }
}
@media (min-width: 992px) and (orientation: landscape) {
  .full-width > .cms-block-spatial-viewer .cms-spatial-viewer-container-with-canvas {
    height: 70vh;
  }
}
.approval-rule-item, .pending-order-item {
  padding: calc(var(--bs-gutter-x) * 0.5) 0;
  position: relative;
}
.approval-rule-item:not(:last-child), .pending-order-item:not(:last-child) {
  border-bottom: 1px solid;
}
.approval-rule-table-header-label, .pending-order-table-header-label {
  display: none;
}
.approval-rule-table-body-context-menu {
  float: right;
  border: 1px solid #798490;
  border-radius: 0;
  width: 24px;
  height: 24px;
  padding: 0;
}
.approval-rule-table-body-context-menu:after {
  content: unset;
}
.approval-rule-table-body-context-menu .icon {
  margin: 0;
  width: 14px;
  height: 22px;
}
.approval-rule-table-body-context-menu .icon > svg {
  top: 0;
}
.approval-rule-table-header-context-menu-content, .pending-order-table-header-context-menu-content {
  padding-left: 10px;
  padding-right: 10px;
}
@media (max-width: 575.98px) {
  .approval-rule-table-header, .pending-order-table-header {
    display: none;
  }
  .approval-rule-table-body-cell:not(:last-child), .pending-order-table-body-cell:not(:last-child) {
    margin-bottom: 10px;
  }
  .approval-rule-table-header-label, .pending-order-table-body-cell:not(:last-child) {
    display: block;
    float: left;
    width: 50%;
  }
  .approval-rule-table-body-context-menu, .pending-order-table-body-context-menu {
    position: absolute;
    right: 16px;
    top: 16px;
    justify-content: flex-end;
  }
}
@media (min-width: 576px) {
  .approval-rule-table-header-cell:last-child, .approval-rule-table-body-cell:last-child, .pending-order-table-header-cell:last-child, .pending-order-table-body-cell:last-child {
    flex: 70px 0;
    width: 70px;
  }
}
.pending-order-detail-content-header {
  display: none;
}
.pending-order-detail-bagde {
  font-weight: 600;
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .pending-order-detail-content-header {
    display: block;
    padding: 0.5rem 0;
    margin-top: 1rem;
    font-weight: 700;
    border-bottom: 1px solid #bcc1c7;
  }
  .pending-order-header-price, .pending-order-header-total {
    text-align: right;
  }
  .pending-order-header-quantity {
    text-align: center;
  }
}
.account-approval-rule .row, .account-approval-rule .account-content, .account-approval-rule .is-act-cartpage .checkout .checkout-container, .is-act-cartpage .checkout .account-approval-rule .checkout-container, .account-approval-rule .is-act-checkoutregisterpage .checkout .checkout-container, .is-act-checkoutregisterpage .checkout .account-approval-rule .checkout-container, .account-approval-rule .is-act-confirmpage .checkout .checkout-container, .is-act-confirmpage .checkout .account-approval-rule .checkout-container, .account-approval-rule .is-ctl-accountorder .checkout .checkout-container, .is-ctl-accountorder .checkout .account-approval-rule .checkout-container, .account-approval-rule .is-act-finishpage .checkout .checkout-container, .is-act-finishpage .checkout .account-approval-rule .checkout-container, .account-pending-order .row, .account-pending-order .account-content, .account-pending-order .is-act-cartpage .checkout .checkout-container, .is-act-cartpage .checkout .account-pending-order .checkout-container, .account-pending-order .is-act-checkoutregisterpage .checkout .checkout-container, .is-act-checkoutregisterpage .checkout .account-pending-order .checkout-container, .account-pending-order .is-act-confirmpage .checkout .checkout-container, .is-act-confirmpage .checkout .account-pending-order .checkout-container, .account-pending-order .is-ctl-accountorder .checkout .checkout-container, .is-ctl-accountorder .checkout .account-pending-order .checkout-container, .account-pending-order .is-act-finishpage .checkout .checkout-container, .is-act-finishpage .checkout .account-pending-order .checkout-container {
  --bs-gutter-x: 32px;
  --bs-gutter-y: 0;
  margin-left: 0;
  margin-right: 0;
}
.approval-rule-wrapper, .pending-order-wrapper {
  border: 1px solid #bcc1c7;
}
.approval-rule-table-header-cell, .pending-order-table-header-cell {
  text-align: left;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  padding-top: calc(var(--bs-gutter-x) * 0.5);
  padding-bottom: calc(var(--bs-gutter-x) * 0.5);
}
.approval-rule-table-header, .pending-order-table-header {
  border-bottom: solid 2px #00305d;
}
.approval-rule-table-header-cell, .approval-rule-table-body-cell, .pending-order-table-header-cell, .pending-order-table-body-cell {
  display: flex;
  align-items: center;
}
.pending-order-detail-badge {
  --bs-bg-opacity: 1;
}
.pending-order-detail-badge.pending {
  background-color: #bcc1c7;
  color: #f39200;
}
.pending-order-detail-badge.in_review {
  background-color: #26b6cf;
}
.pending-order-detail-badge.approved {
  background-color: #3cc261;
}
.pending-order-detail-badge.declined {
  background-color: #e52427;
}
.pending-order-card .card-title {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  .pending-order-card .card-title {
    font-size: 1.5rem;
  }
}
.pending-detail-action {
  font-size: 0;
}
.pending-order-detail-content-list .line-item-quantity-select-wrapper {
  pointer-events: none;
}
.pending-order-table-header-context-menu-content {
  --bs-link-color: $sw-text-color;
}
.pending-order-table-header-context-menu-content .btn-link {
  background: transparent;
  border: none;
  padding: 7px 6px;
  color: var(--bs-link-color);
  display: block;
}
.pending-order-table-header-context-menu-content .btn-link:hover {
  color: var(--bs-link-hover-color);
}
.pending-order-modal.modal {
  --bs-modal-header-border-width: 1px;
  --bs-modal-padding: 32px;
  --bs-modal-header-padding: 32px 24px;
  --bs-modal-width: 600px;
}
.pending-order-modal.modal .modal-body {
  padding-bottom: 0;
}
.pending-comment {
  margin-top: 24px;
}
.pending-comment .form-label span {
  color: #798490;
}
.pending-comment textarea {
  border-radius: 3px;
}
.pending-comment textarea::placeholder {
  color: #798490;
}
.purchase-table .order-table-header-heading {
  max-width: 300px;
}
.order-item-status-badge, .subscription-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 */
}
.order-item-status-badge.order-item-status-badge-pending, .order-item-status-badge-pending.subscription-item-status-badge {
  background-color: #26b6cf;
  color: #fff;
}
.order-item-status-badge.order-item-status-badge-in-review, .order-item-status-badge-in-review.subscription-item-status-badge {
  background-color: #3cc261;
  color: #fff;
}
.order-item-status-badge.order-item-status-badge-declined, .order-item-status-badge-declined.subscription-item-status-badge {
  background-color: #e52427;
  color: #fff;
}
.order-table-header-order-number .order-table-header-label, .subscription-table-header-info-wrapper .order-table-header-label, .order-table-header-order-number .subscription-table-header-label, .subscription-table-header-info-wrapper .subscription-table-header-label {
  display: inline;
}
.order-table-header-order-table-body-cell.decline-row + .order-item-actions {
  margin-bottom: 1rem;
}
.order-table-header .row > [class*="col-"].decline-row, .order-table-header .account-content > [class*="col-"].decline-row, .order-table-header .is-act-cartpage .checkout .checkout-container > [class*="col-"].decline-row, .is-act-cartpage .checkout .order-table-header .checkout-container > [class*="col-"].decline-row, .order-table-header .is-act-checkoutregisterpage .checkout .checkout-container > [class*="col-"].decline-row, .is-act-checkoutregisterpage .checkout .order-table-header .checkout-container > [class*="col-"].decline-row, .order-table-header .is-act-confirmpage .checkout .checkout-container > [class*="col-"].decline-row, .is-act-confirmpage .checkout .order-table-header .checkout-container > [class*="col-"].decline-row, .order-table-header .is-ctl-accountorder .checkout .checkout-container > [class*="col-"].decline-row, .is-ctl-accountorder .checkout .order-table-header .checkout-container > [class*="col-"].decline-row, .order-table-header .is-act-finishpage .checkout .checkout-container > [class*="col-"].decline-row, .is-act-finishpage .checkout .order-table-header .checkout-container > [class*="col-"].decline-row, .order-item-header .row > [class*="col-"].decline-row, .subscription-item-header .row > [class*="col-"].decline-row, .order-item-header .account-content > [class*="col-"].decline-row, .order-item-header .is-act-cartpage .checkout .checkout-container > [class*="col-"].decline-row, .is-act-cartpage .checkout .order-item-header .checkout-container > [class*="col-"].decline-row, .order-item-header .is-act-checkoutregisterpage .checkout .checkout-container > [class*="col-"].decline-row, .is-act-checkoutregisterpage .checkout .order-item-header .checkout-container > [class*="col-"].decline-row, .order-item-header .is-act-confirmpage .checkout .checkout-container > [class*="col-"].decline-row, .is-act-confirmpage .checkout .order-item-header .checkout-container > [class*="col-"].decline-row, .order-item-header .is-ctl-accountorder .checkout .checkout-container > [class*="col-"].decline-row, .is-ctl-accountorder .checkout .order-item-header .checkout-container > [class*="col-"].decline-row, .order-item-header .is-act-finishpage .checkout .checkout-container > [class*="col-"].decline-row, .is-act-finishpage .checkout .order-item-header .checkout-container > [class*="col-"].decline-row, .subscription-item-header .account-content > [class*="col-"].decline-row, .subscription-item-header .is-act-cartpage .checkout .checkout-container > [class*="col-"].decline-row, .is-act-cartpage .checkout .subscription-item-header .checkout-container > [class*="col-"].decline-row, .subscription-item-header .is-act-checkoutregisterpage .checkout .checkout-container > [class*="col-"].decline-row, .is-act-checkoutregisterpage .checkout .subscription-item-header .checkout-container > [class*="col-"].decline-row, .subscription-item-header .is-act-confirmpage .checkout .checkout-container > [class*="col-"].decline-row, .is-act-confirmpage .checkout .subscription-item-header .checkout-container > [class*="col-"].decline-row, .subscription-item-header .is-ctl-accountorder .checkout .checkout-container > [class*="col-"].decline-row, .is-ctl-accountorder .checkout .subscription-item-header .checkout-container > [class*="col-"].decline-row, .subscription-item-header .is-act-finishpage .checkout .checkout-container > [class*="col-"].decline-row, .is-act-finishpage .checkout .subscription-item-header .checkout-container > [class*="col-"].decline-row, .order-detail-content-header .row > [class*="col-"].decline-row, .subscription-detail-content-header .row > [class*="col-"].decline-row, .order-detail-content-header .account-content > [class*="col-"].decline-row, .order-detail-content-header .is-act-cartpage .checkout .checkout-container > [class*="col-"].decline-row, .is-act-cartpage .checkout .order-detail-content-header .checkout-container > [class*="col-"].decline-row, .order-detail-content-header .is-act-checkoutregisterpage .checkout .checkout-container > [class*="col-"].decline-row, .is-act-checkoutregisterpage .checkout .order-detail-content-header .checkout-container > [class*="col-"].decline-row, .order-detail-content-header .is-act-confirmpage .checkout .checkout-container > [class*="col-"].decline-row, .is-act-confirmpage .checkout .order-detail-content-header .checkout-container > [class*="col-"].decline-row, .order-detail-content-header .is-ctl-accountorder .checkout .checkout-container > [class*="col-"].decline-row, .is-ctl-accountorder .checkout .order-detail-content-header .checkout-container > [class*="col-"].decline-row, .order-detail-content-header .is-act-finishpage .checkout .checkout-container > [class*="col-"].decline-row, .is-act-finishpage .checkout .order-detail-content-header .checkout-container > [class*="col-"].decline-row, .subscription-detail-content-header .account-content > [class*="col-"].decline-row, .subscription-detail-content-header .is-act-cartpage .checkout .checkout-container > [class*="col-"].decline-row, .is-act-cartpage .checkout .subscription-detail-content-header .checkout-container > [class*="col-"].decline-row, .subscription-detail-content-header .is-act-checkoutregisterpage .checkout .checkout-container > [class*="col-"].decline-row, .is-act-checkoutregisterpage .checkout .subscription-detail-content-header .checkout-container > [class*="col-"].decline-row, .subscription-detail-content-header .is-act-confirmpage .checkout .checkout-container > [class*="col-"].decline-row, .is-act-confirmpage .checkout .subscription-detail-content-header .checkout-container > [class*="col-"].decline-row, .subscription-detail-content-header .is-ctl-accountorder .checkout .checkout-container > [class*="col-"].decline-row, .is-ctl-accountorder .checkout .subscription-detail-content-header .checkout-container > [class*="col-"].decline-row, .subscription-detail-content-header .is-act-finishpage .checkout .checkout-container > [class*="col-"].decline-row, .is-act-finishpage .checkout .subscription-detail-content-header .checkout-container > [class*="col-"].decline-row {
  padding-right: 0;
  padding-left: 0;
}
.order-decline-comment-row {
  margin-top: 1rem;
}
.order-decline-comment-row .card-title {
  margin-bottom: 8px;
  padding-bottom: 8px;
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .purchase-item-detail .order-item-detail-summary dt, .purchase-item-detail .subscription-item-detail-summary dt {
    text-align: left;
  }
}
.rule-search-input {
  border-right: 0;
}
.rule-search-btn {
  background: #fff;
  border: 1px solid #bcc1c7;
  border-left: 0;
}
.approval-rule-form {
  padding: 0.5rem 1rem;
  border: 1px solid #bcc1c7;
  background-color: #eee;
}
.approval-rule-empty-state {
  padding: 0.5rem;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #bcc1c7;
  border-top: none;
}
.account-approval-detail .form-group {
  margin-bottom: 8px;
}
.klarnaPaymentsContainerModal {
  border-bottom: 1px solid #bcc1c7;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}
.klarnaPaymentsContainerModal iframe {
  max-width: 100% !important;
}
#klarnaPaymentsContainer iframe {
  max-width: 100% !important;
}
.klarna-payment {
  margin-bottom: 1.5rem;
}
.klarna-payment.has-element-loader {
  min-height: 350px;
  min-width: 100%;
}
.klarna-express.checkout-cart {
  margin-top: 1rem;
}
.klarna-express.checkout-register {
  margin-bottom: 1rem;
}
.klarna-express.offcanvas-cart {
  margin-top: 1rem;
}
.offcanvas-cart .klarna-express-checkout-button {
  width: 100%;
  margin-top: 1rem;
}
/*
 * Layout-related sections
 * ----------------------- */
/*Hauptnavigationsleiste vom Desktop in der mobilen Ansicht immitiert*/
@media (max-width: 992px) {
  .header-main {
    border-bottom: 30px solid #00305d;
  }
}
/*Navigationsleiste Mobil*/
@media (max-width: 575px) {
  .header-main {
    border-bottom: none;
  }
  .header-logo-col {
    margin: 1rem 0 1.75rem 0;
  }
  .header-actions-col {
    background-color: #00305d;
  }
  .header-actions-col .icon > svg path, .header-actions-col .icon > svg use, .header-actions-col .icon > svg polygon {
    fill: #fff;
  }
  .breadcrumb {
    display: none;
  }
  .product-detail {
    margin-top: 0px;
  }
}
.header-search-btn {
  line-height: unset;
}
.header-search-icon {
  vertical-align: text-bottom;
}
.woso-footer-brline {
  background-color: #00305d;
}
.woso-footer-brline .woso-footer-brline-container {
  text-align: center;
  max-width: 1440px;
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
.woso-footer-brline .woso-footer-brline-container .woso-footer-brline-list .woso-footer-brline-item {
  padding: 10px 0;
  display: inline-block;
  margin-right: 50px;
}
.woso-footer-brline .woso-footer-brline-container .woso-footer-brline-list .woso-footer-brline-item .woso-footer-brline-item-icon .icon {
  color: #fff;
}
.woso-footer-brline .woso-footer-brline-container .woso-footer-brline-list .woso-footer-brline-item .woso-footer-brline-item-icon .icon-telefax {
  width: 25px;
  height: 25px;
}
.woso-footer-brline .woso-footer-brline-container .woso-footer-brline-list .woso-footer-brline-item .woso-footer-brline-item-icon .icon-envelope {
  width: 25px;
  height: 25px;
}
.woso-footer-brline .woso-footer-brline-container .woso-footer-brline-list .woso-footer-brline-item .woso-footer-brline-item-text {
  color: #fff;
  font-weight: 700;
  margin-left: 5px;
  line-height: 25px;
  vertical-align: 2px;
}
.footer-main {
  /*mehr Abstand zum mobilen Footer Menü*/
  /*weniger Abstand zum Footer Desktop Menü*/
}
.footer-main .container, .footer-main .cms-section .boxed, .cms-section .footer-main .boxed {
  background-color: #fff;
}
.footer-main .footer-columns {
  margin-top: 40px;
}
.footer-main .footer-column-headline {
  padding: 0.5rem 0;
}
.footer-main .woso-footer-badges {
  margin-top: 20px;
}
.footer-main .woso-footer-badges .woso-footer-badges-protshops {
  text-align: center;
}
.footer-main .woso-footer-badges .woso-footer-badges-protshops .icon-protected-shops {
  width: 80px;
  height: 80px;
}
.footer-main .woso-footer-badges .woso-footer-badges-idealo {
  text-align: center;
  margin-top: 20px;
}
.main-navigation {
  background-color: #00305d;
}
.main-navigation .main-navigation-link-text span {
  color: #fff;
}
.navbar-nav li.nav-link, .nav-link {
  padding: 5px 20px;
  max-width: inherit;
}
.nav-main .main-navigation {
  position: relative;
}
.nav-main .main-navigation .contanier {
  margin: 0;
  width: 100%;
  max-width: 100%;
}
.nav-main .main-navigation .container:first-child, .nav-main .main-navigation .cms-section .boxed:first-child, .cms-section .nav-main .main-navigation .boxed:first-child {
  padding: 0;
}
@media screen and (max-width: 960px) {
  .nav-main {
    display: none;
  }
}
.navbar-nav {
  flex-direction: row;
}
@media screen and (max-width: 1100px) {
  .navbar-nav :last-child .advanced-menu, .navbar-nav :last-child .advanced-menu .navigation-left-top-white-box .container, .navbar-nav :last-child .advanced-menu .navigation-left-top-white-box .cms-section .boxed, .cms-section .navbar-nav :last-child .advanced-menu .navigation-left-top-white-box .boxed {
    min-width: 500px !important;
  }
}
@media screen and (min-width: 1260px) {
  .navbar-nav :last-child .advanced-menu, .navbar-nav :last-child .advanced-menu .navigation-left-top-white-box .container, .navbar-nav :last-child .advanced-menu .navigation-left-top-white-box .cms-section .boxed, .cms-section .navbar-nav :last-child .advanced-menu .navigation-left-top-white-box .boxed {
    width: 1300px !important;
  }
}
.navbar-nav li.nav-link {
  max-width: 110px;
  min-width: 70px;
  height: 55px;
  padding: 0px 15px 0px 15px;
  line-height: 20px;
  text-align: center;
  color: #222;
}
.navbar-nav li.nav-link .nav-link-text {
  font-weight: 700;
}
.navbar-nav li.nav-link > div > span {
  cursor: pointer;
}
.navbar-nav li.nav-link:hover {
  color: #000;
}
.navbar-nav li.nav-link.show {
  color: #000 !important;
}
.navbar-nav li.nav-link.show .nav-link-text {
  border-color: transparent;
}
.menu-h-55 {
  display: block;
  min-height: 45px;
  max-height: 45px;
  height: 45px;
}
.advanced-menu .navigation-left-top-white-box .container, .advanced-menu .navigation-left-top-white-box .cms-section .boxed, .cms-section .advanced-menu .navigation-left-top-white-box .boxed {
  background: #fff !important;
  max-width: 1370px;
  min-width: 600px;
  width: 100%;
}
@media screen and (min-width: 1260px) {
  .advanced-menu .navigation-left-top-white-box .container, .advanced-menu .navigation-left-top-white-box .cms-section .boxed, .cms-section .advanced-menu .navigation-left-top-white-box .boxed {
    width: 1370px !important;
  }
}
.advanced-menu {
  background: none;
  box-shadow: none;
}
.advanced-menu .container, .advanced-menu .cms-section .boxed, .cms-section .advanced-menu .boxed {
  background-color: #fff;
  border: 1px solid #999;
  border-top: 0;
}
.advanced-menu .navigation-flyout-category-link a.nav-link {
  color: #333;
  font-weight: normal;
  max-width: 100%;
  padding: 20px 0 0 0;
}
.advanced-menu .navigation-flyout-container {
  display: table;
  width: 100%;
  padding-top: 20px;
  padding-left: 15px;
  min-height: 300px;
}
.advanced-menu .navigation-flyout-container .navigation-flyout-categories_ {
  display: block;
  float: left;
  width: 25%;
}
.advanced-menu .navigation-flyout-container .navigation-flyout-categories_ ul {
  list-style-type: none;
}
.advanced-menu .navigation-flyout-container .navigation-flyout-categories_ ul li {
  margin-bottom: 5px;
  min-height: 1rem;
  cursor: pointer !important;
}
.advanced-menu .navigation-flyout-container .navigation-flyout-categories_ ul li a {
  text-decoration: none;
  padding: 8px 0 8px 15px;
  display: flow-root;
}
.advanced-menu .navigation-flyout-container .navigation-flyout-categories_ ul li a span {
  font-size: 0.9rem;
  color: #333;
  display: block;
  float: left;
}
.advanced-menu .navigation-flyout-container .navigation-flyout-categories_ ul li a span.icon {
  display: inline-flex;
  float: none;
  width: 0.9rem;
  height: 0.9rem;
  vertical-align: top;
}
.advanced-menu .navigation-flyout-container .navigation-flyout-categories_ ul li a svg.icon.icon-arrow_right {
  width: 0.5rem;
  margin-left: 5px;
  margin-bottom: 2px;
}
.advanced-menu .navigation-flyout-container .navigation-flyout-categories_ ul.navigation-subs-left-part li {
  display: block;
}
.advanced-menu .navigation-flyout-container .navigation-flyout-categories_ ul.navigation-subs-left-part li :hover span {
  font-weight: 700;
}
.advanced-menu .navigation-flyout-container .navigation-flyout-categories_ ul.navigation-subs-left-part li span.navtitle {
  display: block;
  float: left;
  width: 90%;
}
.advanced-menu .navigation-flyout-container .navigation-flyout-categories_ ul.navigation-subs-left-part li.selected {
  font-weight: 700;
  background: #EEE;
}
.advanced-menu .navigation-flyout-container .navigation-flyout-categories_ ul.navigation-subs-left-part li:hover {
  background: #DEDEDE;
}
.advanced-menu .navigation-flyout-container .subCat-right2, .advanced-menu .navigation-flyout-container .subCat-right3, .advanced-menu .navigation-flyout-container .subCat-right {
  width: 25% !important;
}
.advanced-menu .navigation-flyout-container .subCat-right2 ul.navigation-subs-right-part, .advanced-menu .navigation-flyout-container .subCat-right3 ul.navigation-subs-right-part, .advanced-menu .navigation-flyout-container .subCat-right ul.navigation-subs-right-part {
  display: none;
  padding-left: 0;
}
.advanced-menu .navigation-flyout-container .subCat-right2 ul.navigation-subs-right-part li, .advanced-menu .navigation-flyout-container .subCat-right3 ul.navigation-subs-right-part li, .advanced-menu .navigation-flyout-container .subCat-right ul.navigation-subs-right-part li {
  font-weight: normal;
}
.advanced-menu .navigation-flyout-container .subCat-right2 ul.navigation-subs-right-part li span:hover, .advanced-menu .navigation-flyout-container .subCat-right3 ul.navigation-subs-right-part li span:hover, .advanced-menu .navigation-flyout-container .subCat-right ul.navigation-subs-right-part li span:hover {
  color: #000 !important;
}
.advanced-menu .navigation-flyout-container .subCat-right2 ul.navigation-subs-right-part li.selected, .advanced-menu .navigation-flyout-container .subCat-right3 ul.navigation-subs-right-part li.selected, .advanced-menu .navigation-flyout-container .subCat-right ul.navigation-subs-right-part li.selected {
  font-weight: 700;
  background: #EEE;
}
.advanced-menu .navigation-flyout-container .subCat-right2 ul.navigation-subs-right-part li:hover, .advanced-menu .navigation-flyout-container .subCat-right3 ul.navigation-subs-right-part li:hover, .advanced-menu .navigation-flyout-container .subCat-right ul.navigation-subs-right-part li:hover {
  background: #DEDEDE;
}
.advanced-menu .navigation-flyout-bar {
  padding: 0;
  padding-left: 40px;
  position: relative;
}
.advanced-menu .navigation-flyout-bar .navigation-flyout-category-link a.nav-link {
  color: #444;
}
.advanced-menu .navigation-flyout-bar .navigation-flyout-category-link a.nav-link:hover span {
  text-decoration: underline;
}
.advanced-menu .navigation-flyout-bar .navigation-flyout-category-link a.nav-link:hover svg.icon-arrow_right {
  transform: translate(5px, 0) !important;
}
.advanced-menu .navigation-flyout-bar .col-auto {
  position: absolute;
  right: 20px;
}
.advanced-menu .navigation-flyout-bar .navigation-flyout-close svg.icon.icon-cross {
  width: 0.7em;
}
.dropdown-menu {
  border: 0;
}
/*
.navigation-left-top-white-box:before{
    content: "";
    background: $HeaderBackgroundColor;
    border: 0;
    border-left: 1px solid $text-color-dark;
    border-right: 1px solid $text-color-dark;
    display: block;
    position: absolute;
    left: -1px;
    width: 120px;
    height: 20px;
    z-index: 2;
    top: -26px;
}
*/
.cat-rightPart {
  position: relative;
}
@media screen and (max-width: 508px) {
  .nav-main-toggle button.nav-main-toggle-btn {
    position: relative;
    z-index: 2;
  }
}
.breadcrumb {
  padding: 0rem 0;
}
.breadcrumb .breadcrumb-placeholder {
  margin-top: 4px;
}
.breadcrumb .breadcrumb-item .btn:focus, .breadcrumb .breadcrumb-item .btn.focus {
  box-shadow: none;
}
.breadcrumb .breadcrumb-item .show > .btn-secondary.dropdown-toggle {
  background: transparent;
  color: #373737;
  font-weight: normal;
}
.breadcrumb .breadcrumb-item .dropdown.show .btn-secondary .dropdown-toggle {
  background: transparent;
  color: #373737;
  font-weight: normal;
}
.breadcrumb .breadcrumb-item .dropdown-menu {
  border: 1px solid #373737;
}
.breadcrumb .breadcrumb-item .dropdown-menu .dropdown-item.selected {
  background-color: #f9f9f9;
  color: #00305d;
  text-decoration: none;
}
.dropdown .btn.btn-sm, .dropdown .btn-group-sm > .btn {
  padding: 2px 5px 2px 0px;
  border: none;
}
/*größere Schrift im mobilen Menü*/
.navigation-offcanvas-container {
  position: relative;
  font-size: 1rem;
}
/*mehr Abstand im mobilen Menü*/
.navigation-offcanvas-list-item {
  background-color: #fff;
  border-top: 1px solid #bcc1c7;
  padding: 5px 0;
}
/*Offcanvas Menus Mobil*/
.navigation-offcanvas-link-icon .icon > svg polygon {
  fill: currentColor;
}
.offcanvas {
  -webkit-transition: all 0.3s cubic-bezier(0.3, 0, 0.15, 1);
  transition: all 0.3s cubic-bezier(0.3, 0, 0.15, 1);
}
.navigation-offcanvas-overlay.has-transition {
  -webkit-transition: left 0.3s ease-in;
  transition: left 0.3s ease-in;
}
.nav-item.nav-link.is-home-link.navigation-offcanvas-link.js-navigation-offcanvas-link {
  padding: 15px 10px;
}
.navigation-offcanvas-link.is-back-link {
  padding: 15px 10px;
}
.nav-item.nav-link.navigation-offcanvas-headline {
  display: none;
}
.product-detail {
  background-color: #fff;
  padding: 0 20px;
  margin-top: 40px;
  padding: 0;
}
.product-detail .product-detail-headline {
  margin-right: 0;
  margin-left: 0;
}
.product-detail .product-detail-headline .product-detail-name-container {
  width: 100%;
}
.product-detail .product-detail-headline .product-detail-name-container h1.product-detail-name, .product-detail .product-detail-headline .product-detail-name-container .product-detail-name.h1 {
  font-size: 1.5rem;
}
.product-detail .product-detail-headline .woso-product-detail-extname-container {
  width: 100%;
}
.product-detail .product-detail-content .product-detail-delivery-ratings .product-detail-reviews {
  padding-right: 20px;
  padding-left: 0;
  max-width: 40%;
  float: left;
}
.product-detail .product-detail-content .product-detail-delivery-ratings .product-detail-reviews .product-review-rating {
  margin-right: 7rem;
}
.product-detail .product-detail-content .product-detail-delivery-ratings .product-detail-delivery-information {
  padding-right: 0;
  padding-left: 0;
}
.product-detail .product-detail-content .product-detail-delivery-ratings .product-detail-delivery-information p {
  margin-bottom: 0;
}
.product-detail .product-detail-tabs .card-tabs .product-detail-tab-navigation .product-detail-tab-navigation-list {
  width: 100%;
  display: table;
  table-layout: fixed;
}
.product-detail .product-detail-tabs .card-tabs .product-detail-tab-navigation .product-detail-tab-navigation-list .nav-item {
  display: table-cell;
}
.product-detail-description-text {
  font-size: 1rem;
}
/*Varianten-Boxen vergrößert*/
.product-detail-configurator-option-input + .product-detail-configurator-option-label.is-display-text {
  box-shadow: none;
  height: auto;
  padding: 8px 18px;
}
.product-detail-configurator-option-input + .product-detail-configurator-option-label {
  opacity: 0.25;
}
select .SaS_notCombinable {
  color: #aaa;
  background-color: #eee;
}
/*mobile Darstellung der Beschreibung, Datenblatt, etc. angepasst*/
@media (max-width: 992px) {
  .product-detail .product-detail-tabs .card-tabs .product-detail-tab-navigation .product-detail-tab-navigation-list .nav-item {
    display: block;
  }
}
.product-detail-configurator-option-label.is-combinable.is-display-text {
  background: none;
}
.product-detail-manufacturer {
  display: none;
}
.product-detail-headline {
  margin-top: 1rem;
}
.product-detail .product-detail-headline .product-detail-name-container h1.product-detail-name, .product-detail .product-detail-headline .product-detail-name-container .product-detail-name.h1 {
  line-height: initial;
}
.product-name {
  color: #333;
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  height: 48px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 16px;
}
.product-description {
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  height: 28px;
  margin-top: 10px;
  font-size: 13px;
  line-height: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-description .product-manufacturer-info {
  display: flex;
}
.product-description .product-manufacturer-info .woso-col-3 {
  padding-right: 0;
  height: 14px;
  font-size: 13px;
  line-height: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 30%;
  white-space: nowrap;
}
.product-description .product-manufacturer-info .woso-col-4 {
  padding-right: 0;
  height: 14px;
  font-size: 13px;
  line-height: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 40%;
  white-space: nowrap;
}
.product-description .product-manufacturer-info .woso-col-6 {
  padding-right: 0;
  height: 14px;
  font-size: 13px;
  line-height: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 60%;
  white-space: nowrap;
}
.product-description .product-manufacturer-info .woso-col-7 {
  padding-right: 0;
  height: 14px;
  font-size: 13px;
  line-height: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 70%;
  white-space: nowrap;
}
.product-price-info {
  text-align: right;
}
.product-price-info .product-price {
  color: #de8500;
}
.product-price-info .product-price-unit {
  height: 18px;
  margin-top: 0;
  margin-bottom: 0;
}
.product-price-info .woso-cheapest-lable {
  font-size: 12px;
}
.product-action {
  margin-top: 5px;
}
/*
Filter panel woso
==============================================
Styling for filter panel component.
This file contains the generic styling for all filter items.
*/
.search-page .filter-panel .filter-panel-items-container, .woso_top_filter .filter-panel .filter-panel-items-container {
  margin-left: -15px;
  margin-right: -15px;
  width: inherit;
}
.search-page .filter-panel .filter-panel-items-container > div, .woso_top_filter .filter-panel .filter-panel-items-container > div {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: 0;
  margin-right: 0;
}
.search-page .filter-panel .filter-panel-items-container > div button, .woso_top_filter .filter-panel .filter-panel-items-container > div button {
  width: 100%;
}
.search-page .filter-panel .filter-panel-items-container > div .dropdown-menu, .woso_top_filter .filter-panel .filter-panel-items-container > div .dropdown-menu {
  border: 1px solid #999;
  margin-top: -9px;
}
.search-page .filter-panel .filter-panel-items-container .filter-boolean, .woso_top_filter .filter-panel .filter-panel-items-container .filter-boolean {
  border: 0;
}
.search-page .filter-panel .filter-panel-items-container .filter-boolean .custom-control, .woso_top_filter .filter-panel .filter-panel-items-container .filter-boolean .custom-control {
  border: 1px solid #bcc1c7;
}
.search-page .filter-panel .filter-panel-items-container .filter-boolean .custom-control label, .woso_top_filter .filter-panel .filter-panel-items-container .filter-boolean .custom-control label {
  margin-left: 20px;
}
.search-page .filter-panel .filter-panel-items-container .woso_filter_min_props_container, .woso_top_filter .filter-panel .filter-panel-items-container .woso_filter_min_props_container {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  margin-left: -15px;
  margin-right: -15px;
  width: inherit;
  box-sizing: border-box;
}
.search-page .filter-panel .filter-panel-items-container .woso_filter_min_props_container .collapse:not(.show), .woso_top_filter .filter-panel .filter-panel-items-container .woso_filter_min_props_container .collapse:not(.show) {
  display: none;
}
.search-page .filter-panel .filter-panel-items-container .woso_filter_min_props_container > div, .woso_top_filter .filter-panel .filter-panel-items-container .woso_filter_min_props_container > div {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: 0;
  margin-right: 0;
}
.search-page .filter-panel .filter-panel-items-container .woso_filter_min_props_container > div button, .woso_top_filter .filter-panel .filter-panel-items-container .woso_filter_min_props_container > div button {
  width: 100%;
}
.search-page .filter-panel .filter-panel-items-container .woso_filter_min_props_container > div .dropdown-menu, .woso_top_filter .filter-panel .filter-panel-items-container .woso_filter_min_props_container > div .dropdown-menu {
  border: 1px solid #999;
  margin-top: -9px;
}
.search-page .woso_filter_min, .woso_top_filter .woso_filter_min {
  display: block;
}
.search-page .woso_filter_min.collapse.show, .woso_top_filter .woso_filter_min.collapse.show {
  height: inherit;
  overflow: inherit;
}
.search-page .woso_top_filter_more, .woso_top_filter .woso_top_filter_more {
  display: block;
  text-align: right;
}
.search-page .woso_top_filter_more [data-bs-toggle="collapse"].collapsed .if-not-collapsed, .woso_top_filter .woso_top_filter_more [data-bs-toggle="collapse"].collapsed .if-not-collapsed {
  display: none;
}
.search-page .woso_top_filter_more [data-bs-toggle="collapse"]:not(.collapsed) .if-collapsed, .woso_top_filter .woso_top_filter_more [data-bs-toggle="collapse"]:not(.collapsed) .if-collapsed {
  display: none;
}
.search-page .filter-panel .filter-panel-items-container > div, .woso_top_filter .filter-panel .filter-panel-items-container > div {
  flex: 0 0 25%;
  max-width: 25%;
}
.search-page .woso_top_filter_more, .woso_top_filter .woso_top_filter_more {
  margin-bottom: 15px;
}
.woso_top_filter_more {
  display: none;
}
.offcanvas-filter #woso_filter_panel.collapse:not(.show) {
  display: flex;
}
/*
Sidebar category navigation
==============================================
Styling for category navigation component.
*/
.category-navigation-link {
  padding: 8px 0px;
}
/*
CMS sections
==============================================
General styling for cms sections
*/
.cms-section-sidebar-sidebar-content {
  padding-left: 0px;
  padding-right: 0px;
}
/*
CMS blocks
==============================================
General styling for cms blocks and
specific styling for elements dependent on their parent block
*/
.cms-element-text {
  font-size: 1.1rem;
}
.cms-element-text h1, .cms-element-text .h1 {
  font-size: 2.5rem;
  line-height: normal;
}
html {
  scroll-behavior: smooth;
}
/*Custom Products*/
.swag-customized-products {
  margin: 2rem 0;
}
.swag-customized-product__price-display-holder {
  display: none;
}
.swag-customized-products-share__card {
  display: none;
}
@media (max-width: 767.98px) {
  .swag-customized-products .swag-customized-products__card {
    padding: 20px 20px 0 20px;
  }
}
.btn-block {
  display: block;
  width: 100%;
}
.btn, .btn-primary, .address-editor-select:not(.collapsed), .address-editor-edit:not(.collapsed), .address-editor-create:not(.collapsed), .btn-secondary, .btn-buy {
  --bs-btn-disabled-bg: #eee;
  --bs-btn-disabled-border-color: #eee;
}
