﻿@charset "UTF-8";

:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #798490;
  --gray-dark: #4a545b;
  --primary: #e30613;
  --secondary: #f6f6f6;
  --success: #3cc261;
  --info: #26b6cf;
  --warning: #ffbd5d;
  --danger: #e52427;
  --light: #f9f9f9;
  --dark: #4a545b;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1025px;
  --breakpoint-xl: 1200px;
  --breakpoint-xxl: 1400px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

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

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

body {
  margin: 0;
  font-family: Gothic A1, sans-serif;
  font-size: .9375rem;
  font-weight: 400;
  line-height: 1.5;
  color: #111;
  text-align: left;
  background-color: #fff;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: .5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

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: .5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

a {
  color: #e30613;
  text-decoration: none;
  background-color: transparent;
}

a:hover {
/*  color: #98040d;
  text-decoration: underline;*/
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):hover,
a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: .75rem;
  padding-bottom: .75rem;
  color: #798490;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
}

label {
  display: inline-block;
  margin-bottom: .5rem;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

select {
  word-wrap: normal;
}

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;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type="radio"],
input[type="checkbox"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

@media (max-width:1200px) {
  legend {
    font-size: calc(1.275rem + .3vw);
  }
}

progress {
  vertical-align: baseline;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin-bottom: .5rem;
  font-family: Gothic A1, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #3f4c58;
}

h1,
.h1 {
  font-size: 2.25rem;
}

@media (max-width:1200px) {

  h1,
  .h1 {
    font-size: calc(1.35rem + 1.2vw);
  }
}

h2,
.h2 {
  font-size: 1.75rem;
}

@media (max-width:1200px) {

  h2,
  .h2 {
    font-size: calc(1.3rem + .6vw);
  }
}

h3,
.h3 {
  font-size: 1.5rem;
}

@media (max-width:1200px) {

  h3,
  .h3 {
    font-size: calc(1.275rem + .3vw);
  }
}

h4,
.h4 {
  font-size: 1.25rem;
}

h5,
.h5 {
  font-size: 1rem;
}

h6,
.h6 {
  font-size: .875rem;
}

.lead {
  font-size: 1.171875rem;
  font-weight: 300;
}

.display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.2;
}

@media (max-width:1200px) {
  .display-1 {
    font-size: calc(1.725rem + 5.7vw);
  }
}

.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.2;
}

@media (max-width:1200px) {
  .display-2 {
    font-size: calc(1.675rem + 5.1vw);
  }
}

.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.2;
}

@media (max-width:1200px) {
  .display-3 {
    font-size: calc(1.575rem + 3.9vw);
  }
}

.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
}

@media (max-width:1200px) {
  .display-4 {
    font-size: calc(1.475rem + 2.7vw);
  }
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, .1);
}

small,
.small {
  font-size: 80%;
  font-weight: 400;
}

mark,
.mark {
  padding: .2em;
  background-color: #fcf8e3;
}

.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: .5rem;
}

.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.171875rem;
}

.blockquote-footer {
  display: block;
  font-size: 80%;
  color: #798490;
}

.blockquote-footer::before {
  content: "— ";
}

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

.img-thumbnail {
  padding: .25rem;
  background-color: #fff;
  border: 1px solid #bcc1c7;
  border-radius: 3px;
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: .5rem;
  line-height: 1;
}

.figure-caption {
  font-size: 90%;
  color: #798490;
}

code {
  font-size: 87.5%;
  color: #e83e8c;
  -ms-word-break: break-word;
  word-break: break-word;
}

a > code {
  color: inherit;
}

kbd {
  padding: .2rem .4rem;
  font-size: 87.5%;
  color: #fff;
  background-color: #212529;
  border-radius: 3px;
}

kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
}

pre {
  display: block;
  font-size: 87.5%;
  color: #212529;
}

pre code {
  font-size: inherit;
  color: inherit;
  -ms-word-break: normal;
  word-break: normal;
}

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

.container,
.cms-section .boxed {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width:576px) {

  .container,
  .cms-section .boxed {
    max-width: 540px;
  }
}

@media (min-width:768px) {

  .container,
  .cms-section .boxed {
    max-width: 720px;
  }
}

@media (min-width:1025px) {

  .container,
  .cms-section .boxed {
    max-width: 960px;
  }
}

@media (min-width:1200px) {

  .container,
  .cms-section .boxed {
    max-width: 1140px;
  }
}

.container-fluid {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}

.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 {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -20px;
  margin-left: -20px;
}

.no-gutters,
.cms-block.no-gutters .cms-block-container-row {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.cms-block.no-gutters .cms-block-container-row > .col,
.is-act-confirmpage .checkout .no-gutters > .checkout-aside,
.is-act-confirmpage .checkout .cms-block.no-gutters .cms-block-container-row > .checkout-aside,
.cms-block.no-gutters .is-act-confirmpage .checkout .cms-block-container-row > .checkout-aside,
.is-ctl-accountorder .checkout .no-gutters > .checkout-aside,
.is-ctl-accountorder .checkout .cms-block.no-gutters .cms-block-container-row > .checkout-aside,
.cms-block.no-gutters .is-ctl-accountorder .checkout .cms-block-container-row > .checkout-aside,
.is-act-finishpage .checkout .no-gutters > .checkout-aside,
.is-act-finishpage .checkout .cms-block.no-gutters .cms-block-container-row > .checkout-aside,
.cms-block.no-gutters .is-act-finishpage .checkout .cms-block-container-row > .checkout-aside,
.no-gutters > .scroll-navigation-sidebar-entry,
.cms-block.no-gutters .cms-block-container-row > .scroll-navigation-sidebar-entry,
.no-gutters > [class*="col-"],
.cms-block.no-gutters .cms-block-container-row > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6,
.col-11,
.col-12,
.cms-block-elio-slider-element .elio-slider-element .singleElement .card .image-wrapper,
.cms-block-elio-slider-element .elio-slider-element .singleElement .card .card-body,
.checkout-additional .form-group.col-lg-4,
.checkout-additional .hbspt-form .col-lg-4.hs-form-booleancheckbox,
.checkout-additional .hbspt-form .is-act-cartpage .checkout .hs-form-booleancheckbox.checkout-aside,
.is-act-cartpage .checkout .checkout-additional .hbspt-form .hs-form-booleancheckbox.checkout-aside,
.checkout-additional .hbspt-form .is-act-checkoutregisterpage .checkout .hs-form-booleancheckbox.checkout-aside,
.is-act-checkoutregisterpage .checkout .checkout-additional .hbspt-form .hs-form-booleancheckbox.checkout-aside,
.checkout-additional .hbspt-form .is-act-confirmpage .checkout .hs-form-booleancheckbox.checkout-additional,
.is-act-confirmpage .checkout .checkout-additional .hbspt-form .hs-form-booleancheckbox.checkout-additional,
.checkout-additional .hbspt-form .is-ctl-accountorder .checkout .hs-form-booleancheckbox.checkout-additional,
.is-ctl-accountorder .checkout .checkout-additional .hbspt-form .hs-form-booleancheckbox.checkout-additional,
.checkout-additional .hbspt-form .is-act-confirmpage .checkout .hs-form-booleancheckbox.checkout-aside,
.is-act-confirmpage .checkout .checkout-additional .hbspt-form .hs-form-booleancheckbox.checkout-aside,
.checkout-additional .hbspt-form .is-ctl-accountorder .checkout .hs-form-booleancheckbox.checkout-aside,
.is-ctl-accountorder .checkout .checkout-additional .hbspt-form .hs-form-booleancheckbox.checkout-aside,
.checkout-additional .hbspt-form .is-act-finishpage .checkout .hs-form-booleancheckbox.checkout-additional,
.is-act-finishpage .checkout .checkout-additional .hbspt-form .hs-form-booleancheckbox.checkout-additional,
.checkout-additional .hbspt-form .is-act-finishpage .checkout .hs-form-booleancheckbox.checkout-aside,
.is-act-finishpage .checkout .checkout-additional .hbspt-form .hs-form-booleancheckbox.checkout-aside,
.hbspt-form .checkout-additional .col-lg-4.hs-form-booleancheckbox,
.checkout-additional .hbspt-form .col-lg-4.hs-form-field,
.checkout-additional .hbspt-form .is-act-cartpage .checkout .hs-form-field.checkout-aside,
.is-act-cartpage .checkout .checkout-additional .hbspt-form .hs-form-field.checkout-aside,
.checkout-additional .hbspt-form .is-act-checkoutregisterpage .checkout .hs-form-field.checkout-aside,
.is-act-checkoutregisterpage .checkout .checkout-additional .hbspt-form .hs-form-field.checkout-aside,
.checkout-additional .hbspt-form .is-act-confirmpage .checkout .hs-form-field.checkout-additional,
.is-act-confirmpage .checkout .checkout-additional .hbspt-form .hs-form-field.checkout-additional,
.checkout-additional .hbspt-form .is-ctl-accountorder .checkout .hs-form-field.checkout-additional,
.is-ctl-accountorder .checkout .checkout-additional .hbspt-form .hs-form-field.checkout-additional,
.checkout-additional .hbspt-form .is-act-confirmpage .checkout .hs-form-field.checkout-aside,
.is-act-confirmpage .checkout .checkout-additional .hbspt-form .hs-form-field.checkout-aside,
.checkout-additional .hbspt-form .is-ctl-accountorder .checkout .hs-form-field.checkout-aside,
.is-ctl-accountorder .checkout .checkout-additional .hbspt-form .hs-form-field.checkout-aside,
.checkout-additional .hbspt-form .is-act-finishpage .checkout .hs-form-field.checkout-additional,
.is-act-finishpage .checkout .checkout-additional .hbspt-form .hs-form-field.checkout-additional,
.checkout-additional .hbspt-form .is-act-finishpage .checkout .hs-form-field.checkout-aside,
.is-act-finishpage .checkout .checkout-additional .hbspt-form .hs-form-field.checkout-aside,
.hbspt-form .checkout-additional .col-lg-4.hs-form-field,
.checkout-additional .is-act-cartpage .checkout .form-group.checkout-aside,
.checkout-additional .is-act-cartpage .checkout .hbspt-form .checkout-aside.hs-form-booleancheckbox,
.hbspt-form .checkout-additional .is-act-cartpage .checkout .checkout-aside.hs-form-booleancheckbox,
.checkout-additional .is-act-cartpage .checkout .hbspt-form .checkout-aside.hs-form-field,
.hbspt-form .checkout-additional .is-act-cartpage .checkout .checkout-aside.hs-form-field,
.is-act-cartpage .checkout .checkout-additional .form-group.checkout-aside,
.checkout-additional .is-act-checkoutregisterpage .checkout .form-group.checkout-aside,
.checkout-additional .is-act-checkoutregisterpage .checkout .hbspt-form .checkout-aside.hs-form-booleancheckbox,
.hbspt-form .checkout-additional .is-act-checkoutregisterpage .checkout .checkout-aside.hs-form-booleancheckbox,
.checkout-additional .is-act-checkoutregisterpage .checkout .hbspt-form .checkout-aside.hs-form-field,
.hbspt-form .checkout-additional .is-act-checkoutregisterpage .checkout .checkout-aside.hs-form-field,
.is-act-checkoutregisterpage .checkout .checkout-additional .form-group.checkout-aside,
.checkout-additional .is-act-confirmpage .checkout .form-group.checkout-additional,
.checkout-additional .is-act-confirmpage .checkout .hbspt-form .checkout-additional.hs-form-booleancheckbox,
.hbspt-form .checkout-additional .is-act-confirmpage .checkout .checkout-additional.hs-form-booleancheckbox,
.checkout-additional .is-act-confirmpage .checkout .hbspt-form .checkout-additional.hs-form-field,
.hbspt-form .checkout-additional .is-act-confirmpage .checkout .checkout-additional.hs-form-field,
.is-act-confirmpage .checkout .checkout-additional .form-group.checkout-additional,
.checkout-additional .is-ctl-accountorder .checkout .form-group.checkout-additional,
.checkout-additional .is-ctl-accountorder .checkout .hbspt-form .checkout-additional.hs-form-booleancheckbox,
.hbspt-form .checkout-additional .is-ctl-accountorder .checkout .checkout-additional.hs-form-booleancheckbox,
.checkout-additional .is-ctl-accountorder .checkout .hbspt-form .checkout-additional.hs-form-field,
.hbspt-form .checkout-additional .is-ctl-accountorder .checkout .checkout-additional.hs-form-field,
.is-ctl-accountorder .checkout .checkout-additional .form-group.checkout-additional,
.checkout-additional .is-act-confirmpage .checkout .form-group.checkout-aside,
.checkout-additional .is-act-confirmpage .checkout .hbspt-form .checkout-aside.hs-form-booleancheckbox,
.hbspt-form .checkout-additional .is-act-confirmpage .checkout .checkout-aside.hs-form-booleancheckbox,
.checkout-additional .is-act-confirmpage .checkout .hbspt-form .checkout-aside.hs-form-field,
.hbspt-form .checkout-additional .is-act-confirmpage .checkout .checkout-aside.hs-form-field,
.is-act-confirmpage .checkout .checkout-additional .form-group.checkout-aside,
.checkout-additional .is-ctl-accountorder .checkout .form-group.checkout-aside,
.checkout-additional .is-ctl-accountorder .checkout .hbspt-form .checkout-aside.hs-form-booleancheckbox,
.hbspt-form .checkout-additional .is-ctl-accountorder .checkout .checkout-aside.hs-form-booleancheckbox,
.checkout-additional .is-ctl-accountorder .checkout .hbspt-form .checkout-aside.hs-form-field,
.hbspt-form .checkout-additional .is-ctl-accountorder .checkout .checkout-aside.hs-form-field,
.is-ctl-accountorder .checkout .checkout-additional .form-group.checkout-aside,
.checkout-additional .is-act-finishpage .checkout .form-group.checkout-additional,
.checkout-additional .is-act-finishpage .checkout .hbspt-form .checkout-additional.hs-form-booleancheckbox,
.hbspt-form .checkout-additional .is-act-finishpage .checkout .checkout-additional.hs-form-booleancheckbox,
.checkout-additional .is-act-finishpage .checkout .hbspt-form .checkout-additional.hs-form-field,
.hbspt-form .checkout-additional .is-act-finishpage .checkout .checkout-additional.hs-form-field,
.is-act-finishpage .checkout .checkout-additional .form-group.checkout-additional,
.checkout-additional .is-act-finishpage .checkout .form-group.checkout-aside,
.checkout-additional .is-act-finishpage .checkout .hbspt-form .checkout-aside.hs-form-booleancheckbox,
.hbspt-form .checkout-additional .is-act-finishpage .checkout .checkout-aside.hs-form-booleancheckbox,
.checkout-additional .is-act-finishpage .checkout .hbspt-form .checkout-aside.hs-form-field,
.hbspt-form .checkout-additional .is-act-finishpage .checkout .checkout-aside.hs-form-field,
.is-act-finishpage .checkout .checkout-additional .form-group.checkout-aside,
.product-detail-tabs-content .tab-pane#accessories-tab-pane,
.col,
.is-act-confirmpage .checkout .checkout-aside,
.is-ctl-accountorder .checkout .checkout-aside,
.is-act-finishpage .checkout .checkout-aside,
.scroll-navigation-sidebar-entry,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.is-act-confirmpage .checkout .checkout-additional,
.is-ctl-accountorder .checkout .checkout-additional,
.col-sm-7,
.is-act-finishpage .checkout .checkout-additional,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.footer-columns > .footer-column:nth-child(3),
.cart-item-row .cart-item-remove,
.col-md-3,
.col-md-4,
.col-md-5,
.is-act-cartpage .checkout .checkout-aside,
.col-md-6,
.is-act-checkoutregisterpage .checkout .checkout-aside,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.product-detail-tabs-content .tab-pane,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.account-content .account-content-aside,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.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,
.col-lg-9,
.account-content .account-content-main,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto,
.col-xxl-1,
.col-xxl-2,
.col-xxl-3,
.col-xxl-4,
.col-xxl-5,
.col-xxl-6,
.col-xxl-7,
.col-xxl-8,
.col-xxl-9,
.col-xxl-10,
.col-xxl-11,
.col-xxl-12,
.col-xxl,
.col-xxl-auto {
  position: relative;
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
}

.col,
.is-act-confirmpage .checkout .checkout-aside,
.is-ctl-accountorder .checkout .checkout-aside,
.is-act-finishpage .checkout .checkout-aside,
.scroll-navigation-sidebar-entry {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

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

.col-1 {
  -ms-flex: 0 0 8.3333333333%;
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-2 {
  -ms-flex: 0 0 16.6666666667%;
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-3 {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -ms-flex: 0 0 33.3333333333%;
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-5 {
  -ms-flex: 0 0 41.6666666667%;
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-6 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -ms-flex: 0 0 58.3333333333%;
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-8 {
  -ms-flex: 0 0 66.6666666667%;
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-9 {
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6 {
  -ms-flex: 0 0 83.3333333333%;
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-11 {
  -ms-flex: 0 0 91.6666666667%;
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-12,
.cms-block-elio-slider-element .elio-slider-element .singleElement .card .image-wrapper,
.cms-block-elio-slider-element .elio-slider-element .singleElement .card .card-body,
.checkout-additional .form-group.col-lg-4,
.checkout-additional .hbspt-form .col-lg-4.hs-form-booleancheckbox,
.checkout-additional .hbspt-form .is-act-cartpage .checkout .hs-form-booleancheckbox.checkout-aside,
.is-act-cartpage .checkout .checkout-additional .hbspt-form .hs-form-booleancheckbox.checkout-aside,
.checkout-additional .hbspt-form .is-act-checkoutregisterpage .checkout .hs-form-booleancheckbox.checkout-aside,
.is-act-checkoutregisterpage .checkout .checkout-additional .hbspt-form .hs-form-booleancheckbox.checkout-aside,
.checkout-additional .hbspt-form .is-act-confirmpage .checkout .hs-form-booleancheckbox.checkout-additional,
.is-act-confirmpage .checkout .checkout-additional .hbspt-form .hs-form-booleancheckbox.checkout-additional,
.checkout-additional .hbspt-form .is-ctl-accountorder .checkout .hs-form-booleancheckbox.checkout-additional,
.is-ctl-accountorder .checkout .checkout-additional .hbspt-form .hs-form-booleancheckbox.checkout-additional,
.checkout-additional .hbspt-form .is-act-confirmpage .checkout .hs-form-booleancheckbox.checkout-aside,
.is-act-confirmpage .checkout .checkout-additional .hbspt-form .hs-form-booleancheckbox.checkout-aside,
.checkout-additional .hbspt-form .is-ctl-accountorder .checkout .hs-form-booleancheckbox.checkout-aside,
.is-ctl-accountorder .checkout .checkout-additional .hbspt-form .hs-form-booleancheckbox.checkout-aside,
.checkout-additional .hbspt-form .is-act-finishpage .checkout .hs-form-booleancheckbox.checkout-additional,
.is-act-finishpage .checkout .checkout-additional .hbspt-form .hs-form-booleancheckbox.checkout-additional,
.checkout-additional .hbspt-form .is-act-finishpage .checkout .hs-form-booleancheckbox.checkout-aside,
.is-act-finishpage .checkout .checkout-additional .hbspt-form .hs-form-booleancheckbox.checkout-aside,
.hbspt-form .checkout-additional .col-lg-4.hs-form-booleancheckbox,
.checkout-additional .hbspt-form .col-lg-4.hs-form-field,
.checkout-additional .hbspt-form .is-act-cartpage .checkout .hs-form-field.checkout-aside,
.is-act-cartpage .checkout .checkout-additional .hbspt-form .hs-form-field.checkout-aside,
.checkout-additional .hbspt-form .is-act-checkoutregisterpage .checkout .hs-form-field.checkout-aside,
.is-act-checkoutregisterpage .checkout .checkout-additional .hbspt-form .hs-form-field.checkout-aside,
.checkout-additional .hbspt-form .is-act-confirmpage .checkout .hs-form-field.checkout-additional,
.is-act-confirmpage .checkout .checkout-additional .hbspt-form .hs-form-field.checkout-additional,
.checkout-additional .hbspt-form .is-ctl-accountorder .checkout .hs-form-field.checkout-additional,
.is-ctl-accountorder .checkout .checkout-additional .hbspt-form .hs-form-field.checkout-additional,
.checkout-additional .hbspt-form .is-act-confirmpage .checkout .hs-form-field.checkout-aside,
.is-act-confirmpage .checkout .checkout-additional .hbspt-form .hs-form-field.checkout-aside,
.checkout-additional .hbspt-form .is-ctl-accountorder .checkout .hs-form-field.checkout-aside,
.is-ctl-accountorder .checkout .checkout-additional .hbspt-form .hs-form-field.checkout-aside,
.checkout-additional .hbspt-form .is-act-finishpage .checkout .hs-form-field.checkout-additional,
.is-act-finishpage .checkout .checkout-additional .hbspt-form .hs-form-field.checkout-additional,
.checkout-additional .hbspt-form .is-act-finishpage .checkout .hs-form-field.checkout-aside,
.is-act-finishpage .checkout .checkout-additional .hbspt-form .hs-form-field.checkout-aside,
.hbspt-form .checkout-additional .col-lg-4.hs-form-field,
.checkout-additional .is-act-cartpage .checkout .form-group.checkout-aside,
.checkout-additional .is-act-cartpage .checkout .hbspt-form .checkout-aside.hs-form-booleancheckbox,
.hbspt-form .checkout-additional .is-act-cartpage .checkout .checkout-aside.hs-form-booleancheckbox,
.checkout-additional .is-act-cartpage .checkout .hbspt-form .checkout-aside.hs-form-field,
.hbspt-form .checkout-additional .is-act-cartpage .checkout .checkout-aside.hs-form-field,
.is-act-cartpage .checkout .checkout-additional .form-group.checkout-aside,
.checkout-additional .is-act-checkoutregisterpage .checkout .form-group.checkout-aside,
.checkout-additional .is-act-checkoutregisterpage .checkout .hbspt-form .checkout-aside.hs-form-booleancheckbox,
.hbspt-form .checkout-additional .is-act-checkoutregisterpage .checkout .checkout-aside.hs-form-booleancheckbox,
.checkout-additional .is-act-checkoutregisterpage .checkout .hbspt-form .checkout-aside.hs-form-field,
.hbspt-form .checkout-additional .is-act-checkoutregisterpage .checkout .checkout-aside.hs-form-field,
.is-act-checkoutregisterpage .checkout .checkout-additional .form-group.checkout-aside,
.checkout-additional .is-act-confirmpage .checkout .form-group.checkout-additional,
.checkout-additional .is-act-confirmpage .checkout .hbspt-form .checkout-additional.hs-form-booleancheckbox,
.hbspt-form .checkout-additional .is-act-confirmpage .checkout .checkout-additional.hs-form-booleancheckbox,
.checkout-additional .is-act-confirmpage .checkout .hbspt-form .checkout-additional.hs-form-field,
.hbspt-form .checkout-additional .is-act-confirmpage .checkout .checkout-additional.hs-form-field,
.is-act-confirmpage .checkout .checkout-additional .form-group.checkout-additional,
.checkout-additional .is-ctl-accountorder .checkout .form-group.checkout-additional,
.checkout-additional .is-ctl-accountorder .checkout .hbspt-form .checkout-additional.hs-form-booleancheckbox,
.hbspt-form .checkout-additional .is-ctl-accountorder .checkout .checkout-additional.hs-form-booleancheckbox,
.checkout-additional .is-ctl-accountorder .checkout .hbspt-form .checkout-additional.hs-form-field,
.hbspt-form .checkout-additional .is-ctl-accountorder .checkout .checkout-additional.hs-form-field,
.is-ctl-accountorder .checkout .checkout-additional .form-group.checkout-additional,
.checkout-additional .is-act-confirmpage .checkout .form-group.checkout-aside,
.checkout-additional .is-act-confirmpage .checkout .hbspt-form .checkout-aside.hs-form-booleancheckbox,
.hbspt-form .checkout-additional .is-act-confirmpage .checkout .checkout-aside.hs-form-booleancheckbox,
.checkout-additional .is-act-confirmpage .checkout .hbspt-form .checkout-aside.hs-form-field,
.hbspt-form .checkout-additional .is-act-confirmpage .checkout .checkout-aside.hs-form-field,
.is-act-confirmpage .checkout .checkout-additional .form-group.checkout-aside,
.checkout-additional .is-ctl-accountorder .checkout .form-group.checkout-aside,
.checkout-additional .is-ctl-accountorder .checkout .hbspt-form .checkout-aside.hs-form-booleancheckbox,
.hbspt-form .checkout-additional .is-ctl-accountorder .checkout .checkout-aside.hs-form-booleancheckbox,
.checkout-additional .is-ctl-accountorder .checkout .hbspt-form .checkout-aside.hs-form-field,
.hbspt-form .checkout-additional .is-ctl-accountorder .checkout .checkout-aside.hs-form-field,
.is-ctl-accountorder .checkout .checkout-additional .form-group.checkout-aside,
.checkout-additional .is-act-finishpage .checkout .form-group.checkout-additional,
.checkout-additional .is-act-finishpage .checkout .hbspt-form .checkout-additional.hs-form-booleancheckbox,
.hbspt-form .checkout-additional .is-act-finishpage .checkout .checkout-additional.hs-form-booleancheckbox,
.checkout-additional .is-act-finishpage .checkout .hbspt-form .checkout-additional.hs-form-field,
.hbspt-form .checkout-additional .is-act-finishpage .checkout .checkout-additional.hs-form-field,
.is-act-finishpage .checkout .checkout-additional .form-group.checkout-additional,
.checkout-additional .is-act-finishpage .checkout .form-group.checkout-aside,
.checkout-additional .is-act-finishpage .checkout .hbspt-form .checkout-aside.hs-form-booleancheckbox,
.hbspt-form .checkout-additional .is-act-finishpage .checkout .checkout-aside.hs-form-booleancheckbox,
.checkout-additional .is-act-finishpage .checkout .hbspt-form .checkout-aside.hs-form-field,
.hbspt-form .checkout-additional .is-act-finishpage .checkout .checkout-aside.hs-form-field,
.is-act-finishpage .checkout .checkout-additional .form-group.checkout-aside,
.product-detail-tabs-content .tab-pane#accessories-tab-pane {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  -ms-flex-order: -1;
  order: -1;
}

.order-last {
  -ms-flex-order: 13;
  order: 13;
}

.order-0 {
  -ms-flex-order: 0;
  order: 0;
}

.order-1 {
  -ms-flex-order: 1;
  order: 1;
}

.order-2 {
  -ms-flex-order: 2;
  order: 2;
}

.order-3 {
  -ms-flex-order: 3;
  order: 3;
}

.order-4 {
  -ms-flex-order: 4;
  order: 4;
}

.order-5 {
  -ms-flex-order: 5;
  order: 5;
}

.order-6 {
  -ms-flex-order: 6;
  order: 6;
}

.order-7 {
  -ms-flex-order: 7;
  order: 7;
}

.order-8 {
  -ms-flex-order: 8;
  order: 8;
}

.order-9 {
  -ms-flex-order: 9;
  order: 9;
}

.order-10 {
  -ms-flex-order: 10;
  order: 10;
}

.order-11 {
  -ms-flex-order: 11;
  order: 11;
}

.order-12 {
  -ms-flex-order: 12;
  order: 12;
}

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

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

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

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

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

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

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

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

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

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

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

@media (min-width:576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-sm-auto,
  .scroll-navigation-sidebar-entry {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-sm-1 {
    -ms-flex: 0 0 8.3333333333%;
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-sm-2 {
    -ms-flex: 0 0 16.6666666667%;
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-sm-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    -ms-flex: 0 0 33.3333333333%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-sm-5 {
    -ms-flex: 0 0 41.6666666667%;
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-sm-6,
  .is-act-confirmpage .checkout .checkout-additional,
  .is-ctl-accountorder .checkout .checkout-additional {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-7,
  .is-act-finishpage .checkout .checkout-additional,
  .is-act-finishpage .checkout .checkout-aside {
    -ms-flex: 0 0 58.3333333333%;
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-sm-8 {
    -ms-flex: 0 0 66.6666666667%;
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-sm-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    -ms-flex: 0 0 83.3333333333%;
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-sm-11 {
    -ms-flex: 0 0 91.6666666667%;
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-sm-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-sm-first {
    -ms-flex-order: -1;
    order: -1;
  }

  .order-sm-last {
    -ms-flex-order: 13;
    order: 13;
  }

  .order-sm-0 {
    -ms-flex-order: 0;
    order: 0;
  }

  .order-sm-1 {
    -ms-flex-order: 1;
    order: 1;
  }

  .order-sm-2 {
    -ms-flex-order: 2;
    order: 2;
  }

  .order-sm-3 {
    -ms-flex-order: 3;
    order: 3;
  }

  .order-sm-4 {
    -ms-flex-order: 4;
    order: 4;
  }

  .order-sm-5 {
    -ms-flex-order: 5;
    order: 5;
  }

  .order-sm-6 {
    -ms-flex-order: 6;
    order: 6;
  }

  .order-sm-7 {
    -ms-flex-order: 7;
    order: 7;
  }

  .order-sm-8 {
    -ms-flex-order: 8;
    order: 8;
  }

  .order-sm-9 {
    -ms-flex-order: 9;
    order: 9;
  }

  .order-sm-10 {
    -ms-flex-order: 10;
    order: 10;
  }

  .order-sm-11 {
    -ms-flex-order: 11;
    order: 11;
  }

  .order-sm-12 {
    -ms-flex-order: 12;
    order: 12;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }

  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }

  .offset-sm-3 {
    margin-left: 25%;
  }

  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }

  .offset-sm-5,
  .is-act-finishpage .checkout .checkout-aside {
    margin-left: 41.6666666667%;
  }

  .offset-sm-6 {
    margin-left: 50%;
  }

  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }

  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }

  .offset-sm-9 {
    margin-left: 75%;
  }

  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }

  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
}

@media (min-width:768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-md-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-md-1 {
    -ms-flex: 0 0 8.3333333333%;
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-md-2,
  .footer-columns > .footer-column:nth-child(3),
  .cart-item-row .cart-item-remove {
    -ms-flex: 0 0 16.6666666667%;
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-md-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    -ms-flex: 0 0 33.3333333333%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-md-5,
  .is-act-cartpage .checkout .checkout-aside {
    -ms-flex: 0 0 41.6666666667%;
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-md-6,
  .is-act-checkoutregisterpage .checkout .checkout-aside,
  .is-act-confirmpage .checkout .checkout-aside,
  .is-ctl-accountorder .checkout .checkout-aside,
  .is-act-finishpage .checkout .checkout-additional,
  .is-act-finishpage .checkout .checkout-aside,
  .cms-block-elio-slider-element .elio-slider-element .singleElement .card .image-wrapper,
  .cms-block-elio-slider-element .elio-slider-element .singleElement .card .card-body {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-7 {
    -ms-flex: 0 0 58.3333333333%;
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-md-8 {
    -ms-flex: 0 0 66.6666666667%;
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-md-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-10 {
    -ms-flex: 0 0 83.3333333333%;
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-md-11 {
    -ms-flex: 0 0 91.6666666667%;
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-md-12,
  .product-detail-tabs-content .tab-pane {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-md-first {
    -ms-flex-order: -1;
    order: -1;
  }

  .order-md-last {
    -ms-flex-order: 13;
    order: 13;
  }

  .order-md-0 {
    -ms-flex-order: 0;
    order: 0;
  }

  .order-md-1 {
    -ms-flex-order: 1;
    order: 1;
  }

  .order-md-2 {
    -ms-flex-order: 2;
    order: 2;
  }

  .order-md-3 {
    -ms-flex-order: 3;
    order: 3;
  }

  .order-md-4 {
    -ms-flex-order: 4;
    order: 4;
  }

  .order-md-5 {
    -ms-flex-order: 5;
    order: 5;
  }

  .order-md-6 {
    -ms-flex-order: 6;
    order: 6;
  }

  .order-md-7 {
    -ms-flex-order: 7;
    order: 7;
  }

  .order-md-8 {
    -ms-flex-order: 8;
    order: 8;
  }

  .order-md-9 {
    -ms-flex-order: 9;
    order: 9;
  }

  .order-md-10 {
    -ms-flex-order: 10;
    order: 10;
  }

  .order-md-11 {
    -ms-flex-order: 11;
    order: 11;
  }

  .order-md-12 {
    -ms-flex-order: 12;
    order: 12;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1,
  .footer-columns > .footer-column:nth-child(3) {
    margin-left: 8.3333333333%;
  }

  .offset-md-2 {
    margin-left: 16.6666666667%;
  }

  .offset-md-3 {
    margin-left: 25%;
  }

  .offset-md-4 {
    margin-left: 33.3333333333%;
  }

  .offset-md-5 {
    margin-left: 41.6666666667%;
  }

  .offset-md-6,
  .is-act-checkoutregisterpage .checkout .checkout-aside,
  .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.3333333333%;
  }

  .offset-md-8 {
    margin-left: 66.6666666667%;
  }

  .offset-md-9 {
    margin-left: 75%;
  }

  .offset-md-10 {
    margin-left: 83.3333333333%;
  }

  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
}

@media (min-width:1025px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-lg-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-lg-1 {
    -ms-flex: 0 0 8.3333333333%;
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-lg-2 {
    -ms-flex: 0 0 16.6666666667%;
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-lg-3,
  .account-content .account-content-aside {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4,
  .is-act-cartpage .checkout .checkout-aside,
  .is-act-checkoutregisterpage .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 {
    -ms-flex: 0 0 33.3333333333%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-lg-5 {
    -ms-flex: 0 0 41.6666666667%;
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-lg-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    -ms-flex: 0 0 58.3333333333%;
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .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 {
    -ms-flex: 0 0 66.6666666667%;
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-lg-9,
  .account-content .account-content-main {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-lg-10,
  .product-detail-tabs-content .tab-pane {
    -ms-flex: 0 0 83.3333333333%;
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-lg-11 {
    -ms-flex: 0 0 91.6666666667%;
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-lg-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-lg-first {
    -ms-flex-order: -1;
    order: -1;
  }

  .order-lg-last {
    -ms-flex-order: 13;
    order: 13;
  }

  .order-lg-0 {
    -ms-flex-order: 0;
    order: 0;
  }

  .order-lg-1 {
    -ms-flex-order: 1;
    order: 1;
  }

  .order-lg-2 {
    -ms-flex-order: 2;
    order: 2;
  }

  .order-lg-3 {
    -ms-flex-order: 3;
    order: 3;
  }

  .order-lg-4 {
    -ms-flex-order: 4;
    order: 4;
  }

  .order-lg-5 {
    -ms-flex-order: 5;
    order: 5;
  }

  .order-lg-6 {
    -ms-flex-order: 6;
    order: 6;
  }

  .order-lg-7 {
    -ms-flex-order: 7;
    order: 7;
  }

  .order-lg-8 {
    -ms-flex-order: 8;
    order: 8;
  }

  .order-lg-9 {
    -ms-flex-order: 9;
    order: 9;
  }

  .order-lg-10 {
    -ms-flex-order: 10;
    order: 10;
  }

  .order-lg-11 {
    -ms-flex-order: 11;
    order: 11;
  }

  .order-lg-12 {
    -ms-flex-order: 12;
    order: 12;
  }

  .offset-lg-0,
  .is-act-cartpage .checkout .checkout-aside,
  .is-act-checkoutregisterpage .checkout .checkout-aside {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }

  .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,
  .is-act-checkoutregisterpage .checkout-container .checkout-main {
    margin-left: 16.6666666667%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }

  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }

  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }

  .offset-lg-6 {
    margin-left: 50%;
  }


  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }

  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }

  .offset-lg-9 {
    margin-left: 75%;
  }

  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }

  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
}

@media (min-width:1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-xl-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-xl-1 {
    -ms-flex: 0 0 8.3333333333%;
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-xl-2,
  .account-content .account-content-aside {
    -ms-flex: 0 0 16.6666666667%;
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-xl-3,
  .is-act-checkoutregisterpage .checkout .checkout-aside {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xl-4,
  .is-act-cartpage .checkout .checkout-aside {
    -ms-flex: 0 0 33.3333333333%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-xl-5 {
    -ms-flex: 0 0 41.6666666667%;
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-xl-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xl-7,
  .account-content .account-content-main {
    -ms-flex: 0 0 58.3333333333%;
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-xl-8 {
    -ms-flex: 0 0 66.6666666667%;
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-xl-9,
  .product-detail-tabs-content .tab-pane {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xl-10 {
    -ms-flex: 0 0 83.3333333333%;
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-xl-11 {
    -ms-flex: 0 0 91.6666666667%;
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-xl-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-xl-first {
    -ms-flex-order: -1;
    order: -1;
  }

  .order-xl-last {
    -ms-flex-order: 13;
    order: 13;
  }

  .order-xl-0 {
    -ms-flex-order: 0;
    order: 0;
  }

  .order-xl-1 {
    -ms-flex-order: 1;
    order: 1;
  }

  .order-xl-2 {
    -ms-flex-order: 2;
    order: 2;
  }

  .order-xl-3 {
    -ms-flex-order: 3;
    order: 3;
  }

  .order-xl-4 {
    -ms-flex-order: 4;
    order: 4;
  }

  .order-xl-5 {
    -ms-flex-order: 5;
    order: 5;
  }

  .order-xl-6 {
    -ms-flex-order: 6;
    order: 6;
  }

  .order-xl-7 {
    -ms-flex-order: 7;
    order: 7;
  }

  .order-xl-8 {
    -ms-flex-order: 8;
    order: 8;
  }

  .order-xl-9 {
    -ms-flex-order: 9;
    order: 9;
  }

  .order-xl-10 {
    -ms-flex-order: 10;
    order: 10;
  }

  .order-xl-11 {
    -ms-flex-order: 11;
    order: 11;
  }

  .order-xl-12 {
    -ms-flex-order: 12;
    order: 12;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1,
  .account-content .account-content-main,
  .is-act-checkoutregisterpage .checkout .checkout-aside {
    margin-left: 8.3333333333%;
  }

  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }

  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }

  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }

  .offset-xl-6 {
    margin-left: 50%;
  }

  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }

  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }

  .offset-xl-9 {
    margin-left: 75%;
  }

  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }

  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
}

@media (min-width:1400px) {
  .col-xxl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-xxl-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-xxl-1 {
    -ms-flex: 0 0 8.3333333333%;
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-xxl-2 {
    -ms-flex: 0 0 16.6666666667%;
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-xxl-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xxl-4 {
    -ms-flex: 0 0 33.3333333333%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-xxl-5 {
    -ms-flex: 0 0 41.6666666667%;
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-xxl-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xxl-7 {
    -ms-flex: 0 0 58.3333333333%;
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-xxl-8 {
    -ms-flex: 0 0 66.6666666667%;
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-xxl-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xxl-10 {
    -ms-flex: 0 0 83.3333333333%;
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-xxl-11 {
    -ms-flex: 0 0 91.6666666667%;
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-xxl-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-xxl-first {
    -ms-flex-order: -1;
    order: -1;
  }

  .order-xxl-last {
    -ms-flex-order: 13;
    order: 13;
  }

  .order-xxl-0 {
    -ms-flex-order: 0;
    order: 0;
  }

  .order-xxl-1 {
    -ms-flex-order: 1;
    order: 1;
  }

  .order-xxl-2 {
    -ms-flex-order: 2;
    order: 2;
  }

  .order-xxl-3 {
    -ms-flex-order: 3;
    order: 3;
  }

  .order-xxl-4 {
    -ms-flex-order: 4;
    order: 4;
  }

  .order-xxl-5 {
    -ms-flex-order: 5;
    order: 5;
  }

  .order-xxl-6 {
    -ms-flex-order: 6;
    order: 6;
  }

  .order-xxl-7 {
    -ms-flex-order: 7;
    order: 7;
  }

  .order-xxl-8 {
    -ms-flex-order: 8;
    order: 8;
  }

  .order-xxl-9 {
    -ms-flex-order: 9;
    order: 9;
  }

  .order-xxl-10 {
    -ms-flex-order: 10;
    order: 10;
  }

  .order-xxl-11 {
    -ms-flex-order: 11;
    order: 11;
  }

  .order-xxl-12 {
    -ms-flex-order: 12;
    order: 12;
  }

  .offset-xxl-0 {
    margin-left: 0;
  }

  .offset-xxl-1 {
    margin-left: 8.3333333333%;
  }

  .offset-xxl-2 {
    margin-left: 16.6666666667%;
  }

  .offset-xxl-3 {
    margin-left: 25%;
  }

  .offset-xxl-4 {
    margin-left: 33.3333333333%;
  }

  .offset-xxl-5 {
    margin-left: 41.6666666667%;
  }

  .offset-xxl-6 {
    margin-left: 50%;
  }

  .offset-xxl-7 {
    margin-left: 58.3333333333%;
  }

  .offset-xxl-8 {
    margin-left: 66.6666666667%;
  }

  .offset-xxl-9 {
    margin-left: 75%;
  }

  .offset-xxl-10 {
    margin-left: 83.3333333333%;
  }

  .offset-xxl-11 {
    margin-left: 91.6666666667%;
  }
}

.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #111;
}

.table th,
.table td {
  padding: .75rem;
  vertical-align: top;
  border-top: 1px solid #bcc1c7;
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #bcc1c7;
}

.table tbody + tbody {
  border-top: 2px solid #bcc1c7;
}

.table-sm th,
.table-sm td {
  padding: .3rem;
}

.table-bordered {
  border: 1px solid #bcc1c7;
}

.table-bordered th,
.table-bordered td {
  border: 1px solid #bcc1c7;
}

.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 2px;
}

.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
  border: 0;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: #f9f9f9;
}

.table-hover tbody tr:hover {
  color: #111;
  background-color: rgba(0, 0, 0, .075);
}

.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: #f7b9bd;
}

.table-primary th,
.table-primary td,
.table-primary thead th,
.table-primary tbody + tbody {
  border-color: #f07e84;
}

.table-hover .table-primary:hover {
  background-color: #f4a2a7;
}

.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: #f4a2a7;
}

.table-secondary,
.table-secondary > th,
.table-secondary > td {
  background-color: #fcfcfc;
}

.table-secondary th,
.table-secondary td,
.table-secondary thead th,
.table-secondary tbody + tbody {
  border-color: #fafafa;
}

.table-hover .table-secondary:hover {
  background-color: #efefef;
}

.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
  background-color: #efefef;
}

.table-success,
.table-success > th,
.table-success > td {
  background-color: #c8eed3;
}

.table-success th,
.table-success td,
.table-success thead th,
.table-success tbody + tbody {
  border-color: #9adfad;
}

.table-hover .table-success:hover {
  background-color: #b5e8c3;
}

.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: #b5e8c3;
}

.table-info,
.table-info > th,
.table-info > td {
  background-color: #c2ebf2;
}

.table-info th,
.table-info td,
.table-info thead th,
.table-info tbody + tbody {
  border-color: #8ed9e6;
}

.table-hover .table-info:hover {
  background-color: #ade4ee;
}

.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
  background-color: #ade4ee;
}

.table-warning,
.table-warning > th,
.table-warning > td {
  background-color: #ffedd2;
}

.table-warning th,
.table-warning td,
.table-warning thead th,
.table-warning tbody + tbody {
  border-color: #ffddab;
}

.table-hover .table-warning:hover {
  background-color: #ffe3b9;
}

.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
  background-color: #ffe3b9;
}

.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: #f8c2c3;
}

.table-danger th,
.table-danger td,
.table-danger thead th,
.table-danger tbody + tbody {
  border-color: #f18d8f;
}

.table-hover .table-danger:hover {
  background-color: #f5abad;
}

.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: #f5abad;
}

.table-light,
.table-light > th,
.table-light > td {
  background-color: #fdfdfd;
}

.table-light th,
.table-light td,
.table-light thead th,
.table-light tbody + tbody {
  border-color: #fcfcfc;
}

.table-hover .table-light:hover {
  background-color: #f0f0f0;
}

.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
  background-color: #f0f0f0;
}

.table-dark,
.table-dark > th,
.table-dark > td {
  background-color: #cccfd1;
}

.table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
  border-color: #a1a6aa;
}

.table-hover .table-dark:hover {
  background-color: #bfc2c5;
}

.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
  background-color: #bfc2c5;
}

.table-active,
.table-active > th,
.table-active > td {
  background-color: rgba(0, 0, 0, .075);
}

.table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, .075);
}

.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
  background-color: rgba(0, 0, 0, .075);
}

.table .thead-dark th {
  color: #fff;
  background-color: #4a545b;
  border-color: #5b6770;
}

.table .thead-light th {
  color: #495057;
  background-color: #eee;
  border-color: #bcc1c7;
}

.table-dark {
  color: #fff;
  background-color: #4a545b;
}

.table-dark th,
.table-dark td,
.table-dark thead th {
  border-color: #5b6770;
}

.table-dark.table-bordered {
  border: 0;
}

.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, .05);
}

.table-dark.table-hover tbody tr:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, .075);
}

@media (max-width:575.98px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .table-responsive-sm > .table-bordered {
    border: 0;
  }
}

@media (max-width:767.98px) {
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .table-responsive-md > .table-bordered {
    border: 0;
  }
}

@media (max-width:1024.98px) {
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .table-responsive-lg > .table-bordered {
    border: 0;
  }
}

@media (max-width:1199.98px) {
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .table-responsive-xl > .table-bordered {
    border: 0;
  }
}

@media (max-width:1399.98px) {
  .table-responsive-xxl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .table-responsive-xxl > .table-bordered {
    border: 0;
  }
}

.table-responsive,
table {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-responsive > .table-bordered,
table > .table-bordered {
  border: 0;
}

.form-control,
.hbspt-form input.hs-input[type="text"],
.hbspt-form input.hs-input[type="tel"],
.hbspt-form input.hs-input[type="email"] {
  display: block;
  width: 100%;
  height: calc(1.5em + 1.125rem + 2px);
  padding: .5625rem .5625rem;
  font-size: .9375rem;
  font-weight: 400;
  line-height: 1.5;
  color: #111;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #bcc1c7;
  border-radius: 3px;
  -webkit-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

@media (prefers-reduced-motion:reduce) {

  .form-control,
  .hbspt-form input.hs-input[type="text"],
  .hbspt-form input.hs-input[type="tel"],
  .hbspt-form input.hs-input[type="email"] {
    -webkit-transition: none;
    transition: none;
  }
}

.form-control::-ms-expand,
.hbspt-form input.hs-input[type="text"]::-ms-expand,
.hbspt-form input.hs-input[type="tel"]::-ms-expand,
.hbspt-form input.hs-input[type="email"]::-ms-expand {
  background-color: transparent;
  border: 0;
}

.form-control:focus,
.hbspt-form input.hs-input[type="text"]:focus,
.hbspt-form input.hs-input[type="tel"]:focus,
.hbspt-form input.hs-input[type="email"]:focus {
  color: #111;
  background-color: #fff;
  border-color: #e30613;
  outline: 0;
  box-shadow: 0 0 0 .2rem rgba(227, 6, 19, .25);
}

.form-control::-ms-input-placeholder,
.form-control::-moz-placeholder,
.form-control::-webkit-input-placeholder,
.form-control::placeholder,
.hbspt-form input.hs-input[type="text"]::-ms-input-placeholder,
.hbspt-form input.hs-input[type="text"]::-moz-placeholder,
.hbspt-form input.hs-input[type="text"]::-webkit-input-placeholder,
.hbspt-form input.hs-input[type="text"]::placeholder,
.hbspt-form input.hs-input[type="tel"]::-ms-input-placeholder,
.hbspt-form input.hs-input[type="tel"]::-moz-placeholder,
.hbspt-form input.hs-input[type="tel"]::-webkit-input-placeholder,
.hbspt-form input.hs-input[type="tel"]::placeholder,
.hbspt-form input.hs-input[type="email"]::-ms-input-placeholder,
.hbspt-form input.hs-input[type="email"]::-moz-placeholder,
.hbspt-form input.hs-input[type="email"]::-webkit-input-placeholder,
.hbspt-form input.hs-input[type="email"]::placeholder {
  color: #c3c3c3;
  opacity: 1;
}

.form-control:disabled,
.hbspt-form input.hs-input[type="text"]:disabled,
.hbspt-form input.hs-input[type="tel"]:disabled,
.hbspt-form input.hs-input[type="email"]:disabled,
.form-control[readonly],
.hbspt-form input.hs-input[type="text"][readonly],
.hbspt-form input.hs-input[type="tel"][readonly],
.hbspt-form input.hs-input[type="email"][readonly] {
  background-color: #eee;
  opacity: 1;
}

select.form-control:focus::-ms-value {
  color: #111;
  background-color: #fff;
}

.form-control-file,
.form-control-range {
  display: block;
  width: 100%;
}

.col-form-label {
  padding-top: calc(.5625rem + 1px);
  padding-bottom: calc(.5625rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(.5rem + 1px);
  padding-bottom: calc(.5rem + 1px);
  font-size: 1rem;
  line-height: 1.5;
}

.col-form-label-sm {
  padding-top: calc(.25rem + 1px);
  padding-bottom: calc(.25rem + 1px);
  font-size: .75rem;
  line-height: 1.5;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding-top: .5625rem;
  padding-bottom: .5625rem;
  margin-bottom: 0;
  line-height: 1.5;
  color: #111;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}

.form-control-plaintext.form-control-sm,
.form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  height: calc(1.5em + .5rem + 2px);
  padding: .25rem .5rem;
  font-size: .75rem;
  line-height: 1.5;
  border-radius: 3px;
}

.form-control-lg {
  height: calc(1.5em + 1rem + 2px);
  padding: .5rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 3px;
}

select.form-control[size],
select.form-control[multiple] {
  height: auto;
}

textarea.form-control {
  height: auto;
}

.form-group,
.hbspt-form .hs-form-booleancheckbox,
.hbspt-form .hs-form-field {
  margin-bottom: 1rem;
}

.form-text {
  display: block;
  margin-top: .25rem;
}

.form-row {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}

.form-row > .col,
.is-act-confirmpage .checkout .form-row > .checkout-aside,
.is-ctl-accountorder .checkout .form-row > .checkout-aside,
.is-act-finishpage .checkout .form-row > .checkout-aside,
.form-row > .scroll-navigation-sidebar-entry,
.form-row > [class*="col-"] {
  padding-right: 5px;
  padding-left: 5px;
}

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

.form-check-input {
  position: absolute;
  margin-top: .3rem;
  margin-left: -1.25rem;
}

.form-check-input:disabled ~ .form-check-label {
  color: #798490;
}

.form-check-label {
  margin-bottom: 0;
}

.form-check-inline {
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 0;
  margin-right: .75rem;
}

.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: .3125rem;
  margin-left: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: .25rem;
  font-size: 80%;
  color: #3cc261;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: .25rem .5rem;
  margin-top: .1rem;
  font-size: .75rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(60, 194, 97, .9);
  border-radius: 3px;
}

.was-validated .form-control:valid,
.was-validated .hbspt-form input.hs-input[type="text"]:valid,
.hbspt-form .was-validated input.hs-input[type="text"]:valid,
.was-validated .hbspt-form input.hs-input[type="tel"]:valid,
.hbspt-form .was-validated input.hs-input[type="tel"]:valid,
.was-validated .hbspt-form input.hs-input[type="email"]:valid,
.hbspt-form .was-validated input.hs-input[type="email"]:valid,
.form-control.is-valid,
.hbspt-form input.is-valid.hs-input[type="text"],
.hbspt-form input.is-valid.hs-input[type="tel"],
.hbspt-form input.is-valid.hs-input[type="email"] {
  border-color: #3cc261;
}

.was-validated .form-control:valid:focus,
.was-validated .hbspt-form input.hs-input[type="text"]:valid:focus,
.hbspt-form .was-validated input.hs-input[type="text"]:valid:focus,
.was-validated .hbspt-form input.hs-input[type="tel"]:valid:focus,
.hbspt-form .was-validated input.hs-input[type="tel"]:valid:focus,
.was-validated .hbspt-form input.hs-input[type="email"]:valid:focus,
.hbspt-form .was-validated input.hs-input[type="email"]:valid:focus,
.form-control.is-valid:focus,
.hbspt-form input.is-valid.hs-input[type="text"]:focus,
.hbspt-form input.is-valid.hs-input[type="tel"]:focus,
.hbspt-form input.is-valid.hs-input[type="email"]:focus {
  border-color: #3cc261;
  box-shadow: 0 0 0 .2rem rgba(60, 194, 97, .25);
}

.was-validated .form-control:valid ~ .valid-feedback,
.was-validated .hbspt-form input.hs-input[type="text"]:valid ~ .valid-feedback,
.hbspt-form .was-validated input.hs-input[type="text"]:valid ~ .valid-feedback,
.was-validated .hbspt-form input.hs-input[type="tel"]:valid ~ .valid-feedback,
.hbspt-form .was-validated input.hs-input[type="tel"]:valid ~ .valid-feedback,
.was-validated .hbspt-form input.hs-input[type="email"]:valid ~ .valid-feedback,
.hbspt-form .was-validated input.hs-input[type="email"]:valid ~ .valid-feedback,
.was-validated .form-control:valid ~ .valid-tooltip,
.was-validated .hbspt-form input.hs-input[type="text"]:valid ~ .valid-tooltip,
.hbspt-form .was-validated input.hs-input[type="text"]:valid ~ .valid-tooltip,
.was-validated .hbspt-form input.hs-input[type="tel"]:valid ~ .valid-tooltip,
.hbspt-form .was-validated input.hs-input[type="tel"]:valid ~ .valid-tooltip,
.was-validated .hbspt-form input.hs-input[type="email"]:valid ~ .valid-tooltip,
.hbspt-form .was-validated input.hs-input[type="email"]:valid ~ .valid-tooltip,
.form-control.is-valid ~ .valid-feedback,
.hbspt-form input.is-valid.hs-input[type="text"] ~ .valid-feedback,
.hbspt-form input.is-valid.hs-input[type="tel"] ~ .valid-feedback,
.hbspt-form input.is-valid.hs-input[type="email"] ~ .valid-feedback,
.form-control.is-valid ~ .valid-tooltip,
.hbspt-form input.is-valid.hs-input[type="text"] ~ .valid-tooltip,
.hbspt-form input.is-valid.hs-input[type="tel"] ~ .valid-tooltip,
.hbspt-form input.is-valid.hs-input[type="email"] ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-select:valid,
.was-validated .hbspt-form select.hs-input:valid,
.hbspt-form .was-validated select.hs-input:valid,
.custom-select.is-valid,
.hbspt-form select.is-valid.hs-input {
  border-color: #3cc261;
}

.was-validated .custom-select:valid:focus,
.was-validated .hbspt-form select.hs-input:valid:focus,
.hbspt-form .was-validated select.hs-input:valid:focus,
.custom-select.is-valid:focus,
.hbspt-form select.is-valid.hs-input:focus {
  border-color: #3cc261;
  box-shadow: 0 0 0 .2rem rgba(60, 194, 97, .25);
}

.was-validated .custom-select:valid ~ .valid-feedback,
.was-validated .hbspt-form select.hs-input:valid ~ .valid-feedback,
.hbspt-form .was-validated select.hs-input:valid ~ .valid-feedback,
.was-validated .custom-select:valid ~ .valid-tooltip,
.was-validated .hbspt-form select.hs-input:valid ~ .valid-tooltip,
.hbspt-form .was-validated select.hs-input:valid ~ .valid-tooltip,
.custom-select.is-valid ~ .valid-feedback,
.hbspt-form select.is-valid.hs-input ~ .valid-feedback,
.custom-select.is-valid ~ .valid-tooltip,
.hbspt-form select.is-valid.hs-input ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control-file:valid ~ .valid-feedback,
.was-validated .form-control-file:valid ~ .valid-tooltip,
.form-control-file.is-valid ~ .valid-feedback,
.form-control-file.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-check-input:valid ~ .form-check-label,
.form-check-input.is-valid ~ .form-check-label {
  color: #3cc261;
}

.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip,
.form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-control-input:valid ~ .custom-control-label,
.was-validated .hbspt-form .hs-form-radio-display .custom-control-input:valid ~ label,
.hbspt-form .hs-form-radio-display .was-validated .custom-control-input:valid ~ label,
.custom-control-input.is-valid ~ .custom-control-label,
.hbspt-form .hs-form-radio-display .custom-control-input.is-valid ~ label {
  color: #3cc261;
}

.was-validated .custom-control-input:valid ~ .custom-control-label::before,
.was-validated .hbspt-form .hs-form-radio-display .custom-control-input:valid ~ label::before,
.hbspt-form .hs-form-radio-display .was-validated .custom-control-input:valid ~ label::before,
.custom-control-input.is-valid ~ .custom-control-label::before,
.hbspt-form .hs-form-radio-display .custom-control-input.is-valid ~ label::before {
  border-color: #3cc261;
}

.was-validated .custom-control-input:valid ~ .valid-feedback,
.was-validated .custom-control-input:valid ~ .valid-tooltip,
.custom-control-input.is-valid ~ .valid-feedback,
.custom-control-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before,
.was-validated .hbspt-form .hs-form-radio-display .custom-control-input:valid:checked ~ label::before,
.hbspt-form .hs-form-radio-display .was-validated .custom-control-input:valid:checked ~ label::before,
.custom-control-input.is-valid:checked ~ .custom-control-label::before,
.hbspt-form .hs-form-radio-display .custom-control-input.is-valid:checked ~ label::before {
  border-color: #62cf80;
  background-color: #62cf80;
}

.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before,
.was-validated .hbspt-form .hs-form-radio-display .custom-control-input:valid:focus ~ label::before,
.hbspt-form .hs-form-radio-display .was-validated .custom-control-input:valid:focus ~ label::before,
.custom-control-input.is-valid:focus ~ .custom-control-label::before,
.hbspt-form .hs-form-radio-display .custom-control-input.is-valid:focus ~ label::before {
  box-shadow: 0 0 0 .2rem rgba(60, 194, 97, .25);
}

.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before,
.was-validated .hbspt-form .hs-form-radio-display .custom-control-input:valid:focus:not(:checked) ~ label::before,
.hbspt-form .hs-form-radio-display .was-validated .custom-control-input:valid:focus:not(:checked) ~ label::before,
.custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before,
.hbspt-form .hs-form-radio-display .custom-control-input.is-valid:focus:not(:checked) ~ label::before {
  border-color: #3cc261;
}

.was-validated .custom-file-input:valid ~ .custom-file-label,
.custom-file-input.is-valid ~ .custom-file-label {
  border-color: #3cc261;
}

.was-validated .custom-file-input:valid ~ .valid-feedback,
.was-validated .custom-file-input:valid ~ .valid-tooltip,
.custom-file-input.is-valid ~ .valid-feedback,
.custom-file-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-file-input:valid:focus ~ .custom-file-label,
.custom-file-input.is-valid:focus ~ .custom-file-label {
  border-color: #3cc261;
  box-shadow: 0 0 0 .2rem rgba(60, 194, 97, .25);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: .25rem;
  font-size: 80%;
  color: #e52427;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: .25rem .5rem;
  margin-top: .1rem;
  font-size: .75rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(229, 36, 39, .9);
  border-radius: 3px;
}

.was-validated .form-control:invalid,
.was-validated .hbspt-form input.hs-input[type="text"]:invalid,
.hbspt-form .was-validated input.hs-input[type="text"]:invalid,
.was-validated .hbspt-form input.hs-input[type="tel"]:invalid,
.hbspt-form .was-validated input.hs-input[type="tel"]:invalid,
.was-validated .hbspt-form input.hs-input[type="email"]:invalid,
.hbspt-form .was-validated input.hs-input[type="email"]:invalid,
.form-control.is-invalid,
.hbspt-form input.is-invalid.hs-input[type="text"],
.hbspt-form input.is-invalid.hs-input[type="tel"],
.hbspt-form input.is-invalid.hs-input[type="email"] {
  border-color: #e52427;
}

.was-validated .form-control:invalid:focus,
.was-validated .hbspt-form input.hs-input[type="text"]:invalid:focus,
.hbspt-form .was-validated input.hs-input[type="text"]:invalid:focus,
.was-validated .hbspt-form input.hs-input[type="tel"]:invalid:focus,
.hbspt-form .was-validated input.hs-input[type="tel"]:invalid:focus,
.was-validated .hbspt-form input.hs-input[type="email"]:invalid:focus,
.hbspt-form .was-validated input.hs-input[type="email"]:invalid:focus,
.form-control.is-invalid:focus,
.hbspt-form input.is-invalid.hs-input[type="text"]:focus,
.hbspt-form input.is-invalid.hs-input[type="tel"]:focus,
.hbspt-form input.is-invalid.hs-input[type="email"]:focus {
  border-color: #e52427;
  box-shadow: 0 0 0 .2rem rgba(229, 36, 39, .25);
}

.was-validated .form-control:invalid ~ .invalid-feedback,
.was-validated .hbspt-form input.hs-input[type="text"]:invalid ~ .invalid-feedback,
.hbspt-form .was-validated input.hs-input[type="text"]:invalid ~ .invalid-feedback,
.was-validated .hbspt-form input.hs-input[type="tel"]:invalid ~ .invalid-feedback,
.hbspt-form .was-validated input.hs-input[type="tel"]:invalid ~ .invalid-feedback,
.was-validated .hbspt-form input.hs-input[type="email"]:invalid ~ .invalid-feedback,
.hbspt-form .was-validated input.hs-input[type="email"]:invalid ~ .invalid-feedback,
.was-validated .form-control:invalid ~ .invalid-tooltip,
.was-validated .hbspt-form input.hs-input[type="text"]:invalid ~ .invalid-tooltip,
.hbspt-form .was-validated input.hs-input[type="text"]:invalid ~ .invalid-tooltip,
.was-validated .hbspt-form input.hs-input[type="tel"]:invalid ~ .invalid-tooltip,
.hbspt-form .was-validated input.hs-input[type="tel"]:invalid ~ .invalid-tooltip,
.was-validated .hbspt-form input.hs-input[type="email"]:invalid ~ .invalid-tooltip,
.hbspt-form .was-validated input.hs-input[type="email"]:invalid ~ .invalid-tooltip,
.form-control.is-invalid ~ .invalid-feedback,
.hbspt-form input.is-invalid.hs-input[type="text"] ~ .invalid-feedback,
.hbspt-form input.is-invalid.hs-input[type="tel"] ~ .invalid-feedback,
.hbspt-form input.is-invalid.hs-input[type="email"] ~ .invalid-feedback,
.form-control.is-invalid ~ .invalid-tooltip,
.hbspt-form input.is-invalid.hs-input[type="text"] ~ .invalid-tooltip,
.hbspt-form input.is-invalid.hs-input[type="tel"] ~ .invalid-tooltip,
.hbspt-form input.is-invalid.hs-input[type="email"] ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-select:invalid,
.was-validated .hbspt-form select.hs-input:invalid,
.hbspt-form .was-validated select.hs-input:invalid,
.custom-select.is-invalid,
.hbspt-form select.is-invalid.hs-input {
  border-color: #e52427;
}

.was-validated .custom-select:invalid:focus,
.was-validated .hbspt-form select.hs-input:invalid:focus,
.hbspt-form .was-validated select.hs-input:invalid:focus,
.custom-select.is-invalid:focus,
.hbspt-form select.is-invalid.hs-input:focus {
  border-color: #e52427;
  box-shadow: 0 0 0 .2rem rgba(229, 36, 39, .25);
}

.was-validated .custom-select:invalid ~ .invalid-feedback,
.was-validated .hbspt-form select.hs-input:invalid ~ .invalid-feedback,
.hbspt-form .was-validated select.hs-input:invalid ~ .invalid-feedback,
.was-validated .custom-select:invalid ~ .invalid-tooltip,
.was-validated .hbspt-form select.hs-input:invalid ~ .invalid-tooltip,
.hbspt-form .was-validated select.hs-input:invalid ~ .invalid-tooltip,
.custom-select.is-invalid ~ .invalid-feedback,
.hbspt-form select.is-invalid.hs-input ~ .invalid-feedback,
.custom-select.is-invalid ~ .invalid-tooltip,
.hbspt-form select.is-invalid.hs-input ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control-file:invalid ~ .invalid-feedback,
.was-validated .form-control-file:invalid ~ .invalid-tooltip,
.form-control-file.is-invalid ~ .invalid-feedback,
.form-control-file.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-check-input:invalid ~ .form-check-label,
.form-check-input.is-invalid ~ .form-check-label {
  color: #e52427;
}

.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip,
.form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label,
.was-validated .hbspt-form .hs-form-radio-display .custom-control-input:invalid ~ label,
.hbspt-form .hs-form-radio-display .was-validated .custom-control-input:invalid ~ label,
.custom-control-input.is-invalid ~ .custom-control-label,
.hbspt-form .hs-form-radio-display .custom-control-input.is-invalid ~ label {
  color: #e52427;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label::before,
.was-validated .hbspt-form .hs-form-radio-display .custom-control-input:invalid ~ label::before,
.hbspt-form .hs-form-radio-display .was-validated .custom-control-input:invalid ~ label::before,
.custom-control-input.is-invalid ~ .custom-control-label::before,
.hbspt-form .hs-form-radio-display .custom-control-input.is-invalid ~ label::before {
  border-color: #e52427;
}

.was-validated .custom-control-input:invalid ~ .invalid-feedback,
.was-validated .custom-control-input:invalid ~ .invalid-tooltip,
.custom-control-input.is-invalid ~ .invalid-feedback,
.custom-control-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before,
.was-validated .hbspt-form .hs-form-radio-display .custom-control-input:invalid:checked ~ label::before,
.hbspt-form .hs-form-radio-display .was-validated .custom-control-input:invalid:checked ~ label::before,
.custom-control-input.is-invalid:checked ~ .custom-control-label::before,
.hbspt-form .hs-form-radio-display .custom-control-input.is-invalid:checked ~ label::before {
  border-color: #ea5254;
  background-color: #ea5254;
}

.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before,
.was-validated .hbspt-form .hs-form-radio-display .custom-control-input:invalid:focus ~ label::before,
.hbspt-form .hs-form-radio-display .was-validated .custom-control-input:invalid:focus ~ label::before,
.custom-control-input.is-invalid:focus ~ .custom-control-label::before,
.hbspt-form .hs-form-radio-display .custom-control-input.is-invalid:focus ~ label::before {
  box-shadow: 0 0 0 .2rem rgba(229, 36, 39, .25);
}

.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before,
.was-validated .hbspt-form .hs-form-radio-display .custom-control-input:invalid:focus:not(:checked) ~ label::before,
.hbspt-form .hs-form-radio-display .was-validated .custom-control-input:invalid:focus:not(:checked) ~ label::before,
.custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before,
.hbspt-form .hs-form-radio-display .custom-control-input.is-invalid:focus:not(:checked) ~ label::before {
  border-color: #e52427;
}

.was-validated .custom-file-input:invalid ~ .custom-file-label,
.custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #e52427;
}

.was-validated .custom-file-input:invalid ~ .invalid-feedback,
.was-validated .custom-file-input:invalid ~ .invalid-tooltip,
.custom-file-input.is-invalid ~ .invalid-feedback,
.custom-file-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-file-input:invalid:focus ~ .custom-file-label,
.custom-file-input.is-invalid:focus ~ .custom-file-label {
  border-color: #e52427;
  box-shadow: 0 0 0 .2rem rgba(229, 36, 39, .25);
}

.form-inline {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-flex-align: center;
  align-items: center;
}

.form-inline .form-check {
  width: 100%;
}

@media (min-width:576px) {
  .form-inline label {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 0;
  }

  .form-inline .form-group,
  .form-inline .hbspt-form .hs-form-booleancheckbox,
  .hbspt-form .form-inline .hs-form-booleancheckbox,
  .form-inline .hbspt-form .hs-form-field,
  .hbspt-form .form-inline .hs-form-field {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0;
  }

  .form-inline .form-control,
  .form-inline .hbspt-form input.hs-input[type="text"],
  .hbspt-form .form-inline input.hs-input[type="text"],
  .form-inline .hbspt-form input.hs-input[type="tel"],
  .hbspt-form .form-inline input.hs-input[type="tel"],
  .form-inline .hbspt-form input.hs-input[type="email"],
  .hbspt-form .form-inline input.hs-input[type="email"] {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }

  .form-inline .form-control-plaintext {
    display: inline-block;
  }

  .form-inline .input-group,
  .form-inline .custom-select,
  .form-inline .hbspt-form select.hs-input,
  .hbspt-form .form-inline select.hs-input {
    width: auto;
  }

  .form-inline .form-check {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: auto;
    padding-left: 0;
  }

  .form-inline .form-check-input {
    position: relative;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-top: 0;
    margin-right: .25rem;
    margin-left: 0;
  }

  .form-inline .custom-control {
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .form-inline .custom-control-label,
  .form-inline .hbspt-form .hs-form-radio-display label,
  .hbspt-form .hs-form-radio-display .form-inline label {
    margin-bottom: 0;
  }
}

.btn,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .watchlist-listing-link,
.hbspt-form input.hs-button {
  display: inline-block;
  font-weight: 400;
  color: #111;
  text-align: center;
  vertical-align: middle;
  -ms-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 2px 12px;
  font-size: .9375rem;
  line-height: 34px;
  border-radius: 3px;
  -webkit-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

@media (prefers-reduced-motion:reduce) {

  .btn,
  .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .watchlist-listing-link,
  .hbspt-form input.hs-button {
    -webkit-transition: none;
    transition: none;
  }
}

.btn:hover,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .watchlist-listing-link:hover,
.hbspt-form input.hs-button:hover {
  color: #111;
  text-decoration: none;
}

.btn:focus,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .watchlist-listing-link:focus,
.hbspt-form input.hs-button:focus,
.btn.focus,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .focus.watchlist-listing-link,
.hbspt-form input.focus.hs-button {
  outline: 0;
  box-shadow: 0 0 0 .2rem rgba(227, 6, 19, .25);
}

.btn.disabled,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .disabled.watchlist-listing-link,
.hbspt-form input.disabled.hs-button,
.btn:disabled,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .watchlist-listing-link:disabled,
.hbspt-form input.hs-button:disabled {
  opacity: .65;
}

a.btn.disabled,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child a.disabled.watchlist-listing-link,
fieldset:disabled a.btn,
fieldset:disabled .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child a.watchlist-listing-link,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child fieldset:disabled a.watchlist-listing-link {
  pointer-events: none;
}

.btn-primary,
.address-editor-select:not(.collapsed),
.address-editor-edit:not(.collapsed),
.address-editor-create:not(.collapsed),
.is-act-search .card-tabs .btn-success,
.hbspt-form input.hs-button {
  color: #fff;
  background-color: #e30613;
  border-color: #e30613;
}

.btn-primary:hover,
.address-editor-select:not(.collapsed):hover,
.address-editor-edit:not(.collapsed):hover,
.address-editor-create:not(.collapsed):hover,
.is-act-search .card-tabs .btn-success:hover,
.hbspt-form input.hs-button:hover {
  color: #fff;
  background-color: #be0510;
  border-color: #b1050f;
}

.btn-primary:focus,
.address-editor-select:not(.collapsed):focus,
.address-editor-edit:not(.collapsed):focus,
.address-editor-create:not(.collapsed):focus,
.is-act-search .card-tabs .btn-success:focus,
.hbspt-form input.hs-button:focus,
.btn-primary.focus,
.focus.address-editor-select:not(.collapsed),
.focus.address-editor-edit:not(.collapsed),
.focus.address-editor-create:not(.collapsed),
.is-act-search .card-tabs .focus.btn-success,
.hbspt-form input.focus.hs-button {
  box-shadow: 0 0 0 .2rem rgba(231, 43, 54, .5);
}

.btn-primary.disabled,
.disabled.address-editor-select:not(.collapsed),
.disabled.address-editor-edit:not(.collapsed),
.disabled.address-editor-create:not(.collapsed),
.is-act-search .card-tabs .disabled.btn-success,
.hbspt-form input.disabled.hs-button,
.btn-primary:disabled,
.address-editor-select:not(.collapsed):disabled,
.address-editor-edit:not(.collapsed):disabled,
.address-editor-create:not(.collapsed):disabled,
.is-act-search .card-tabs .btn-success:disabled,
.hbspt-form input.hs-button:disabled {
  color: #fff;
  background-color: #e30613;
  border-color: #e30613;
}

.btn-primary:not(:disabled):not(.disabled):active,
.address-editor-select:not(.collapsed):not(:disabled):not(.disabled):active,
.address-editor-edit:not(.collapsed):not(:disabled):not(.disabled):active,
.address-editor-create:not(.collapsed):not(:disabled):not(.disabled):active,
.is-act-search .card-tabs .btn-success:not(:disabled):not(.disabled):active,
.hbspt-form input.hs-button:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.active.address-editor-select:not(.collapsed):not(.disabled):not(:disabled),
.active.address-editor-edit:not(.collapsed):not(.disabled):not(:disabled),
.active.address-editor-create:not(.collapsed):not(.disabled):not(:disabled),
.is-act-search .card-tabs .active.btn-success:not(.disabled):not(:disabled),
.hbspt-form input.active.hs-button:not(.disabled):not(:disabled),
.show > .btn-primary.dropdown-toggle,
.show > .dropdown-toggle.address-editor-select:not(.collapsed),
.show > .dropdown-toggle.address-editor-edit:not(.collapsed),
.show > .dropdown-toggle.address-editor-create:not(.collapsed),
.is-act-search .card-tabs .show > .dropdown-toggle.btn-success,
.hbspt-form .show > input.dropdown-toggle.hs-button {
  color: #fff;
  background-color: #b1050f;
  border-color: #a5040e;
}

.btn-primary:not(:disabled):not(.disabled):active:focus,
.address-editor-select:not(.collapsed):not(:disabled):not(.disabled):active:focus,
.address-editor-edit:not(.collapsed):not(:disabled):not(.disabled):active:focus,
.address-editor-create:not(.collapsed):not(:disabled):not(.disabled):active:focus,
.is-act-search .card-tabs .btn-success:not(:disabled):not(.disabled):active:focus,
.hbspt-form input.hs-button:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.active.address-editor-select:not(.collapsed):not(.disabled):not(:disabled):focus,
.active.address-editor-edit:not(.collapsed):not(.disabled):not(:disabled):focus,
.active.address-editor-create:not(.collapsed):not(.disabled):not(:disabled):focus,
.is-act-search .card-tabs .active.btn-success:not(.disabled):not(:disabled):focus,
.hbspt-form input.active.hs-button:not(.disabled):not(:disabled):focus,
.show > .btn-primary.dropdown-toggle:focus,
.show > .dropdown-toggle.address-editor-select:not(.collapsed):focus,
.show > .dropdown-toggle.address-editor-edit:not(.collapsed):focus,
.show > .dropdown-toggle.address-editor-create:not(.collapsed):focus,
.is-act-search .card-tabs .show > .dropdown-toggle.btn-success:focus,
.hbspt-form .show > input.dropdown-toggle.hs-button:focus {
  box-shadow: 0 0 0 .2rem rgba(231, 43, 54, .5);
}

.btn-secondary {
  color: #212529;
  background-color: #f6f6f6;
  border-color: #f6f6f6;
}

.btn-secondary:hover {
  color: #212529;
  background-color: #e3e3e3;
  border-color: #ddd;
}

.btn-secondary:focus,
.btn-secondary.focus {
  box-shadow: 0 0 0 .2rem rgba(214, 215, 215, .5);
}

.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #212529;
  background-color: #f6f6f6;
  border-color: #f6f6f6;
}

.btn-secondary:not(:disabled):not(.disabled):active,
.btn-secondary:not(:disabled):not(.disabled).active,
.show > .btn-secondary.dropdown-toggle {
  color: #212529;
  background-color: #ddd;
  border-color: #d6d6d6;
}

.btn-secondary:not(:disabled):not(.disabled):active:focus,
.btn-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(214, 215, 215, .5);
}

.btn-success {
  color: #fff;
  background-color: #3cc261;
  border-color: #3cc261;
}

.btn-success:hover {
  color: #fff;
  background-color: #33a552;
  border-color: #309b4e;
}

.btn-success:focus,
.btn-success.focus {
  box-shadow: 0 0 0 .2rem rgba(89, 203, 121, .5);
}

.btn-success.disabled,
.btn-success:disabled {
  color: #fff;
  background-color: #3cc261;
  border-color: #3cc261;
}

.btn-success:not(:disabled):not(.disabled):active,
.btn-success:not(:disabled):not(.disabled).active,
.show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #309b4e;
  border-color: #2d9149;
}

.btn-success:not(:disabled):not(.disabled):active:focus,
.btn-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(89, 203, 121, .5);
}

.btn-info {
  color: #fff;
  background-color: #26b6cf;
  border-color: #26b6cf;
}

.btn-info:hover {
  color: #fff;
  background-color: #209aaf;
  border-color: #1e90a4;
}

.btn-info:focus,
.btn-info.focus {
  box-shadow: 0 0 0 .2rem rgba(71, 193, 214, .5);
}

.btn-info.disabled,
.btn-info:disabled {
  color: #fff;
  background-color: #26b6cf;
  border-color: #26b6cf;
}

.btn-info:not(:disabled):not(.disabled):active,
.btn-info:not(:disabled):not(.disabled).active,
.show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #1e90a4;
  border-color: #1c8799;
}

.btn-info:not(:disabled):not(.disabled):active:focus,
.btn-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(71, 193, 214, .5);
}

.btn-warning {
  color: #212529;
  background-color: #ffbd5d;
  border-color: #ffbd5d;
}

.btn-warning:hover {
  color: #212529;
  background-color: #ffad37;
  border-color: #ffa82a;
}

.btn-warning:focus,
.btn-warning.focus {
  box-shadow: 0 0 0 .2rem rgba(222, 166, 85, .5);
}

.btn-warning.disabled,
.btn-warning:disabled {
  color: #212529;
  background-color: #ffbd5d;
  border-color: #ffbd5d;
}

.btn-warning:not(:disabled):not(.disabled):active,
.btn-warning:not(:disabled):not(.disabled).active,
.show > .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: #ffa82a;
  border-color: #ffa31d;
}

.btn-warning:not(:disabled):not(.disabled):active:focus,
.btn-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(222, 166, 85, .5);
}

.btn-danger {
  color: #fff;
  background-color: #e52427;
  border-color: #e52427;
}

.btn-danger:hover {
  color: #fff;
  background-color: #cb181b;
  border-color: #bf1719;
}

.btn-danger:focus,
.btn-danger.focus {
  box-shadow: 0 0 0 .2rem rgba(233, 69, 71, .5);
}

.btn-danger.disabled,
.btn-danger:disabled {
  color: #fff;
  background-color: #e52427;
  border-color: #e52427;
}

.btn-danger:not(:disabled):not(.disabled):active,
.btn-danger:not(:disabled):not(.disabled).active,
.show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #bf1719;
  border-color: #b41518;
}

.btn-danger:not(:disabled):not(.disabled):active:focus,
.btn-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(233, 69, 71, .5);
}

.btn-light {
  color: #212529;
  background-color: #f9f9f9;
  border-color: #f9f9f9;
}

.btn-light:hover {
  color: #212529;
  background-color: #e6e6e6;
  border-color: #e0e0e0;
}

.btn-light:focus,
.btn-light.focus {
  box-shadow: 0 0 0 .2rem rgba(217, 217, 218, .5);
}

.btn-light.disabled,
.btn-light:disabled {
  color: #212529;
  background-color: #f9f9f9;
  border-color: #f9f9f9;
}

.btn-light:not(:disabled):not(.disabled):active,
.btn-light:not(:disabled):not(.disabled).active,
.show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: #e0e0e0;
  border-color: #d9d9d9;
}

.btn-light:not(:disabled):not(.disabled):active:focus,
.btn-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(217, 217, 218, .5);
}

.btn-dark {
  color: #fff;
  background-color: #4a545b;
  border-color: #4a545b;
}

.btn-dark:hover {
  color: #fff;
  background-color: #394146;
  border-color: #333a3f;
}

.btn-dark:focus,
.btn-dark.focus {
  box-shadow: 0 0 0 .2rem rgba(101, 110, 116, .5);
}

.btn-dark.disabled,
.btn-dark:disabled {
  color: #fff;
  background-color: #4a545b;
  border-color: #4a545b;
}

.btn-dark:not(:disabled):not(.disabled):active,
.btn-dark:not(:disabled):not(.disabled).active,
.show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #333a3f;
  border-color: #2d3438;
}

.btn-dark:not(:disabled):not(.disabled):active:focus,
.btn-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(101, 110, 116, .5);
}

.btn-outline-primary {
  color: #e30613;
  border-color: #e30613;
}

.btn-outline-primary:hover {
  color: #fff;
  background-color: #e30613;
  border-color: #e30613;
}

.btn-outline-primary:focus,
.btn-outline-primary.focus {
  box-shadow: 0 0 0 .2rem rgba(227, 6, 19, .5);
}

.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
  color: #e30613;
  background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled):active,
.btn-outline-primary:not(:disabled):not(.disabled).active,
.show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #e30613;
  border-color: #e30613;
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(227, 6, 19, .5);
}

.btn-outline-secondary {
  color: #f6f6f6;
  border-color: #f6f6f6;
}

.btn-outline-secondary:hover {
  color: #212529;
  background-color: #f6f6f6;
  border-color: #f6f6f6;
}

.btn-outline-secondary:focus,
.btn-outline-secondary.focus {
  box-shadow: 0 0 0 .2rem rgba(246, 246, 246, .5);
}

.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
  color: #f6f6f6;
  background-color: transparent;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active,
.btn-outline-secondary:not(:disabled):not(.disabled).active,
.show > .btn-outline-secondary.dropdown-toggle {
  color: #212529;
  background-color: #f6f6f6;
  border-color: #f6f6f6;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(246, 246, 246, .5);
}

.btn-outline-success {
  color: #3cc261;
  border-color: #3cc261;
}

.btn-outline-success:hover {
  color: #fff;
  background-color: #3cc261;
  border-color: #3cc261;
}

.btn-outline-success:focus,
.btn-outline-success.focus {
  box-shadow: 0 0 0 .2rem rgba(60, 194, 97, .5);
}

.btn-outline-success.disabled,
.btn-outline-success:disabled {
  color: #3cc261;
  background-color: transparent;
}

.btn-outline-success:not(:disabled):not(.disabled):active,
.btn-outline-success:not(:disabled):not(.disabled).active,
.show > .btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #3cc261;
  border-color: #3cc261;
}

.btn-outline-success:not(:disabled):not(.disabled):active:focus,
.btn-outline-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(60, 194, 97, .5);
}

.btn-outline-info {
  color: #26b6cf;
  border-color: #26b6cf;
}

.btn-outline-info:hover {
  color: #fff;
  background-color: #26b6cf;
  border-color: #26b6cf;
}

.btn-outline-info:focus,
.btn-outline-info.focus {
  box-shadow: 0 0 0 .2rem rgba(38, 182, 207, .5);
}

.btn-outline-info.disabled,
.btn-outline-info:disabled {
  color: #26b6cf;
  background-color: transparent;
}

.btn-outline-info:not(:disabled):not(.disabled):active,
.btn-outline-info:not(:disabled):not(.disabled).active,
.show > .btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #26b6cf;
  border-color: #26b6cf;
}

.btn-outline-info:not(:disabled):not(.disabled):active:focus,
.btn-outline-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(38, 182, 207, .5);
}

.btn-outline-warning {
  color: #ffbd5d;
  border-color: #ffbd5d;
}

.btn-outline-warning:hover {
  color: #212529;
  background-color: #ffbd5d;
  border-color: #ffbd5d;
}

.btn-outline-warning:focus,
.btn-outline-warning.focus {
  box-shadow: 0 0 0 .2rem rgba(255, 189, 93, .5);
}

.btn-outline-warning.disabled,
.btn-outline-warning:disabled {
  color: #ffbd5d;
  background-color: transparent;
}

.btn-outline-warning:not(:disabled):not(.disabled):active,
.btn-outline-warning:not(:disabled):not(.disabled).active,
.show > .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #ffbd5d;
  border-color: #ffbd5d;
}

.btn-outline-warning:not(:disabled):not(.disabled):active:focus,
.btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(255, 189, 93, .5);
}

.btn-outline-danger {
  color: #e52427;
  border-color: #e52427;
}

.btn-outline-danger:hover {
  color: #fff;
  background-color: #e52427;
  border-color: #e52427;
}

.btn-outline-danger:focus,
.btn-outline-danger.focus {
  box-shadow: 0 0 0 .2rem rgba(229, 36, 39, .5);
}

.btn-outline-danger.disabled,
.btn-outline-danger:disabled {
  color: #e52427;
  background-color: transparent;
}

.btn-outline-danger:not(:disabled):not(.disabled):active,
.btn-outline-danger:not(:disabled):not(.disabled).active,
.show > .btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #e52427;
  border-color: #e52427;
}

.btn-outline-danger:not(:disabled):not(.disabled):active:focus,
.btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(229, 36, 39, .5);
}

.btn-outline-light {
  color: #f9f9f9;
  border-color: #f9f9f9;
}

.btn-outline-light:hover {
  color: #212529;
  background-color: #f9f9f9;
  border-color: #f9f9f9;
}

.btn-outline-light:focus,
.btn-outline-light.focus {
  box-shadow: 0 0 0 .2rem rgba(249, 249, 249, .5);
}

.btn-outline-light.disabled,
.btn-outline-light:disabled {
  color: #f9f9f9;
  background-color: transparent;
}

.btn-outline-light:not(:disabled):not(.disabled):active,
.btn-outline-light:not(:disabled):not(.disabled).active,
.show > .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #f9f9f9;
  border-color: #f9f9f9;
}

.btn-outline-light:not(:disabled):not(.disabled):active:focus,
.btn-outline-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(249, 249, 249, .5);
}

.btn-outline-dark {
  color: #4a545b;
  border-color: #4a545b;
}

.btn-outline-dark:hover {
  color: #fff;
  background-color: #4a545b;
  border-color: #4a545b;
}

.btn-outline-dark:focus,
.btn-outline-dark.focus {
  box-shadow: 0 0 0 .2rem rgba(74, 84, 91, .5);
}

.btn-outline-dark.disabled,
.btn-outline-dark:disabled {
  color: #4a545b;
  background-color: transparent;
}

.btn-outline-dark:not(:disabled):not(.disabled):active,
.btn-outline-dark:not(:disabled):not(.disabled).active,
.show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #4a545b;
  border-color: #4a545b;
}

.btn-outline-dark:not(:disabled):not(.disabled):active:focus,
.btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(74, 84, 91, .5);
}

.btn-link {
  font-weight: 400;
  color: #e30613;
  text-decoration: none;
}

.btn-link:hover {
  color: #98040d;
  text-decoration: underline;
}

.btn-link:focus,
.btn-link.focus {
  text-decoration: underline;
  box-shadow: none;
}

.btn-link:disabled,
.btn-link.disabled {
  color: #798490;
  pointer-events: none;
}

.btn-lg,
.btn-group-lg > .btn,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .btn-group-lg > .watchlist-listing-link,
.hbspt-form .btn-group-lg > input.hs-button,
.btn-buy,
.btn-mark,
.btn-marked {
  padding: 2px 12px;
  font-size: 1rem;
  line-height: 38px;
  border-radius: 3px;
}

.btn-sm,
.btn-group-sm > .btn,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .btn-group-sm > .watchlist-listing-link,
.hbspt-form .btn-group-sm > input.hs-button {
  padding: 2px 12px;
  font-size: .875rem;
  line-height: 30px;
  border-radius: 3px;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-block + .btn-block {
  margin-top: .5rem;
}

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}

.fade {
  -webkit-transition: opacity .15s linear;
  transition: opacity .15s linear;
}

@media (prefers-reduced-motion:reduce) {
  .fade {
    -webkit-transition: none;
    transition: none;
  }
}

.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition: height .35s ease;
  transition: height .35s ease;
}

@media (prefers-reduced-motion:reduce) {
  .collapsing {
    -webkit-transition: none;
    transition: none;
  }
}

.dropup,
.dropright,
.dropdown,
.dropleft {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}

.dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}

.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: .5rem 0;
  margin: .125rem 0 0;
  font-size: .9375rem;
  color: #111;
  text-align: left;
  list-style: none;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #bcc1c7;
  border-radius: 3px;
}

.dropdown-menu-left {
  right: auto;
  left: 0;
}

.dropdown-menu-right {
  right: 0;
  left: auto;
}

@media (min-width:576px) {
  .dropdown-menu-sm-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-sm-right {
    right: 0;
    left: auto;
  }
}

@media (min-width:768px) {
  .dropdown-menu-md-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-md-right {
    right: 0;
    left: auto;
  }
}

@media (min-width:1025px) {
  .dropdown-menu-lg-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-lg-right {
    right: 0;
    left: auto;
  }
}

@media (min-width:1200px) {
  .dropdown-menu-xl-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-xl-right {
    right: 0;
    left: auto;
  }
}

@media (min-width:1400px) {
  .dropdown-menu-xxl-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-xxl-right {
    right: 0;
    left: auto;
  }
}

.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: .125rem;
}

.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: 0;
  border-right: .3em solid transparent;
  border-bottom: .3em solid;
  border-left: .3em solid transparent;
}

.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-menu {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: .125rem;
}

.dropright .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid transparent;
  border-right: 0;
  border-bottom: .3em solid transparent;
  border-left: .3em solid;
}

.dropright .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-toggle::after {
  vertical-align: 0;
}

.dropleft .dropdown-menu {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: .125rem;
}

.dropleft .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
}

.dropleft .dropdown-toggle::after {
  display: none;
}

.dropleft .dropdown-toggle::before {
  display: inline-block;
  margin-right: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid transparent;
  border-right: .3em solid;
  border-bottom: .3em solid transparent;
}

.dropleft .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropleft .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-menu[x-placement^="top"],
.dropdown-menu[x-placement^="right"],
.dropdown-menu[x-placement^="bottom"],
.dropdown-menu[x-placement^="left"] {
  right: auto;
  bottom: auto;
}

.dropdown-divider {
  height: 0;
  margin: .5rem 0;
  overflow: hidden;
  border-top: 1px solid #eee;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: .25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: #16181b;
  text-decoration: none;
  background-color: #f9f9f9;
}

.dropdown-item.active,
.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #e30613;
}

.dropdown-item.disabled,
.dropdown-item:disabled {
  color: #798490;
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: .5rem 1.5rem;
  margin-bottom: 0;
  font-size: .75rem;
  color: #798490;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: .25rem 1.5rem;
  color: #212529;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flex;
  vertical-align: middle;
}

.btn-group > .btn,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .btn-group > .watchlist-listing-link,
.hbspt-form .btn-group > input.hs-button,
.btn-group-vertical > .btn,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .btn-group-vertical > .watchlist-listing-link,
.hbspt-form .btn-group-vertical > input.hs-button {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.btn-group > .btn:hover,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .btn-group > .watchlist-listing-link:hover,
.hbspt-form .btn-group > input.hs-button:hover,
.btn-group-vertical > .btn:hover,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .btn-group-vertical > .watchlist-listing-link:hover,
.hbspt-form .btn-group-vertical > input.hs-button:hover {
  z-index: 1;
}

.btn-group > .btn:focus,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .btn-group > .watchlist-listing-link:focus,
.hbspt-form .btn-group > input.hs-button:focus,
.btn-group > .btn:active,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .btn-group > .watchlist-listing-link:active,
.hbspt-form .btn-group > input.hs-button:active,
.btn-group > .btn.active,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .btn-group > .active.watchlist-listing-link,
.hbspt-form .btn-group > input.active.hs-button,
.btn-group-vertical > .btn:focus,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .btn-group-vertical > .watchlist-listing-link:focus,
.hbspt-form .btn-group-vertical > input.hs-button:focus,
.btn-group-vertical > .btn:active,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .btn-group-vertical > .watchlist-listing-link:active,
.hbspt-form .btn-group-vertical > input.hs-button:active,
.btn-group-vertical > .btn.active,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .btn-group-vertical > .active.watchlist-listing-link,
.hbspt-form .btn-group-vertical > input.active.hs-button {
  z-index: 1;
}

.btn-toolbar {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.btn-toolbar .input-group {
  width: auto;
}

.btn-group > .btn:not(:first-child),
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .btn-group > .watchlist-listing-link:not(:first-child),
.hbspt-form .btn-group > input.hs-button:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
  margin-left: -1px;
}

.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .btn-group > .watchlist-listing-link:not(:last-child):not(.dropdown-toggle),
.hbspt-form .btn-group > input.hs-button:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .btn-group > .btn-group:not(:last-child) > .watchlist-listing-link,
.hbspt-form .btn-group > .btn-group:not(:last-child) > input.hs-button {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.btn-group > .btn:not(:first-child),
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .btn-group > .watchlist-listing-link:not(:first-child),
.hbspt-form .btn-group > input.hs-button:not(:first-child),
.btn-group > .btn-group:not(:first-child) > .btn,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .btn-group > .btn-group:not(:first-child) > .watchlist-listing-link,
.hbspt-form .btn-group > .btn-group:not(:first-child) > input.hs-button {
  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,
.dropright .dropdown-toggle-split::after {
  margin-left: 0;
}

.dropleft .dropdown-toggle-split::before {
  margin-right: 0;
}

.btn-sm + .dropdown-toggle-split,
.btn-group-sm > .btn + .dropdown-toggle-split,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .btn-group-sm > .watchlist-listing-link + .dropdown-toggle-split,
.hbspt-form .btn-group-sm > input.hs-button + .dropdown-toggle-split {
  padding-right: 9px;
  padding-left: 9px;
}

.btn-lg + .dropdown-toggle-split,
.btn-group-lg > .btn + .dropdown-toggle-split,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .btn-group-lg > .watchlist-listing-link + .dropdown-toggle-split,
.hbspt-form .btn-group-lg > input.hs-button + .dropdown-toggle-split,
.btn-buy + .dropdown-toggle-split,
.btn-mark + .dropdown-toggle-split,
.btn-marked + .dropdown-toggle-split {
  padding-right: 9px;
  padding-left: 9px;
}

.btn-group-vertical {
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: center;
  justify-content: center;
}

.btn-group-vertical > .btn,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .btn-group-vertical > .watchlist-listing-link,
.hbspt-form .btn-group-vertical > input.hs-button,
.btn-group-vertical > .btn-group {
  width: 100%;
}

.btn-group-vertical > .btn:not(:first-child),
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .btn-group-vertical > .watchlist-listing-link:not(:first-child),
.hbspt-form .btn-group-vertical > input.hs-button:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: -1px;
}

.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .btn-group-vertical > .watchlist-listing-link:not(:last-child):not(.dropdown-toggle),
.hbspt-form .btn-group-vertical > input.hs-button:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .btn-group-vertical > .btn-group:not(:last-child) > .watchlist-listing-link,
.hbspt-form .btn-group-vertical > .btn-group:not(:last-child) > input.hs-button {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group-vertical > .btn:not(:first-child),
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .btn-group-vertical > .watchlist-listing-link:not(:first-child),
.hbspt-form .btn-group-vertical > input.hs-button:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) > .btn,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .btn-group-vertical > .btn-group:not(:first-child) > .watchlist-listing-link,
.hbspt-form .btn-group-vertical > .btn-group:not(:first-child) > input.hs-button {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.btn-group-toggle > .btn,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .btn-group-toggle > .watchlist-listing-link,
.hbspt-form .btn-group-toggle > input.hs-button,
.btn-group-toggle > .btn-group > .btn,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .btn-group-toggle > .btn-group > .watchlist-listing-link,
.hbspt-form .btn-group-toggle > .btn-group > input.hs-button {
  margin-bottom: 0;
}

.btn-group-toggle > .btn input[type="radio"],
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .btn-group-toggle > .watchlist-listing-link input[type="radio"],
.hbspt-form .btn-group-toggle > input.hs-button input[type="radio"],
.btn-group-toggle > .btn input[type="checkbox"],
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .btn-group-toggle > .watchlist-listing-link input[type="checkbox"],
.hbspt-form .btn-group-toggle > input.hs-button input[type="checkbox"],
.btn-group-toggle > .btn-group > .btn input[type="radio"],
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .btn-group-toggle > .btn-group > .watchlist-listing-link input[type="radio"],
.hbspt-form .btn-group-toggle > .btn-group > input.hs-button input[type="radio"],
.btn-group-toggle > .btn-group > .btn input[type="checkbox"],
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .btn-group-toggle > .btn-group > .watchlist-listing-link input[type="checkbox"],
.hbspt-form .btn-group-toggle > .btn-group > input.hs-button input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.input-group {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
}

.input-group > .form-control,
.hbspt-form .input-group > input.hs-input[type="text"],
.hbspt-form .input-group > input.hs-input[type="tel"],
.hbspt-form .input-group > input.hs-input[type="email"],
.input-group > .form-control-plaintext,
.input-group > .custom-select,
.hbspt-form .input-group > select.hs-input,
.input-group > .custom-file {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 1%;
  margin-bottom: 0;
}

.input-group > .form-control + .form-control,
.hbspt-form .input-group > input.hs-input[type="text"] + .form-control,
.hbspt-form .input-group > input.hs-input[type="text"] + input.hs-input[type="text"],
.hbspt-form .input-group > input.hs-input[type="text"] + input.hs-input[type="tel"],
.hbspt-form .input-group > input.hs-input[type="text"] + input.hs-input[type="email"],
.hbspt-form .input-group > input.hs-input[type="tel"] + .form-control,
.hbspt-form .input-group > input.hs-input[type="tel"] + input.hs-input[type="text"],
.hbspt-form .input-group > input.hs-input[type="tel"] + input.hs-input[type="tel"],
.hbspt-form .input-group > input.hs-input[type="tel"] + input.hs-input[type="email"],
.hbspt-form .input-group > input.hs-input[type="email"] + .form-control,
.hbspt-form .input-group > input.hs-input[type="email"] + input.hs-input[type="text"],
.hbspt-form .input-group > input.hs-input[type="email"] + input.hs-input[type="tel"],
.hbspt-form .input-group > input.hs-input[type="email"] + input.hs-input[type="email"],
.hbspt-form .input-group > .form-control + input.hs-input[type="text"],
.hbspt-form .input-group > .form-control + input.hs-input[type="tel"],
.hbspt-form .input-group > .form-control + input.hs-input[type="email"],
.input-group > .form-control + .custom-select,
.hbspt-form .input-group > input.hs-input[type="text"] + .custom-select,
.hbspt-form .input-group > input.hs-input[type="text"] + select.hs-input,
.hbspt-form .input-group > input.hs-input[type="tel"] + .custom-select,
.hbspt-form .input-group > input.hs-input[type="tel"] + select.hs-input,
.hbspt-form .input-group > input.hs-input[type="email"] + .custom-select,
.hbspt-form .input-group > input.hs-input[type="email"] + select.hs-input,
.hbspt-form .input-group > .form-control + select.hs-input,
.input-group > .form-control + .custom-file,
.hbspt-form .input-group > input.hs-input[type="text"] + .custom-file,
.hbspt-form .input-group > input.hs-input[type="tel"] + .custom-file,
.hbspt-form .input-group > input.hs-input[type="email"] + .custom-file,
.input-group > .form-control-plaintext + .form-control,
.hbspt-form .input-group > .form-control-plaintext + input.hs-input[type="text"],
.hbspt-form .input-group > .form-control-plaintext + input.hs-input[type="tel"],
.hbspt-form .input-group > .form-control-plaintext + input.hs-input[type="email"],
.input-group > .form-control-plaintext + .custom-select,
.hbspt-form .input-group > .form-control-plaintext + select.hs-input,
.input-group > .form-control-plaintext + .custom-file,
.input-group > .custom-select + .form-control,
.hbspt-form .input-group > select.hs-input + .form-control,
.hbspt-form .input-group > .custom-select + input.hs-input[type="text"],
.hbspt-form .input-group > .custom-select + input.hs-input[type="tel"],
.hbspt-form .input-group > .custom-select + input.hs-input[type="email"],
.hbspt-form .input-group > select.hs-input + input.hs-input[type="text"],
.hbspt-form .input-group > select.hs-input + input.hs-input[type="tel"],
.hbspt-form .input-group > select.hs-input + input.hs-input[type="email"],
.input-group > .custom-select + .custom-select,
.hbspt-form .input-group > select.hs-input + .custom-select,
.hbspt-form .input-group > .custom-select + select.hs-input,
.hbspt-form .input-group > select.hs-input + select.hs-input,
.input-group > .custom-select + .custom-file,
.hbspt-form .input-group > select.hs-input + .custom-file,
.input-group > .custom-file + .form-control,
.hbspt-form .input-group > .custom-file + input.hs-input[type="text"],
.hbspt-form .input-group > .custom-file + input.hs-input[type="tel"],
.hbspt-form .input-group > .custom-file + input.hs-input[type="email"],
.input-group > .custom-file + .custom-select,
.hbspt-form .input-group > .custom-file + select.hs-input,
.input-group > .custom-file + .custom-file {
  margin-left: -1px;
}

.input-group > .form-control:focus,
.hbspt-form .input-group > input.hs-input[type="text"]:focus,
.hbspt-form .input-group > input.hs-input[type="tel"]:focus,
.hbspt-form .input-group > input.hs-input[type="email"]:focus,
.input-group > .custom-select:focus,
.hbspt-form .input-group > select.hs-input:focus,
.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
  z-index: 3;
}

.input-group > .custom-file .custom-file-input:focus {
  z-index: 4;
}

.input-group > .form-control:not(:last-child),
.hbspt-form .input-group > input.hs-input[type="text"]:not(:last-child),
.hbspt-form .input-group > input.hs-input[type="tel"]:not(:last-child),
.hbspt-form .input-group > input.hs-input[type="email"]:not(:last-child),
.input-group > .custom-select:not(:last-child),
.hbspt-form .input-group > select.hs-input:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .form-control:not(:first-child),
.hbspt-form .input-group > input.hs-input[type="text"]:not(:first-child),
.hbspt-form .input-group > input.hs-input[type="tel"]:not(:first-child),
.hbspt-form .input-group > input.hs-input[type="email"]:not(:first-child),
.input-group > .custom-select:not(:first-child),
.hbspt-form .input-group > select.hs-input:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group > .custom-file {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.input-group > .custom-file:not(:last-child) .custom-file-label,
.input-group > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .custom-file:not(:first-child) .custom-file-label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group-prepend,
.input-group-append {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.input-group-prepend .btn,
.input-group-prepend .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .watchlist-listing-link,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .input-group-prepend .watchlist-listing-link,
.input-group-prepend .hbspt-form input.hs-button,
.hbspt-form .input-group-prepend input.hs-button,
.input-group-append .btn,
.input-group-append .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .watchlist-listing-link,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .input-group-append .watchlist-listing-link,
.input-group-append .hbspt-form input.hs-button,
.hbspt-form .input-group-append input.hs-button {
  position: relative;
  z-index: 2;
}

.input-group-prepend .btn:focus,
.input-group-prepend .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .watchlist-listing-link:focus,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .input-group-prepend .watchlist-listing-link:focus,
.input-group-prepend .hbspt-form input.hs-button:focus,
.hbspt-form .input-group-prepend input.hs-button:focus,
.input-group-append .btn:focus,
.input-group-append .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .watchlist-listing-link:focus,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .input-group-append .watchlist-listing-link:focus,
.input-group-append .hbspt-form input.hs-button:focus,
.hbspt-form .input-group-append input.hs-button:focus {
  z-index: 3;
}

.input-group-prepend .btn + .btn,
.input-group-prepend .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .watchlist-listing-link + .btn,
.input-group-prepend .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .watchlist-listing-link + .watchlist-listing-link,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .input-group-prepend .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .watchlist-listing-link + .watchlist-listing-link,
.input-group-prepend .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .hbspt-form .watchlist-listing-link + input.hs-button,
.hbspt-form .input-group-prepend .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .watchlist-listing-link + input.hs-button,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .input-group-prepend .watchlist-listing-link + .btn,
.input-group-prepend .hbspt-form input.hs-button + .btn,
.input-group-prepend .hbspt-form .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child input.hs-button + .watchlist-listing-link,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .input-group-prepend .hbspt-form input.hs-button + .watchlist-listing-link,
.input-group-prepend .hbspt-form .hbspt-form input.hs-button + input.hs-button,
.hbspt-form .input-group-prepend .hbspt-form input.hs-button + input.hs-button,
.hbspt-form .input-group-prepend input.hs-button + .btn,
.input-group-prepend .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .btn + .watchlist-listing-link,
.input-group-prepend .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .hbspt-form input.hs-button + .watchlist-listing-link,
.hbspt-form .input-group-prepend .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child input.hs-button + .watchlist-listing-link,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .input-group-prepend .btn + .watchlist-listing-link,
.input-group-prepend .hbspt-form .btn + input.hs-button,
.hbspt-form .input-group-prepend .btn + input.hs-button,
.input-group-prepend .btn + .input-group-text,
.input-group-prepend .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .watchlist-listing-link + .input-group-text,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .input-group-prepend .watchlist-listing-link + .input-group-text,
.input-group-prepend .hbspt-form input.hs-button + .input-group-text,
.hbspt-form .input-group-prepend input.hs-button + .input-group-text,
.input-group-prepend .input-group-text + .input-group-text,
.input-group-prepend .input-group-text + .btn,
.input-group-prepend .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .input-group-text + .watchlist-listing-link,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .input-group-prepend .input-group-text + .watchlist-listing-link,
.input-group-prepend .hbspt-form .input-group-text + input.hs-button,
.hbspt-form .input-group-prepend .input-group-text + input.hs-button,
.input-group-append .btn + .btn,
.input-group-append .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .watchlist-listing-link + .btn,
.input-group-append .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .watchlist-listing-link + .watchlist-listing-link,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .input-group-append .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .watchlist-listing-link + .watchlist-listing-link,
.input-group-append .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .hbspt-form .watchlist-listing-link + input.hs-button,
.hbspt-form .input-group-append .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .watchlist-listing-link + input.hs-button,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .input-group-append .watchlist-listing-link + .btn,
.input-group-append .hbspt-form input.hs-button + .btn,
.input-group-append .hbspt-form .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child input.hs-button + .watchlist-listing-link,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .input-group-append .hbspt-form input.hs-button + .watchlist-listing-link,
.input-group-append .hbspt-form .hbspt-form input.hs-button + input.hs-button,
.hbspt-form .input-group-append .hbspt-form input.hs-button + input.hs-button,
.hbspt-form .input-group-append input.hs-button + .btn,
.input-group-append .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .btn + .watchlist-listing-link,
.input-group-append .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .hbspt-form input.hs-button + .watchlist-listing-link,
.hbspt-form .input-group-append .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child input.hs-button + .watchlist-listing-link,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .input-group-append .btn + .watchlist-listing-link,
.input-group-append .hbspt-form .btn + input.hs-button,
.hbspt-form .input-group-append .btn + input.hs-button,
.input-group-append .btn + .input-group-text,
.input-group-append .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .watchlist-listing-link + .input-group-text,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .input-group-append .watchlist-listing-link + .input-group-text,
.input-group-append .hbspt-form input.hs-button + .input-group-text,
.hbspt-form .input-group-append input.hs-button + .input-group-text,
.input-group-append .input-group-text + .input-group-text,
.input-group-append .input-group-text + .btn,
.input-group-append .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .input-group-text + .watchlist-listing-link,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .input-group-append .input-group-text + .watchlist-listing-link,
.input-group-append .hbspt-form .input-group-text + input.hs-button,
.hbspt-form .input-group-append .input-group-text + input.hs-button {
  margin-left: -1px;
}

.input-group-prepend {
  margin-right: -1px;
}

.input-group-append {
  margin-left: -1px;
}

.input-group-text {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding: .5625rem .5625rem;
  margin-bottom: 0;
  font-size: .9375rem;
  font-weight: 400;
  line-height: 1.5;
  color: #111;
  text-align: center;
  white-space: nowrap;
  background-color: #eee;
  border: 1px solid #bcc1c7;
  border-radius: 3px;
}

.input-group-text input[type="radio"],
.input-group-text input[type="checkbox"] {
  margin-top: 0;
}

.input-group-lg > .form-control:not(textarea),
.hbspt-form .input-group-lg > input.hs-input[type="text"]:not(textarea),
.hbspt-form .input-group-lg > input.hs-input[type="tel"]:not(textarea),
.hbspt-form .input-group-lg > input.hs-input[type="email"]:not(textarea),
.input-group-lg > .custom-select,
.hbspt-form .input-group-lg > select.hs-input {
  height: calc(1.5em + 1rem + 2px);
}

.input-group-lg > .form-control,
.hbspt-form .input-group-lg > input.hs-input[type="text"],
.hbspt-form .input-group-lg > input.hs-input[type="tel"],
.hbspt-form .input-group-lg > input.hs-input[type="email"],
.input-group-lg > .custom-select,
.hbspt-form .input-group-lg > select.hs-input,
.input-group-lg > .input-group-prepend > .input-group-text,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .input-group-lg > .input-group-prepend > .watchlist-listing-link,
.hbspt-form .input-group-lg > .input-group-prepend > input.hs-button,
.input-group-lg > .input-group-append > .btn,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .input-group-lg > .input-group-append > .watchlist-listing-link,
.hbspt-form .input-group-lg > .input-group-append > input.hs-button {
  padding: .5rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 3px;
}

.input-group-sm > .form-control:not(textarea),
.hbspt-form .input-group-sm > input.hs-input[type="text"]:not(textarea),
.hbspt-form .input-group-sm > input.hs-input[type="tel"]:not(textarea),
.hbspt-form .input-group-sm > input.hs-input[type="email"]:not(textarea),
.input-group-sm > .custom-select,
.hbspt-form .input-group-sm > select.hs-input {
  height: calc(1.5em + .5rem + 2px);
}

.input-group-sm > .form-control,
.hbspt-form .input-group-sm > input.hs-input[type="text"],
.hbspt-form .input-group-sm > input.hs-input[type="tel"],
.hbspt-form .input-group-sm > input.hs-input[type="email"],
.input-group-sm > .custom-select,
.hbspt-form .input-group-sm > select.hs-input,
.input-group-sm > .input-group-prepend > .input-group-text,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .input-group-sm > .input-group-prepend > .watchlist-listing-link,
.hbspt-form .input-group-sm > .input-group-prepend > input.hs-button,
.input-group-sm > .input-group-append > .btn,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .input-group-sm > .input-group-append > .watchlist-listing-link,
.hbspt-form .input-group-sm > .input-group-append > input.hs-button {
  padding: .25rem .5rem;
  font-size: .75rem;
  line-height: 1.5;
  border-radius: 3px;
}

.input-group-lg > .custom-select,
.hbspt-form .input-group-lg > select.hs-input,
.input-group-sm > .custom-select,
.hbspt-form .input-group-sm > select.hs-input {
  padding-right: 1.5625rem;
}

.input-group > .input-group-prepend > .btn,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .input-group > .input-group-prepend > .watchlist-listing-link,
.hbspt-form .input-group > .input-group-prepend > input.hs-button,
.input-group > .input-group-prepend > .input-group-text,
.input-group > .input-group-append:not(:last-child) > .btn,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .input-group > .input-group-append:not(:last-child) > .watchlist-listing-link,
.hbspt-form .input-group > .input-group-append:not(:last-child) > input.hs-button,
.input-group > .input-group-append:not(:last-child) > .input-group-text,
.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .input-group > .input-group-append:last-child > .watchlist-listing-link:not(:last-child):not(.dropdown-toggle),
.hbspt-form .input-group > .input-group-append:last-child > input.hs-button:not(:last-child):not(.dropdown-toggle),
.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .input-group-append > .btn,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .input-group > .input-group-append > .watchlist-listing-link,
.hbspt-form .input-group > .input-group-append > input.hs-button,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:not(:first-child) > .btn,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .input-group > .input-group-prepend:not(:first-child) > .watchlist-listing-link,
.hbspt-form .input-group > .input-group-prepend:not(:first-child) > input.hs-button,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .input-group > .input-group-prepend:first-child > .watchlist-listing-link:not(:first-child),
.hbspt-form .input-group > .input-group-prepend:first-child > input.hs-button:not(:first-child),
.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.custom-control {
  position: relative;
  display: block;
  min-height: 1.40625rem;
  padding-left: 1.5rem;
}

.custom-control-inline {
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flex;
  margin-right: 1rem;
}

.custom-control-input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.custom-control-input:checked ~ .custom-control-label::before,
.hbspt-form .hs-form-radio-display .custom-control-input:checked ~ label::before {
  color: #fff;
  border-color: #e30613;
  background-color: #e30613;
}

.custom-control-input:focus ~ .custom-control-label::before,
.hbspt-form .hs-form-radio-display .custom-control-input:focus ~ label::before {
  box-shadow: 0 0 0 .2rem rgba(227, 6, 19, .25);
}

.custom-control-input:focus:not(:checked) ~ .custom-control-label::before,
.hbspt-form .hs-form-radio-display .custom-control-input:focus:not(:checked) ~ label::before {
  border-color: #e30613;
}

.custom-control-input:not(:disabled):active ~ .custom-control-label::before,
.hbspt-form .hs-form-radio-display .custom-control-input:not(:disabled):active ~ label::before {
  color: #fff;
  background-color: #e30613;
  border-color: #e30613;
}

.custom-control-input:disabled ~ .custom-control-label,
.hbspt-form .hs-form-radio-display .custom-control-input:disabled ~ label {
  color: #798490;
}

.custom-control-input:disabled ~ .custom-control-label::before,
.hbspt-form .hs-form-radio-display .custom-control-input:disabled ~ label::before {
  background-color: #eee;
}

.custom-control-label,
.hbspt-form .hs-form-radio-display label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
}

.custom-control-label::before,
.hbspt-form .hs-form-radio-display label::before {
  position: absolute;
  top: .203125rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  background-color: #fff;
  border: #adb5bd solid 1px;
}

.custom-control-label::after,
.hbspt-form .hs-form-radio-display label::after {
  position: absolute;
  top: .203125rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background: no-repeat 50%/50% 50%;
}

.custom-checkbox .custom-control-label::before,
.custom-checkbox .hbspt-form .hs-form-radio-display label::before,
.hbspt-form .hs-form-radio-display .custom-checkbox label::before {
  border-radius: 3px;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after,
.custom-checkbox .hbspt-form .hs-form-radio-display .custom-control-input:checked ~ label::after,
.hbspt-form .hs-form-radio-display .custom-checkbox .custom-control-input:checked ~ label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'0 0 8 8\'%3e%3cpath fill=\'%23fff\' d=\'M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z\'/%3e%3c/svg%3e");
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before,
.custom-checkbox .hbspt-form .hs-form-radio-display .custom-control-input:indeterminate ~ label::before,
.hbspt-form .hs-form-radio-display .custom-checkbox .custom-control-input:indeterminate ~ label::before {
  border-color: #e30613;
  background-color: #e30613;
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after,
.custom-checkbox .hbspt-form .hs-form-radio-display .custom-control-input:indeterminate ~ label::after,
.hbspt-form .hs-form-radio-display .custom-checkbox .custom-control-input:indeterminate ~ label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'0 0 4 4\'%3e%3cpath stroke=\'%23fff\' d=\'M0 2h4\'/%3e%3c/svg%3e");
}

.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before,
.custom-checkbox .hbspt-form .hs-form-radio-display .custom-control-input:disabled:checked ~ label::before,
.hbspt-form .hs-form-radio-display .custom-checkbox .custom-control-input:disabled:checked ~ label::before {
  background-color: rgba(227, 6, 19, .5);
}

.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before,
.custom-checkbox .hbspt-form .hs-form-radio-display .custom-control-input:disabled:indeterminate ~ label::before,
.hbspt-form .hs-form-radio-display .custom-checkbox .custom-control-input:disabled:indeterminate ~ label::before {
  background-color: rgba(227, 6, 19, .5);
}

.custom-radio .custom-control-label::before,
.custom-radio .hbspt-form .hs-form-radio-display label::before,
.hbspt-form .hs-form-radio-display .custom-radio label::before {
  border-radius: 50%;
}

.custom-radio .custom-control-input:checked ~ .custom-control-label::after,
.custom-radio .hbspt-form .hs-form-radio-display .custom-control-input:checked ~ label::after,
.hbspt-form .hs-form-radio-display .custom-radio .custom-control-input:checked ~ label::after {
  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");
}

.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before,
.custom-radio .hbspt-form .hs-form-radio-display .custom-control-input:disabled:checked ~ label::before,
.hbspt-form .hs-form-radio-display .custom-radio .custom-control-input:disabled:checked ~ label::before {
  background-color: rgba(227, 6, 19, .5);
}

.custom-switch {
  padding-left: 2.25rem;
}

.custom-switch .custom-control-label::before,
.custom-switch .hbspt-form .hs-form-radio-display label::before,
.hbspt-form .hs-form-radio-display .custom-switch label::before {
  left: -2.25rem;
  width: 1.75rem;
  pointer-events: all;
  border-radius: .5rem;
}

.custom-switch .custom-control-label::after,
.custom-switch .hbspt-form .hs-form-radio-display label::after,
.hbspt-form .hs-form-radio-display .custom-switch label::after {
  top: calc(.203125rem + 2px);
  left: calc(-2.25rem + 2px);
  width: calc(1rem - 4px);
  height: calc(1rem - 4px);
  background-color: #adb5bd;
  border-radius: .5rem;
  transition: -ms-transform .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  transition: -webkit-transform .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  transition: transform .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  -webkit-transition: -webkit-transform .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

@media (prefers-reduced-motion:reduce) {

  .custom-switch .custom-control-label::after,
  .custom-switch .hbspt-form .hs-form-radio-display label::after,
  .hbspt-form .hs-form-radio-display .custom-switch label::after {
    -webkit-transition: none;
    transition: none;
  }
}

.custom-switch .custom-control-input:checked ~ .custom-control-label::after,
.custom-switch .hbspt-form .hs-form-radio-display .custom-control-input:checked ~ label::after,
.hbspt-form .hs-form-radio-display .custom-switch .custom-control-input:checked ~ label::after {
  background-color: #fff;
  -ms-transform: translateX(.75rem);
  -webkit-transform: translateX(.75rem);
  transform: translateX(.75rem);
}

.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before,
.custom-switch .hbspt-form .hs-form-radio-display .custom-control-input:disabled:checked ~ label::before,
.hbspt-form .hs-form-radio-display .custom-switch .custom-control-input:disabled:checked ~ label::before {
  background-color: rgba(227, 6, 19, .5);
}

.custom-select,
.hbspt-form select.hs-input {
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 1.125rem + 2px);
  padding: .5625rem 1.5625rem .5625rem .5625rem;
  font-size: .9375rem;
  font-weight: 400;
  line-height: 1.5;
  color: #111;
  vertical-align: middle;
  background: url("data:image/svg+xml,%3csvg xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'0 0 4 5\'%3e%3cpath fill=\'%23111111\' d=\'M2 0L0 2h4zm0 5L0 3h4z\'/%3e%3c/svg%3e") no-repeat right .5625rem center/8px 10px;
  background-color: #fff;
  border: 1px solid #bcc1c7;
  border-radius: 3px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.custom-select:focus,
.hbspt-form select.hs-input:focus {
  border-color: #e30613;
  outline: 0;
  box-shadow: 0 0 0 .2rem rgba(227, 6, 19, .25);
}

.custom-select:focus::-ms-value,
.hbspt-form select.hs-input:focus::-ms-value {
  color: #111;
  background-color: #fff;
}

.custom-select[multiple],
.hbspt-form select.hs-input[multiple],
.custom-select[size]:not([size="1"]),
.hbspt-form select.hs-input[size]:not([size="1"]) {
  height: auto;
  padding-right: .5625rem;
  background-image: none;
}

.custom-select:disabled,
.hbspt-form select.hs-input:disabled {
  color: #798490;
  background-color: #eee;
}

.custom-select::-ms-expand,
.hbspt-form select.hs-input::-ms-expand {
  display: none;
}

.custom-select-sm {
  height: calc(1.5em + .5rem + 2px);
  padding-top: .25rem;
  padding-bottom: .25rem;
  padding-left: .5rem;
  font-size: .75rem;
}

.custom-select-lg {
  height: calc(1.5em + 1rem + 2px);
  padding-top: .5rem;
  padding-bottom: .5rem;
  padding-left: 1rem;
  font-size: 1rem;
}

.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 1.125rem + 2px);
  margin-bottom: 0;
}


.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(1.5em + 1.125rem + 2px);
  margin: 0;
  opacity: 0;
}

.custom-file-input:focus ~ .custom-file-label {
  border-color: #e30613;
  box-shadow: 0 0 0 .2rem rgba(227, 6, 19, .25);
}

.custom-file-input:disabled ~ .custom-file-label {
  background-color: #eee;
}

.custom-file-input:lang(en) ~ .custom-file-label::after {
  content: "Browse";
}

.custom-file-input ~ .custom-file-label[data-browse]::after {
  content: attr(data-browse);
}

.custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(1.5em + 1.125rem + 2px);
  padding: .5625rem .5625rem;
  font-weight: 400;
  line-height: 1.5;
  color: #111;
  background-color: #fff;
  border: 1px solid #bcc1c7;
  border-radius: 3px;
}

.custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: calc(1.5em + 1.125rem);
  padding: .5625rem .5625rem;
  line-height: 1.5;
  color: #111;
  content: "Browse";
  background-color: #eee;
  border-left: inherit;
  border-radius: 0 3px 3px 0;
}

.custom-range {
  width: 100%;
  height: calc(1rem + .4rem);
  padding: 0;
  background-color: transparent;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.custom-range:focus {
  outline: none;
}

.custom-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 .2rem rgba(227, 6, 19, .25);
}

.custom-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 .2rem rgba(227, 6, 19, .25);
}

.custom-range:focus::-ms-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 .2rem rgba(227, 6, 19, .25);
}

.custom-range::-moz-focus-outer {
  border: 0;
}

.custom-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -.25rem;
  background-color: #e30613;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

@media (prefers-reduced-motion:reduce) {
  .custom-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}

.custom-range::-webkit-slider-thumb:active {
  background-color: #fc9fa5;
}

.custom-range::-webkit-slider-runnable-track {
  width: 100%;
  height: .5rem;
  color: transparent;
  cursor: pointer;
  background-color: #bcc1c7;
  border-color: transparent;
  border-radius: 1rem;
}

.custom-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #e30613;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

@media (prefers-reduced-motion:reduce) {
  .custom-range::-moz-range-thumb {
    -webkit-transition: none;
    transition: none;
  }
}

.custom-range::-moz-range-thumb:active {
  background-color: #fc9fa5;
}

.custom-range::-moz-range-track {
  width: 100%;
  height: .5rem;
  color: transparent;
  cursor: pointer;
  background-color: #bcc1c7;
  border-color: transparent;
  border-radius: 1rem;
}

.custom-range::-ms-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: 0;
  margin-right: .2rem;
  margin-left: .2rem;
  background-color: #e30613;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

@media (prefers-reduced-motion:reduce) {
  .custom-range::-ms-thumb {
    -webkit-transition: none;
    transition: none;
  }
}

.custom-range::-ms-thumb:active {
  background-color: #fc9fa5;
}

.custom-range::-ms-track {
  width: 100%;
  height: .5rem;
  color: transparent;
  cursor: pointer;
  background-color: transparent;
  border-color: transparent;
  border-width: .5rem;
}

.custom-range::-ms-fill-lower {
  background-color: #bcc1c7;
  border-radius: 1rem;
}

.custom-range::-ms-fill-upper {
  margin-right: 15px;
  background-color: #bcc1c7;
  border-radius: 1rem;
}

.custom-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}

.custom-range:disabled::-webkit-slider-runnable-track {
  cursor: default;
}

.custom-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}

.custom-range:disabled::-moz-range-track {
  cursor: default;
}

.custom-range:disabled::-ms-thumb {
  background-color: #adb5bd;
}

.custom-control-label::before,
.hbspt-form .hs-form-radio-display label::before,
.custom-file-label,
.custom-select,
.hbspt-form select.hs-input {
  -webkit-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

@media (prefers-reduced-motion:reduce) {

  .custom-control-label::before,
  .hbspt-form .hs-form-radio-display label::before,
  .custom-file-label,
  .custom-select,
  .hbspt-form select.hs-input {
    -webkit-transition: none;
    transition: none;
  }
}

.nav {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: .5rem 1rem;
}

.nav-link:hover,
.nav-link:focus {
  text-decoration: none;
}

.nav-link.disabled {
  color: #798490;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #bcc1c7;
}

.nav-tabs .nav-item {
  margin-bottom: -1px;
}

.nav-tabs .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
  border-color: #eee #eee #bcc1c7;
}

.nav-tabs .nav-link.disabled {
  color: #798490;
  background-color: transparent;
  border-color: transparent;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #fff;
  border-color: #bcc1c7 #bcc1c7 #fff;
}

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  border-radius: 3px;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #e30613;
}

.nav-fill .nav-item {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified .nav-item {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: center;
}

.tab-content > .tab-pane {
  display: none;
}

.tab-content > .active {
  display: block;
}

.navbar {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: .5rem 1rem;
}

.navbar > .container,
.cms-section .navbar > .boxed,
.navbar > .container-fluid {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.navbar-brand {
  display: inline-block;
  padding-top: .453125rem;
  padding-bottom: .453125rem;
  margin-right: 1rem;
  font-size: 1rem;
  line-height: inherit;
  white-space: nowrap;
}

.navbar-brand:hover,
.navbar-brand:focus {
  text-decoration: none;
}

.navbar-nav {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}

.navbar-nav .dropdown-menu {
  position: static;
  float: none;
}

.navbar-text {
  display: inline-block;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.navbar-collapse {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-align: center;
  align-items: center;
}

.navbar-toggler {
  padding: .25rem .75rem;
  font-size: 1rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 3px;
}

.navbar-toggler:hover,
.navbar-toggler:focus {
  text-decoration: none;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: no-repeat center center;
  background-size: 100% 100%;
}

@media (max-width:575.98px) {

  .navbar-expand-sm > .container,
  .cms-section .navbar-expand-sm > .boxed,
  .navbar-expand-sm > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width:576px) {
  .navbar-expand-sm {
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .navbar-expand-sm .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: .5rem;
    padding-left: .5rem;
  }

  .navbar-expand-sm > .container,
  .cms-section .navbar-expand-sm > .boxed,
  .navbar-expand-sm > .container-fluid {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }

  .navbar-expand-sm .navbar-collapse {
    display: -ms-flexbox !important;
    display: -webkit-flex !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }

  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}

@media (max-width:767.98px) {

  .navbar-expand-md > .container,
  .cms-section .navbar-expand-md > .boxed,
  .navbar-expand-md > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width:768px) {
  .navbar-expand-md {
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .navbar-expand-md .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: .5rem;
    padding-left: .5rem;
  }

  .navbar-expand-md > .container,
  .cms-section .navbar-expand-md > .boxed,
  .navbar-expand-md > .container-fluid {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }

  .navbar-expand-md .navbar-collapse {
    display: -ms-flexbox !important;
    display: -webkit-flex !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }

  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}

@media (max-width:1024.98px) {

  .navbar-expand-lg > .container,
  .cms-section .navbar-expand-lg > .boxed,
  .navbar-expand-lg > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width:1025px) {
  .navbar-expand-lg {
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .navbar-expand-lg .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: .5rem;
    padding-left: .5rem;
  }

  .navbar-expand-lg > .container,
  .cms-section .navbar-expand-lg > .boxed,
  .navbar-expand-lg > .container-fluid {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }

  .navbar-expand-lg .navbar-collapse {
    display: -ms-flexbox !important;
    display: -webkit-flex !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }

  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}

@media (max-width:1199.98px) {

  .navbar-expand-xl > .container,
  .cms-section .navbar-expand-xl > .boxed,
  .navbar-expand-xl > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width:1200px) {
  .navbar-expand-xl {
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .navbar-expand-xl .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: .5rem;
    padding-left: .5rem;
  }

  .navbar-expand-xl > .container,
  .cms-section .navbar-expand-xl > .boxed,
  .navbar-expand-xl > .container-fluid {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }

  .navbar-expand-xl .navbar-collapse {
    display: -ms-flexbox !important;
    display: -webkit-flex !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }

  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}

@media (max-width:1399.98px) {

  .navbar-expand-xxl > .container,
  .cms-section .navbar-expand-xxl > .boxed,
  .navbar-expand-xxl > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width:1400px) {
  .navbar-expand-xxl {
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .navbar-expand-xxl .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .navbar-expand-xxl .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-xxl .navbar-nav .nav-link {
    padding-right: .5rem;
    padding-left: .5rem;
  }

  .navbar-expand-xxl > .container,
  .cms-section .navbar-expand-xxl > .boxed,
  .navbar-expand-xxl > .container-fluid {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }

  .navbar-expand-xxl .navbar-collapse {
    display: -ms-flexbox !important;
    display: -webkit-flex !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }

  .navbar-expand-xxl .navbar-toggler {
    display: none;
  }
}

.navbar-expand {
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.navbar-expand > .container,
.cms-section .navbar-expand > .boxed,
.navbar-expand > .container-fluid {
  padding-right: 0;
  padding-left: 0;
}

.navbar-expand .navbar-nav {
  -ms-flex-direction: row;
  flex-direction: row;
}

.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}

.navbar-expand .navbar-nav .nav-link {
  padding-right: .5rem;
  padding-left: .5rem;
}

.navbar-expand > .container,
.cms-section .navbar-expand > .boxed,
.navbar-expand > .container-fluid {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.navbar-expand .navbar-collapse {
  display: -ms-flexbox !important;
  display: -webkit-flex !important;
  display: flex !important;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}

.navbar-expand .navbar-toggler {
  display: none;
}

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, .9);
}

.navbar-light .navbar-brand:hover,
.navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, .9);
}

.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, .5);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, .7);
}

.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, .3);
}

.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, .9);
}

.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, .5);
  border-color: rgba(0, 0, 0, .1);
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg viewBox=\'0 0 30 30\' xmlns=\'http://www.w3.org/2000/svg\'%3e%3cpath stroke=\'rgba(0, 0, 0, 0.5)\' stroke-width=\'2\' stroke-linecap=\'round\' stroke-miterlimit=\'10\' d=\'M4 7h22M4 15h22M4 23h22\'/%3e%3c/svg%3e");
}

.navbar-light .navbar-text {
  color: rgba(0, 0, 0, .5);
}

.navbar-light .navbar-text a {
  color: rgba(0, 0, 0, .9);
}

.navbar-light .navbar-text a:hover,
.navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, .9);
}

.navbar-dark .navbar-brand {
  color: #fff;
}

.navbar-dark .navbar-brand:hover,
.navbar-dark .navbar-brand:focus {
  color: #fff;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, .5);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, .75);
}

.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, .25);
}

.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}

.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, .5);
  border-color: rgba(255, 255, 255, .1);
}

.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg viewBox=\'0 0 30 30\' xmlns=\'http://www.w3.org/2000/svg\'%3e%3cpath stroke=\'rgba(255, 255, 255, 0.5)\' stroke-width=\'2\' stroke-linecap=\'round\' stroke-miterlimit=\'10\' d=\'M4 7h22M4 15h22M4 23h22\'/%3e%3c/svg%3e");
}

.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, .5);
}

.navbar-dark .navbar-text a {
  color: #fff;
}

.navbar-dark .navbar-text a:hover,
.navbar-dark .navbar-text a:focus {
  color: #fff;
}

.card {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: transparent;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  border: 1px solid transparent;
  border-radius: 3px;
}

.card > hr {
  margin-right: 0;
  margin-left: 0;
}

.card > .list-group:first-child .list-group-item:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.card > .list-group:last-child .list-group-item:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.card-body {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1.25rem;
}

.card-title {
  margin-bottom: .75rem;
}

.card-subtitle {
  margin-top: -.375rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}

.card-link + .card-link {
  margin-left: 1.25rem;
}

.card-header {
  padding: .75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, .03);
  border-bottom: 1px solid transparent;
}

.card-header:first-child {
  border-radius: calc(3px - 1px) calc(3px - 1px) 0 0;
}

.card-header + .list-group .list-group-item:first-child {
  border-top: 0;
}

.card-footer {
  padding: .75rem 1.25rem;
  background-color: rgba(0, 0, 0, .03);
  border-top: 1px solid transparent;
}

.card-footer:last-child {
  border-radius: 0 0 calc(3px - 1px) calc(3px - 1px);
}

.card-header-tabs {
  margin-right: -.625rem;
  margin-bottom: -.75rem;
  margin-left: -.625rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -.625rem;
  margin-left: -.625rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
}

.card-img {
  width: 100%;
  border-radius: calc(3px - 1px);
}

.card-img-top {
  width: 100%;
  border-top-left-radius: calc(3px - 1px);
  border-top-right-radius: calc(3px - 1px);
}

.card-img-bottom {
  width: 100%;
  border-bottom-right-radius: calc(3px - 1px);
  border-bottom-left-radius: calc(3px - 1px);
}

.card-deck {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.card-deck .card {
  margin-bottom: 20px;
}

@media (min-width:576px) {
  .card-deck {
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin-right: -20px;
    margin-left: -20px;
  }

  .card-deck .card {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-right: 20px;
    margin-bottom: 0;
    margin-left: 20px;
  }
}

.card-group {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.card-group > .card {
  margin-bottom: 20px;
}

@media (min-width:576px) {
  .card-group {
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
  }

  .card-group > .card {
    -ms-flex: 1 0 0%;
    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;
  }
}

.card-columns .card {
  margin-bottom: .75rem;
}

@media (min-width:576px) {
  .card-columns {
    -moz-column-count: 3;
    -webkit-column-count: 3;
    column-count: 3;
    -moz-column-gap: 1.25rem;
    -webkit-column-gap: 1.25rem;
    column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }

  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}

.accordion > .card {
  overflow: hidden;
}

.accordion > .card:not(:first-of-type) .card-header:first-child {
  border-radius: 0;
}

.accordion > .card:not(:first-of-type):not(:last-of-type) {
  border-bottom: 0;
  border-radius: 0;
}

.accordion > .card:first-of-type {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.accordion > .card:last-of-type {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.accordion > .card .card-header {
  margin-bottom: -1px;
}

.breadcrumb {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: .75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: transparent;
  border-radius: 0;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: .5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: .5rem;
  color: #798490;
  content: "/";
}

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #798490;
}

.pagination {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 3px;
}

.page-link {
  position: relative;
  display: block;
  padding: .5rem .75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #e30613;
  background-color: #fff;
  border: 1px solid #bcc1c7;
}

.page-link:hover {
  z-index: 2;
  color: #98040d;
  text-decoration: none;
  background-color: #eee;
  border-color: #bcc1c7;
}

.page-link:focus {
  z-index: 2;
  outline: 0;
  box-shadow: 0 0 0 .2rem rgba(227, 6, 19, .25);
}

.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

.page-item:last-child .page-link {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.page-item.active .page-link {
  z-index: 1;
  color: #fff;
  background-color: #e30613;
  border-color: #e30613;
}

.page-item.disabled .page-link {
  color: #798490;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #bcc1c7;
}

.pagination-lg .page-link {
  padding: .75rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
}

.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.pagination-sm .page-link {
  padding: .25rem .5rem;
  font-size: .75rem;
  line-height: 1.5;
}

.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.badge {
  display: inline-block;
  padding: .25em .4em;
  font-size: .75rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 3px;
  -webkit-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

@media (prefers-reduced-motion:reduce) {
  .badge {
    -webkit-transition: none;
    transition: none;
  }
}

a.badge:hover,
a.badge:focus {
  text-decoration: none;
}

.badge:empty {
  display: none;
}

.btn .badge,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .watchlist-listing-link .badge,
.hbspt-form input.hs-button .badge {
  position: relative;
  top: -1px;
}

.badge-pill {
  padding-right: .6em;
  padding-left: .6em;
  border-radius: 10rem;
}

.badge-primary {
  color: #fff;
  background-color: #e30613;
}

a.badge-primary:hover,
a.badge-primary:focus {
  color: #fff;
  background-color: #b1050f;
}

a.badge-primary:focus,
a.badge-primary.focus {
  outline: 0;
  box-shadow: 0 0 0 .2rem rgba(227, 6, 19, .5);
}

.badge-secondary {
  color: #212529;
  background-color: #f6f6f6;
}

a.badge-secondary:hover,
a.badge-secondary:focus {
  color: #212529;
  background-color: #ddd;
}

a.badge-secondary:focus,
a.badge-secondary.focus {
  outline: 0;
  box-shadow: 0 0 0 .2rem rgba(246, 246, 246, .5);
}

.badge-success {
  color: #fff;
  background-color: #3cc261;
}

a.badge-success:hover,
a.badge-success:focus {
  color: #fff;
  background-color: #309b4e;
}

a.badge-success:focus,
a.badge-success.focus {
  outline: 0;
  box-shadow: 0 0 0 .2rem rgba(60, 194, 97, .5);
}

.badge-info {
  color: #fff;
  background-color: #26b6cf;
}

a.badge-info:hover,
a.badge-info:focus {
  color: #fff;
  background-color: #1e90a4;
}

a.badge-info:focus,
a.badge-info.focus {
  outline: 0;
  box-shadow: 0 0 0 .2rem rgba(38, 182, 207, .5);
}

.badge-warning {
  color: #212529;
  background-color: #ffbd5d;
}

a.badge-warning:hover,
a.badge-warning:focus {
  color: #212529;
  background-color: #ffa82a;
}

a.badge-warning:focus,
a.badge-warning.focus {
  outline: 0;
  box-shadow: 0 0 0 .2rem rgba(255, 189, 93, .5);
}

.badge-danger {
  color: #fff;
  background-color: #e52427;
}

a.badge-danger:hover,
a.badge-danger:focus {
  color: #fff;
  background-color: #bf1719;
}

a.badge-danger:focus,
a.badge-danger.focus {
  outline: 0;
  box-shadow: 0 0 0 .2rem rgba(229, 36, 39, .5);
}

.badge-light {
  color: #212529;
  background-color: #f9f9f9;
}

a.badge-light:hover,
a.badge-light:focus {
  color: #212529;
  background-color: #e0e0e0;
}

a.badge-light:focus,
a.badge-light.focus {
  outline: 0;
  box-shadow: 0 0 0 .2rem rgba(249, 249, 249, .5);
}

.badge-dark {
  color: #fff;
  background-color: #4a545b;
}

a.badge-dark:hover,
a.badge-dark:focus {
  color: #fff;
  background-color: #333a3f;
}

a.badge-dark:focus,
a.badge-dark.focus {
  outline: 0;
  box-shadow: 0 0 0 .2rem rgba(74, 84, 91, .5);
}

.jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #eee;
  border-radius: 3px;
}

@media (min-width:576px) {
  .jumbotron {
    padding: 4rem 2rem;
  }
}

.jumbotron-fluid {
  padding-right: 0;
  padding-left: 0;
  border-radius: 0;
}

.alert,
.hbspt-form div.submitted-message {
  position: relative;
  padding: .75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 3px;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
}

.alert-dismissible {
  padding-right: 3.90625rem;
}

.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  padding: .75rem 1.25rem;
  color: inherit;
}

.alert-primary {
  color: #76030a;
  background-color: #f9cdd0;
  border-color: #f7b9bd;
}

.alert-primary hr {
  border-top-color: #f4a2a7;
}

.alert-primary .alert-link {
  color: #440206;
}

.alert-secondary {
  color: gray;
  background-color: #fdfdfd;
  border-color: #fcfcfc;
}

.alert-secondary hr {
  border-top-color: #efefef;
}

.alert-secondary .alert-link {
  color: #676767;
}

.alert-success,
.hbspt-form div.submitted-message {
  color: #1f6532;
  background-color: #d8f3df;
  border-color: #c8eed3;
}

.alert-success hr,
.hbspt-form div.submitted-message hr {
  border-top-color: #b5e8c3;
}

.alert-success .alert-link,
.hbspt-form div.submitted-message .alert-link {
  color: #133e1f;
}

.alert-info {
  color: #145f6c;
  background-color: #d4f0f5;
  border-color: #c2ebf2;
}

.alert-info hr {
  border-top-color: #ade4ee;
}

.alert-info .alert-link {
  color: #0c3941;
}

.alert-warning {
  color: #856230;
  background-color: #fff2df;
  border-color: #ffedd2;
}

.alert-warning hr {
  border-top-color: #ffe3b9;
}

.alert-warning .alert-link {
  color: #604622;
}

.alert-danger {
  color: #771314;
  background-color: #fad3d4;
  border-color: #f8c2c3;
}

.alert-danger hr {
  border-top-color: #f5abad;
}

.alert-danger .alert-link {
  color: #4b0c0d;
}

.alert-light {
  color: #818181;
  background-color: #fefefe;
  border-color: #fdfdfd;
}

.alert-light hr {
  border-top-color: #f0f0f0;
}

.alert-light .alert-link {
  color: #686868;
}

.alert-dark {
  color: #262c2f;
  background-color: #dbddde;
  border-color: #cccfd1;
}

.alert-dark hr {
  border-top-color: #bfc2c5;
}

.alert-dark .alert-link {
  color: #0f1213;
}

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }

  to {
    background-position: 0 0;
  }
}

@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }

  to {
    background-position: 0 0;
  }
}

.progress {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  height: 1rem;
  overflow: hidden;
  font-size: .703125rem;
  background-color: #eee;
  border-radius: 3px;
}

.progress-bar {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #e30613;
  -webkit-transition: width .6s ease;
  transition: width .6s ease;
}

@media (prefers-reduced-motion:reduce) {
  .progress-bar {
    -webkit-transition: none;
    transition: none;
  }
}

.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
}

.progress-bar-animated {
  -webkit-animation: progress-bar-stripes 1s linear infinite;
  animation: progress-bar-stripes 1s linear infinite;
}

@media (prefers-reduced-motion:reduce) {
  .progress-bar-animated {
    -webkit-animation: none;
    animation: none;
  }
}

.media {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
}

.media-body {
  -ms-flex: 1;
  flex: 1;
}

.list-group {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
}

.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}

.list-group-item-action:hover,
.list-group-item-action:focus {
  z-index: 1;
  color: #495057;
  text-decoration: none;
  background-color: #f9f9f9;
}

.list-group-item-action:active {
  color: #111;
  background-color: #eee;
}

.list-group-item {
  position: relative;
  display: block;
  padding: .75rem 1.25rem;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, .125);
}

.list-group-item:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.list-group-item.disabled,
.list-group-item:disabled {
  color: #798490;
  pointer-events: none;
  background-color: #fff;
}

.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #e30613;
  border-color: #e30613;
}

.list-group-horizontal {
  -ms-flex-direction: row;
  flex-direction: row;
}

.list-group-horizontal .list-group-item {
  margin-right: -1px;
  margin-bottom: 0;
}

.list-group-horizontal .list-group-item:first-child {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  border-top-right-radius: 0;
}

.list-group-horizontal .list-group-item:last-child {
  margin-right: 0;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 0;
}

@media (min-width:576px) {
  .list-group-horizontal-sm {
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .list-group-horizontal-sm .list-group-item {
    margin-right: -1px;
    margin-bottom: 0;
  }

  .list-group-horizontal-sm .list-group-item:first-child {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    border-top-right-radius: 0;
  }

  .list-group-horizontal-sm .list-group-item:last-child {
    margin-right: 0;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 0;
  }
}

@media (min-width:768px) {
  .list-group-horizontal-md {
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .list-group-horizontal-md .list-group-item {
    margin-right: -1px;
    margin-bottom: 0;
  }

  .list-group-horizontal-md .list-group-item:first-child {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    border-top-right-radius: 0;
  }

  .list-group-horizontal-md .list-group-item:last-child {
    margin-right: 0;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 0;
  }
}

@media (min-width:1025px) {
  .list-group-horizontal-lg {
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .list-group-horizontal-lg .list-group-item {
    margin-right: -1px;
    margin-bottom: 0;
  }

  .list-group-horizontal-lg .list-group-item:first-child {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    border-top-right-radius: 0;
  }

  .list-group-horizontal-lg .list-group-item:last-child {
    margin-right: 0;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 0;
  }
}

@media (min-width:1200px) {
  .list-group-horizontal-xl {
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .list-group-horizontal-xl .list-group-item {
    margin-right: -1px;
    margin-bottom: 0;
  }

  .list-group-horizontal-xl .list-group-item:first-child {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    border-top-right-radius: 0;
  }

  .list-group-horizontal-xl .list-group-item:last-child {
    margin-right: 0;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 0;
  }
}

@media (min-width:1400px) {
  .list-group-horizontal-xxl {
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .list-group-horizontal-xxl .list-group-item {
    margin-right: -1px;
    margin-bottom: 0;
  }

  .list-group-horizontal-xxl .list-group-item:first-child {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    border-top-right-radius: 0;
  }

  .list-group-horizontal-xxl .list-group-item:last-child {
    margin-right: 0;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 0;
  }
}

.list-group-flush .list-group-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}

.list-group-flush .list-group-item:last-child {
  margin-bottom: -1px;
}

.list-group-flush:first-child .list-group-item:first-child {
  border-top: 0;
}

.list-group-flush:last-child .list-group-item:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.list-group-item-primary {
  color: #76030a;
  background-color: #f7b9bd;
}

.list-group-item-primary.list-group-item-action:hover,
.list-group-item-primary.list-group-item-action:focus {
  color: #76030a;
  background-color: #f4a2a7;
}

.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #76030a;
  border-color: #76030a;
}

.list-group-item-secondary {
  color: gray;
  background-color: #fcfcfc;
}

.list-group-item-secondary.list-group-item-action:hover,
.list-group-item-secondary.list-group-item-action:focus {
  color: gray;
  background-color: #efefef;
}

.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: gray;
  border-color: gray;
}

.list-group-item-success {
  color: #1f6532;
  background-color: #c8eed3;
}

.list-group-item-success.list-group-item-action:hover,
.list-group-item-success.list-group-item-action:focus {
  color: #1f6532;
  background-color: #b5e8c3;
}

.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #1f6532;
  border-color: #1f6532;
}

.list-group-item-info {
  color: #145f6c;
  background-color: #c2ebf2;
}

.list-group-item-info.list-group-item-action:hover,
.list-group-item-info.list-group-item-action:focus {
  color: #145f6c;
  background-color: #ade4ee;
}

.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #145f6c;
  border-color: #145f6c;
}

.list-group-item-warning {
  color: #856230;
  background-color: #ffedd2;
}

.list-group-item-warning.list-group-item-action:hover,
.list-group-item-warning.list-group-item-action:focus {
  color: #856230;
  background-color: #ffe3b9;
}

.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #856230;
  border-color: #856230;
}

.list-group-item-danger {
  color: #771314;
  background-color: #f8c2c3;
}

.list-group-item-danger.list-group-item-action:hover,
.list-group-item-danger.list-group-item-action:focus {
  color: #771314;
  background-color: #f5abad;
}

.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #771314;
  border-color: #771314;
}

.list-group-item-light {
  color: #818181;
  background-color: #fdfdfd;
}

.list-group-item-light.list-group-item-action:hover,
.list-group-item-light.list-group-item-action:focus {
  color: #818181;
  background-color: #f0f0f0;
}

.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #818181;
  border-color: #818181;
}

.list-group-item-dark {
  color: #262c2f;
  background-color: #cccfd1;
}

.list-group-item-dark.list-group-item-action:hover,
.list-group-item-dark.list-group-item-action:focus {
  color: #262c2f;
  background-color: #bfc2c5;
}

.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #262c2f;
  border-color: #262c2f;
}

.close {
  float: right;
  font-size: 1.40625rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .5;
}

@media (max-width:1200px) {
  .close {
    font-size: calc(1.265625rem + .1875vw);
  }
}

.close:hover {
  color: #000;
  text-decoration: none;
}

.close:not(:disabled):not(.disabled):hover,
.close:not(:disabled):not(.disabled):focus {
  opacity: .75;
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

a.close.disabled {
  pointer-events: none;
}

.toast {
  max-width: 350px;
  overflow: hidden;
  font-size: .875rem;
  background-color: rgba(255, 255, 255, .85);
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, .1);
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .1);
  backdrop-filter: blur(10px);
  opacity: 0;
  border-radius: .25rem;
}

.toast:not(:last-child) {
  margin-bottom: .75rem;
}

.toast.showing {
  opacity: 1;
}

.toast.show {
  display: block;
  opacity: 1;
}

.toast.hide {
  display: none;
}

.toast-header {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding: .25rem .75rem;
  color: #798490;
  background-color: rgba(255, 255, 255, .85);
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.toast-body {
  padding: .75rem;
}

.modal-open {
  overflow: hidden;
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}

.modal.fade .modal-dialog {
  transition: -ms-transform .3s ease-out;
  transition: -webkit-transform .3s ease-out;
  transition: transform .3s ease-out;
  -webkit-transition: -webkit-transform .3s ease-out;
  -ms-transform: translate(0, -50px);
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}

@media (prefers-reduced-motion:reduce) {
  .modal.fade .modal-dialog {
    -webkit-transition: none;
    transition: none;
  }
}

.modal.show .modal-dialog {
  -ms-transform: none;
  -webkit-transform: none;
  transform: none;
}

.modal-dialog-scrollable {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  max-height: calc(100% - 1rem);
}

.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}

.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-footer {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  content: "";
}

.modal-dialog-centered.modal-dialog-scrollable {
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
}

.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}

.modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}

.modal-content {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 3px;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, .5);
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: .5;
}

.modal-header {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 10px 10px;
  border-bottom: 1px solid #bcc1c7;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.modal-header .close {
  padding: 10px 10px;
  margin: -10px -10px -10px auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 1rem;
  border-top: 1px solid #bcc1c7;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.modal-footer > :not(:first-child) {
  margin-left: .25rem;
}

.modal-footer > :not(:last-child) {
  margin-right: .25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width:576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }

  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }

  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }

  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }

  .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
  }

  .modal-sm {
    max-width: 300px;
  }
}

@media (min-width:1025px) {

  .modal-lg,
  .address-editor-modal .modal-dialog,
  .quickview-modal .modal-dialog,
  .subscription-edit-shipping-address-modal .modal-dialog,
  .subscription-edit-billing-address-modal .modal-dialog,
  .modal-xl {
    max-width: 800px;
  }
}

@media (min-width:1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: Gothic A1, 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;
  -ms-word-break: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: .75rem;
  word-wrap: break-word;
  opacity: 0;
}

.tooltip.show {
  opacity: .9;
}

.tooltip .arrow {
  position: absolute;
  display: block;
  width: .8rem;
  height: .4rem;
}

.tooltip .arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top,
.bs-tooltip-auto[x-placement^="top"] {
  padding: .4rem 0;
}

.bs-tooltip-top .arrow,
.bs-tooltip-auto[x-placement^="top"] .arrow {
  bottom: 0;
}

.bs-tooltip-top .arrow::before,
.bs-tooltip-auto[x-placement^="top"] .arrow::before {
  top: 0;
  border-width: .4rem .4rem 0;
  border-top-color: #000;
}

.bs-tooltip-right,
.bs-tooltip-auto[x-placement^="right"] {
  padding: 0 .4rem;
}

.bs-tooltip-right .arrow,
.bs-tooltip-auto[x-placement^="right"] .arrow {
  left: 0;
  width: .4rem;
  height: .8rem;
}

.bs-tooltip-right .arrow::before,
.bs-tooltip-auto[x-placement^="right"] .arrow::before {
  right: 0;
  border-width: .4rem .4rem .4rem 0;
  border-right-color: #000;
}

.bs-tooltip-bottom,
.bs-tooltip-auto[x-placement^="bottom"] {
  padding: .4rem 0;
}

.bs-tooltip-bottom .arrow,
.bs-tooltip-auto[x-placement^="bottom"] .arrow {
  top: 0;
}

.bs-tooltip-bottom .arrow::before,
.bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
  bottom: 0;
  border-width: 0 .4rem .4rem;
  border-bottom-color: #000;
}

.bs-tooltip-left,
.bs-tooltip-auto[x-placement^="left"] {
  padding: 0 .4rem;
}

.bs-tooltip-left .arrow,
.bs-tooltip-auto[x-placement^="left"] .arrow {
  right: 0;
  width: .4rem;
  height: .8rem;
}

.bs-tooltip-left .arrow::before,
.bs-tooltip-auto[x-placement^="left"] .arrow::before {
  left: 0;
  border-width: .4rem 0 .4rem .4rem;
  border-left-color: #000;
}

.tooltip-inner {
  max-width: 200px;
  padding: .25rem .5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 3px;
}

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  font-family: Gothic A1, 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;
  -ms-word-break: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: .75rem;
  word-wrap: break-word;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 3px;
}

.popover .arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: .5rem;
  margin: 0 3px;
}

.popover .arrow::before,
.popover .arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-popover-top,
.bs-popover-auto[x-placement^="top"] {
  margin-bottom: .5rem;
}

.bs-popover-top > .arrow,
.bs-popover-auto[x-placement^="top"] > .arrow {
  bottom: calc((.5rem + 1px) * -1);
}

.bs-popover-top > .arrow::before,
.bs-popover-auto[x-placement^="top"] > .arrow::before {
  bottom: 0;
  border-width: .5rem .5rem 0;
  border-top-color: rgba(0, 0, 0, .25);
}

.bs-popover-top > .arrow::after,
.bs-popover-auto[x-placement^="top"] > .arrow::after {
  bottom: 1px;
  border-width: .5rem .5rem 0;
  border-top-color: #fff;
}

.bs-popover-right,
.bs-popover-auto[x-placement^="right"] {
  margin-left: .5rem;
}

.bs-popover-right > .arrow,
.bs-popover-auto[x-placement^="right"] > .arrow {
  left: calc((.5rem + 1px) * -1);
  width: .5rem;
  height: 1rem;
  margin: 3px 0;
}

.bs-popover-right > .arrow::before,
.bs-popover-auto[x-placement^="right"] > .arrow::before {
  left: 0;
  border-width: .5rem .5rem .5rem 0;
  border-right-color: rgba(0, 0, 0, .25);
}

.bs-popover-right > .arrow::after,
.bs-popover-auto[x-placement^="right"] > .arrow::after {
  left: 1px;
  border-width: .5rem .5rem .5rem 0;
  border-right-color: #fff;
}

.bs-popover-bottom,
.bs-popover-auto[x-placement^="bottom"] {
  margin-top: .5rem;
}

.bs-popover-bottom > .arrow,
.bs-popover-auto[x-placement^="bottom"] > .arrow {
  top: calc((.5rem + 1px) * -1);
}

.bs-popover-bottom > .arrow::before,
.bs-popover-auto[x-placement^="bottom"] > .arrow::before {
  top: 0;
  border-width: 0 .5rem .5rem .5rem;
  border-bottom-color: rgba(0, 0, 0, .25);
}

.bs-popover-bottom > .arrow::after,
.bs-popover-auto[x-placement^="bottom"] > .arrow::after {
  top: 1px;
  border-width: 0 .5rem .5rem .5rem;
  border-bottom-color: #fff;
}

.bs-popover-bottom .popover-header::before,
.bs-popover-auto[x-placement^="bottom"] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -.5rem;
  content: "";
  border-bottom: 1px solid #f7f7f7;
}

.bs-popover-left,
.bs-popover-auto[x-placement^="left"] {
  margin-right: .5rem;
}

.bs-popover-left > .arrow,
.bs-popover-auto[x-placement^="left"] > .arrow {
  right: calc((.5rem + 1px) * -1);
  width: .5rem;
  height: 1rem;
  margin: 3px 0;
}

.bs-popover-left > .arrow::before,
.bs-popover-auto[x-placement^="left"] > .arrow::before {
  right: 0;
  border-width: .5rem 0 .5rem .5rem;
  border-left-color: rgba(0, 0, 0, .25);
}

.bs-popover-left > .arrow::after,
.bs-popover-auto[x-placement^="left"] > .arrow::after {
  right: 1px;
  border-width: .5rem 0 .5rem .5rem;
  border-left-color: #fff;
}

.popover-header {
  padding: .5rem .75rem;
  margin-bottom: 0;
  font-size: .9375rem;
  color: #3f4c58;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-top-left-radius: calc(3px - 1px);
  border-top-right-radius: calc(3px - 1px);
}

.popover-header:empty {
  display: none;
}

.popover-body {
  padding: .5rem .75rem;
  color: #111;
}

.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%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: -ms-transform .6s ease-in-out;
  transition: -webkit-transform .6s ease-in-out;
  transition: transform .6s ease-in-out;
  -webkit-transition: -webkit-transform .6s ease-in-out;
}

@media (prefers-reduced-motion:reduce) {
  .carousel-item {
    -webkit-transition: none;
    transition: none;
  }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

.carousel-item-next:not(.carousel-item-left),
.active.carousel-item-right {
  -ms-transform: translateX(100%);
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-right),
.active.carousel-item-left {
  -ms-transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  -ms-transform: none;
  -webkit-transform: none;
  transform: none;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  z-index: 1;
  opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  z-index: 0;
  opacity: 0;
  -webkit-transition: 0s .6s opacity;
  transition: 0s .6s opacity;
}

@media (prefers-reduced-motion:reduce) {

  .carousel-fade .active.carousel-item-left,
  .carousel-fade .active.carousel-item-right {
    -webkit-transition: none;
    transition: none;
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 15%;
  color: #fff;
  text-align: center;
  opacity: .5;
  -webkit-transition: opacity .15s ease;
  transition: opacity .15s ease;
}

@media (prefers-reduced-motion:reduce) {

  .carousel-control-prev,
  .carousel-control-next {
    -webkit-transition: none;
    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: .9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: no-repeat 50%/100% 100%;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns=\'http://www.w3.org/2000/svg\' fill=\'%23fff\' viewBox=\'0 0 8 8\'%3e%3cpath d=\'M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z\'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns=\'http://www.w3.org/2000/svg\' fill=\'%23fff\' viewBox=\'0 0 8 8\'%3e%3cpath d=\'M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z\'/%3e%3c/svg%3e");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}

.carousel-indicators li {
  box-sizing: content-box;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: .5;
  -webkit-transition: opacity .6s ease;
  transition: opacity .6s ease;
}

@media (prefers-reduced-motion:reduce) {
  .carousel-indicators li {
    -webkit-transition: none;
    transition: none;
  }
}

.carousel-indicators .active {
  opacity: 1;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}

@-webkit-keyframes spinner-border {
  to {
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spinner-border {
  to {
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.spinner-border,
.loader {
  display: inline-block;
  width: 26px;
  height: 26px;
  vertical-align: text-bottom;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: spinner-border .75s linear infinite;
  animation: spinner-border .75s linear infinite;
}

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: .2em;
}

@-webkit-keyframes spinner-grow {
  0% {
    -ms-transform: scale(0);
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  50% {
    opacity: 1;
  }
}

@keyframes spinner-grow {
  0% {
    -ms-transform: scale(0);
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  50% {
    opacity: 1;
  }
}

.spinner-grow {
  display: inline-block;
  width: 26px;
  height: 26px;
  vertical-align: text-bottom;
  background-color: currentColor;
  border-radius: 50%;
  opacity: 0;
  -webkit-animation: spinner-grow .75s linear infinite;
  animation: spinner-grow .75s linear infinite;
}

.spinner-grow-sm {
  width: 1rem;
  height: 1rem;
}

.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;
}

.bg-primary {
  background-color: #e30613 !important;
}

a.bg-primary:hover,
a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #b1050f !important;
}

.bg-secondary {
  background-color: #f6f6f6 !important;
}

a.bg-secondary:hover,
a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #ddd !important;
}

.bg-success {
  background-color: #3cc261 !important;
}

a.bg-success:hover,
a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: #309b4e !important;
}

.bg-info {
  background-color: #26b6cf !important;
}

a.bg-info:hover,
a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: #1e90a4 !important;
}

.bg-warning {
  background-color: #ffbd5d !important;
}

a.bg-warning:hover,
a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: #ffa82a !important;
}

.bg-danger {
  background-color: #e52427 !important;
}

a.bg-danger:hover,
a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: #bf1719 !important;
}

.bg-light,
.order-detail-table-footer {
  background-color: #f9f9f9 !important;
}

a.bg-light:hover,
a.order-detail-table-footer:hover,
a.bg-light:focus,
a.order-detail-table-footer:focus,
button.bg-light:hover,
button.order-detail-table-footer:hover,
button.bg-light:focus,
button.order-detail-table-footer:focus {
  background-color: #e0e0e0 !important;
}

.bg-dark {
  background-color: #4a545b !important;
}

a.bg-dark:hover,
a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #333a3f !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.border {
  border: 1px solid #bcc1c7 !important;
}

.border-top {
  border-top: 1px solid #bcc1c7 !important;
}

.border-right {
  border-right: 1px solid #bcc1c7 !important;
}

.border-bottom {
  border-bottom: 1px solid #bcc1c7 !important;
}

.border-left {
  border-left: 1px solid #bcc1c7 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #e30613 !important;
}

.border-secondary {
  border-color: #f6f6f6 !important;
}

.border-success {
  border-color: #3cc261 !important;
}

.border-info {
  border-color: #26b6cf !important;
}

.border-warning {
  border-color: #ffbd5d !important;
}

.border-danger {
  border-color: #e52427 !important;
}

.border-light {
  border-color: #f9f9f9 !important;
}

.border-dark {
  border-color: #4a545b !important;
}

.border-white {
  border-color: #fff !important;
}

.rounded-sm {
  border-radius: 3px !important;
}

.rounded {
  border-radius: 3px !important;
}

.rounded-top {
  border-top-left-radius: 3px !important;
  border-top-right-radius: 3px !important;
}

.rounded-right {
  border-top-right-radius: 3px !important;
  border-bottom-right-radius: 3px !important;
}

.rounded-bottom {
  border-bottom-right-radius: 3px !important;
  border-bottom-left-radius: 3px !important;
}

.rounded-left {
  border-top-left-radius: 3px !important;
  border-bottom-left-radius: 3px !important;
}

.rounded-lg {
  border-radius: 3px !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.d-none,
.is-act-checkoutregisterpage .checkout .checkout-aside,
.header-wishlist .wishlist-btn-text,
.header-wishlist .watchlist-btn-text,
.top-bar .top-bar-nav-item.top-bar-country,
.e-search-suggest {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

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

.d-block,
.hbspt-form form.hs-form {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: -ms-flexbox !important;
  display: -webkit-flex !important;
  display: flex !important;
}

.d-inline-flex {
  display: -ms-inline-flexbox !important;
  display: -webkit-inline-flex !important;
  display: inline-flex !important;
}

@media (min-width:576px) {
  .d-sm-none {
    display: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !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: -ms-flexbox !important;
    display: -webkit-flex !important;
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: -ms-inline-flexbox !important;
    display: -webkit-inline-flex !important;
    display: inline-flex !important;
  }
}

@media (min-width:768px) {

  .d-md-none,
  .footer-main .social-item .social-item-text,
  .footer-bottom .social-item .social-item-text {
    display: none !important;
  }

  .d-md-inline,
  .header-wishlist .wishlist-btn-text,
  .header-wishlist .watchlist-btn-text {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !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,
  .cart-item-row .cart-item-remove {
    display: -ms-flexbox !important;
    display: -webkit-flex !important;
    display: flex !important;
  }

  .d-md-inline-flex {
    display: -ms-inline-flexbox !important;
    display: -webkit-inline-flex !important;
    display: inline-flex !important;
  }
}

@media (min-width:1025px) {
  .d-lg-none {
    display: none !important;
  }

  .d-lg-inline,
  .footer-main .social-item .social-item-text,
  .footer-bottom .social-item .social-item-text {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block,
  .is-act-checkoutregisterpage .checkout .checkout-aside,
  .e-search-suggest {
    display: block !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,
  .top-bar .top-bar-nav-item.top-bar-country {
    display: -ms-flexbox !important;
    display: -webkit-flex !important;
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: -ms-inline-flexbox !important;
    display: -webkit-inline-flex !important;
    display: inline-flex !important;
  }
}

@media (min-width:1200px) {
  .d-xl-none {
    display: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !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: -ms-flexbox !important;
    display: -webkit-flex !important;
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: -ms-inline-flexbox !important;
    display: -webkit-inline-flex !important;
    display: inline-flex !important;
  }
}

@media (min-width:1400px) {
  .d-xxl-none {
    display: none !important;
  }

  .d-xxl-inline {
    display: inline !important;
  }

  .d-xxl-inline-block {
    display: inline-block !important;
  }

  .d-xxl-block {
    display: block !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: -ms-flexbox !important;
    display: -webkit-flex !important;
    display: flex !important;
  }

  .d-xxl-inline-flex {
    display: -ms-inline-flexbox !important;
    display: -webkit-inline-flex !important;
    display: inline-flex !important;
  }
}

@media print {
  .d-print-none {
    display: none !important;
  }

  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !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: -ms-flexbox !important;
    display: -webkit-flex !important;
    display: flex !important;
  }

  .d-print-inline-flex {
    display: -ms-inline-flexbox !important;
    display: -webkit-inline-flex !important;
    display: inline-flex !important;
  }
}

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.embed-responsive::before {
  display: block;
  content: "";
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9::before {
  padding-top: 42.8571428571%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

.embed-responsive-21by9::before {
  padding-top: 42.8571428571%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

.flex-row {
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  -ms-flex: 1 1 auto !important;
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  -ms-flex-positive: 0 !important;
  flex-grow: 0 !important;
}

.flex-grow-1 {
  -ms-flex-positive: 1 !important;
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  -ms-flex-negative: 0 !important;
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  -ms-flex-negative: 1 !important;
  flex-shrink: 1 !important;
}

.justify-content-start {
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

.align-items-start {
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-end {
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}

.align-items-baseline {
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}

.align-items-stretch {
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}

.align-content-start {
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important;
}

.align-content-end {
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important;
}

.align-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
  align-self: auto !important;
}

.align-self-start {
  -ms-flex-item-align: start !important;
  align-self: flex-start !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important;
}

@media (min-width:576px) {
  .flex-sm-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-sm-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .flex-sm-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }

  .flex-sm-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }

  .justify-content-sm-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-sm-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .align-items-sm-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-sm-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .align-self-sm-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-sm-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-sm-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

@media (min-width:768px) {
  .flex-md-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-md-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .flex-md-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }

  .flex-md-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }

  .justify-content-md-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-md-end,
  .cart-item-row .cart-item-quantity,
  .cart-item-row .cart-item-remove {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-md-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .align-items-md-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-md-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-md-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-md-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-md-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

@media (min-width:1025px) {
  .flex-lg-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-lg-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .flex-lg-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }

  .flex-lg-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }

  .justify-content-lg-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-lg-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .align-items-lg-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-lg-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-lg-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

@media (min-width:1200px) {
  .flex-xl-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-xl-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .flex-xl-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }

  .flex-xl-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }

  .justify-content-xl-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-xl-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .align-items-xl-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-xl-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .align-self-xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

@media (min-width:1400px) {
  .flex-xxl-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-xxl-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-xxl-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-xxl-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-xxl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-xxl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-xxl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .flex-xxl-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }

  .flex-xxl-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }

  .flex-xxl-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }

  .flex-xxl-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }

  .flex-xxl-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }

  .justify-content-xxl-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-xxl-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-xxl-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-xxl-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-xxl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .align-items-xxl-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-xxl-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-xxl-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-xxl-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-xxl-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-xxl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-xxl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-xxl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-xxl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-xxl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-xxl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-xxl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .align-self-xxl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-xxl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-xxl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .align-self-xxl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-xxl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

.float-left,
.cart-item-row .cart-item-remove .cart-item-wishlist-heart {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-none {
  float: none !important;
}

@media (min-width:576px) {
  .float-sm-left {
    float: left !important;
  }

  .float-sm-right {
    float: right !important;
  }

  .float-sm-none {
    float: none !important;
  }
}

@media (min-width:768px) {
  .float-md-left {
    float: left !important;
  }

  .float-md-right {
    float: right !important;
  }

  .float-md-none {
    float: none !important;
  }
}

@media (min-width:1025px) {
  .float-lg-left {
    float: left !important;
  }

  .float-lg-right {
    float: right !important;
  }

  .float-lg-none {
    float: none !important;
  }
}

@media (min-width:1200px) {
  .float-xl-left {
    float: left !important;
  }

  .float-xl-right {
    float: right !important;
  }

  .float-xl-none {
    float: none !important;
  }
}

@media (min-width:1400px) {
  .float-xxl-left {
    float: left !important;
  }

  .float-xxl-right {
    float: right !important;
  }

  .float-xxl-none {
    float: none !important;
  }
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: -webkit-sticky !important;
  position: sticky !important;
}

.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;
}

@supports (position: sticky) {

  .sticky-top,
  .offcanvas .offcanvas-footer,
  .header-main,
  .nav-main {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.shadow-sm {
  box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
}

.shadow {
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.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;
}

.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;
}

.mw-100,
.product-comparison-table-wrapper {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.vw-100 {
  width: 100vw !important;
}

.vh-100 {
  height: 100vh !important;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: .25rem !important;
}

.mt-1,
.my-1 {
  margin-top: .25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: .25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: .25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: .25rem !important;
}

.m-2 {
  margin: .5rem !important;
}

.mt-2,
.my-2 {
  margin-top: .5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: .5rem !important;
}

.mb-2,
.sticky-nav,
.scroll-navigation-sidebar-entry,
.my-2 {
  margin-bottom: .5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: .5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.sticky-nav,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0,
.scroll-navigation-sidebar-entry {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0,
.checkout-additional .form-group.col-lg-4,
.checkout-additional .hbspt-form .col-lg-4.hs-form-booleancheckbox,
.checkout-additional .hbspt-form .is-act-cartpage .checkout .hs-form-booleancheckbox.checkout-aside,
.is-act-cartpage .checkout .checkout-additional .hbspt-form .hs-form-booleancheckbox.checkout-aside,
.checkout-additional .hbspt-form .is-act-checkoutregisterpage .checkout .hs-form-booleancheckbox.checkout-aside,
.is-act-checkoutregisterpage .checkout .checkout-additional .hbspt-form .hs-form-booleancheckbox.checkout-aside,
.checkout-additional .hbspt-form .is-act-confirmpage .checkout .hs-form-booleancheckbox.checkout-additional,
.is-act-confirmpage .checkout .checkout-additional .hbspt-form .hs-form-booleancheckbox.checkout-additional,
.checkout-additional .hbspt-form .is-ctl-accountorder .checkout .hs-form-booleancheckbox.checkout-additional,
.is-ctl-accountorder .checkout .checkout-additional .hbspt-form .hs-form-booleancheckbox.checkout-additional,
.checkout-additional .hbspt-form .is-act-confirmpage .checkout .hs-form-booleancheckbox.checkout-aside,
.is-act-confirmpage .checkout .checkout-additional .hbspt-form .hs-form-booleancheckbox.checkout-aside,
.checkout-additional .hbspt-form .is-ctl-accountorder .checkout .hs-form-booleancheckbox.checkout-aside,
.is-ctl-accountorder .checkout .checkout-additional .hbspt-form .hs-form-booleancheckbox.checkout-aside,
.checkout-additional .hbspt-form .is-act-finishpage .checkout .hs-form-booleancheckbox.checkout-additional,
.is-act-finishpage .checkout .checkout-additional .hbspt-form .hs-form-booleancheckbox.checkout-additional,
.checkout-additional .hbspt-form .is-act-finishpage .checkout .hs-form-booleancheckbox.checkout-aside,
.is-act-finishpage .checkout .checkout-additional .hbspt-form .hs-form-booleancheckbox.checkout-aside,
.hbspt-form .checkout-additional .col-lg-4.hs-form-booleancheckbox,
.checkout-additional .hbspt-form .col-lg-4.hs-form-field,
.checkout-additional .hbspt-form .is-act-cartpage .checkout .hs-form-field.checkout-aside,
.is-act-cartpage .checkout .checkout-additional .hbspt-form .hs-form-field.checkout-aside,
.checkout-additional .hbspt-form .is-act-checkoutregisterpage .checkout .hs-form-field.checkout-aside,
.is-act-checkoutregisterpage .checkout .checkout-additional .hbspt-form .hs-form-field.checkout-aside,
.checkout-additional .hbspt-form .is-act-confirmpage .checkout .hs-form-field.checkout-additional,
.is-act-confirmpage .checkout .checkout-additional .hbspt-form .hs-form-field.checkout-additional,
.checkout-additional .hbspt-form .is-ctl-accountorder .checkout .hs-form-field.checkout-additional,
.is-ctl-accountorder .checkout .checkout-additional .hbspt-form .hs-form-field.checkout-additional,
.checkout-additional .hbspt-form .is-act-confirmpage .checkout .hs-form-field.checkout-aside,
.is-act-confirmpage .checkout .checkout-additional .hbspt-form .hs-form-field.checkout-aside,
.checkout-additional .hbspt-form .is-ctl-accountorder .checkout .hs-form-field.checkout-aside,
.is-ctl-accountorder .checkout .checkout-additional .hbspt-form .hs-form-field.checkout-aside,
.checkout-additional .hbspt-form .is-act-finishpage .checkout .hs-form-field.checkout-additional,
.is-act-finishpage .checkout .checkout-additional .hbspt-form .hs-form-field.checkout-additional,
.checkout-additional .hbspt-form .is-act-finishpage .checkout .hs-form-field.checkout-aside,
.is-act-finishpage .checkout .checkout-additional .hbspt-form .hs-form-field.checkout-aside,
.hbspt-form .checkout-additional .col-lg-4.hs-form-field,
.checkout-additional .is-act-cartpage .checkout .form-group.checkout-aside,
.checkout-additional .is-act-cartpage .checkout .hbspt-form .checkout-aside.hs-form-booleancheckbox,
.hbspt-form .checkout-additional .is-act-cartpage .checkout .checkout-aside.hs-form-booleancheckbox,
.checkout-additional .is-act-cartpage .checkout .hbspt-form .checkout-aside.hs-form-field,
.hbspt-form .checkout-additional .is-act-cartpage .checkout .checkout-aside.hs-form-field,
.is-act-cartpage .checkout .checkout-additional .form-group.checkout-aside,
.checkout-additional .is-act-checkoutregisterpage .checkout .form-group.checkout-aside,
.checkout-additional .is-act-checkoutregisterpage .checkout .hbspt-form .checkout-aside.hs-form-booleancheckbox,
.hbspt-form .checkout-additional .is-act-checkoutregisterpage .checkout .checkout-aside.hs-form-booleancheckbox,
.checkout-additional .is-act-checkoutregisterpage .checkout .hbspt-form .checkout-aside.hs-form-field,
.hbspt-form .checkout-additional .is-act-checkoutregisterpage .checkout .checkout-aside.hs-form-field,
.is-act-checkoutregisterpage .checkout .checkout-additional .form-group.checkout-aside,
.checkout-additional .is-act-confirmpage .checkout .form-group.checkout-additional,
.checkout-additional .is-act-confirmpage .checkout .hbspt-form .checkout-additional.hs-form-booleancheckbox,
.hbspt-form .checkout-additional .is-act-confirmpage .checkout .checkout-additional.hs-form-booleancheckbox,
.checkout-additional .is-act-confirmpage .checkout .hbspt-form .checkout-additional.hs-form-field,
.hbspt-form .checkout-additional .is-act-confirmpage .checkout .checkout-additional.hs-form-field,
.is-act-confirmpage .checkout .checkout-additional .form-group.checkout-additional,
.checkout-additional .is-ctl-accountorder .checkout .form-group.checkout-additional,
.checkout-additional .is-ctl-accountorder .checkout .hbspt-form .checkout-additional.hs-form-booleancheckbox,
.hbspt-form .checkout-additional .is-ctl-accountorder .checkout .checkout-additional.hs-form-booleancheckbox,
.checkout-additional .is-ctl-accountorder .checkout .hbspt-form .checkout-additional.hs-form-field,
.hbspt-form .checkout-additional .is-ctl-accountorder .checkout .checkout-additional.hs-form-field,
.is-ctl-accountorder .checkout .checkout-additional .form-group.checkout-additional,
.checkout-additional .is-act-confirmpage .checkout .form-group.checkout-aside,
.checkout-additional .is-act-confirmpage .checkout .hbspt-form .checkout-aside.hs-form-booleancheckbox,
.hbspt-form .checkout-additional .is-act-confirmpage .checkout .checkout-aside.hs-form-booleancheckbox,
.checkout-additional .is-act-confirmpage .checkout .hbspt-form .checkout-aside.hs-form-field,
.hbspt-form .checkout-additional .is-act-confirmpage .checkout .checkout-aside.hs-form-field,
.is-act-confirmpage .checkout .checkout-additional .form-group.checkout-aside,
.checkout-additional .is-ctl-accountorder .checkout .form-group.checkout-aside,
.checkout-additional .is-ctl-accountorder .checkout .hbspt-form .checkout-aside.hs-form-booleancheckbox,
.hbspt-form .checkout-additional .is-ctl-accountorder .checkout .checkout-aside.hs-form-booleancheckbox,
.checkout-additional .is-ctl-accountorder .checkout .hbspt-form .checkout-aside.hs-form-field,
.hbspt-form .checkout-additional .is-ctl-accountorder .checkout .checkout-aside.hs-form-field,
.is-ctl-accountorder .checkout .checkout-additional .form-group.checkout-aside,
.checkout-additional .is-act-finishpage .checkout .form-group.checkout-additional,
.checkout-additional .is-act-finishpage .checkout .hbspt-form .checkout-additional.hs-form-booleancheckbox,
.hbspt-form .checkout-additional .is-act-finishpage .checkout .checkout-additional.hs-form-booleancheckbox,
.checkout-additional .is-act-finishpage .checkout .hbspt-form .checkout-additional.hs-form-field,
.hbspt-form .checkout-additional .is-act-finishpage .checkout .checkout-additional.hs-form-field,
.is-act-finishpage .checkout .checkout-additional .form-group.checkout-additional,
.checkout-additional .is-act-finishpage .checkout .form-group.checkout-aside,
.checkout-additional .is-act-finishpage .checkout .hbspt-form .checkout-aside.hs-form-booleancheckbox,
.hbspt-form .checkout-additional .is-act-finishpage .checkout .checkout-aside.hs-form-booleancheckbox,
.checkout-additional .is-act-finishpage .checkout .hbspt-form .checkout-aside.hs-form-field,
.hbspt-form .checkout-additional .is-act-finishpage .checkout .checkout-aside.hs-form-field,
.is-act-finishpage .checkout .checkout-additional .form-group.checkout-aside,
.cms-block-netzp-powerpack6-collapse .card-body {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0,
.checkout-additional .form-group.col-lg-4,
.checkout-additional .hbspt-form .col-lg-4.hs-form-booleancheckbox,
.checkout-additional .hbspt-form .is-act-cartpage .checkout .hs-form-booleancheckbox.checkout-aside,
.is-act-cartpage .checkout .checkout-additional .hbspt-form .hs-form-booleancheckbox.checkout-aside,
.checkout-additional .hbspt-form .is-act-checkoutregisterpage .checkout .hs-form-booleancheckbox.checkout-aside,
.is-act-checkoutregisterpage .checkout .checkout-additional .hbspt-form .hs-form-booleancheckbox.checkout-aside,
.checkout-additional .hbspt-form .is-act-confirmpage .checkout .hs-form-booleancheckbox.checkout-additional,
.is-act-confirmpage .checkout .checkout-additional .hbspt-form .hs-form-booleancheckbox.checkout-additional,
.checkout-additional .hbspt-form .is-ctl-accountorder .checkout .hs-form-booleancheckbox.checkout-additional,
.is-ctl-accountorder .checkout .checkout-additional .hbspt-form .hs-form-booleancheckbox.checkout-additional,
.checkout-additional .hbspt-form .is-act-confirmpage .checkout .hs-form-booleancheckbox.checkout-aside,
.is-act-confirmpage .checkout .checkout-additional .hbspt-form .hs-form-booleancheckbox.checkout-aside,
.checkout-additional .hbspt-form .is-ctl-accountorder .checkout .hs-form-booleancheckbox.checkout-aside,
.is-ctl-accountorder .checkout .checkout-additional .hbspt-form .hs-form-booleancheckbox.checkout-aside,
.checkout-additional .hbspt-form .is-act-finishpage .checkout .hs-form-booleancheckbox.checkout-additional,
.is-act-finishpage .checkout .checkout-additional .hbspt-form .hs-form-booleancheckbox.checkout-additional,
.checkout-additional .hbspt-form .is-act-finishpage .checkout .hs-form-booleancheckbox.checkout-aside,
.is-act-finishpage .checkout .checkout-additional .hbspt-form .hs-form-booleancheckbox.checkout-aside,
.hbspt-form .checkout-additional .col-lg-4.hs-form-booleancheckbox,
.checkout-additional .hbspt-form .col-lg-4.hs-form-field,
.checkout-additional .hbspt-form .is-act-cartpage .checkout .hs-form-field.checkout-aside,
.is-act-cartpage .checkout .checkout-additional .hbspt-form .hs-form-field.checkout-aside,
.checkout-additional .hbspt-form .is-act-checkoutregisterpage .checkout .hs-form-field.checkout-aside,
.is-act-checkoutregisterpage .checkout .checkout-additional .hbspt-form .hs-form-field.checkout-aside,
.checkout-additional .hbspt-form .is-act-confirmpage .checkout .hs-form-field.checkout-additional,
.is-act-confirmpage .checkout .checkout-additional .hbspt-form .hs-form-field.checkout-additional,
.checkout-additional .hbspt-form .is-ctl-accountorder .checkout .hs-form-field.checkout-additional,
.is-ctl-accountorder .checkout .checkout-additional .hbspt-form .hs-form-field.checkout-additional,
.checkout-additional .hbspt-form .is-act-confirmpage .checkout .hs-form-field.checkout-aside,
.is-act-confirmpage .checkout .checkout-additional .hbspt-form .hs-form-field.checkout-aside,
.checkout-additional .hbspt-form .is-ctl-accountorder .checkout .hs-form-field.checkout-aside,
.is-ctl-accountorder .checkout .checkout-additional .hbspt-form .hs-form-field.checkout-aside,
.checkout-additional .hbspt-form .is-act-finishpage .checkout .hs-form-field.checkout-additional,
.is-act-finishpage .checkout .checkout-additional .hbspt-form .hs-form-field.checkout-additional,
.checkout-additional .hbspt-form .is-act-finishpage .checkout .hs-form-field.checkout-aside,
.is-act-finishpage .checkout .checkout-additional .hbspt-form .hs-form-field.checkout-aside,
.hbspt-form .checkout-additional .col-lg-4.hs-form-field,
.checkout-additional .is-act-cartpage .checkout .form-group.checkout-aside,
.checkout-additional .is-act-cartpage .checkout .hbspt-form .checkout-aside.hs-form-booleancheckbox,
.hbspt-form .checkout-additional .is-act-cartpage .checkout .checkout-aside.hs-form-booleancheckbox,
.checkout-additional .is-act-cartpage .checkout .hbspt-form .checkout-aside.hs-form-field,
.hbspt-form .checkout-additional .is-act-cartpage .checkout .checkout-aside.hs-form-field,
.is-act-cartpage .checkout .checkout-additional .form-group.checkout-aside,
.checkout-additional .is-act-checkoutregisterpage .checkout .form-group.checkout-aside,
.checkout-additional .is-act-checkoutregisterpage .checkout .hbspt-form .checkout-aside.hs-form-booleancheckbox,
.hbspt-form .checkout-additional .is-act-checkoutregisterpage .checkout .checkout-aside.hs-form-booleancheckbox,
.checkout-additional .is-act-checkoutregisterpage .checkout .hbspt-form .checkout-aside.hs-form-field,
.hbspt-form .checkout-additional .is-act-checkoutregisterpage .checkout .checkout-aside.hs-form-field,
.is-act-checkoutregisterpage .checkout .checkout-additional .form-group.checkout-aside,
.checkout-additional .is-act-confirmpage .checkout .form-group.checkout-additional,
.checkout-additional .is-act-confirmpage .checkout .hbspt-form .checkout-additional.hs-form-booleancheckbox,
.hbspt-form .checkout-additional .is-act-confirmpage .checkout .checkout-additional.hs-form-booleancheckbox,
.checkout-additional .is-act-confirmpage .checkout .hbspt-form .checkout-additional.hs-form-field,
.hbspt-form .checkout-additional .is-act-confirmpage .checkout .checkout-additional.hs-form-field,
.is-act-confirmpage .checkout .checkout-additional .form-group.checkout-additional,
.checkout-additional .is-ctl-accountorder .checkout .form-group.checkout-additional,
.checkout-additional .is-ctl-accountorder .checkout .hbspt-form .checkout-additional.hs-form-booleancheckbox,
.hbspt-form .checkout-additional .is-ctl-accountorder .checkout .checkout-additional.hs-form-booleancheckbox,
.checkout-additional .is-ctl-accountorder .checkout .hbspt-form .checkout-additional.hs-form-field,
.hbspt-form .checkout-additional .is-ctl-accountorder .checkout .checkout-additional.hs-form-field,
.is-ctl-accountorder .checkout .checkout-additional .form-group.checkout-additional,
.checkout-additional .is-act-confirmpage .checkout .form-group.checkout-aside,
.checkout-additional .is-act-confirmpage .checkout .hbspt-form .checkout-aside.hs-form-booleancheckbox,
.hbspt-form .checkout-additional .is-act-confirmpage .checkout .checkout-aside.hs-form-booleancheckbox,
.checkout-additional .is-act-confirmpage .checkout .hbspt-form .checkout-aside.hs-form-field,
.hbspt-form .checkout-additional .is-act-confirmpage .checkout .checkout-aside.hs-form-field,
.is-act-confirmpage .checkout .checkout-additional .form-group.checkout-aside,
.checkout-additional .is-ctl-accountorder .checkout .form-group.checkout-aside,
.checkout-additional .is-ctl-accountorder .checkout .hbspt-form .checkout-aside.hs-form-booleancheckbox,
.hbspt-form .checkout-additional .is-ctl-accountorder .checkout .checkout-aside.hs-form-booleancheckbox,
.checkout-additional .is-ctl-accountorder .checkout .hbspt-form .checkout-aside.hs-form-field,
.hbspt-form .checkout-additional .is-ctl-accountorder .checkout .checkout-aside.hs-form-field,
.is-ctl-accountorder .checkout .checkout-additional .form-group.checkout-aside,
.checkout-additional .is-act-finishpage .checkout .form-group.checkout-additional,
.checkout-additional .is-act-finishpage .checkout .hbspt-form .checkout-additional.hs-form-booleancheckbox,
.hbspt-form .checkout-additional .is-act-finishpage .checkout .checkout-additional.hs-form-booleancheckbox,
.checkout-additional .is-act-finishpage .checkout .hbspt-form .checkout-additional.hs-form-field,
.hbspt-form .checkout-additional .is-act-finishpage .checkout .checkout-additional.hs-form-field,
.is-act-finishpage .checkout .checkout-additional .form-group.checkout-additional,
.checkout-additional .is-act-finishpage .checkout .form-group.checkout-aside,
.checkout-additional .is-act-finishpage .checkout .hbspt-form .checkout-aside.hs-form-booleancheckbox,
.hbspt-form .checkout-additional .is-act-finishpage .checkout .checkout-aside.hs-form-booleancheckbox,
.checkout-additional .is-act-finishpage .checkout .hbspt-form .checkout-aside.hs-form-field,
.hbspt-form .checkout-additional .is-act-finishpage .checkout .checkout-aside.hs-form-field,
.is-act-finishpage .checkout .checkout-additional .form-group.checkout-aside,
.cms-block-netzp-powerpack6-collapse .card-body {
  padding-left: 0 !important;
}

.p-1 {
  padding: .25rem !important;
}

.pt-1,
.py-1 {
  padding-top: .25rem !important;
}

.pr-1,
.px-1 {
  padding-right: .25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: .25rem !important;
}

.pl-1,
.px-1 {
  padding-left: .25rem !important;
}

.p-2 {
  padding: .5rem !important;
}

.pt-2,
.py-2 {
  padding-top: .5rem !important;
}

.pr-2,
.px-2 {
  padding-right: .5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: .5rem !important;
}

.pl-2,
.px-2 {
  padding-left: .5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-n1 {
  margin: -.25rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -.25rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -.25rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -.25rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -.25rem !important;
}

.m-n2 {
  margin: -.5rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -.5rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -.5rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -.5rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width:576px) {
  .m-sm-0 {
    margin: 0 !important;
  }

  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }

  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }

  .mb-sm-0,
  .scroll-navigation-sidebar-entry,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }

  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }

  .m-sm-1 {
    margin: .25rem !important;
  }

  .mt-sm-1,
  .my-sm-1 {
    margin-top: .25rem !important;
  }

  .mr-sm-1,
  .mx-sm-1 {
    margin-right: .25rem !important;
  }

  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: .25rem !important;
  }

  .ml-sm-1,
  .mx-sm-1 {
    margin-left: .25rem !important;
  }

  .m-sm-2 {
    margin: .5rem !important;
  }

  .mt-sm-2,
  .my-sm-2 {
    margin-top: .5rem !important;
  }

  .mr-sm-2,
  .mx-sm-2 {
    margin-right: .5rem !important;
  }

  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: .5rem !important;
  }

  .ml-sm-2,
  .mx-sm-2 {
    margin-left: .5rem !important;
  }

  .m-sm-3 {
    margin: 1rem !important;
  }

  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }
  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }

  .m-sm-4 {
    margin: 1.5rem !important;
  }

  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mr-sm-4,
  .scroll-navigation-sidebar-entry,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }

  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }

  .m-sm-5 {
    margin: 3rem !important;
  }

  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important;
  }

  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important;
  }

  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important;
  }

  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }

  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }

  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }

  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }

  .p-sm-1 {
    padding: .25rem !important;
  }

  .pt-sm-1,
  .py-sm-1 {
    padding-top: .25rem !important;
  }

  .pr-sm-1,
  .px-sm-1 {
    padding-right: .25rem !important;
  }

  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: .25rem !important;
  }

  .pl-sm-1,
  .px-sm-1 {
    padding-left: .25rem !important;
  }

  .p-sm-2 {
    padding: .5rem !important;
  }

  .pt-sm-2,
  .py-sm-2 {
    padding-top: .5rem !important;
  }

  .pr-sm-2,
  .px-sm-2 {
    padding-right: .5rem !important;
  }

  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: .5rem !important;
  }

  .pl-sm-2,
  .px-sm-2 {
    padding-left: .5rem !important;
  }

  .p-sm-3 {
    padding: 1rem !important;
  }

  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }

  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }

  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }

  .p-sm-4 {
    padding: 1.5rem !important;
  }

  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }

  .p-sm-5 {
    padding: 3rem !important;
  }

  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important;
  }

  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important;
  }

  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important;
  }

  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important;
  }

  .m-sm-n1 {
    margin: -.25rem !important;
  }

  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -.25rem !important;
  }

  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -.25rem !important;
  }

  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -.25rem !important;
  }

  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -.25rem !important;
  }

  .m-sm-n2 {
    margin: -.5rem !important;
  }

  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -.5rem !important;
  }

  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -.5rem !important;
  }

  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -.5rem !important;
  }

  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -.5rem !important;
  }

  .m-sm-n3 {
    margin: -1rem !important;
  }

  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -1rem !important;
  }

  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -1rem !important;
  }

  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -1rem !important;
  }

  .m-sm-n4 {
    margin: -1.5rem !important;
  }

  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -1.5rem !important;
  }

  .m-sm-n5 {
    margin: -3rem !important;
  }

  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -3rem !important;
  }

  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -3rem !important;
  }

  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -3rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }

  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }

  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}

@media (min-width:768px) {
  .m-md-0 {
    margin: 0 !important;
  }

  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }

  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }

  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }

  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }

  .m-md-1 {
    margin: .25rem !important;
  }

  .mt-md-1,
  .my-md-1 {
    margin-top: .25rem !important;
  }

  .mr-md-1,
  .mx-md-1 {
    margin-right: .25rem !important;
  }

  .mb-md-1,
  .my-md-1 {
    margin-bottom: .25rem !important;
  }

  .ml-md-1,
  .mx-md-1 {
    margin-left: .25rem !important;
  }

  .m-md-2 {
    margin: .5rem !important;
  }

  .mt-md-2,
  .my-md-2 {
    margin-top: .5rem !important;
  }

  .mr-md-2,
  .mx-md-2 {
    margin-right: .5rem !important;
  }

  .mb-md-2,
  .my-md-2 {
    margin-bottom: .5rem !important;
  }

  .ml-md-2,
  .mx-md-2 {
    margin-left: .5rem !important;
  }

  .m-md-3 {
    margin: 1rem !important;
  }

  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }

  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }

  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }

  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }

  .m-md-4 {
    margin: 1.5rem !important;
  }

  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }

  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }

  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }

  .m-md-5 {
    margin: 3rem !important;
  }

  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important;
  }

  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }

  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }

  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }

  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }

  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }

  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }

  .p-md-1 {
    padding: .25rem !important;
  }

  .pt-md-1,
  .py-md-1 {
    padding-top: .25rem !important;
  }

  .pr-md-1,
  .px-md-1 {
    padding-right: .25rem !important;
  }

  .pb-md-1,
  .py-md-1 {
    padding-bottom: .25rem !important;
  }

  .pl-md-1,
  .px-md-1 {
    padding-left: .25rem !important;
  }

  .p-md-2 {
    padding: .5rem !important;
  }

  .pt-md-2,
  .py-md-2 {
    padding-top: .5rem !important;
  }

  .pr-md-2,
  .px-md-2 {
    padding-right: .5rem !important;
  }

  .pb-md-2,
  .py-md-2 {
    padding-bottom: .5rem !important;
  }

  .pl-md-2,
  .px-md-2 {
    padding-left: .5rem !important;
  }

  .p-md-3 {
    padding: 1rem !important;
  }

  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }

  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }

  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }

  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }

  .p-md-4 {
    padding: 1.5rem !important;
  }

  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }

  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }

  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }

  .p-md-5 {
    padding: 3rem !important;
  }

  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important;
  }

  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }

  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important;
  }

  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }

  .m-md-n1 {
    margin: -.25rem !important;
  }

  .mt-md-n1,
  .my-md-n1 {
    margin-top: -.25rem !important;
  }

  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -.25rem !important;
  }

  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -.25rem !important;
  }

  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -.25rem !important;
  }

  .m-md-n2 {
    margin: -.5rem !important;
  }

  .mt-md-n2,
  .my-md-n2 {
    margin-top: -.5rem !important;
  }

  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -.5rem !important;
  }

  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -.5rem !important;
  }

  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -.5rem !important;
  }

  .m-md-n3 {
    margin: -1rem !important;
  }

  .mt-md-n3,
  .my-md-n3 {
    margin-top: -1rem !important;
  }

  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -1rem !important;
  }

  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -1rem !important;
  }

  .m-md-n4 {
    margin: -1.5rem !important;
  }

  .mt-md-n4,
  .my-md-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -1.5rem !important;
  }

  .m-md-n5 {
    margin: -3rem !important;
  }

  .mt-md-n5,
  .my-md-n5 {
    margin-top: -3rem !important;
  }

  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -3rem !important;
  }

  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -3rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }

  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }

  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }

  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}

@media (min-width:1025px) {
  .m-lg-0 {
    margin: 0 !important;
  }

  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }

  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }

  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }

  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }

  .m-lg-1 {
    margin: .25rem !important;
  }

  .mt-lg-1,
  .my-lg-1 {
    margin-top: .25rem !important;
  }

  .mr-lg-1,
  .mx-lg-1 {
    margin-right: .25rem !important;
  }

  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: .25rem !important;
  }

  .ml-lg-1,
  .mx-lg-1 {
    margin-left: .25rem !important;
  }

  .m-lg-2 {
    margin: .5rem !important;
  }

  .mt-lg-2,
  .my-lg-2 {
    margin-top: .5rem !important;
  }

  .mr-lg-2,
  .mx-lg-2 {
    margin-right: .5rem !important;
  }

  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: .5rem !important;
  }

  .ml-lg-2,
  .mx-lg-2 {
    margin-left: .5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }

  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }

  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }

  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }

  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important;
  }

  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }

  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important;
  }

  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }

  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }

  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }

  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }

  .p-lg-1 {
    padding: .25rem !important;
  }

  .pt-lg-1,
  .py-lg-1 {
    padding-top: .25rem !important;
  }

  .pr-lg-1,
  .px-lg-1 {
    padding-right: .25rem !important;
  }

  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: .25rem !important;
  }

  .pl-lg-1,
  .px-lg-1 {
    padding-left: .25rem !important;
  }

  .p-lg-2 {
    padding: .5rem !important;

  }

  .pt-lg-2,
  .py-lg-2 {
    padding-top: .5rem !important;
  }

  .pr-lg-2,
  .px-lg-2 {
    padding-right: .5rem !important;
  }

  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: .5rem !important;
  }

  .pl-lg-2,
  .px-lg-2 {
    padding-left: .5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }

  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }

  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important;
  }

  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important;
  }

  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important;
  }

  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }

  .m-lg-n1 {
    margin: -.25rem !important;
  }

  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -.25rem !important;
  }

  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -.25rem !important;
  }

  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -.25rem !important;
  }

  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -.25rem !important;
  }

  .m-lg-n2 {
    margin: -.5rem !important;
  }

  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -.5rem !important;
  }

  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -.5rem !important;
  }

  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -.5rem !important;
  }

  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -.5rem !important;
  }

  .m-lg-n3 {
    margin: -1rem !important;
  }

  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -1rem !important;
  }

  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -1rem !important;
  }

  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -1rem !important;
  }

  .m-lg-n4 {
    margin: -1.5rem !important;
  }

  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -1.5rem !important;
  }

  .m-lg-n5 {
    margin: -3rem !important;
  }

  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -3rem !important;
  }

  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -3rem !important;
  }

  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -3rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }

  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }

  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}

@media (min-width:1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }

  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }

  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }

  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }

  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }

  .m-xl-1 {
    margin: .25rem !important;
  }

  .mt-xl-1,
  .my-xl-1 {
    margin-top: .25rem !important;
  }

  .mr-xl-1,
  .mx-xl-1 {
    margin-right: .25rem !important;
  }

  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: .25rem !important;
  }

  .ml-xl-1,
  .mx-xl-1 {
    margin-left: .25rem !important;
  }

  .m-xl-2 {
    margin: .5rem !important;
  }

  .mt-xl-2,
  .my-xl-2 {
    margin-top: .5rem !important;
  }

  .mr-xl-2,
  .mx-xl-2 {
    margin-right: .5rem !important;
  }

  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: .5rem !important;
  }

  .ml-xl-2,
  .mx-xl-2 {
    margin-left: .5rem !important;
  }

  .m-xl-3 {
    margin: 1rem !important;
  }

  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important;
  }

  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }

  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }

  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }

  .m-xl-4 {
    margin: 1.5rem !important;
  }

  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important;
  }

  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }

  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }

  .m-xl-5 {
    margin: 3rem !important;
  }

  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important;
  }

  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }

  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important;
  }

  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }

  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }

  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }

  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }

  .p-xl-1 {
    padding: .25rem !important;
  }

  .pt-xl-1,
  .py-xl-1 {
    padding-top: .25rem !important;
  }

  .pr-xl-1,
  .px-xl-1 {
    padding-right: .25rem !important;
  }

  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: .25rem !important;
  }

  .pl-xl-1,
  .px-xl-1 {
    padding-left: .25rem !important;
  }

  .p-xl-2 {
    padding: .5rem !important;
  }

  .pt-xl-2,
  .py-xl-2 {
    padding-top: .5rem !important;
  }

  .pr-xl-2,
  .px-xl-2 {
    padding-right: .5rem !important;
  }

  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: .5rem !important;
  }

  .pl-xl-2,
  .px-xl-2 {
    padding-left: .5rem !important;
  }

  .p-xl-3 {
    padding: 1rem !important;
  }

  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important;
  }

  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }

  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }

  .p-xl-4 {
    padding: 1.5rem !important;
  }

  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }

  .p-xl-5 {
    padding: 3rem !important;
  }

  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important;
  }

  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }

  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important;
  }

  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important;
  }

  .m-xl-n1 {
    margin: -.25rem !important;
  }

  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -.25rem !important;
  }

  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -.25rem !important;
  }

  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -.25rem !important;
  }

  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -.25rem !important;
  }

  .m-xl-n2 {
    margin: -.5rem !important;
  }

  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -.5rem !important;
  }

  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -.5rem !important;
  }

  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -.5rem !important;
  }

  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -.5rem !important;
  }

  .m-xl-n3 {
    margin: -1rem !important;
  }

  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -1rem !important;
  }

  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -1rem !important;
  }

  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -1rem !important;
  }

  .m-xl-n4 {
    margin: -1.5rem !important;
  }

  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -1.5rem !important;
  }

  .m-xl-n5 {
    margin: -3rem !important;
  }

  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -3rem !important;
  }

  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -3rem !important;
  }

  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -3rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }

  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }

  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}

@media (min-width:1400px) {
  .m-xxl-0 {
    margin: 0 !important;
  }

  .mt-xxl-0,
  .my-xxl-0 {
    margin-top: 0 !important;
  }

  .mr-xxl-0,
  .mx-xxl-0 {
    margin-right: 0 !important;
  }

  .mb-xxl-0,
  .my-xxl-0 {
    margin-bottom: 0 !important;
  }

  .ml-xxl-0,
  .mx-xxl-0 {
    margin-left: 0 !important;
  }

  .m-xxl-1 {
    margin: .25rem !important;
  }

  .mt-xxl-1,
  .my-xxl-1 {
    margin-top: .25rem !important;
  }

  .mr-xxl-1,
  .mx-xxl-1 {
    margin-right: .25rem !important;
  }

  .mb-xxl-1,
  .my-xxl-1 {
    margin-bottom: .25rem !important;
  }

  .ml-xxl-1,
  .mx-xxl-1 {
    margin-left: .25rem !important;
  }

  .m-xxl-2 {
    margin: .5rem !important;
  }

  .mt-xxl-2,
  .my-xxl-2 {
    margin-top: .5rem !important;
  }

  .mr-xxl-2,
  .mx-xxl-2 {
    margin-right: .5rem !important;
  }

  .mb-xxl-2,
  .my-xxl-2 {
    margin-bottom: .5rem !important;
  }

  .ml-xxl-2,
  .mx-xxl-2 {
    margin-left: .5rem !important;
  }

  .m-xxl-3 {
    margin: 1rem !important;
  }

  .mt-xxl-3,
  .my-xxl-3 {
    margin-top: 1rem !important;
  }

  .mr-xxl-3,
  .mx-xxl-3 {
    margin-right: 1rem !important;
  }

  .mb-xxl-3,
  .my-xxl-3 {
    margin-bottom: 1rem !important;
  }

  .ml-xxl-3,
  .mx-xxl-3 {
    margin-left: 1rem !important;
  }

  .m-xxl-4 {
    margin: 1.5rem !important;
  }

  .mt-xxl-4,
  .my-xxl-4 {
    margin-top: 1.5rem !important;
  }

  .mr-xxl-4,
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
  }

  .mb-xxl-4,
  .my-xxl-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-xxl-4,
  .mx-xxl-4 {
    margin-left: 1.5rem !important;
  }

  .m-xxl-5 {
    margin: 3rem !important;
  }

  .mt-xxl-5,
  .my-xxl-5 {
    margin-top: 3rem !important;
  }

  .mr-xxl-5,
  .mx-xxl-5 {
    margin-right: 3rem !important;
  }

  .mb-xxl-5,
  .my-xxl-5 {
    margin-bottom: 3rem !important;
  }

  .ml-xxl-5,
  .mx-xxl-5 {
    margin-left: 3rem !important;
  }

  .p-xxl-0 {
    padding: 0 !important;
  }

  .pt-xxl-0,
  .py-xxl-0 {
    padding-top: 0 !important;
  }

  .pr-xxl-0,
  .px-xxl-0 {
    padding-right: 0 !important;
  }

  .pb-xxl-0,
  .py-xxl-0 {
    padding-bottom: 0 !important;
  }

  .pl-xxl-0,
  .px-xxl-0 {
    padding-left: 0 !important;
  }

  .p-xxl-1 {
    padding: .25rem !important;
  }

  .pt-xxl-1,
  .py-xxl-1 {
    padding-top: .25rem !important;
  }

  .pr-xxl-1,
  .px-xxl-1 {
    padding-right: .25rem !important;
  }

  .pb-xxl-1,
  .py-xxl-1 {
    padding-bottom: .25rem !important;
  }

  .pl-xxl-1,
  .px-xxl-1 {
    padding-left: .25rem !important;
  }

  .p-xxl-2 {
    padding: .5rem !important;
  }

  .pt-xxl-2,
  .py-xxl-2 {
    padding-top: .5rem !important;
  }

  .pr-xxl-2,
  .px-xxl-2 {
    padding-right: .5rem !important;
  }

  .pb-xxl-2,
  .py-xxl-2 {
    padding-bottom: .5rem !important;
  }

  .pl-xxl-2,
  .px-xxl-2 {
    padding-left: .5rem !important;
  }

  .p-xxl-3 {
    padding: 1rem !important;
  }

  .pt-xxl-3,
  .py-xxl-3 {
    padding-top: 1rem !important;
  }

  .pr-xxl-3,
  .px-xxl-3 {
    padding-right: 1rem !important;
  }

  .pb-xxl-3,
  .py-xxl-3 {
    padding-bottom: 1rem !important;
  }

  .pl-xxl-3,
  .px-xxl-3 {
    padding-left: 1rem !important;
  }

  .p-xxl-4 {
    padding: 1.5rem !important;
  }

  .pt-xxl-4,
  .py-xxl-4 {
    padding-top: 1.5rem !important;
  }

  .pr-xxl-4,
  .px-xxl-4 {
    padding-right: 1.5rem !important;
  }

  .pb-xxl-4,
  .py-xxl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-xxl-4,
  .px-xxl-4 {
    padding-left: 1.5rem !important;
  }

  .p-xxl-5 {
    padding: 3rem !important;
  }

  .pt-xxl-5,
  .py-xxl-5 {
    padding-top: 3rem !important;
  }

  .pr-xxl-5,
  .px-xxl-5 {
    padding-right: 3rem !important;
  }

  .pb-xxl-5,
  .py-xxl-5 {
    padding-bottom: 3rem !important;
  }

  .pl-xxl-5,
  .px-xxl-5 {
    padding-left: 3rem !important;
  }

  .m-xxl-n1 {
    margin: -.25rem !important;
  }

  .mt-xxl-n1,
  .my-xxl-n1 {
    margin-top: -.25rem !important;
  }

  .mr-xxl-n1,
  .mx-xxl-n1 {
    margin-right: -.25rem !important;
  }

  .mb-xxl-n1,
  .my-xxl-n1 {
    margin-bottom: -.25rem !important;
  }

  .ml-xxl-n1,
  .mx-xxl-n1 {
    margin-left: -.25rem !important;
  }

  .m-xxl-n2 {
    margin: -.5rem !important;
  }

  .mt-xxl-n2,
  .my-xxl-n2 {
    margin-top: -.5rem !important;
  }

  .mr-xxl-n2,
  .mx-xxl-n2 {
    margin-right: -.5rem !important;
  }

  .mb-xxl-n2,
  .my-xxl-n2 {
    margin-bottom: -.5rem !important;
  }

  .ml-xxl-n2,
  .mx-xxl-n2 {
    margin-left: -.5rem !important;
  }

  .m-xxl-n3 {
    margin: -1rem !important;
  }

  .mt-xxl-n3,
  .my-xxl-n3 {
    margin-top: -1rem !important;
  }

  .mr-xxl-n3,
  .mx-xxl-n3 {
    margin-right: -1rem !important;
  }

  .mb-xxl-n3,
  .my-xxl-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-xxl-n3,
  .mx-xxl-n3 {
    margin-left: -1rem !important;
  }

  .m-xxl-n4 {
    margin: -1.5rem !important;
  }

  .mt-xxl-n4,
  .my-xxl-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-xxl-n4,
  .mx-xxl-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-xxl-n4,
  .my-xxl-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-xxl-n4,
  .mx-xxl-n4 {
    margin-left: -1.5rem !important;
  }

  .m-xxl-n5 {
    margin: -3rem !important;
  }

  .mt-xxl-n5,
  .my-xxl-n5 {
    margin-top: -3rem !important;
  }

  .mr-xxl-n5,
  .mx-xxl-n5 {
    margin-right: -3rem !important;
  }

  .mb-xxl-n5,
  .my-xxl-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-xxl-n5,
  .mx-xxl-n5 {
    margin-left: -3rem !important;
  }

  .m-xxl-auto {
    margin: auto !important;
  }

  .mt-xxl-auto,
  .my-xxl-auto {
    margin-top: auto !important;
  }

  .mr-xxl-auto,
  .mx-xxl-auto {
    margin-right: auto !important;
  }

  .mb-xxl-auto,
  .my-xxl-auto {
    margin-bottom: auto !important;
  }

  .ml-xxl-auto,
  .mx-xxl-auto {
    margin-left: auto !important;
  }
}

.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

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

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

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

.text-center {
  text-align: center !important;
}

@media (min-width:576px) {
  .text-sm-left {
    text-align: left !important;
  }

  .text-sm-right {
    text-align: right !important;
  }

  .text-sm-center {
    text-align: center !important;
  }
}

@media (min-width:768px) {
  .text-md-left {
    text-align: left !important;
  }

  .text-md-right,
  .cart-header-row .cart-header-quantity {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }
}

@media (min-width:1025px) {
  .text-lg-left {
    text-align: left !important;
  }

  .text-lg-right {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }
}

@media (min-width:1200px) {
  .text-xl-left {
    text-align: left !important;
  }

  .text-xl-right {
    text-align: right !important;
  }

  .text-xl-center {
    text-align: center !important;
  }
}

@media (min-width:1400px) {
  .text-xxl-left {
    text-align: left !important;
  }

  .text-xxl-right {
    text-align: right !important;
  }

  .text-xxl-center {
    text-align: center !important;
  }
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-lighter {
  font-weight: lighter !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-weight-bolder {
  font-weight: bolder !important;
}

.font-italic {
  font-style: italic !important;
}

.text-white {
  color: #fff !important;
}

.text-primary,
.loader {
  color: #e30613 !important;
}

a.text-primary:hover,
a.loader:hover,
a.text-primary:focus,
a.loader:focus {
  color: #98040d !important;
}

.text-secondary {
  color: #f6f6f6 !important;
}

a.text-secondary:hover,
a.text-secondary:focus {
  color: #d0d0d0 !important;
}

.text-success {
  color: #3cc261 !important;
}

a.text-success:hover,
a.text-success:focus {
  color: #2a8844 !important;
}

.text-info {
  color: #26b6cf !important;
}

a.text-info:hover,
a.text-info:focus {
  color: #1a7d8e !important;
}

.text-warning {
  color: #ffbd5d !important;
}

a.text-warning:hover,
a.text-warning:focus {
  color: #ff9e11 !important;
}

.text-danger {
  color: #e52427 !important;
}

a.text-danger:hover,
a.text-danger:focus {
  color: #a81416 !important;
}

.text-light {
  color: #f9f9f9 !important;
}

a.text-light:hover,
a.text-light:focus {
  color: lightgray !important;
}

.text-dark {
  color: #4a545b !important;
}

a.text-dark:hover,
a.text-dark:focus {
  color: #282d31 !important;
}

.text-body {
  color: #111 !important;
}

.text-muted {
  color: #798490 !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, .5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, .5) !important;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-break {
  -ms-word-break: break-word !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
}

.text-reset {
  color: inherit !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media print {

  *,
  *::before,
  *::after {
    text-shadow: none !important;
    box-shadow: none !important;
  }

  a:not(.btn) {
    text-decoration: underline;
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #adb5bd;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }

  @page {
    size: a3;
  }

  body {
    min-width: 1025px !important;
  }

  .container,
  .cms-section .boxed {
    min-width: 1025px !important;
  }

  .navbar {
    display: none;
  }

  .badge {
    border: 1px solid #000;
  }

  .table {
    border-collapse: collapse !important;
  }

  .table td,
  .table th {
    background-color: #fff !important;
  }

  .table-bordered th,
  .table-bordered td {
    border: 1px solid #bcc1c7 !important;
  }

  .table-dark {
    color: inherit;
  }

  .table-dark th,
  .table-dark td,
  .table-dark thead th,
  .table-dark tbody + tbody {
    border-color: #bcc1c7;
  }

  .table .thead-dark th {
    color: inherit;
    border-color: #bcc1c7;
  }
}

.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: -ms-transform 0s, opacity 0s;
  -webkit-transition: -webkit-transform 0s, opacity 0s;
  -webkit-transition: transform 0s, opacity 0s;
  -moz-transition: -ms-transform 0s, opacity 0s;
  -moz-transition: -webkit-transform 0s, opacity 0s;
  -moz-transition: transform 0s, opacity 0s;
  transition: -ms-transform 0s, opacity 0s;
  transition: -webkit-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 .25s;
  -moz-transition: all .25s;
  transition: all .25s;
}

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

.tns-lazy-img {
  -webkit-transition: opacity .6s;
  -moz-transition: opacity .6s;
  transition: opacity .6s;
  opacity: .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;
  -webkit-filter: alpha(opacity=100);
  filter: alpha(opacity=100);
  z-index: 0;
}

.tns-normal,
.tns-fadeOut {
  opacity: 0;
  -webkit-filter: alpha(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;
}

.flatpickr-calendar {
  background: transparent;
  background: #fff;
  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;
  -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, .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, .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(.23, 1, .32, 1);
  animation: fpFadeInDown 300ms cubic-bezier(.23, 1, .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.showTimeInput.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.rightMost:after {
  left: auto;
  right: 22px;
}

.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, .9);
  fill: rgba(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 {
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  height: 34px;
  padding: 10px;
  z-index: 3;
  color: rgba(0, 0, 0, .9);
  fill: rgba(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 {
  left: 0;
}

.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,
.flatpickr-months .flatpickr-next-month.flatpickr-next-month {
  right: 0;
}

.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 .1s;
  transition: fill .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, .15);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.numInputWrapper span:hover {
  background: rgba(0, 0, 0, .1);
}

.numInputWrapper span:active {
  background: rgba(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, .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, .6);
  top: 40%;
}

.numInputWrapper span svg {
  width: inherit;
  height: auto;
}

.numInputWrapper span svg path {
  fill: rgba(0, 0, 0, .5);
}

.numInputWrapper:hover {
  background: rgba(0, 0, 0, .05);
}

.numInputWrapper:hover span {
  opacity: 1;
}

.flatpickr-current-month {
  font-size: 135%;
  line-height: inherit;
  line-height: 1;
  font-weight: 300;
  color: inherit;
  position: absolute;
  width: 75%;
  left: 12.5%;
  padding: 7.48px 0 0 0;
  height: 34px;
  display: inline-block;
  text-align: center;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-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: .5ch;
  padding: 0;
}

.flatpickr-current-month span.cur-month:hover {
  background: rgba(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, .9);
}

.flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: rgba(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 .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, .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 .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, .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, .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;
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-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, .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, .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, .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;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 0;
  line-height: 40px;
  max-height: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}

.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);
    -ms-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    -ms-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

html {}

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:1024.98px) {
  html::before {
    content: "md";
  }
}

@media (min-width:1025px) and (max-width:1199.98px) {
  html::before {
    content: "lg";
  }
}

@media (min-width:1200px) and (max-width:1399.98px) {
  html::before {
    content: "xl";
  }
}

html .sw-text-editor-table__col-selector {
  display: none;
}

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;
}

html.is-ie .input-group-append .icon {
  display: block;
}

html.is-ie .input-group-append svg {
  top: 0;
  vertical-align: auto;
}

html.is-ie .cart-item-row .cart-item-quantity {
  z-index: 1;
}

html.is-ie .product-image-wrapper {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}

html.is-ie .product-image-link {
  display: block;
}

html.is-ie .product-image {
  margin: auto;
}

.alert-has-icon,
.hbspt-form div.submitted-message {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.alert-has-icon .alert-content-container,
.hbspt-form div.submitted-message .alert-content-container,
.alert-has-icon .hbspt-form div.submitted-message,
.hbspt-form .alert-has-icon div.submitted-message,
.hbspt-form div.submitted-message {
  padding-left: 1rem;
}

.alert-list {
  padding-left: 20px;
  margin-bottom: 0;
}

.card-title {
  color: #3f4c58;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.card-col {
  margin-bottom: 1rem;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.card-col .card {
  width: 100%;
}

.card-col .card-body {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.card-actions {
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: auto;
}

.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: #111;
}

.category-navigation-link:hover {
  text-decoration: none;
}

.category-navigation-link.is-active {
  color: #e30613;
  font-weight: 700;
}

.category-navigation-link.in-path {
  font-weight: 700;
}

.modal-backdrop {
  opacity: 0;
  -webkit-transition: opacity .45s cubic-bezier(.3, 0, .15, 1), visibility .45s linear;
  transition: opacity .45s cubic-bezier(.3, 0, .15, 1), visibility .45s linear;
}

.modal-backdrop.modal-backdrop-open {
  opacity: 1;
}

.modal-backdrop > .loader {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -1rem;
  margin-top: -1rem;
}

.base-slider {
  position: relative;
}

.base-slider .tns-nav,
.base-slider .base-slider-dots {
  position: absolute;
  bottom: 0;
  left: 50%;
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-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-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%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #798490;
  background: rgba(255, 255, 255, .5);
  border: 1px solid rgba(255, 255, 255, .5);
  line-height: 68px;
  opacity: .5;
  -webkit-transition: opacity .15s ease;
  transition: opacity .15s ease;
  cursor: pointer;
  padding: 0;
}

.base-slider-controls-prev:hover,
.base-slider-controls-next:hover {
  border-color: rgba(227, 6, 19, .5);
  color: #e30613;
  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: none;
}

.base-slider-controls-prev[disabled],
.base-slider-controls-next[disabled] {
  opacity: .2;
  cursor: default;
}

.base-slider-controls-prev {
  border-radius: 0 3px 3px 0;
}

.base-slider-controls-next {
  border-radius: 3px 0 0 3px;
}

@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%;
  }

  .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-container {
  position: relative;
  height: 100%;
}

.image-slider-container .image-slider-image {
  display: block;
  width: 100%;
}

.image-slider-container .image-slider-item {
  display: -ms-grid;
  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;
  font-family: "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: -15px;
}

.image-slider-controls-next.is-nav-next-inside {
  right: 0;
}

.image-slider-controls-next.is-nav-next-outside {
  right: -15px;
}

@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.has-border {
  border: 1px solid #bcc1c7;
  border-radius: 3px;
}

.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 {
  width: 99.9%;
}

.gallery-slider-row {
  margin-bottom: 1rem;
}

.gallery-slider-row.is-loading {
  height: 430px;
  overflow: hidden;
}

.gallery-slider-row.is-single-image {
  -ms-flex-pack: center;
  justify-content: center;
}

.gallery-slider-single-image {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: 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;
  -webkit-backface-visibility: hidden;
  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;
  font-family: "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;
  font-family: "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;
  font-family: "object-fit: contain;";
}

.gallery-slider-controls-prev {
  left: 0;
}

.gallery-slider-controls-prev.is-nav-prev-outside {
  left: -10px;
}

.gallery-slider-controls-next {
  right: 0;
}

.gallery-slider-controls-next.is-nav-next-outside {
  right: -10px;
}

.gallery-slider-thumbnails-container {
  position: relative;
}

.gallery-slider-thumbnails-container .tns-inner {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: center;
  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%;
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-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 {
  -ms-transform: translateY(-30%);
  -webkit-transform: translateY(-30%);
  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: -ms-flexbox;
  display: -webkit-flex;
  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: #e30613;
}

.gallery-slider-thumbnails-item-inner {
  border: 1px solid #bcc1c7;
  border-radius: 3px;
  width: 100%;
  height: 100%;
  padding: .25rem;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.gallery-slider-thumbnails-image,
.gallery-slider-image {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  max-height: 100%;
  max-width: 100%;
}

.gallery-slider-thumbnails-controls {
  display: none;
  margin: 0;
}

@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 {
    -ms-flex-pack: center;
    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-overlay,
.magnifier-zoom-image {
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  opacity: 0;
  -webkit-animation: magnifyLensFade .5s forwards;
  animation: magnifyLensFade .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, .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;
}

@-webkit-keyframes magnifyLensFade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes magnifyLensFade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.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 .modal-close {
  position: absolute;
  top: 0;
  opacity: 1;
  z-index: 1051;
  margin: 15px;
}

.modal.zoom-modal .zoom-modal-actions {
  left: 0;
}

.modal.zoom-modal .modal-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;
  -ms-flex-pack: center;
  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: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
}

.modal.zoom-modal .image-zoom-container > * {
  position: relative;
}

.modal.zoom-modal .image-zoom-btn.disabled {
  opacity: .3;
}

@media (min-width:768px) {
  .modal.zoom-modal .gallery-slider {
    bottom: 100px;
  }

  .modal.zoom-modal .modal-footer {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
}

.offcanvas {
  background: #fff;
  height: 100%;
  width: 90%;
  overflow-y: auto;
  position: fixed;
  top: 0;
  -webkit-transition: all .45s cubic-bezier(.3, 0, .15, 1);
  transition: all .45s cubic-bezier(.3, 0, .15, 1);
  z-index: 1050;
}

.offcanvas.is-left {
  left: 0;
  -ms-transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

.offcanvas.is-left .offcanvas-close {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.offcanvas.is-right {
  right: 0;
  -ms-transform: translateX(100%);
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

.offcanvas.is-open {
  -ms-transform: translateX(0) !important;
  -webkit-transform: translateX(0) !important;
  transform: translateX(0) !important;
}

.offcanvas.is-fullwidth {
  width: 100%;
}

.offcanvas.is-bottom {
  bottom: 0;
  top: auto;
  height: 90%;
  width: 100%;
  border-radius: 8px 8px 0 0;
  -ms-transform: translateY(100%);
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}

.offcanvas.is-bottom .offcanvas-close {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  border: 0;
  padding: 0;
}

.offcanvas .offcanvas-header {
  padding: 1rem 20px;
  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: .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-content-container > .loader {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -1rem;
  margin-top: -1rem;
}

.offcanvas .offcanvas-content-container {
  padding: 20px;
  width: 100%;
}

@media (min-width:576px) {
  .offcanvas {
    width: auto;
  }

  .offcanvas .offcanvas-content-container {
    width: 400px;
  }
}

.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%;
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  text-overflow: ellipsis;
  font-size: .75rem;
}

.product-variant-characteristics .product-variant-characteristics-option {
  font-weight: 700;
}

.product-image-wrapper {
  height: 200px;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-preferred-size: 180px;
  flex-basis: 180px;
  margin-bottom: 15px;
  position: relative;
}

.product-image-link {
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.product-image-link.is-cover {
  -ms-flex-align: start;
  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;
  font-family: "object-fit: cover;";
}

.product-image.is-contain {
  object-fit: contain;
  font-family: "object-fit: contain;";
}

.product-image.is-standard {
  object-fit: scale-down;
  font-family: "object-fit: scale-down;";
}

.product-image-placeholder {
  max-width: 180px;
  height: 100%;
}

.product-rating {
  margin-bottom: 10px;
  height: 25px;
}

.product-name {
  color: #3f4c58;
  display: block;
  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;
}

.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;
}

.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: .75rem;
  line-height: 20px;
  margin-bottom: 6px;
}

.product-cheapest-price .product-cheapest-price-price {
  font-weight: 700;
}

.product-price {
  color: #3f4c58;
  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: #3f4c58;
  font-weight: 400;
  padding-left: 5px;
  font-size: 12px;
}

.product-price .list-price .list-price-price {
  text-decoration: line-through;
}

.product-price .list-price-no-line-through .list-price-price {
  text-decoration: none;
}

.product-price .strikeprice-text {
  color: #3f4c58;
  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;
  font-family: "object-fit: cover;";
}

.product-price-wrapper {
  font-size: 18px;
}

.has-element-loader {
  z-index: 15;
  pointer-events: none;
  position: relative;
}

.element-loader-backdrop {
  opacity: 0;
  -webkit-transition: opacity .45s cubic-bezier(.3, 0, .15, 1), visibility .45s linear;
  transition: opacity .45s cubic-bezier(.3, 0, .15, 1), visibility .45s linear;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: rgba(255, 255, 255, .5);
  box-shadow: 0 0 11px 7px rgba(255, 255, 255, .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;
}

@-webkit-keyframes skeletonShimmer {
  0% {
    background-position: -500px 0;
  }

  100% {
    background-position: 500px 0;
  }
}

@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-price {
  border-radius: 3px;
  color: transparent;
  -webkit-animation: skeletonShimmer 1.5s linear 0s infinite normal forwards running;
  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: 3px;
  color: transparent;
  -webkit-animation: skeletonShimmer 1.5s linear 0s infinite normal forwards running;
  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 .modal-header.only-close {
  border-bottom-color: transparent;
}

.modal .modal-close:focus {
  outline: 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-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;
}

.language-flag.country-de {
  background-image: linear-gradient(to bottom, #000 33%, #d00 33%, #d00 66%, #ffce00 66%);
}

.language-flag.country-en {
  background-size: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=\'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg\' width=\'640\' height=\'480\'%3E%3Cdefs%3E%3CclipPath id=\'a\'%3E%3Cpath d=\'M-85 0h682v512H-85z\'%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3Cg clip-path=\'url%28%23a%29\' transform=\'translate%2880%29 scale%28.94%29\'%3E%3Cpath fill=\'%23006\' d=\'M-256 0H768v512H-256z\'%2F%3E%3Cpath fill=\'%23fff\' d=\'M-256 0v57l910 455h114v-57L-141 0h-115zM768 0v57l-909 455h-115v-57L654 0h114z\'%2F%3E%3Cpath fill=\'%23fff\' d=\'M171 0v512h170V0H171zm-427 171v170H768V171H-256z\'%2F%3E%3Cpath fill=\'%23c00\' d=\'M-256 205v102H768V205H-256zM205 0v512h102V0H205zm-461 512L85 341h77l-342 171h-76zm0-512L85 171H9L-256 38V0zm606 171L692 0h76L427 171h-77zm418 341L427 341h76l265 133v38z\'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

.language-flag.country-bs {
  background-size: 150%;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHdpZHRoPSI4MDAiIGhlaWdodD0iNDAwIiB2aWV3Qm94PSIwIDAgMTYgOCI+PHJlY3Qgd2lkdGg9IjE2IiBoZWlnaHQ9IjgiIGZpbGw9IiMwMDIzOTUiLz48cGF0aCBkPSJtNC4yNCwwaDh2OHoiIGZpbGw9IiNmZWNiMDAiLz48ZyBpZD0iZyI+PHBhdGggZD0iTTIuMzUzMjgzLDAuNTI0ODUyOSAyLjgsLTAuODUgMy4yNDY3MTcsMC41MjQ4NTMgMi4wNzcxOTcsLTAuMzI0ODUzSDMuNTIyODAzeiIgZmlsbD0iI2ZmZiIgaWQ9InMiLz48dXNlIHhsaW5rOmhyZWY9IiNzIiB4PSIxIiB5PSIxIi8+PHVzZSB4bGluazpocmVmPSIjcyIgeD0iMiIgeT0iMiIvPjwvZz48dXNlIHhsaW5rOmhyZWY9IiNnIiB4PSIzIiB5PSIzIi8+PHVzZSB4bGluazpocmVmPSIjZyIgeD0iNiIgeT0iNiIvPjwvc3ZnPgo=");
}

.language-flag.country-cs {
  background-size: 110%;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4NCjxzdmcgdmVyc2lvbj0iMS4wIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI5MDAiIGhlaWdodD0iNjAwIj4NCgk8cmVjdCB3aWR0aD0iOTAwIiBoZWlnaHQ9IjYwMCIgZmlsbD0iI2Q3MTQxYSIvPg0KCTxyZWN0IHdpZHRoPSI5MDAiIGhlaWdodD0iMzAwIiBmaWxsPSIjZmZmIi8+DQoJPHBhdGggZD0iTSA0NTAsMzAwIDAsMCBWIDYwMCB6IiBmaWxsPSIjMTE0NTdlIi8+DQo8L3N2Zz4=");
}

.language-flag.country-da {
  background-size: 100%;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDM3IDI4Ij48cGF0aCBmaWxsPSIjYzYwYzMwIiBkPSJNMCwwSDM3VjI4SDBaIi8+PHBhdGggZmlsbD0iI2ZmZiIgZD0iTTAsMTJIMTJWMEgxNlYxMkgzN1YxNkgxNlYyOEgxMlYxNkgwWiIvPjwvc3ZnPg==");
}

.language-flag.country-nl {
  background-image: linear-gradient(to bottom, #d00 33%, #fff 33%, #fff 66%, #21468b 66%);
}

.language-flag.country-fr {
  background-image: linear-gradient(to right, #21468b 33%, #fff 33%, #fff 66%, #d00 66%);
}

.language-flag.country-id {
  background-image: linear-gradient(to bottom, #d00 50%, #fff 50%);
}

.language-flag.country-it {
  background-image: linear-gradient(to right, #009246 33%, #fff 33%, #fff 66%, #d00 66%);
}

.language-flag.country-lv {
  background-image: linear-gradient(to bottom, #900 40%, #fff 40%, #fff 60%, #900 60%);
}

.language-flag.country-pl {
  background-image: linear-gradient(to bottom, #fff 50%, #d00 50%);
}

.language-flag.country-pt {
  background-size: 110%;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4NDQo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHdpZHRoPSI2MDAiIGhlaWdodD0iNDAwIj4NDQo8cmVjdCB3aWR0aD0iNjAwIiBoZWlnaHQ9IjQwMCIgZmlsbD0iI2YwMCIvPg0NCjxyZWN0IHdpZHRoPSIyNDAiIGhlaWdodD0iNDAwIiBmaWxsPSIjMDYwIi8+DQ0KPGcgZmlsbD0iI2ZmMCIgZmlsbC1ydWxlPSJldmVub2RkIiBzdHJva2U9IiMwMDAiIHN0cm9rZS13aWR0aD0iMC41NzMiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCI+DQo8cGF0aCBkPSJtMzE4LjI0LDI2Mi4wNGMtMzAuMjEtMC45MS0xNjguNzQtODcuMzgtMTY5LjY5LTEwMS4xNWw3LjY0OTYtMTIuNzU3YzEzLjc0MSwxOS45NjYsMTU1LjM2LDEwNC4wNiwxNjkuMjcsMTAxLjA4bC03LjIyOTksMTIuODIzIi8+DQ0KPHBhdGggZD0ibTE1NC41OSwxNDYuNGMtMi43MTAxLDcuMjkzNywzNi4xNDksMzEuMzE4LDgyLjkwMyw1OS43NTQsNDYuNzUyLDI4LjQzNCw4Ny4wNjUsNDYuMDA2LDkwLjA1Myw0My40ODYsMC4xODI1Ni0wLjMyNTQ0LDEuNDcwMS0yLjU0MDksMS4zNTItMi41MjMyLTAuNTYwMDEsMC44NDQwMi0xLjkyMzQsMS4xMTA0LTQuMDUwNiwwLjQ5NzQxLTEyLjYzMS0zLjY0MzMtNDUuNTc1LTE4Ljc2NS04Ni4zNzQtNDMuNTA2LTQwLjc5OC0yNC43NDMtNzYuMjk0LTQ3LjU0NC04MS44MTEtNTcuMjMyLTAuMzgzNjMtMC42NzExNi0wLjY1NzAyLTEuODk2Mi0wLjYwMTQ2LTIuODQ4N2wtMC4xMzQwNS0wLjAwMi0xLjE3NDcsMi4wNTMyLTAuMTYxMzksMC4zMjE5MWgtMC4wMDA4OHptMTY0LjM2LDExNi4wNGMtMC41MTIzOCwwLjkyOTU3LTEuNDY3NSwwLjk2MDQ0LTMuMjgxNiwwLjc2MTEyLTExLjMtMS4yNTA2LTQ1LjU4OS0xNy45MjUtODYuMTYyLTQyLjIxMy00Ny4yMS0yOC4yNi04Ni4yLTU0LjAxLTgxLjk3LTYwLjc0bDEuMTUwOS0yLjAzNDYsMC4yMjY2NSwwLjA3MDZjLTMuODAzNywxMS40MDUsNzYuOTQ4LDU3LjU3OCw4MS43MDIsNjAuNTIyLDQ2LjcyNCwyOC45NDcsODYuMTE1LDQ1Ljg1MSw4OS42MDEsNDEuNDU4bC0xLjI2ODIsMi4xODF2LTAuMDAyeiIvPg0NCjxwYXRoIGQ9Im0yNDAuMTcsMTY5LjIzYzMwLjIzNy0wLjIzOTAxLDY3LjU1LTQuMTMxOSw4OS4wMjMtMTIuNjlsLTQuNjI2NS03LjUxNjhjLTEyLjY5Miw3LjAyNDctNTAuMjEsMTEuNjQ0LTg0LjY1MiwxMi4zMzUtNDAuNzM2LTAuMzc0ODMtNjkuNDktNC4xNjgxLTgzLjg5Ny0xMy44MzVsLTQuMzY3Miw4LjAwNDVjMjYuNDg0LDExLjIwNyw1My42MjMsMTMuNTg3LDg4LjUyLDEzLjcwMyIvPg0NCjxwYXRoIGQ9Im0zMzAuNDQsMTU2LjcxYy0wLjczOTA0LDEuMTgxOC0xNC43NDMsNi4wMTEzLTM1LjM3Myw5LjU3NTMtMTMuOTg4LDIuMTMyNS0zMi4yMzQsMy45NTU1LTU1LjAwNCwzLjk3NzYtMjEuNjMzLDAuMDIwMy0zOS4zMDUtMS41MTk2LTUyLjY4NC0zLjMzMjktMjEuNjU2LTMuMzk1NS0zMi44MzMtOC4xMjAxLTM2Ljk2NS05Ljc4OTYsMC4zOTUwOS0wLjc4NTgxLDAuNjQ5MDgtMS4zMzcsMS4wMzAxLTIuMDcwOCwxMS44OTUsNC43MzYsMjMuMTI0LDcuNTkxOCwzNi4yNzksOS42MTU4LDEzLjI5MSwxLjgsMzAuNzUsMy4zNjIsNTIuMjc2LDMuMzQxNywyMi42NjQtMC4wMjI5LDQwLjcwOS0xLjk4NDQsNTQuNjE2LTQuMDUzNCwyMS4xNTUtMy40MTIyLDMyLjcxMS03LjgwMzQsMzQuMzM0LTkuODQyNWwxLjQ5NCwyLjU3ODhoLTAuMDAyem0tNC4wNjAzLTcuNjIyNmMtMi4yOTMsMS44NDE1LTEzLjcxOCw1Ljg5MzItMzMuODE5LDkuMTAzNC0xMy40MTUsMS45MjI2LTMwLjQ3MiwzLjY0MzMtNTIuMjY1LDMuNjY0NS0yMC43MDQsMC4wMjAzLTM3LjYxOS0xLjM3NS01MC40ODUtMy4yNDkxLTIwLjQxNC0yLjY2NjEtMzEuMjc5LTcuNDc1NC0zNS4xOTYtOC44Nzc2LDAuMzg5OC0wLjY3MzgxLDAuNzg2NjYtMS4zNDIzLDEuMTk0MS0yLjAxMzUsMy4wNDc5LDEuNTM0NiwxMy41MzMsNS43OTA5LDM0LjIyNiw4LjcyMjQsMTIuNzIsMS44MDM2LDI5LjY2MSwzLjE0NzcsNTAuMjYyLDMuMTI2NSwyMS42OS0wLjAyMjEsMzguNTUzLTEuNzc2Miw1MS44ODMtMy42ODgzLDIwLjIwNS0yLjc3OTksMzEuMDc3LTcuOTQ3MiwzMi43MjgtOS4yNDFsMS40NzI4LDIuNDUwOXYwLjAwMnoiLz4NDQo8cGF0aCBkPSJtMTQwLjg4LDIwNS42NmMxOC41OTgsMTAuMDAzLDU5LjkwNSwxNS4wNDQsOTguOTk0LDE1LjM5MSwzNS41OTEsMC4wNTY0LDgxLjk1OC01LjUwMTYsOTkuMjk3LTE0LjY5bC0wLjQ3NzEyLTEwLjAxMmMtNS40MjQ2LDguNDc3My01NS4xMTMsMTYuNjA5LTk5LjIwNiwxNi4yNzYtNDQuMDkzLTAuMzMyNS04NS4wMzgtNy4xNDI5LTk4LjY4Ny0xNS45NTlsMC4wNzk0LDguOTkxNCIvPg0NCjxwYXRoIGQ9Im0zNDAuMTIsMjA0LjIyLDAuMDAwODgsMi4zODc0Yy0yLjYwNiwzLjExNTktMTguOTQ2LDcuODI1NS0zOS40MzcsMTEuMTQyLTE1LjU5NSwyLjM5MS0zNS45MjcsNC4xOTQ1LTYxLjI2Miw0LjE5NDUtMjQuMDY5LDAtNDMuMjYzLTEuNzE2My01OC4xNDgtNC4wMDE0LTIzLjUyOS0zLjQyNjQtMzguNTc5LTkuNDI2Mi00MS42LTExLjIxN2wwLjAxMzItMi43ODUyYzkuMDc0OCw2LjAzMzQsMzMuNjYxLDEwLjQ0Nyw0MS45MTcsMTEuNzk4LDE0Ljc4OCwyLjI3MDEsMzMuODY4LDMuOTczMiw1Ny44MTcsMy45NzMyLDI1LjIxNiwwLDQ1LjQzNC0xLjc5MTIsNjAuOTMxLTQuMTY2MywxNC43MDEtMi4xMjM3LDM1LjY0NC03LjY0NjUsMzkuNzY3LTExLjMyNGgwLjAwMDg4em0wLjAxLTguNDkyMiwwLjAwMDg4LDIuMzg3NGMtMi42MDYsMy4xMTQyLTE4Ljk0Niw3LjgyMzctMzkuNDM3LDExLjE0LTE1LjU5NSwyLjM5MS0zNS45MjcsNC4xOTQ1LTYxLjI2Miw0LjE5NDUtMjQuMDY5LDAtNDMuMjYzLTEuNzE0NS01OC4xNDgtNC4wMDE0LTIzLjUyOS0zLjQyNDYtMzguNTc5LTkuNDI0NS00MS42LTExLjIxNmwwLjAxMzItMi43ODUyYzkuMDc0OCw2LjAzMjUsMzMuNjYxLDEwLjQ0Nyw0MS45MTcsMTEuNzk2LDE0Ljc4OCwyLjI3MTksMzMuODY4LDMuOTc1OCw1Ny44MTcsMy45NzU4LDI1LjIxNiwwLDQ1LjQzNC0xLjc5MjEsNjAuOTMxLTQuMTY5LDE0LjcwMS0yLjEyMzcsMzUuNjQ0LTcuNjQ2NSwzOS43NjctMTEuMzI0bDAuMDAwODgsMC4wMDJ6Ii8+DQ0KPHBhdGggZD0ibTIzOS43OSwyNjAuMzJjLTQyLjc3Mi0wLjI1NDg5LTc5LjQyMS0xMS42NTktODcuMTYtMTMuNTQ0bDUuNjQzMyw4LjgzNDRjMTMuNjcsNS43NTAzLDQ5LjQyNCwxNC4zMiw4MS45MjcsMTMuMzcxLDMyLjUwNC0wLjk0ODA5LDYwLjkxLTMuNDY2LDgwLjkyOC0xMy4yMTFsNS43ODYyLTkuMTU1NWMtMTMuNjQyLDYuNDI1LTYwLjA2OCwxMy42MzktODcuMTI1LDEzLjcwNSIvPg0NCjxwYXRoIHN0cm9rZS13aWR0aD0iMC41NSIgZD0ibTMyMy4zLDI1My43MmMtMC44NTAxNiwxLjI5OTEtMS43MTcxLDIuNTgyMy0yLjU5NjMsMy44Mjk0LTkuNDQxNywzLjMyOTMtMjQuMzE5LDYuODI0NS0zMC41OTcsNy44NDQtMTIuODI0LDIuNjQyMy0zMi42NjUsNC41OTQtNTAuMjc0LDQuNjAyOS0zNy44OS0wLjU1NDc0LTY4LjkwNS03Ljk3MTktODMuNDk2LTE0LjI5OWwtMS4xNzczLTIuMDI0MSwwLjE5MjI1LTAuMzA0MjcsMS45OTY2LDAuNzc0MzVjMjUuOTQ4LDkuMjgzNCw1NS4wOTEsMTIuOTg3LDgyLjY5OCwxMy42NTIsMTcuNTM4LDAuMDYxNywzNS4wOTUtMi4wMSw0OS4yOTItNC41NDkxLDIxLjc3MS00LjM2MjEsMzAuNTc0LTcuNjUsMzMuMjc1LTkuMTQwNWwwLjY4NzAxLTAuMzg1NDFoLTAuMDAwODh6bTUuMDE3Mi04LjI3NTNjMC4wMjIsMC4wMjU2LDAuMDQ0MSwwLjA1MDMsMC4wNjUzLDAuMDc3Ni0wLjYzNTg1LDEuMDczMy0xLjI5MTEsMi4xNjUyLTEuOTYyMiwzLjI2MjMtNS4wMzU3LDEuOC0xOC43MDIsNS43OTg4LTM4LjY1OSw4LjU4OTMtMTMuMTQ5LDEuNzkxMi0yMS4zMjIsMy41MjYtNDcuNDc5LDQuMDM0LTQ5LjAxNS0xLjI0NzEtODAuNzUtMTAuODMxLTg4LjI4OS0xMy4xOTVsLTEuMTE3NC0yLjE0MzFjMjguNDA2LDcuNDE1NCw1Ny40MjIsMTIuNTkyLDg5LjQwOCwxMy4xMjEsMjMuOTMxLTAuNTA5NzYsMzQuMTEyLTIuMjcxOSw0Ny4xNTItNC4wNDk5LDIzLjI3MS0zLjYxODYsMzQuOTk2LTcuNDQ5OCwzOC41MTUtOC41NTU4LTAuMDQ0MS0wLjA2MzUtMC4wOTYxLTAuMTMwNTMtMC4xNTQzMy0wLjE5OTMybDIuNTIzMS0wLjk0MjgtMC4wMDIsMC4wMDJ6Ii8+DQ0KPHBhdGggZD0ibTMyOC44MywxOTcuNzZjMC4xMzg3MywyOC4xMzctMTQuMjYsNTMuMzg2LTI1Ljg1OCw2NC41MjUtMTYuNDA4LDE1Ljc1OS0zOC4xNjMsMjUuODk2LTYzLjU2OSwyNi4zNjMtMjguMzcsMC41MjExNy01NS4xMi0xNy45NzQtNjIuMjk1LTI2LjA5OS0xNC4wMjgtMTUuODg1LTI1LjQ0OS0zNi4wNTctMjUuODE1LTYzLjI0MywxLjczNzYtMzAuNzA5LDEzLjc5My01Mi4xLDMxLjI2OC02Ni43NjlzNDAuNzQzLTIxLjgxMyw2MC4xMjEtMjEuMzAyYzIyLjM1OCwwLjU5MDAzLDQ4LjQ3NSwxMS41NTgsNjYuNTIxLDMzLjMzMiwxMS44MjMsMTQuMjY2LDE2Ljk0MywyOS43NDgsMTkuNjI3LDUzLjE5M3ptLTg5LjE4Ni05Ni4zNDJjNTQuNDg1LDAsOTkuMjk2LDQ0LjMzOCw5OS4yOTYsOTguNzAzLDAsNTQuMzY0LTQ0LjgxMSw5OC43MDQtOTkuMjk2LDk4LjcwNHMtOTguOTI0LTQ0LjMzOS05OC45MjQtOTguNzA0LDQ0LjQzOS05OC43MDMsOTguOTI0LTk4LjcwMyIvPg0NCjxwYXRoIGQ9Im0yMzkuOTEsMTAxLjA4YzU0LjUzNCwwLDk5LjAxMSw0NC40ODMsOTkuMDExLDk5LjAyMiwwLDU0LjUzOC00NC40NzgsOTkuMDItOTkuMDExLDk5LjAyLTU0LjUzNCwwLTk5LjAxMS00NC40ODEtOTkuMDExLTk5LjAyczQ0LjQ3OC05OS4wMjIsOTkuMDExLTk5LjAyMnptLTk2LjgzMiw5OS4wMjI0YzAsNTMuMjYsNDMuNzM2LDk2Ljg0Miw5Ni44MzIsOTYuODQyLDUzLjA5NywwLDk2LjgzMy00My41ODIsOTYuODMzLTk2Ljg0MiwwLTUzLjI2Mi00My43MzctOTYuODQ0LTk2LjgzMy05Ni44NDRzLTk2LjgzMiw0My41ODQtOTYuODMyLDk2Ljg0NHoiLz4NDQo8cGF0aCBkPSJtMjM5Ljk5LDEwOS4zMWM0OS43MzEsMCw5MC42OTMsNDAuODIxLDkwLjY5Myw5MC43MDQsMCw0OS44ODQtNDAuOTYzLDkwLjcwMy05MC42OTMsOTAuNzAzcy05MC42OTMtNDAuODE5LTkwLjY5My05MC43MDNjMC00OS44ODMsNDAuOTY0LTkwLjcwNCw5MC42OTMtOTAuNzA0em0tODguNTE1LDkwLjcwMzRjMCw0OC42ODUsMzkuOTc5LDg4LjUyNCw4OC41MTUsODguNTI0czg4LjUxNS0zOS44MzksODguNTE1LTg4LjUyNGMwLTQ4LjY4Ni0zOS45NzgtODguNTI1LTg4LjUxNS04OC41MjUtNDguNTM2LDAtODguNTE1LDM5LjgzOS04OC41MTUsODguNTI1eiIvPg0NCjxwYXRoIGQ9Im0yNDMuOTgsMTAwLjY4LTguNDg1NDUsMCwwLjAxLDE5OC45Niw4LjUxNDU1LDB6Ii8+DQ0KPHBhdGggZD0ibTI0My4xMyw5OS41NDZoMi4xNTk4bDAuMDE4NSwyMDEuMjVoLTIuMTYxNmwtMC4wMTU5LTIwMS4yNXptLTguNDIxMywwLjAwMThoMi4xNzY2bDAuMDAzLDIwMS4yNWgtMi4xNzgzdi0yMDEuMjV6Ii8+DQ0KPHBhdGggZD0ibTMzOC45OSwyMDMuOTM1LDAtNy4zNTU0LTUuOTktNS41OC0zNC05LTQ5LTUtNTksMy00MiwxMC04LjQ4LDYuMjgsMCw3LjM1NzJsMjEuNDgtOS42MzcsNTEtOGg0OWwzNiw0LDI1LDZ6Ii8+DQ0KPHBhdGggZD0ibTIzOS45NSwxODQuNzdjMjMuMzgzLTAuMDQzMiw0Ni4wNywyLjIxNTQsNjQuMDY1LDUuNzE5NCwxOC41NjksMy43MTIxLDMxLjYzNyw4LjM1NTYsMzYuMTA1LDEzLjU3MWwtMC4wMDUsMi41ODIzYy01LjM4ODQtNi40OTAyLTIyLjk3My0xMS4yNDgtMzYuNTE4LTEzLjk2OC0xNy44NTgtMy40NzQtNDAuMzkzLTUuNzE2OC02My42NDctNS42NzM2LTI0LjUzOCwwLjA0NTktNDcuMzg3LDIuMzY5OC02NC45ODQsNS44MDMyLTE0LjEyLDIuODAxOS0zMi45NTEsOC4zNjc5LTM1LjMwMiwxMy44NTh2LTIuNjg5YzEuMjkxMS0zLjgwMDMsMTUuMzEzLTkuNDc5MiwzNC45ODQtMTMuNDE3LDE3LjcyOS0zLjQ1NzIsNDAuNjItNS43NDE1LDY1LjMwMi01Ljc4NjR6bTAuMDEtOC40OTIyYzIzLjM4My0wLjA0MjMsNDYuMDcsMi4yMTcyLDY0LjA2NSw1LjcxOTQsMTguNTY5LDMuNzEzOSwzMS42MzcsOC4zNTU2LDM2LjEwNSwxMy41NzFsLTAuMDA1LDIuNTgyM2MtNS4zODg0LTYuNDg4NS0yMi45NzMtMTEuMjQ3LTM2LjUxOC0xMy45NjYtMTcuODU4LTMuNDc1Ny00MC4zOTMtNS43MTg1LTYzLjY0Ny01LjY3MzYtMjQuNTM4LDAuMDQ0MS00Ny4yNzYsMi4zNjk4LTY0Ljg3NSw1LjgwMTQtMTMuNjI2LDIuNTgzMi0zMy4yMjYsOC4zNjk2LTM1LjQxMiwxMy44NnYtMi42OTA4YzEuMjkxMS0zLjc1ODgsMTUuNTk3LTkuNjQxNCwzNC45ODUtMTMuNDE3LDE3LjcyOS0zLjQ1NzIsNDAuNjItNS43Mzk3LDY1LjMwMi01Ljc4NjR6Ii8+DQ0KPHBhdGggZD0ibTIzOS40OCwxMzIuOTZjMzYuODQ5LTAuMTg0MzMsNjguOTksNS4xNTIzLDgzLjY5NSwxMi42ODVsNS4zNjM4LDkuMjc5Yy0xMi43ODEtNi44ODgtNDcuNDU2LTE0LjA1LTg5LjAwNS0xMi45NzktMzMuODU0LDAuMjA4MTQtNzAuMDI3LDMuNzI3MS04OC4xNzYsMTMuNDFsNi40MDM1LTEwLjcwOWMxNC44OTUtNy43MjQxLDUwLjAyMi0xMS42NDMsODEuNzItMTEuNjg0Ii8+DQ0KPHBhdGggZD0ibTIzOS45NywxNDAuNjJjMjEuMDE3LTAuMDU1Niw0MS4zMjUsMS4xMjk4LDU3LjQ3Niw0LjA0MzcsMTUuMDQxLDIuNzk5MywyOS4zODUsNy4wMDA5LDMxLjQzNiw5LjI2MDRsMS41OTAxLDIuODA5OWMtNC45ODgxLTMuMjU3LTE3LjQwMS02Ljg4MzYtMzMuMzM5LTkuOTA2LTE2LjAwNi0zLjAwODMtMzYuMy00LjAwNDktNTcuMi0zLjk1MDItMjMuNzIyLTAuMDgxMS00Mi4xNTIsMS4xNzEyLTU3Ljk2OSwzLjkyOTEtMTYuNzI4LDMuMTMtMjguMzM0LDcuNjAxNS0zMS4xOTcsOS43MjYxbDEuNTU4My0yLjk3MDRjNS41NjMxLTIuODM4MSwxNC4zOS02LjI1OTIsMjkuMjIzLTguOTI5NywxNi4zNTctMi45ODgsMzQuOTgzLTMuODg0MSw1OC40MjMtNC4wMTI4aC0wLjAwMDg4em0tMC4wMDktOC40ODQzYzIwLjExMy0wLjA1MjksMzkuOTcyLDEuMDY4LDU1LjQ1MiwzLjg1MDYsMTIuMjA5LDIuMzc2OCwyNC4yODMsNi4wODcyLDI4LjcwNCw5LjM4OTJsMi4zMjU2LDMuNjk1NGMtMy45NTM2LTQuMzk0Ny0xOC44MzYtOC41NTkzLTMxLjk3NC0xMC44OTItMTUuMzYxLTIuNjQ5NC0zNC4zOTUtMy42OTgtNTQuNTA4LTMuODY1Ni0yMS4xMDgsMC4wNTkxLTQwLjYxNSwxLjM1Mi01NS43NTIsNC4xMDgxLTE0LjQ0MSwyLjc0ODEtMjMuNzYsNi4wMDE2LTI3LjcwMyw4LjU0MjVsMi4wNDUxLTMuMDg2OGM1LjQ0MTQtMi44NjQ2LDE0LjIzMi01LjQ5NTQsMjUuMzAzLTcuNjQ2NSwxNS4yNDktMi43NzY0LDM0Ljg3Ni00LjAzNTgsNTYuMTA4LTQuMDk0OXoiLz4NDQo8cGF0aCBkPSJtMjg5LjE1LDI0MS4yNmMtMTguMjE4LTMuNDAwOC0zNi40NjktMy44OTQ3LTQ5LjIxNy0zLjc0NDctNjEuNDA3LDAuNzE5NjctODEuMjQ0LDEyLjYwOS04My42NjUsMTYuMjA5bC00LjU4OTQtNy40ODE1YzE1LjYzNC0xMS4zMzIsNDkuMDczLTE3LjY4Nyw4OC41ODctMTcuMDM3LDIwLjUxOCwwLjMzNjAyLDM4LjIyNCwxLjY5ODYsNTMuMTE5LDQuNTgzNWwtNC4yMzU4LDcuNDcyNyIvPg0NCjxwYXRoIHN0cm9rZS13aWR0aD0iMC41NSIgZD0ibTIzOS41OCwyMzYuNDZjMTcuMDgyLDAuMjU0ODgsMzMuODQ5LDAuOTYwNDQsNTAuMDMzLDMuOTc4NGwtMS4xNzIsMi4wNjljLTE1LjAzMS0yLjc3NDYtMzEuMDU1LTMuODM2NS00OC44MDMtMy43NS0yMi42NjMtMC4xNzcyNy00NS41ODUsMS45Mzk0LTY1LjU0MSw3LjY2NjgtNi4yOTY4LDEuNzUyNC0xNi43MjEsNS44MDA2LTE3Ljc4NCw5LjE0NThsLTEuMTY1OS0xLjkyMjZjMC4zMzYwMS0xLjk3NzMsNi42MzYzLTYuMDgxLDE4LjQxNC05LjM5MDEsMjIuODU4LTYuNTQ1OCw0NC4yMzktNy42NDkxLDY2LjAxOS03Ljc5OXYwLjAwMnptMC43NzUxOS04LjU5NjNjMTcuNjk4LDAuMzMwNzMsMzUuOTc1LDEuMTQ5Miw1My43NCw0LjY2ODFsLTEuMjIwNiwyLjE1MzdjLTE2LjA0Mi0zLjE4NDctMzEuMzY5LTQuMjQ2Ni01Mi40MTUtNC41NzAyLTIyLjczNSwwLjA0MTQtNDYuODUxLDEuNjYyNS02OC43NzgsOC4wMzcyLTcuMDc5MSwyLjA2Mi0xOS4yOTcsNi41MjAyLTE5LjcwNCwxMC4wNWwtMS4xNjU5LTIuMDY1NWMwLjI2NTQ1LTMuMjA1OSwxMC44NDItNy4zODgsMjAuMzU4LTEwLjE1NiwyMi4wOTYtNi40MjQxLDQ2LjI3NS04LjA3Niw2OS4xODYtOC4xMTc0eiIvPg0NCjxwYXRoIGQ9Ik0zMjcuNTgsMjQ3LjM4LDMyMC4yMDEsMjU4LjgyOSwyOTksMjQwLDI0NCwyMDMsMTgyLDE2OSwxNDkuODEsMTU3Ljk5LDE1Ni42NywxNDUuMjcsMTU5LDE0NGwyMCw1LDY2LDM0LDM4LDI0LDMyLDIzLDEzLDE1eiIvPg0NCjxwYXRoIGQ9Im0xNDguNjUsMTU4LjI5YzUuNjQ2LTMuODI5NCw0Ny4xMzksMTQuNjU1LDkwLjU1NSw0MC44MzQsNDMuMzAxLDI2LjI1NCw4NC42NzcsNTUuOTIxLDgwLjk0Miw2MS40NzNsLTEuMjI4NSwxLjkzMjMtMC41NjM1NCwwLjQ0NDVjMC4xMjA4My0wLjA4NjQsMC43NDM0NS0wLjg0NzU1LTAuMDYwOS0yLjkwNi0xLjg0NDktNi4wNzA0LTMxLjE5NS0yOS40OTEtNzkuODk0LTU4Ljg5NS00Ny40NzUtMjguMzA5LTg3LjA0MS00NS4zNzEtOTAuOTk3LTQwLjQ5NGwxLjI0Ny0yLjM4OTJoLTAuMDAwODl6bTE4MC40NCw4OC45MjdjMy41Ny03LjA1Mi0zNC45MTYtMzYuMDQ0LTgyLjYzMi02NC4yNzItNDguODEzLTI3LjY2Ni04My45OTQtNDMuOTUxLTkwLjQyLTM5LjA5NWwtMS40Mjc4LDIuNTk5MWMtMC4wMTI0LDAuMTQyODcsMC4wNTItMC4xNzcyNywwLjM1MzY0LTAuNDEwMSwxLjE2ODUtMS4wMTk1LDMuMTA1Mi0wLjk1MDc0LDMuOTc5Mi0wLjk2NjYyLDExLjA2NSwwLjE2NTgxLDQyLjY2NywxNC43MDksODcuMDA2LDQwLjEyOCwxOS40MjgsMTEuMzE1LDgyLjA3MSw1MS40OTEsODEuODMyLDYyLjc4OSwwLjAxNjgsMC45NzEwMiwwLjA4MDMsMS4xNzEyLTAuMjg0ODUsMS42NTE5bDEuNTkzNi0yLjQyMzZ2LTAuMDAyeiIvPg0NCjwvZz4NCjxnPg0KPHBhdGggZmlsbD0iI2ZmZiIgc3Ryb2tlPSIjMDAwIiBzdHJva2Utd2lkdGg9IjAuNjcwMzciIGQ9Im0xODAuNiwyMTEuMDFjMCwxNi4yNzEsNi42NjI4LDMwLjk4NywxNy40NTcsNDEuNzQyLDEwLjgxNSwxMC43NzgsMjUuNTEyLDE3LjU3OSw0MS44MDksMTcuNTc5LDE2LjM4MSwwLDMxLjI0Ny02LjY1MjUsNDIuMDE2LTE3LjM4OSwxMC43NjktMTAuNzM1LDE3LjQ0My0yNS41NTIsMTcuNDQ2LTQxLjg4aC0wLjAwMnYtNzkuMTg5bC0xMTguNzQtMC4xNDExMSwwLjAxMjMsNzkuMjc4aDAuMDAyeiIvPg0NCjxwYXRoIGZpbGw9IiNmMDAiIHN0cm9rZT0iIzAwMCIgc3Ryb2tlLXdpZHRoPSIwLjUwNzM0IiBkPSJtMTgyLjgyLDIxMS4xMnYwLjA0NWMwLDE1LjU1Nyw2LjQ0MTQsMjkuNzI0LDE2Ljc3NSw0MC4wMDksMTAuMzU0LDEwLjMwNSwyNC42MTQsMTYuNzEyLDQwLjIxNCwxNi43MTIsMTUuNjgxLDAsMjkuOTEyLTYuMzYwNiw0MC4yMjItMTYuNjI2LDEwLjMwOC0xMC4yNjUsMTYuNjk3LTI0LjQzMywxNi42OTktNDAuMDQ0aC0wLjAwMnYtNzYuODI2bC0xMTMuODQtMC4wMTg1LTAuMDY5Nyw3Ni43NDhtOTEuMDIyLTUzLjc0NywwLjAwNCw0OC44OTEtMC4wNDE0LDUuMTcxN2gwLjAwMDg4YzAsMS4zNjA4LTAuMDgyLDIuOTEyMi0wLjI0MDc2LDQuMjMzMy0wLjkyNTEyLDcuNzI5NC00LjQ4MDEsMTQuNDY3LTkuNzQ1MSwxOS43MDgtNi4xNjM2LDYuMTM1Ny0xNC42NzEsOS45NDEzLTI0LjA0Nyw5Ljk0MTMtOS4zMjcsMC0xNy42MzktMy45Mzc5LTIzLjgyOS0xMC4xLTYuMzQ5Ny02LjMyLTEwLjAzLTE0Ljk4Ni0xMC4wMy0yMy45NDdsLTAuMDEzMi01NC4wMjMsNjcuOTQsMC4xMjI1OSwwLjAwMiwwLjAwMnoiLz4NDQo8ZyBpZD0iY2FzdGxlMyI+DQ0KPGcgaWQ9ImNhc3RsZSIgZmlsbD0iI2ZmMCIgc3Ryb2tlPSIjMDAwIiBzdHJva2Utd2lkdGg9IjAuNSI+DQ0KPHBhdGggc3Ryb2tlPSJub25lIiBkPSJtMTkwLjE5LDE1NC40M2MwLjEzNDkzLTUuNTIxLDQuMDUyNC02LjgyOCw0LjA4MDYtNi44NDc0LDAuMDI4Mi0wLjAxODUsNC4yMzE0LDEuNDA3Niw0LjIxNzMsNi44OTg2bC04LjI5NzgtMC4wNTEyIi8+DQ0KPHBhdGggZD0ibTE4Ni44MSwxNDcuNjktMC42ODE3Miw2LjM0NDcsNC4xNDA2LDAuMDA5YzAuMDM5Ny01LjI0OTMsMy45NzM5LTYuMTIyNSw0LjA2OTEtNi4xMDMxLDAuMDg5MS0wLjAwNSwzLjk4ODksMS4xNjA2LDQuMDkyOSw2LjEwMzFoNC4xNTExbC0wLjc0OTYyLTYuMzkzMi0xNS4wMjIsMC4wMzc5djAuMDAyeiIvPg0NCjxwYXRoIGQ9Im0xODUuODUsMTU0LjA2aDE2Ljk0NmMwLjM1NzE3LDAsMC42NDkwOCwwLjM1Mjc3LDAuNjQ5MDgsMC43ODQwNCwwLDAuNDMwMzktMC4yOTE5MSwwLjc4MTQxLTAuNjQ5MDgsMC43ODE0MWgtMTYuOTQ2Yy0wLjM1NzE3LDAtMC42NDkwOC0wLjM1MTAyLTAuNjQ5MDgtMC43ODE0MSwwLTAuNDMxMjcsMC4yOTE5MS0wLjc4NDA0LDAuNjQ5MDgtMC43ODQwNHoiLz4NDQo8cGF0aCBkPSJtMTkyLjAxLDE1NC4wM2MwLjAxODUtMy4zMTI2LDIuMjYyMS00LjI1MDEsMi4yNzM2LTQuMjQ4MywwLjAwMDg4LDAsMi4zNDIzLDAuOTY2NjEsMi4zNjA5LDQuMjQ4M2gtNC42MzQ0Ii8+DQ0KPHBhdGggZD0ibTE4Ni4yMSwxNDUuMDVoMTYuMjQ1YzAuMzQyMTgsMCwwLjYyMjYzLDAuMzE4MzksMC42MjI2MywwLjcwNDY4LDAsMC4zODcxNy0wLjI4MDQ1LDAuNzA0NjctMC42MjI2MywwLjcwNDY3aC0xNi4yNDVjLTAuMzQyMTgsMC0wLjYyMjYzLTAuMzE1NzMtMC42MjI2My0wLjcwNDY3LDAtMC4zODYyOSwwLjI4MDQ1LTAuNzA0NjgsMC42MjI2My0wLjcwNDY4eiIvPg0NCjxwYXRoIGQ9Im0xODYuNTUsMTQ2LjQ3aDE1LjUzOGMwLjMyNzE5LDAsMC41OTUyOSwwLjMxNjYyLDAuNTk1MjksMC43MDM3OSwwLDAuMzg4MDUtMC4yNjgxLDAuNzA0NjctMC41OTUyOSwwLjcwNDY3aC0xNS41MzhjLTAuMzI3MTksMC0wLjU5NTI5LTAuMzE2NjItMC41OTUyOS0wLjcwNDY3LDAtMC4zODcxNywwLjI2ODEtMC43MDM3OSwwLjU5NTI5LTAuNzAzNzl6Ii8+DQ0KPHBhdGggZD0ibTE5MS41NywxMzUuODgsMS4yMjY3LDAuMDAydjAuODcxMzZoMC44OTUxM3YtMC44OTA3NmwxLjI1NjcsMC4wMDR2MC44ODcyM2gwLjg5Nzc4di0wLjg5MDc2aDEuMjU3NmwtMC4wMDIsMi4wMTE3YzAsMC4zMTU3NC0wLjI1Mzk4LDAuNTIwMzUtMC41NDg1NCwwLjUyMDM1aC00LjQxMTNjLTAuMjk2MzMsMC0wLjU2OTcyLTAuMjM3MjQtMC41NzA2LTAuNTI2NTJsLTAuMDAzLTEuOTg3OWgwLjAwMDg4eiIvPg0NCjxwYXRoIGQ9Im0xOTYuMTksMTM4LjU3LDAuMjc2OTEsNi40NTE0LTQuMzAyOC0wLjAxNTksMC4yODQ4Ni02LjQ1MjMsMy43NDEsMC4wMTY4Ii8+DQ0KPHBhdGggaWQ9ImNwMSIgZD0ibTE5MC45NCwxNDEuNTYsMC4xMzE0MSwzLjQ3NzUtNC4xMjU2LDAuMDAyLDAuMTE2NDEtMy40NzkzaDMuODc4Ni0wLjAwMDg5eiIvPg0NCjx1c2UgeGxpbms6aHJlZj0iI2NwMSIgeD0iMTAuNjA5Ii8+DQ0KPHBhdGggaWQ9ImNwMiIgZD0ibTE4Ni4zLDEzOS4wNCwxLjE5OTQsMC4wMDN2MC44NzIyNGgwLjg3NzV2LTAuODkyNTNsMS4yMjk0LDAuMDA0djAuODg5aDAuODc5MjZ2LTAuODkyNTNsMS4yMzAyLDAuMDAyLTAuMDAyLDIuMDExN2MwLDAuMzEzOTgtMC4yNDg3LDAuNTE4NTktMC41MzYyLDAuNTE4NTloLTQuMzE2OWMtMC4yODkyNiwwLTAuNTU4MjQtMC4yMzU0OC0wLjU1OTEzLTAuNTI1NjRsLTAuMDAzLTEuOTg4OGgwLjAwMDg4eiIvPg0NCjx1c2UgeGxpbms6aHJlZj0iI2NwMiIgeD0iMTAuNjA5Ii8+DQ0KPHBhdGggZmlsbD0iIzAwMCIgc3Ryb2tlPSJub25lIiBkPSJtMTkzLjksMTQwLjYxYy0wLjAyNjUtMC42MjcwNiwwLjg3NjYxLTAuNjM0MTEsMC44NjYwMywwdjEuNTM2NGgtMC44NjZ2LTEuNTM2Ii8+DQ0KPHBhdGggaWQ9ImNwMyIgZmlsbD0iIzAwMCIgc3Ryb2tlPSJub25lIiBkPSJtMTg4LjU3LDE0Mi44NGMtMC4wMDMtMC42MDU5LDAuODM2OTMtMC42MTgyNCwwLjgyNjM1LDB2MS4xODcxaC0wLjgyNnYtMS4xODciLz4NDQo8dXNlIHhsaW5rOmhyZWY9IiNjcDMiIHg9IjEwLjY0MSIvPg0NCjwvZz4NDQo8dXNlIHhsaW5rOmhyZWY9IiNjYXN0bGUiIHk9IjQ2LjMxOTgiLz4NDQo8dXNlIHhsaW5rOmhyZWY9IiNjYXN0bGUiIHRyYW5zZm9ybT0ibWF0cml4KDAuNzA0NjA4OTIsLTAuNzA5NTk1ODUsMC43MDk1OTU4NSwwLjcwNDYwODkyLC0zNS4zNDE0NTksMjc1LjEwODk4KSIvPg0NCjwvZz4NDQo8dXNlIHhsaW5rOmhyZWY9IiNjYXN0bGUiIHg9IjQ1LjcxMzgiLz4NDQo8dXNlIHhsaW5rOmhyZWY9IiNjYXN0bGUzIiB0cmFuc2Zvcm09Im1hdHJpeCgtMSwwLDAsMSw0NzkuNzkxOTUsMCkiLz4NDQo8ZyBpZD0icXVpbmEiIGZpbGw9IiNmZmYiPg0NCjxwYXRoIGZpbGw9IiMwMzkiIGQ9Im0yMzIuNjM2LDIwMi40MDZ2MC4wMDVjMCwyLjIxMTksMC44NDkyNyw0LjIyNzIsMi4yMTE4LDUuNjg5NCwxLjM2NTIsMS40NjY3LDMuMjQ1NCwyLjM3NzcsNS4zMDIsMi4zNzc3LDIuMDY3MiwwLDMuOTQzOS0wLjkwNDg3LDUuMzAyOS0yLjM2NTQsMS4zNTgxLTEuNDU4NywyLjIwMjEtMy40NzIxOSwyLjIwMjEtNS42OTN2LTEwLjc2OGwtMTQuOTkyLTAuMDEyMy0wLjAyNzMsMTAuNzY2Ii8+DQ0KPGNpcmNsZSBjeD0iMjM2LjA3NCIgY3k9IjE5NS43MzUiIHI9IjEuNDg2Ii8+DQo8Y2lyY2xlIGN4PSIyNDQuMzkyIiBjeT0iMTk1Ljc0MiIgcj0iMS40ODYiLz4NCjxjaXJjbGUgY3g9IjI0MC4yMjUiIGN5PSIxOTkuNzM1IiByPSIxLjQ4NiIvPg0KPGNpcmNsZSBjeD0iMjM2LjA3NCIgY3k9IjIwMy45MTYiIHI9IjEuNDg2Ii8+DQo8Y2lyY2xlIGN4PSIyNDQuMzgzIiBjeT0iMjAzLjkwNSIgcj0iMS40ODYiLz4NCjwvZz4NDQo8dXNlIHhsaW5rOmhyZWY9IiNxdWluYSIgeT0iLTI2LjAxNiIvPg0NCjx1c2UgeGxpbms6aHJlZj0iI3F1aW5hIiB4PSItMjAuNzk5Ii8+DQ0KPHVzZSB4bGluazpocmVmPSIjcXVpbmEiIHg9IjIwLjc0NSIvPg0NCjx1c2UgeGxpbms6aHJlZj0iI3F1aW5hIiB5PSIyNS43ODQiLz4NDQo8L2c+DQo8L3N2Zz4=");
}

.language-flag.country-ru {
  background: linear-gradient(to bottom, #fff 33.3%, #21468b 33.3%, #21468b 66.6%, #d00 66.6%);
}

.language-flag.country-es {
  background-size: 100% 100%;
  background-image: linear-gradient(to bottom, #d00 25%, #ffce00 25%, #ffce00 75%, #d00 75%);
}

.language-flag.country-sv {
  background-size: 115%;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDE2IDEwIj48cGF0aCBmaWxsPSIjMDA2YWE3IiBkPSJNMCwwSDE2VjEwSDBaIi8+PHBhdGggZmlsbD0iI2ZlY2MwMCIgZD0iTTAsNEg1VjBIN1Y0SDE2VjZIN1YxMEg1VjZIMFoiLz48L3N2Zz4=");
}

.icon {
  width: 22px;
  height: 22px;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flex;
  -ms-flex-item-align: center;
  align-self: center;
  font-size: inherit;
  overflow: visible;
  color: #878787;
}

.icon > svg {
  width: 100%;
  height: 100%;
  top: .25em;
  position: relative;
  fill: currentColor;
}

.icon > svg path,
.icon > svg use {
  fill: currentColor;
}

.icon-primary {
  color: var(--text-color-brand-primary);
}

.icon-secondary {
  color: #f6f6f6;
}

.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 {
  -webkit-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.icon-rotate-180 svg {
  -webkit-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.icon-rotate-270 svg {
  -webkit-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -ms-transform: rotate(270deg);
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}

.icon-flip-horizontal svg {
  -webkit-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -ms-transform: scale(-1, 1);
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.icon-flip-vertical svg {
  -webkit-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -ms-transform: scale(1, -1);
  -webkit-transform: scale(1, -1);
  transform: scale(1, -1);
}

.icon-flip-both svg,
.icon-flip-horizontal.icon-flip-vertical svg {
  -webkit-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -ms-transform: scale(-1, -1);
  -webkit-transform: scale(-1, -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 {
  -webkit-filter: none;
  filter: none;
}

.alert-primary .icon {
  color: #e30613;
}

.alert-secondary .icon {
  color: #f6f6f6;
}

.alert-success .icon,
.hbspt-form div.submitted-message .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,
.is-act-search .card-tabs .btn-success .icon,
.hbspt-form input.hs-button .icon {
  color: #fff;
}

.btn-secondary .icon {
  color: #212529;
}

.btn-success .icon {
  color: #fff;
}

.btn-info .icon {
  color: #fff;
}

.btn-warning .icon {
  color: #212529;
}

.btn-danger .icon {
  color: #fff;
}

.btn-light .icon {
  color: #212529;
}

.btn-dark .icon {
  color: #fff;
}

.btn .icon > svg,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .watchlist-listing-link .icon > svg,
.hbspt-form input.hs-button .icon > svg {
  top: 6px;
}

.pagination .icon {
  width: 13px;
  height: 13px;
}

.pagination .icon > svg {
  top: 2px;
}

.is-left .offcanvas-close svg {
  top: 0;
}

.is-right .offcanvas-close svg {
  top: .3rem;
}

.navigation-offcanvas-link-icon .icon > svg {
  top: 0;
}

.pagination {
  margin-bottom: 0;
}

.pagination .page-item.disabled .page-link {
  cursor: default;
  opacity: 1;
  background: #eee;
  color: #bcc1c7;
}

.pagination .page-item.disabled a {
  color: #bcc1c7;
}

.pagination .page-item.active a {
  color: #fff;
}

.pagination .page-link {
  cursor: pointer;
  margin-bottom: 0;
}

.cms-section {
  overflow: hidden;
}

.cms-section.bg-image {
  background-repeat: no-repeat;
  background-position: 50%;
}

.cms-section .cms-section-sidebar {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

@media (max-width:767.98px) {
  .cms-section-sidebar-mobile-wrap {
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .cms-section-sidebar-mobile-hidden .cms-section-sidebar-sidebar-content {
    display: none;
  }
}

.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;
  font-family: "object-fit: none;";
}

.cms-block .cms-block-background.media-mode--contain {
  object-fit: contain;
  font-family: "object-fit: contain;";
}

.cms-block .cms-block-background.media-mode--cover {
  object-fit: cover;
  font-family: "object-fit: cover;";
}

.cms-block .cms-block-container .cms-block-container-row {
  -ms-flex-direction: 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%;
  -webkit-background-clip: padding-box;
  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, .2);
}

.cms-block-image-text-gallery .cms-element-text {
  padding: 20px;
}

.cms-block-text-on-image .cms-element-text {
  padding: 30px;
  -ms-flex-align: center;
  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:1025px) {
  .cms-block-container .cms-block-container-row.has--sidebar {
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .cms-block-container .cms-block-container-row.has--sidebar > div {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    -ms-flex-positive: 1;
    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;
}

.cms-block-sidebar-filter .col-12,
.cms-block-sidebar-filter .cms-block-elio-slider-element .elio-slider-element .singleElement .card .image-wrapper,
.cms-block-elio-slider-element .elio-slider-element .singleElement .card .cms-block-sidebar-filter .image-wrapper,
.cms-block-sidebar-filter .cms-block-elio-slider-element .elio-slider-element .singleElement .card .card-body,
.cms-block-elio-slider-element .elio-slider-element .singleElement .card .cms-block-sidebar-filter .card-body,
.cms-block-sidebar-filter .checkout-additional .form-group.col-lg-4,
.cms-block-sidebar-filter .checkout-additional .hbspt-form .col-lg-4.hs-form-booleancheckbox,
.cms-block-sidebar-filter .checkout-additional .hbspt-form .is-act-cartpage .checkout .hs-form-booleancheckbox.checkout-aside,
.is-act-cartpage .checkout .cms-block-sidebar-filter .checkout-additional .hbspt-form .hs-form-booleancheckbox.checkout-aside,
.cms-block-sidebar-filter .checkout-additional .hbspt-form .is-act-checkoutregisterpage .checkout .hs-form-booleancheckbox.checkout-aside,
.is-act-checkoutregisterpage .checkout .cms-block-sidebar-filter .checkout-additional .hbspt-form .hs-form-booleancheckbox.checkout-aside,
.cms-block-sidebar-filter .checkout-additional .hbspt-form .is-act-confirmpage .checkout .hs-form-booleancheckbox.checkout-additional,
.is-act-confirmpage .checkout .cms-block-sidebar-filter .checkout-additional .hbspt-form .hs-form-booleancheckbox.checkout-additional,
.cms-block-sidebar-filter .checkout-additional .hbspt-form .is-ctl-accountorder .checkout .hs-form-booleancheckbox.checkout-additional,
.is-ctl-accountorder .checkout .cms-block-sidebar-filter .checkout-additional .hbspt-form .hs-form-booleancheckbox.checkout-additional,
.cms-block-sidebar-filter .checkout-additional .hbspt-form .is-act-confirmpage .checkout .hs-form-booleancheckbox.checkout-aside,
.is-act-confirmpage .checkout .cms-block-sidebar-filter .checkout-additional .hbspt-form .hs-form-booleancheckbox.checkout-aside,
.cms-block-sidebar-filter .checkout-additional .hbspt-form .is-ctl-accountorder .checkout .hs-form-booleancheckbox.checkout-aside,
.is-ctl-accountorder .checkout .cms-block-sidebar-filter .checkout-additional .hbspt-form .hs-form-booleancheckbox.checkout-aside,
.cms-block-sidebar-filter .checkout-additional .hbspt-form .is-act-finishpage .checkout .hs-form-booleancheckbox.checkout-additional,
.is-act-finishpage .checkout .cms-block-sidebar-filter .checkout-additional .hbspt-form .hs-form-booleancheckbox.checkout-additional,
.cms-block-sidebar-filter .checkout-additional .hbspt-form .is-act-finishpage .checkout .hs-form-booleancheckbox.checkout-aside,
.is-act-finishpage .checkout .cms-block-sidebar-filter .checkout-additional .hbspt-form .hs-form-booleancheckbox.checkout-aside,
.hbspt-form .cms-block-sidebar-filter .checkout-additional .col-lg-4.hs-form-booleancheckbox,
.cms-block-sidebar-filter .checkout-additional .hbspt-form .col-lg-4.hs-form-field,
.cms-block-sidebar-filter .checkout-additional .hbspt-form .is-act-cartpage .checkout .hs-form-field.checkout-aside,
.is-act-cartpage .checkout .cms-block-sidebar-filter .checkout-additional .hbspt-form .hs-form-field.checkout-aside,
.cms-block-sidebar-filter .checkout-additional .hbspt-form .is-act-checkoutregisterpage .checkout .hs-form-field.checkout-aside,
.is-act-checkoutregisterpage .checkout .cms-block-sidebar-filter .checkout-additional .hbspt-form .hs-form-field.checkout-aside,
.cms-block-sidebar-filter .checkout-additional .hbspt-form .is-act-confirmpage .checkout .hs-form-field.checkout-additional,
.is-act-confirmpage .checkout .cms-block-sidebar-filter .checkout-additional .hbspt-form .hs-form-field.checkout-additional,
.cms-block-sidebar-filter .checkout-additional .hbspt-form .is-ctl-accountorder .checkout .hs-form-field.checkout-additional,
.is-ctl-accountorder .checkout .cms-block-sidebar-filter .checkout-additional .hbspt-form .hs-form-field.checkout-additional,
.cms-block-sidebar-filter .checkout-additional .hbspt-form .is-act-confirmpage .checkout .hs-form-field.checkout-aside,
.is-act-confirmpage .checkout .cms-block-sidebar-filter .checkout-additional .hbspt-form .hs-form-field.checkout-aside,
.cms-block-sidebar-filter .checkout-additional .hbspt-form .is-ctl-accountorder .checkout .hs-form-field.checkout-aside,
.is-ctl-accountorder .checkout .cms-block-sidebar-filter .checkout-additional .hbspt-form .hs-form-field.checkout-aside,
.cms-block-sidebar-filter .checkout-additional .hbspt-form .is-act-finishpage .checkout .hs-form-field.checkout-additional,
.is-act-finishpage .checkout .cms-block-sidebar-filter .checkout-additional .hbspt-form .hs-form-field.checkout-additional,
.cms-block-sidebar-filter .checkout-additional .hbspt-form .is-act-finishpage .checkout .hs-form-field.checkout-aside,
.is-act-finishpage .checkout .cms-block-sidebar-filter .checkout-additional .hbspt-form .hs-form-field.checkout-aside,
.hbspt-form .cms-block-sidebar-filter .checkout-additional .col-lg-4.hs-form-field,
.cms-block-sidebar-filter .checkout-additional .is-act-cartpage .checkout .form-group.checkout-aside,
.cms-block-sidebar-filter .checkout-additional .is-act-cartpage .checkout .hbspt-form .checkout-aside.hs-form-booleancheckbox,
.hbspt-form .cms-block-sidebar-filter .checkout-additional .is-act-cartpage .checkout .checkout-aside.hs-form-booleancheckbox,
.cms-block-sidebar-filter .checkout-additional .is-act-cartpage .checkout .hbspt-form .checkout-aside.hs-form-field,
.hbspt-form .cms-block-sidebar-filter .checkout-additional .is-act-cartpage .checkout .checkout-aside.hs-form-field,
.is-act-cartpage .checkout .cms-block-sidebar-filter .checkout-additional .form-group.checkout-aside,
.cms-block-sidebar-filter .checkout-additional .is-act-checkoutregisterpage .checkout .form-group.checkout-aside,
.cms-block-sidebar-filter .checkout-additional .is-act-checkoutregisterpage .checkout .hbspt-form .checkout-aside.hs-form-booleancheckbox,
.hbspt-form .cms-block-sidebar-filter .checkout-additional .is-act-checkoutregisterpage .checkout .checkout-aside.hs-form-booleancheckbox,
.cms-block-sidebar-filter .checkout-additional .is-act-checkoutregisterpage .checkout .hbspt-form .checkout-aside.hs-form-field,
.hbspt-form .cms-block-sidebar-filter .checkout-additional .is-act-checkoutregisterpage .checkout .checkout-aside.hs-form-field,
.is-act-checkoutregisterpage .checkout .cms-block-sidebar-filter .checkout-additional .form-group.checkout-aside,
.cms-block-sidebar-filter .checkout-additional .is-act-confirmpage .checkout .form-group.checkout-additional,
.cms-block-sidebar-filter .checkout-additional .is-act-confirmpage .checkout .hbspt-form .checkout-additional.hs-form-booleancheckbox,
.hbspt-form .cms-block-sidebar-filter .checkout-additional .is-act-confirmpage .checkout .checkout-additional.hs-form-booleancheckbox,
.cms-block-sidebar-filter .checkout-additional .is-act-confirmpage .checkout .hbspt-form .checkout-additional.hs-form-field,
.hbspt-form .cms-block-sidebar-filter .checkout-additional .is-act-confirmpage .checkout .checkout-additional.hs-form-field,
.is-act-confirmpage .checkout .cms-block-sidebar-filter .checkout-additional .form-group.checkout-additional,
.cms-block-sidebar-filter .checkout-additional .is-ctl-accountorder .checkout .form-group.checkout-additional,
.cms-block-sidebar-filter .checkout-additional .is-ctl-accountorder .checkout .hbspt-form .checkout-additional.hs-form-booleancheckbox,
.hbspt-form .cms-block-sidebar-filter .checkout-additional .is-ctl-accountorder .checkout .checkout-additional.hs-form-booleancheckbox,
.cms-block-sidebar-filter .checkout-additional .is-ctl-accountorder .checkout .hbspt-form .checkout-additional.hs-form-field,
.hbspt-form .cms-block-sidebar-filter .checkout-additional .is-ctl-accountorder .checkout .checkout-additional.hs-form-field,
.is-ctl-accountorder .checkout .cms-block-sidebar-filter .checkout-additional .form-group.checkout-additional,
.cms-block-sidebar-filter .checkout-additional .is-act-confirmpage .checkout .form-group.checkout-aside,
.cms-block-sidebar-filter .checkout-additional .is-act-confirmpage .checkout .hbspt-form .checkout-aside.hs-form-booleancheckbox,
.hbspt-form .cms-block-sidebar-filter .checkout-additional .is-act-confirmpage .checkout .checkout-aside.hs-form-booleancheckbox,
.cms-block-sidebar-filter .checkout-additional .is-act-confirmpage .checkout .hbspt-form .checkout-aside.hs-form-field,
.hbspt-form .cms-block-sidebar-filter .checkout-additional .is-act-confirmpage .checkout .checkout-aside.hs-form-field,
.is-act-confirmpage .checkout .cms-block-sidebar-filter .checkout-additional .form-group.checkout-aside,
.cms-block-sidebar-filter .checkout-additional .is-ctl-accountorder .checkout .form-group.checkout-aside,
.cms-block-sidebar-filter .checkout-additional .is-ctl-accountorder .checkout .hbspt-form .checkout-aside.hs-form-booleancheckbox,
.hbspt-form .cms-block-sidebar-filter .checkout-additional .is-ctl-accountorder .checkout .checkout-aside.hs-form-booleancheckbox,
.cms-block-sidebar-filter .checkout-additional .is-ctl-accountorder .checkout .hbspt-form .checkout-aside.hs-form-field,
.hbspt-form .cms-block-sidebar-filter .checkout-additional .is-ctl-accountorder .checkout .checkout-aside.hs-form-field,
.is-ctl-accountorder .checkout .cms-block-sidebar-filter .checkout-additional .form-group.checkout-aside,
.cms-block-sidebar-filter .checkout-additional .is-act-finishpage .checkout .form-group.checkout-additional,
.cms-block-sidebar-filter .checkout-additional .is-act-finishpage .checkout .hbspt-form .checkout-additional.hs-form-booleancheckbox,
.hbspt-form .cms-block-sidebar-filter .checkout-additional .is-act-finishpage .checkout .checkout-additional.hs-form-booleancheckbox,
.cms-block-sidebar-filter .checkout-additional .is-act-finishpage .checkout .hbspt-form .checkout-additional.hs-form-field,
.hbspt-form .cms-block-sidebar-filter .checkout-additional .is-act-finishpage .checkout .checkout-additional.hs-form-field,
.is-act-finishpage .checkout .cms-block-sidebar-filter .checkout-additional .form-group.checkout-additional,
.cms-block-sidebar-filter .checkout-additional .is-act-finishpage .checkout .form-group.checkout-aside,
.cms-block-sidebar-filter .checkout-additional .is-act-finishpage .checkout .hbspt-form .checkout-aside.hs-form-booleancheckbox,
.hbspt-form .cms-block-sidebar-filter .checkout-additional .is-act-finishpage .checkout .checkout-aside.hs-form-booleancheckbox,
.cms-block-sidebar-filter .checkout-additional .is-act-finishpage .checkout .hbspt-form .checkout-aside.hs-form-field,
.hbspt-form .cms-block-sidebar-filter .checkout-additional .is-act-finishpage .checkout .checkout-aside.hs-form-field,
.is-act-finishpage .checkout .cms-block-sidebar-filter .checkout-additional .form-group.checkout-aside,
.checkout-additional .cms-block-sidebar-filter .form-group.col-lg-4,
.cms-block-sidebar-filter .product-detail-tabs-content .tab-pane#accessories-tab-pane,
.product-detail-tabs-content .cms-block-sidebar-filter .tab-pane#accessories-tab-pane {
  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-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;
  font-family: "object-fit: contain;";
  height: 100%;
}

.cms-element-image .cms-image-container.is-cover .cms-image {
  object-fit: cover;
  font-family: "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: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: 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;
  font-family: "object-fit: cover;";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.cms-element-youtube-video__backdrop {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.cms-element-youtube-video__backdrop > div {
  background: rgba(255, 255, 255, .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;
  font-family: "object-fit: cover;";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.cms-element-vimeo-video__backdrop {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.cms-element-vimeo-video__backdrop > div {
  background: rgba(255, 255, 255, .5);
  padding: 1rem;
}

.cms-element-product-listing .cms-listing-col {
  margin-bottom: 1.5rem;
}

.cms-element-product-listing-actions {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  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: #3f4c58;
}

.cms-element-product-slider.has-border .cms-element-title {
  margin-top: .5rem;
}

.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: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  height: 100%;
}

.cms-element-image-gallery .magnifier-overlay {
  display: none;
}

@media (max-width:1024.98px) {
  .cms-element-product-listing-actions {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: center;
    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;
}

.confirm-message {
  padding: 10% 20%;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
}

.confirm-message div.alert,
.confirm-message .hbspt-form div.submitted-message,
.hbspt-form .confirm-message div.submitted-message {
  margin-top: 1em;
}

.confirm-alert {
  padding: 1em 1em 3em;
}

@media (max-width:767.98px) {
  .confirm-message {
    padding: 10% 0;
  }
}

.was-validated .custom-control-input:valid ~ .custom-control-label.no-validation,
.was-validated .hbspt-form .hs-form-radio-display .custom-control-input:valid ~ label.no-validation,
.hbspt-form .hs-form-radio-display .was-validated .custom-control-input:valid ~ label.no-validation {
  color: inherit;
}

.was-validated .custom-control-input:valid ~ .custom-control-label.no-validation::before,
.was-validated .hbspt-form .hs-form-radio-display .custom-control-input:valid ~ label.no-validation::before,
.hbspt-form .hs-form-radio-display .was-validated .custom-control-input:valid ~ 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: #e30613;
}

.forms-boolean:hover {
  border-color: #e30613;
  color: #e30613;
}

.forms-boolean-label {
  cursor: pointer;
  height: 38px;
  line-height: 38px;
  width: 100%;
}

.forms-boolean-label::before,
.forms-boolean-label::after {
  top: 11px;
}

.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-indicator {
  border-radius: 100%;
  -webkit-background-clip: padding-box;
  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-description > p {
  color: #bcc1c7;
}

.payment-method-image {
  max-height: 24px;
  max-width: 100%;
  margin-right: .25rem;
  margin-left: .25rem;
  float: right;
}

.shipping-method-description > p {
  color: #bcc1c7;
}

.shipping-method-image {
  max-height: 24px;
  max-width: 100%;
  margin-right: .25rem;
  margin-left: .25rem;
  float: right;
}

.filter-panel {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-line-pack: start;
  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: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-line-pack: start;
  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.show .filter-panel-item-toggle {
  color: #e30613;
  border-color: #e30613;
}

.filter-panel-item.show .icon-filter-panel-item-toggle svg {
  color: #e30613;
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  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 #e30613;
  background-color: #fff;
  color: #4a545b;
}

.filter-active {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
  -ms-flex-align: center;
  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;
  -moz-appearance: none;
  -webkit-appearance: none;
  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: #e30613;
}

.btn.filter-reset-all,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .filter-reset-all.watchlist-listing-link,
.hbspt-form input.filter-reset-all.hs-button {
  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 #e30613;
  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: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.is--sidebar .filter-panel-item-toggle[aria-expanded="true"] {
  /*color: #e30613;*/
  border-color: #e30613;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: 0 none;
}
.filter-multi-select-list a{ color: #000;}
.is--sidebar .filter-panel-item-toggle[aria-expanded="true"] svg {
  color: #e30613;
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  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: .6;
}

.btn.filter-panel-wrapper-toggle,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .filter-panel-wrapper-toggle.watchlist-listing-link,
.hbspt-form input.filter-panel-wrapper-toggle.hs-button {
  display: none;
  width: 100%;
  border: 1px solid #e30613;
  padding: 6px;
}

.btn.filter-panel-wrapper-toggle:hover,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .filter-panel-wrapper-toggle.watchlist-listing-link:hover,
.hbspt-form input.filter-panel-wrapper-toggle.hs-button:hover {
  background-color: #eee;
}

.filter-panel-offcanvas-only {
  display: none;
}

.filter-panel-offcanvas-header {
  height: 80px;
  -ms-flex-align: center;
  align-items: center;
  padding: 25px;
  display: none;
}

.filter-panel-offcanvas-title {
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 700;
  color: #3f4c58;
}

.filter-panel-offcanvas-close {
  cursor: pointer;
  margin-left: auto;
}

@media (max-width:1024.98px) {

  .btn.filter-panel-wrapper-toggle,
  .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .filter-panel-wrapper-toggle.watchlist-listing-link,
  .hbspt-form input.filter-panel-wrapper-toggle.hs-button {
    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: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.offcanvas-filter .filter-panel-offcanvas-only {
  display: inherit;
}

.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: .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-list-item {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  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;
  -ms-flex-negative: 0;
  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: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
  opacity: 0;
  -ms-transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  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%;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  opacity: 0;
}

.filter-property-select-checkbox:checked ~ .filter-property-select-preview-checkmark {
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

.filter-boolean {
  display: inline-block;
  border: 1px solid #bcc1c7;
  padding-left: 12px;
  padding-right: 12px;
  height: 40px;
  border-radius: 3px;
  cursor: pointer;
}

.filter-boolean.is-active {
  border-color: #e30613;
}

.filter-boolean:hover {
  border-color: #e30613;
  color: #e30613;
}

.filter-boolean.disabled {
  cursor: default;
  background: #eee;
  border-color: #eee;
}

.filter-boolean.disabled .filter-boolean-label {
  color: #bcc1c7;
  cursor: default;
}

.filter-boolean-label {
  cursor: pointer;
  height: 38px;
  line-height: 38px;
  width: 100%;
}

.filter-boolean-label::before,
.filter-boolean-label::after {
  top: 11px;
}

.filter-range-dropdown {
  padding: 0;
  overflow: hidden;
}

.filter-range-container {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: end;
  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;
  -moz-appearance: none;
  -webkit-appearance: none;
  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 {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

.filter-range-currency-symbol {
  position: absolute;
  bottom: 1px;
  right: 1px;
  height: 26px;
  line-height: 26px;
  font-size: 14px;
  padding: 0 10px;
  background-color: #fff;
  border-radius: 3px;
}

.filter-range-divider {
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  font-weight: 700;
}

.filter-rating-select-radio {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  opacity: 0;
}

.filter-rating-select-radio:checked ~ .filter-rating-select-item-checkmark {
  -ms-transform: translateY(2px);
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
  opacity: 1;
}

.filter-rating-select-item-label {
  cursor: pointer;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  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: #e30613;
  font-weight: 700;
}

.filter-rating-select-list-item {
  display: -ms-flexbox;
  display: -webkit-flex;
  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: .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: #111;
  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: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
  opacity: 0;
  -ms-transform: translateY(-7px);
  -webkit-transform: translateY(-7px);
  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;
}

.swag-ellipsis-total-span,
.swag-ellipsis-span {
  -ms-word-break: break-word;
  word-break: break-word;
}

.product-feature-list-list {
  list-style: none;
  padding-left: unset;
}

.product-feature-feature {
  font-size: .75rem;
}

.product-feature-value {
  font-weight: 700;
}

.notification-dot {
  background-color: #bcc1c7;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.notification-dot.notification-dot-primary {
  background-color: #e30613;
}

.notification-dot.notification-dot-secondary {
  background-color: #f6f6f6;
}

.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-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: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flex;
}

.product-wishlist-not-added .icon-wishlist-not-added {
  -webkit-animation: pulse .5s alternate;
  animation: pulse .5s alternate;
}

.product-wishlist-added .icon-wishlist-added,
.product-wishlist-added .text-wishlist-remove {
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flex;
}

.product-wishlist-added .icon-wishlist-added {
  -webkit-animation: pulse .5s alternate;
  animation: pulse .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: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  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: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flex;
}

.product-wishlist-info {}

.product-wishlist-info-item {
  min-height: 2em;
  font-size: .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;
}

@-webkit-keyframes pulse {
  0% {
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  50% {
    -ms-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 1;
  }

  100% {
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  50% {
    -ms-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 1;
  }

  100% {
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

.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: #e30613;
  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: 3px;
  width: 100%;
}

.basic-captcha-content-code {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 1.25em;
  max-width: 440px;
}

.basic-captcha-content-refresh-icon {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  height: 42px;
  -ms-flex-item-align: end;
  align-self: flex-end;
  border-color: #bcc1c7;
}

.basic-captcha-content-refresh-icon.btn .icon > svg,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .basic-captcha-content-refresh-icon.watchlist-listing-link .icon > svg,
.hbspt-form input.basic-captcha-content-refresh-icon.hs-button .icon > svg {
  top: 0;
}

.basic-captcha-content-refresh-icon:hover {
  cursor: pointer;
  border-color: #e30613;
  background-color: #fff;
}

.basic-captcha-content-refresh-icon:hover .icon.icon-arrow-switch {
  color: #e30613;
}

.container,
.cms-section .boxed {
  max-width: 1400px;
}

.container-main {
  padding: 20px 0;
  min-height: 200px;
}

@media (min-width:1200px) {
  .container-main {
    min-height: 700px;
  }
}

.top-bar-nav {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: end;
  justify-content: flex-end;
  min-height: 10px;
}

.top-bar-nav-item {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  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: .5rem;
}

@media (min-width:768px) {
  .top-bar-nav-text {
    display: inline;
  }
}

.header-row {
  padding: .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;
  margin: auto;
}

.header-search {
  margin: .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: -.25rem;
}

@media (min-width:576px) {
  .header-row {
    padding-bottom: 1rem;
  }

  .header-logo-col {
    padding-bottom: .5rem;
  }

  .header-search-col .collapse:not(.show) {
    display: block;
  }

  .header-search {
    max-width: 400px;
    margin: auto;
  }

  .header-cart-total {
    display: inline-block;
    margin-left: .5rem;
  }
}

@media (min-width:1025px) {
  .header-logo-col {
    margin: 0;
  }
}

.header-minimal {
  background: #fff;
  border-bottom: 1px solid var(--text-color-brand-primary);
}

.header-minimal.fixed-top {
  position: static;
}

.header-minimal-row {
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
}

.header-minimal-contact {
  display: none;
}

.header-minimal-back-to-shop {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.header-minimal-back-to-shop-button {
  color: #111;
}

.header-minimal-logo {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: .25rem;
}

.header-minimal-home {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-align: center;
  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-column-content-inner {
  padding-bottom: 1rem;
}

.footer-column-headline {
  padding: .5rem 0;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: justify;
  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: .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;
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  height: 100%;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer-logo {
  margin-right: 1.5rem;
  margin-bottom: .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 .5rem 0;
  }

  .footer-column-toggle {
    display: none;
  }

  .footer-column-content.collapse {
    display: block;
  }
}

.main-navigation {
  display: none;
}

@media (min-width:1025px) {
  .main-navigation {
    display: inherit;
  }
}

.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, .2);
  background-color: #fff;
  pointer-events: none;
  position: absolute;
  opacity: 0;
  height: 0;
}

.navigation-flyout.is-open {
  pointer-events: all;
  opacity: 1;
  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;
  font-family: "object-fit: cover;";
  display: block;
  max-width: 100%;
  width: 100%;
  height: 100%;
}

.navigation-offcanvas {
  overflow-x: hidden;
}

.navigation-offcanvas .offcanvas-content-container {
  padding: 0;
}

.navigation-offcanvas-container {
  position: relative;
}

.navigation-offcanvas-overlay.has-transition {
  -webkit-transition: left .5s ease-in;
  transition: left .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: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flex;
}

.navigation-offcanvas-link {
  -webkit-transition: color .45s cubic-bezier(.3, 0, .15, 1);
  transition: color .45s cubic-bezier(.3, 0, .15, 1);
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 12px 1rem;
}

@media (prefers-reduced-motion:reduce) {
  .navigation-offcanvas-link {
    -webkit-transition: none;
    transition: none;
  }
}

.navigation-offcanvas-link.is-home-link,
.navigation-offcanvas-link.is-back-link {
  -ms-flex-pack: start;
  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: .5rem;
}

.offcanvas-cart .alert,
.offcanvas-cart .hbspt-form div.submitted-message,
.hbspt-form .offcanvas-cart div.submitted-message {
  margin-top: 1rem;
}

.offcanvas-cart .cart-item {
  padding: 1rem 0;
}

.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 {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  height: 100%;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

.offcanvas-cart .cart-item-img-link .cart-item-img-source {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%;
  max-height: 100%;
  object-fit: contain;
  font-family: "object-fit: contain;";
}

.offcanvas-cart .cart-item-details {
  margin-bottom: 1rem;
  -ms-word-break: break-word;
  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: 10px;
}

.offcanvas-cart .cart-quantity-price {
  -ms-flex-pack: justify;
  justify-content: space-between;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  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: #444;
  display: inline-block;
  line-height: .85rem;
}

.offcanvas-cart-items,
.offcanvas-summary {
  margin: 1rem 0;
}

.offcanvas-summary-list {
  margin-bottom: 0;
}

.offcanvas-cart-promotion-form {
  margin-bottom: 1rem;
}

.offcanvas-summary .js-toggle-shipping-selection {
  text-decoration: underline;
  font-size: 90%;
  cursor: pointer;
}

.offcanvas-summary .offcanvas-shipping-preference {
  -webkit-transition: max-height .3s ease, opacity .3s ease, margin .3s ease;
  transition: max-height .3s ease, opacity .3s ease, margin .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;
}

@media (max-width:575.98px) {
  .cart-offcanvas .cart-item-price {
    -ms-flex-order: 4;
    order: 4;
  }
}

.account-menu-header {
  border-bottom: 1px solid #bcc1c7;
  font-size: .9375rem;
  font-weight: 700;
  padding: .5rem 0;
  color: #3f4c58;
}

.account-menu-register {
  text-align: center;
}

.account-menu-login {
  padding: 1rem 0;
  border-bottom: 1px solid #bcc1c7;
  margin-bottom: .25rem;
}

.account-menu-login-button {
  width: 100%;
  margin-bottom: .5rem;
}

.account-menu-dropdown {
  padding: .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: .5rem 0;
}

.account-menu-offcanvas .account-aside-footer,
.account-menu-dropdown .account-aside-footer {
  background: none;
  padding: .25rem 0;
}

@media (min-width:576px) {
  .account-menu .offcanvas-close {
    display: none;
  }
}

.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 {
  -ms-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  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: #e30613;
}

.search-suggest-product-link:hover,
.search-suggest-total-link:hover {
  text-decoration: none;
}

.search-suggest-product-link {
  display: block;
  padding: .5rem 0;
}

.search-suggest-product-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-suggest-product-reference-price {
  color: #ced4da;
  display: block;
}

.search-suggest-product-image-container {
  width: 35px;
  height: 35px;
  margin: 0 .5rem;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.search-suggest-product-image {
  max-width: 35px;
  max-height: 35px;
  display: block;
}

.search-suggest-total {
  padding: .5rem;
}

.search-suggest-no-result {
  text-align: center;
}

@media (min-width:768px) {
  .search-suggest-container {
    width: 500px;
    left: 50%;
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.cookie-permission-container {
  display: none;
  border-top: 1px solid #bcc1c7;
  background: #fff;
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  text-align: center;
  padding: .5rem;
  font-size: .75rem;
  z-index: 1100;
}

.cookie-permission-content {
  margin-bottom: .5rem;
}

.cookie-permission-content a {
  display: inline-block;
}

@media (min-width:768px) {
  .cookie-permission-content {
    text-align: left;
    margin-bottom: 0;
  }
}

.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 {
  -ms-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

.offcanvas-cookie-group input:not([disabled]) ~ label {
  cursor: pointer;
}

.offcanvas-cookie-entries {
  position: relative;
}

.offcanvas-cookie-entries .icon {
  position: absolute;
  -ms-transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  top: -4px;
  right: 0;
  cursor: pointer;
  -ms-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

.offcanvas-cookie-entries svg {
  -ms-transform-origin: center center;
  -webkit-transform-origin: center center;
  transform-origin: center center;
  transition: -ms-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  -webkit-transition: -webkit-transform .3s ease;
}

.offcanvas-cookie-entries > p,
.offcanvas-cookie-entries .offcanvas-cookie-entry {
  padding: 0 8px 0 24px;
  height: 0;
  opacity: 0;
  -webkit-transition: opacity .3s ease, padding-top .3s ease;
  transition: opacity .3s ease, padding-top .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 {
  min-height: unset;
}

.offcanvas-cookie-entries--active svg {
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  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-button {
  bottom: 1.5rem;
  cursor: pointer;
  opacity: 0;
  position: fixed;
  right: 1.5rem;
  -ms-transform: scale(0);
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: .45s cubic-bezier(.3, 0, .15, 1);
  transition: .45s cubic-bezier(.3, 0, .15, 1);
  visibility: hidden;
  z-index: 700;
}

.scroll-up-button.is-visible {
  opacity: 1;
  -ms-transform: scale(1);
  -webkit-transform: scale(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;
}

.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: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.product-detail-name-container .product-detail-variant-characteristics {
  padding-left: .5rem;
  font-size: 1rem;
  font-weight: 700;
  color: #adb5bd;
}

.product-detail-buy {
  margin-bottom: 1rem;
}

.product-detail-price {
  font-size: 1.75rem;
}

@media (max-width:1200px) {
  .product-detail-price {
    font-size: calc(1.3rem + .6vw);
  }
}

.product-detail-price-unit {
  font-size: .75rem;
}

.product-detail-tax {
  font-size: .9375rem;
}

.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: .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: .5rem;
}

.product-detail-configurator-options {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-direction: row;
  flex-direction: row;
}

.product-detail-configurator-option {
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flex;
  margin-right: .5rem;
}

.product-detail-configurator-option-input {
  display: none;
}

.product-detail-configurator-option-input + .product-detail-configurator-option-label {
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  border: 1px dashed #4a545b;
  border-radius: 3px;
  box-shadow: inset 3px 3px 0 #fff, inset -3px -3px 0 #fff;
  background-color: #fff;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flex;
  -ms-flex-pack: center;
  justify-content: center;
  height: 60px;
  min-width: 60px;
  opacity: .35;
  padding: 3px;
  -webkit-transition: border-color .45s cubic-bezier(.3, 0, .15, 1), background-color .45s cubic-bezier(.3, 0, .15, 1);
  transition: border-color .45s cubic-bezier(.3, 0, .15, 1), background-color .45s cubic-bezier(.3, 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 #e30613;
}

.product-detail-configurator-option-input:checked + .product-detail-configurator-option-label.is-display-text {
  background-color: #e30613;
  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 #e30613;
}

.product-detail-configurator-option-image {
  height: 100%;
}

.product-detail-tabs-content {
  display: none;
}

.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 {
    -ms-flex-preferred-size: 100%;
    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: .5rem;
}

.product-detail-review-item-content {
  -ms-word-break: break-word;
  word-break: break-word;
}

.product-detail-review-form-radio {
  display: none;
}

.product-detail-review-form-rating-input {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  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: .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: .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: .5rem;
}

@media (min-width:768px) {
  .product-detail-review-widget {
    margin-bottom: 0;
  }

  .product-detail-review-sortby-form {
    -ms-flex-pack: end;
    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;
  -ms-flex-order: 10;
  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 {
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.account-item-children .account-item-collapse-button.collapsed > .account-item-collapse-icon {
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  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:1024.98px) {
  .account-content-aside {
    display: none;
  }
}

@media (min-width:1200px) {
  .account-item-children {
    margin: 0 30px 12px 96px;
  }
}

.account .account-aside-list-group {
  -ms-flex-direction: row;
  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:1025px) {
  .account .account-aside-list-group {
    -ms-flex-direction: column;
    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:1025px) {
  .login-advantages {
    display: block;
  }
}

.address-card-title {
  margin-bottom: 1.5rem;
}

.address-actions-defaults {
  margin-bottom: .5rem;
}

.address-list {
  padding-top: 1.5rem;
}

.address-action-delete {
  margin-left: .5rem;
}

.address-action-create {
  margin-bottom: 1.5rem;
}

.account-profile-personal {
  margin-bottom: 3rem;
}

.account-profile-credentials {
  margin-bottom: 1.5rem;
}

.order-table {
  margin-bottom: 1.5rem;
  border: 1px solid #bcc1c7;
  position: relative;
}

.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 {
  border-bottom: 0;
}

.order-table-header,
.order-item-header {
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.order-table-header,
.order-item-header {
  padding-left: 20px;
  padding-right: 20px;
}

.order-table-header-heading,
.order-table-header-order-status,
.order-table-header-context-menu {
  display: inline-block;
}

.order-table-header-heading {
  max-width: 290px;
}

.order-table-header-order-status {
  font-weight: 700;
}

.order-table-header-context-menu-wrapper {
  position: absolute;
  top: .5rem;
  right: .5rem;
}

.order-table-header-context-menu-wrapper,
.order-table-header-heading {
  margin-top: .5rem;
}

.order-table-header-context-menu {
  float: right;
  border: 1px solid #bcc1c7;
  border-radius: 3px;
  width: 35px;
  height: 35px;
  padding: 0;
}

.order-table-header-context-menu::after {
  display: none;
}

.order-table-header-context-menu .icon {
  position: relative;
  margin: 5px;
}

.order-table-header-context-menu .icon > svg {
  color: #111;
  position: absolute;
  top: 0;
  left: 0;
}

.order-table-header-context-menu-content {
  padding-left: 10px;
  padding-right: 10px;
}

.order-table-header-context-menu-content-link {
  display: block;
  border: 0 none;
  padding: 0;
  width: 100%;
  color: #111;
  background: none;
  cursor: pointer;
  text-align: left;
}

.order-table-header-context-menu-content-link:hover {
  text-decoration: none;
  color: #e30613;
}

.order-table-header-context-menu-content-link:active {
  outline: none;
}

.order-table-header-order-number {
  display: block;
  font-weight: 400;
  margin-bottom: 1.5rem;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.order-table-header-order-number .order-table-header-label {
  display: inline;
}

.order-table-header-order-table-body,
.order-table-header-order-table-header {
  padding-left: 0;
  padding-right: 0;
}

.order-table-header-order-table-body {
  border-top: 1px solid #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 {
  display: none;
}

.payment-control input,
.payment-control label {
  cursor: pointer;
}

.order-item {
  padding-top: .5rem;
  padding-bottom: .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 {}

.order-item-status-badge.order-item-status-badge-open,
.order-item-status-badge.order-item-status-badge-in_progress {
  background-color: #26b6cf;
  color: #fff;
}

.order-item-status-badge.order-item-status-badge-completed {
  background-color: #3cc261;
  color: #fff;
}

.order-item-status-badge.order-item-status-badge-failed,
.order-item-status-badge.order-item-status-badge-cancelled {
  background-color: #e52427;
  color: #fff;
}

.order-item-status-badge .icon {
  color: currentColor;
}

.order-item-status-badge .icon svg {
  top: 5px;
}

@media (min-width:768px) {
  .order-table-header {
    display: block;
  }

  .order-table-header,
  .order-item-header {
    padding-top: .5rem;
    padding-bottom: .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 {
    display: inline;
  }

  .order-table-header-order-number {
    margin-bottom: 0;
  }

  .order-table-header-label {
    display: block;
    float: left;
    width: 50%;
  }

  .order-table-body-value {
    width: 50%;
  }

  .order-table-header-order-status {
    margin-top: 0;
    margin-bottom: 1rem;
  }

  .order-table-header-context-menu-wrapper {
    top: .5rem;
    right: 1rem;
  }

  .order-table-header-context-menu-indicator {
    top: -3px;
    right: -3px;
  }
}

.edit-order {
  padding-top: 70px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: center;
  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:1024.98px) {
  .edit-order {
    padding-top: 0;
  }

  .edit-order-checkout-aside {
    width: 100%;
    margin-left: 0;
  }
}

.order-detail-content {
  border-top: 1px solid #bcc1c7;
}

.order-detail-content-header {
  display: none;
}

.document-detail-content-header {
  display: block;
  border-bottom: 1px solid #bcc1c7;
  padding-bottom: .5rem;
}

.order-detail-content-header,
.order-item-detail-footer {
  padding-left: 10px;
  padding-right: 10px;
}

.order-detail-content-body.has-element-loader {
  min-height: 70px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.order-detail-content-body .element-loader-backdrop {
  box-shadow: none;
}

.order-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: .5rem;
  padding-right: .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;
}

@media (max-width:1024.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.is-nested,
.order-item-detail-list-item.is-child {
  border-left: 3px solid #bcc1c7;
  border-bottom-color: transparent;
  margin: 0 -10px;
  padding: 0 10px;
}

.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 {
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin: 0 auto;
  width: 50px;
  height: 50px;
}

.order-item-nested-icon .icon > svg {
  top: 0;
}

.order-item-reorder {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
}

.order-item-detail-footer {
  padding: 1rem;
}

.order-item-detail-footer dl dt.col,
.order-item-detail-footer dl .is-act-confirmpage .checkout dt.checkout-aside,
.is-act-confirmpage .checkout .order-item-detail-footer dl dt.checkout-aside,
.order-item-detail-footer dl .is-ctl-accountorder .checkout dt.checkout-aside,
.is-ctl-accountorder .checkout .order-item-detail-footer dl dt.checkout-aside,
.order-item-detail-footer dl .is-act-finishpage .checkout dt.checkout-aside,
.is-act-finishpage .checkout .order-item-detail-footer dl dt.checkout-aside,
.order-item-detail-footer dl dt.scroll-navigation-sidebar-entry,
.order-item-detail-footer dl dt[class*="col-"] {
  margin-bottom: .5rem;
  padding-right: .5rem;
}

.order-item-detail-labels {
  margin-bottom: 0;
}

.order-item-detail-labels-value {
  font-weight: 400;
}

.order-detail-content-header {
  padding-left: 0;
  padding-right: 0;
}

.order-item-detail-summary,
.order-item-detail-summary dd:last-child {
  margin-bottom: 0;
}

.order-detail-comment {
  border-top: 0;
  display: block;
  padding-top: 0;
  padding-bottom: 1rem;
}

.card-title.order-detail-comment-title {
  margin-bottom: 0;
  padding: 1rem;
}

.order-detail-comment-body {
  padding: 1rem;
}

.order-detail-comment-value {
  margin-bottom: 0;
}

.order-item-variants-properties {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.order-item-variants-properties-name {
  margin-right: .5rem;
}

.order-detail-form {
  float: right;
}

.document-item-view-file {
  text-align: right;
}

@media (min-width:768px) {
  .order-detail-content-header {
    display: block;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }

  .order-item-label {
    display: none;
  }

  .order-detail-content-header {
    border-bottom: 1px solid #bcc1c7;
  }

  .order-detail-content {
    border-top: 0;
  }

  .order-header-price,
  .order-item-price,
  .order-header-total,
  .order-item-total,
  .order-header-actions {
    text-align: right;
  }

  .order-header-quantity,
  .order-item-quantity {
    text-align: center;
  }

  .order-item-reorder {
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .order-item-detail-summary dt,
  .order-item-detail-summary dd {
    text-align: right;
  }

  .document-item-view-file-icon-btn {
    display: none;
  }
}

@media (max-width:767.98px) {
  .document-header-date {
    display: none;
  }

  .document-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: .9375rem;
}

.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;
}

.checkout-aside-item {
  margin-bottom: 1rem;
}

.checkout-aside-item .checkout-aside-item-title {
  font-weight: 700;
  margin-bottom: .25rem;
}

.checkout-aside-item .checkout-aside-item-characteristics {
  margin-bottom: .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: .25rem;
}

.checkout-aside-item-price {
  font-weight: 700;
  text-align: right;
}

.checkout-aside-action {
  margin-top: 1rem;
}

.checkout-aside-add-code {
  margin-top: 1rem;
}

.cart-aside-item-children {
  background-color: #f9f9f9;
  width: 100%;
  margin-top: .5rem;
  padding: 16px 16px 10px;
  -ms-flex-order: 10;
  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 {
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.cart-aside-item-children .cart-aside-item-collapse-button.collapsed > .cart-aside-item-collapse-icon {
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  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: -webkit-sticky;
  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-row,
.cart-item-row {
  margin-right: -.25rem;
  margin-left: -.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 > .scroll-navigation-sidebar-entry,
.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 > .scroll-navigation-sidebar-entry,
.cart-item-row > [class*="col-"] {
  padding-right: .25rem;
  padding-left: .25rem;
}

.cart-add-product-container {
  margin-bottom: 1rem;
}

.cart-shipping-costs-container {
  -ms-flex-item-align: center;
  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:1025px) {
  .cart-table-header {
    display: block;
  }
}

.cart-item {
  margin-bottom: 1rem;
}

.cart-item.is-nested,
.cart-item.is-child {
  border-left: 3px solid #bcc1c7;
  border-bottom-color: transparent;
  padding-left: 1rem;
}

.cart-item.is-child {
  padding-right: 1rem;
}

.cart-item.is-discount .cart-item-total-price {
  color: #3cc261;
}

.cart-item-discount-icon {
  text-align: center;
  height: 100%;
}

.cart-item-discount-icon .icon {
  height: 100%;
}

.cart-item-discount-icon .icon > svg {
  top: 0;
}

.cart-item-nested-icon {
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin: 0 auto;
  width: 65px;
  height: 65px;
}

.cart-item-nested-icon .icon > svg {
  top: 0;
}

.cart-item-info {
  -ms-flex-order: 1;
  order: 1;
}

.cart-item-quantity {
  -ms-flex-order: 3;
  order: 3;
}

.cart-item-unit-price,
.cart-item-tax-price {
  -ms-flex-order: 4;
  order: 4;
}

.cart-item-total-price {
  -ms-flex-order: 5;
  order: 5;
}

.cart-item-remove {
  -ms-flex-order: 2;
  order: 2;
  text-align: right;
}

.cart-item-img-container {
  text-align: center;
  width: 70px;
}

.cart-item-img-link {
  display: block;
}

.cart-item-info {
  margin-bottom: 1rem;
}

.cart-item-total-price {
  font-weight: 700;
}

.cart-item-unit-price,
.cart-item-total-price,
.cart-item-tax-price {
  -ms-flex-pack: justify;
  justify-content: space-between;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.cart-item-quantity-label,
.cart-item-unit-price-label,
.cart-item-total-price-label,
.cart-item-tax-price-label {
  font-weight: 700;
  margin-bottom: .5rem;
}

.cart-item-quantity-row {
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: .5rem;
}

.cart-item-quantity {
  margin-bottom: .5rem;
}

.cart-item-details {
  padding-top: 8px;
}

.cart-item-details-characteristics {
  margin: .5rem 0;
  font-size: .75rem;
}

.cart-item-details-characteristics .cart-item-details-characteristics-option {
  font-weight: 700;
}

.cart-item-variants {
  margin-bottom: .5rem;
}

.cart-item-variants-properties {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.cart-item-variants-properties-name {
  margin-right: .5rem;
}

@media (min-width:576px) {
  .cart-item-quantity-container {
    width: 70px;
    margin-left: auto;
  }

  .cart-item-quantity-row {
    -ms-flex-align: normal;
    align-items: normal;
    margin-bottom: 0;
  }

  .cart-item-quantity {
    -ms-flex-pack: justify;
    justify-content: space-between;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }

  .cart-item-quantity,
  .cart-item-unit-price,
  .cart-item-total-price,
  .cart-item-tax-price {
    text-align: right;
  }

  .cart-item-unit-price,
  .cart-item-total-price,
  .cart-item-tax-price {
    -ms-flex-pack: normal;
    justify-content: normal;
    display: block;
  }
}

@media (min-width:768px) {
  .cart-item {}

  .cart-item.is-nested,
  .cart-item.is-child {
    padding-left: 0;
    padding-right: 0;
  }

  .cart-item.is-nested .cart-item-info,
  .cart-item.is-child .cart-item-info {
    padding-left: 1rem;
  }

  .cart-item-info,
  .cart-item-quantity,
  .cart-item-unit-price,
  .cart-item-total-price,
  .cart-item-tax-price,
  .cart-item-remove {
    -ms-flex-order: 0;
    order: 0;
  }

  .cart-item-info {
    margin-bottom: 0;
  }

  .cart-item-quantity-label,
  .cart-item-unit-price-label,
  .cart-item-total-price-label,
  .cart-item-tax-price-label {
    display: none;
  }
}

.cart-item-children {
  background-color: #f9f9f9;
  width: 100%;
  margin: 0 4px;
  padding: 16px 16px 10px;
  -ms-flex-order: 10;
  order: 10;
}

.cart-item-children .nesting-level-1 {
  margin-left: 27px;
}

.cart-item-children .nesting-level-2 {
  margin-left: 45px;
}

.cart-item-children .nesting-level-3 {
  margin-left: 63px;
}

.cart-item-children .nesting-level-4 {
  margin-left: 81px;
}

.cart-item-children .nesting-level-5 {
  margin-left: 99px;
}

.cart-item-children .nesting-level-6 {
  margin-left: 117px;
}

.cart-item-children .nesting-level-7 {
  margin-left: 135px;
}

.cart-item-children .nesting-level-8 {
  margin-left: 153px;
}

.cart-item-children .nesting-level-9 {
  margin-left: 171px;
}

.cart-item-children .nesting-level-10 {
  margin-left: 189px;
}

.cart-item-children .cart-item-children-elements {
  padding: 12px 0 0;
}

.cart-item-children .cart-item-headline {
  padding: 0;
  font-weight: 600;
}

.cart-item-children .cart-item-change-button {
  width: fit-content;
  margin: 0 12px;
  font-size: 12px;
  text-decoration: underline;
  background-color: transparent;
  border-style: none;
}

.cart-item-children .cart-item-change-button:focus {
  outline: none;
}

.cart-item-children .cart-item-collapse {
  margin: 0;
}

.cart-item-children .cart-item-collapse-container,
.cart-item-children .cart-item-child-label {
  padding: 0;
}

.cart-item-children .cart-item-collapse-icon-container {
  padding: 0;
  text-align: right;
}

.cart-item-children .cart-item-collapse-button,
.cart-item-children .cart-item-child-remove-icon {
  background-color: transparent;
  border-style: none;
}

.cart-item-children .cart-item-collapse-button:focus,
.cart-item-children .cart-item-child-remove-icon:focus {
  outline: none;
}

.cart-item-children .cart-item-collapse-button > .cart-item-collapse-icon {
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.cart-item-children .cart-item-collapse-button.collapsed > .cart-item-collapse-icon {
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.cart-item-children .cart-item-children-element {
  margin: 0;
  padding: 8px 4px 0;
}

.cart-item-children .cart-item-children-element > .nesting-level-0 {
  list-style: none;
}

.cart-item-children .cart-item-children-element:last-child,
.cart-item-children .cart-item-children-element-divider:last-child {
  border-style: none;
}

.cart-item-children .cart-item-child-label-bullet {
  display: list-item;
}

.cart-item-children .cart-item-child-total-price {
  padding: 0;
  text-align: right;
  font-weight: 600;
}

.cart-item-children .cart-item-child-remove-icon-container {
  padding: 0;
  text-align: right;
}

.cart-item-children .cart-item-children-element-divider {
  border-top: 1px solid #bcc1c7;
  margin: 1rem 0;
}

@media (min-width:768px) {
  .cart-item-children {
    margin-left: 96px;
  }
}

@media (min-width:1025px) {
  .cart-item-children {
    margin-left: 4px;
  }
}

@media (min-width:1200px) {
  .cart-item-children {
    margin-left: 96px;
  }
}

.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:1025px) {
  .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: .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: #e30613;
}

.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: #e30613;
  transition: -ms-transform .2s ease-in-out;
  transition: -webkit-transform .2s ease-in-out;
  transition: transform .2s ease-in-out;
  -webkit-transition: -webkit-transform .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: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: 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: #3f4c58;
}

.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;
  }
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: fallback;
  src: url("../assets/font/Inter-Regular.woff2") format("woff2"), url("../assets/font/Inter-Regular.woff") format("woff");
}

@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 400;
  font-display: fallback;
  src: url("../assets/font/Inter-Italic.woff2") format("woff2"), url("../assets/font/Inter-Italic.woff") format("woff");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: fallback;
  src: url("../assets/font/Inter-SemiBold.woff2") format("woff2"), url("../assets/font/Inter-SemiBold.woff") format("woff");
}

@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 600;
  font-display: fallback;
  src: url("../assets/font/Inter-SemiBoldItalic.woff2") format("woff2"), url("../assets/font/Inter-SemiBoldItalic.woff") format("woff");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: fallback;
  src: url("../assets/font/Inter-Bold.woff2") format("woff2"), url("../assets/font/Inter-Bold.woff") format("woff");
}

@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 700;
  font-display: fallback;
  src: url("../assets/font/Inter-BoldItalic.woff2") format("woff2"), url("../assets/font/Inter-BoldItalic.woff") format("woff");
}

body {
  -moz-font-feature-settings: "cv02" 1, "cv03" 1, "cv04" 1;
  -webkit-font-feature-settings: "cv02" 1, "cv03" 1, "cv04" 1;
  font-feature-settings: "cv02" 1, "cv03" 1, "cv04" 1;
}

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  min-height: 100vh;
  -ms-flex-direction: column;
  flex-direction: column;
}

main {
  -ms-flex-positive: 1;
  flex-grow: 1;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.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;
}

.alert,
.hbspt-form div.submitted-message {
  padding: 0;
  border: 0;
}

.alert .icon,
.hbspt-form div.submitted-message .icon {
  margin: .5rem;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.alert .icon svg,
.hbspt-form div.submitted-message .icon svg {
  top: 0;
}

.alert-has-icon,
.hbspt-form div.submitted-message {
  -ms-flex-align: normal;
  align-items: normal;
}

.alert-content-container,
.hbspt-form div.submitted-message {
  padding: .5rem;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.alert-primary {
  background-color: #e30613;
}

.alert-primary .alert-content-container,
.alert-primary .hbspt-form div.submitted-message,
.hbspt-form .alert-primary div.submitted-message {
  background-color: #f9cdd0;
  color: #e30613;
}

.alert-primary .icon {
  color: #fff;
}

.alert-secondary {
  background-color: #f6f6f6;
}

.alert-secondary .alert-content-container,
.alert-secondary .hbspt-form div.submitted-message,
.hbspt-form .alert-secondary div.submitted-message {
  background-color: #fdfdfd;
  color: #f6f6f6;
}

.alert-secondary .icon {
  color: #fff;
}

.alert-success,
.hbspt-form div.submitted-message {
  background-color: #3cc261;
}

.alert-success .alert-content-container,
.hbspt-form div.submitted-message .alert-content-container,
.alert-success .hbspt-form div.submitted-message,
.hbspt-form .alert-success div.submitted-message,
.hbspt-form div.submitted-message {
  background-color: #d8f3df;
  color: #3cc261;
}

.alert-success .icon,
.hbspt-form div.submitted-message .icon {
  color: #fff;
}

.alert-info {
  background-color: #26b6cf;
}

.alert-info .alert-content-container,
.alert-info .hbspt-form div.submitted-message,
.hbspt-form .alert-info div.submitted-message {
  background-color: #d4f0f5;
  color: #26b6cf;
}

.alert-info .icon {
  color: #fff;
}

.alert-warning {
  background-color: #ffbd5d;
}

.alert-warning .alert-content-container,
.alert-warning .hbspt-form div.submitted-message,
.hbspt-form .alert-warning div.submitted-message {
  background-color: #fff2df;
  color: #ffbd5d;
}

.alert-warning .icon {
  color: #fff;
}

.alert-danger {
  background-color: #e52427;
}

.alert-danger .alert-content-container,
.alert-danger .hbspt-form div.submitted-message,
.hbspt-form .alert-danger div.submitted-message {
  background-color: #fad3d4;
  color: #e52427;
}

.alert-danger .icon {
  color: #fff;
}

.alert-light {
  background-color: #f9f9f9;
}

.alert-light .alert-content-container,
.alert-light .hbspt-form div.submitted-message,
.hbspt-form .alert-light div.submitted-message {
  background-color: #fefefe;
  color: #f9f9f9;
}

.alert-light .icon {
  color: #fff;
}

.alert-dark {
  background-color: #4a545b;
}

.alert-dark .alert-content-container,
.alert-dark .hbspt-form div.submitted-message,
.hbspt-form .alert-dark div.submitted-message {
  background-color: #dbddde;
  color: #4a545b;
}

.alert-dark .icon {
  color: #fff;
}

.badge {
  border: 0;
  border-radius: 50px;
  box-sizing: content-box;
  height: 20px;
  line-height: 20px;
  margin: 0 5px;
  min-width: 10px;
  padding: 0 5px;
}

.badge-lg {
  height: 28px;
  line-height: 28px;
  padding: 0 10px;
}

.breadcrumb {
  padding: .75rem 0;
}

.breadcrumb svg {
  height: .9375rem;
  width: auto;
  top: 3px;
}

.breadcrumb .breadcrumb-container {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.breadcrumb .breadcrumb-placeholder {
  margin: 0 .5rem;
}

.breadcrumb a {
  color: #111;
  font-size: .9375rem;
}

.breadcrumb a:hover {
  color: #e30613;
  text-decoration: none;
}

.breadcrumb a.is-active {
  color: #e30613;
  font-weight: bolder;
}

.btn,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .watchlist-listing-link,
.hbspt-form input.hs-button {
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.btn-buy {
  color: #fff;
  color: #fff;
  background-color: #e30613;
  border-color: #e30613;
}

.btn-buy:hover {
  color: #fff;
  background-color: #be0510;
  border-color: #b1050f;
}

.btn-buy:focus,
.btn-buy.focus {
  box-shadow: 0 0 0 .2rem rgba(231, 43, 54, .5);
}

.btn-buy.disabled,
.btn-buy:disabled {
  color: #fff;
  background-color: #e30613;
  border-color: #e30613;
}

.btn-buy:not(:disabled):not(.disabled):active,
.btn-buy:not(:disabled):not(.disabled).active,
.show > .btn-buy.dropdown-toggle {
  color: #fff;
  background-color: #b1050f;
  border-color: #a5040e;
}

.btn-buy:not(:disabled):not(.disabled):active:focus,
.btn-buy:not(:disabled):not(.disabled).active:focus,
.show > .btn-buy.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(231, 43, 54, .5);
}

.btn.disabled,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .disabled.watchlist-listing-link,
.hbspt-form input.disabled.hs-button,
.btn:disabled,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .watchlist-listing-link:disabled,
.hbspt-form input.hs-button:disabled,
.btn-buy.disabled,
.btn-buy:disabled {
  opacity: 1;
  background: #eee;
  border-color: #eee;
  color: #bcc1c7;
}

.btn-link.disabled,
.btn-link:disabled {
  border: 0 none;
  background: transparent;
}

.card-title {
  border-bottom: 1px solid #bcc1c7;
  padding-bottom: 10px;
}

.card-body {
  padding: 0;
}

.custom-select,
.hbspt-form select.hs-input {
  cursor: pointer;
}

.custom-select:invalid,
.hbspt-form select.hs-input:invalid {
  color: #c3c3c3;
}

.custom-select:hover,
.hbspt-form select.hs-input:hover {
  border-color: #e30613;
  color: #e30613;
}

.form-label,
.hbspt-form label {
  margin-bottom: 3px;
}

.form-group,
.hbspt-form .hs-form-booleancheckbox,
.hbspt-form .hs-form-field {
  margin-bottom: 20px;
}

.form-control,
.hbspt-form input.hs-input[type="text"],
.hbspt-form input.hs-input[type="tel"],
.hbspt-form input.hs-input[type="email"] {}

.form-control:focus,
.hbspt-form input.hs-input[type="text"]:focus,
.hbspt-form input.hs-input[type="tel"]:focus,
.hbspt-form input.hs-input[type="email"]:focus {
  box-shadow: none;
}

.form-control::-webkit-input-placeholder,
.hbspt-form input.hs-input[type="text"]::-webkit-input-placeholder,
.hbspt-form input.hs-input[type="tel"]::-webkit-input-placeholder,
.hbspt-form input.hs-input[type="email"]::-webkit-input-placeholder {
  color: #c3c3c3;
}

.modal-content {
  border: 0;
  box-shadow: 0 43px 43px -6px rgba(0, 0, 0, .2);
}

.modal-content .modal-title {
  margin: 0;
}

.product-box {
  border-color: #bcc1c7;
  background-color: #fff;
}

.product-box .card-body {
  padding: 1rem;
}

.product-name {
  font-weight: 600;
}

.product-price {
  color: #111;
}

.card-tabs {
  border: 0;
}

.card-tabs .card-header {
  background: none;
  padding-left: 10px;
  padding-right: 10px;
}

.card-tabs .nav-item {
  margin-right: 10px;
}

.card-tabs .nav-link {
  border: 0;
  border-bottom: 2px solid #bcc1c7;
  border-radius: 0;
  color: #111;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 5px;
}

.card-tabs .nav-link:hover {
  border-color: #e30613;
  color: #e30613;
}

.card-tabs .nav-link.active {
  border-color: #e30613;
  color: #4a545b;
}

.card-tabs .nav-link.active,
.card-tabs .nav-link:hover {
  background-color: #fff;
  background-image: none;
}

.card-tabs .nav-link .product-cross-selling-tab-navigation {
  padding: 0;
}

.card-tabs .card-body {
  padding-top: 30px;
}

.cms-block-text-hero .cms-element-text hr {
  max-width: 160px;
  margin-left: auto;
  margin-right: auto;
  border: 2px solid #e9edf0;
}

.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: #3f4c58;
}

.quickview-minimal-product-name:hover {
  text-decoration: none;
}

.quickview-minimal-product-number {
  font-size: .75rem;
}

.quickview-minimal-footer-heading {
  border-bottom: 1px solid #bcc1c7;
}

.pagination .page-link {
  line-height: 1.5;
}

.top-bar-nav-btn.btn,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .top-bar-nav-btn.watchlist-listing-link,
.hbspt-form input.top-bar-nav-btn.hs-button {
  color: #111;
  font-weight: 400;
  padding: 0;
}

.top-bar-nav-btn.btn:hover,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .top-bar-nav-btn.watchlist-listing-link:hover,
.hbspt-form input.top-bar-nav-btn.hs-button:hover,
.top-bar-nav-btn.btn:hover .icon,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .top-bar-nav-btn.watchlist-listing-link:hover .icon,
.hbspt-form input.top-bar-nav-btn.hs-button:hover .icon {
  color: #e30613;
}

.top-bar-nav-btn.btn:focus,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .top-bar-nav-btn.watchlist-listing-link:focus,
.hbspt-form input.top-bar-nav-btn.hs-button:focus {
  box-shadow: none;
}

.dropdown.show .top-bar-nav-btn,
.dropdown.show .top-bar-nav-btn .icon {
  color: #e30613;
}

.top-bar-list-item {
  color: #111;
}

.top-bar-list-item.is-checked {
  color: #e30613;
}

.top-bar-list-item:hover {
  color: #e30613;
  background: transparent;
  text-decoration: none;
}

.top-bar-list-item:hover .top-bar-list-label {
  cursor: pointer;
}

.header-search-btn {
  background: #fff;
  border: 1px solid #bcc1c7;
  border-left: 0;
}

.header-search-btn:hover .icon {
  color: #e30613;
}

.header-search-btn:focus {
  box-shadow: none;
}

.header-search-btn.btn:disabled,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .header-search-btn.watchlist-listing-link:disabled,
.hbspt-form input.header-search-btn.hs-button:disabled {
  background: #fff;
  border-color: #bcc1c7;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.header-search-input {
  border-right: 0;
}

.header-search-input:focus,
.header-search-input:focus ~ .input-group-append .header-search-btn {
  border-color: #e30613;
}

.header-actions-btn,
.header-actions-btn:active,
.header-actions-btn:hover {
  background: none;
}

.header-actions-btn:hover,
.header-actions-btn:hover .icon {
  color: #e30613;
}

.header-actions-btn:focus {
  box-shadow: none;
}

.header-cart-total {
  color: #e30613;
  font-size: 1rem;
}

@media (min-width:576px) {
  .header-cart-badge {
    display: none;
  }
}

.footer-main {
  border-top: 1px solid #bcc1c7;
}

.footer-column {
  border-bottom: 1px solid #bcc1c7;
}

.footer-column-headline {
  color: #e30613;
  font-size: 1rem;
  font-weight: 700;
}

.footer-link,
.footer-contact-hotline a {
  color: #111;
}

.footer-link:hover,
.footer-contact-hotline a:hover {
  color: #e30613;
  text-decoration: none;
}

.footer-contact-hotline a {
  display: block;
  margin: 1rem 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-menu {
  font-size: 1rem;
}

@media (min-width:768px) {
  .main-navigation-link {
    color: #111;
    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: #e30613;
  }

  .main-navigation-link.active {
    color: #4a545b;
    font-weight: 700;
  }

  .main-navigation-link.active .main-navigation-link-text {
    border-color: #e30613;
  }
}

.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 {
  -webkit-transition: padding .25s cubic-bezier(0, .77, .33, 1);
  transition: padding .25s cubic-bezier(0, .77, .33, 1);
  color: #4a545b;
  font-size: 1rem;
  margin: 0 1rem;
  padding: .25rem 0;
}

@media (prefers-reduced-motion:reduce) {
  .navigation-flyout-link {
    -webkit-transition: none;
    transition: none;
  }
}

.navigation-flyout-link.is-level-0 {
  font-weight: 700;
}

.navigation-flyout-link.is-level-2 {
  font-size: .9375rem;
  padding: .125rem 0;
}

.navigation-flyout-link:hover {
  color: #e30613;
  padding-left: 5px;
}

.navigation-flyout-link.active {
  color: #e30613;
  font-weight: 700;
}

.navigation-flyout-bar {
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 0;
}

.navigation-flyout-category-link {
  font-weight: 700;
  font-size: 1rem;
}

.navigation-offcanvas-headline {
  font-weight: 700;
  color: #f6f6f6;
}

.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: #111;
}

.navigation-offcanvas-link.is-home-link,
.navigation-offcanvas-link.is-home-link .icon {
  color: #e30613;
}

.navigation-offcanvas-link.is-back-link {
  border-top: 1px solid #bcc1c7;
  font-weight: 700;
  color: #f6f6f6;
}

.navigation-offcanvas-link.is-current-category {
  color: #e30613;
  font-weight: 700;
}

.offcanvas-cart-header-count {
  color: #798490;
  font-weight: 700;
}

.offcanvas-cart-tax {
  color: #798490;
}

.search-suggest-product {
  border-bottom: 1px solid #bcc1c7;
}

.search-suggest-product:last-child {
  border-bottom: 0;
}

.search-suggest-product-link {
  color: #111;
}

.search-suggest-product-link:hover {
  color: #e30613;
}

.product-detail-name {
  color: #3f4c58;
}

.product-detail-manufacturer-logo {
  max-width: 200px;
  max-height: 70px;
}

.product-detail-price {
  color: #111;
  margin-bottom: 0;
  font-weight: 700;
  vertical-align: middle;
}

.product-detail-price.with-list-price {
  color: #e52427;
  display: inline-block;
}

.product-detail-price.with-advanced-list-price {
  color: #e52427;
  font-size: .9375rem;
  display: inline-block;
}

.product-detail-price.with-advanced-list-price {
  color: #e52427;
  font-size: .9375rem;
  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-list-price-wrapper {
  color: #3f4c58;
  font-weight: 400;
  font-size: 12px;
  display: inline-block;
  height: 26px;
  vertical-align: bottom;
}

@media (max-width:1024.98px) {
  .product-detail-list-price-wrapper {
    height: 22px;
  }
}

.product-detail-list-price-wrapper .list-price-price {
  text-decoration: line-through;
}

.product-detail-advanced-list-price-wrapper {
  color: #3f4c58;
  font-weight: 400;
  font-size: 12px;
  vertical-align: bottom;
  display: block;
  padding-left: 0;
}

.product-detail-advanced-list-price-wrapper .list-price-price {
  text-decoration: line-through;
}

.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:1025px) {
  .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,
.product-detail-tabs .is-act-search .card-tabs,
.is-act-search .product-detail-tabs .card-tabs {
  padding: 0;
}

.product-detail-tab-navigation-list {
  -ms-flex-direction: column;
  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: .5rem;
}

.product-detail-tab-preview-more {
  color: #e30613;
  font-weight: 700;
}

@media (max-width:575.98px) {
  .product-detail-tabs .product-detail-tab-navigation-link {
    background: none;
    border: 0;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    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;
    -ms-flex-direction: row;
    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: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }

  .product-detail-review-form-footer {
    display: -ms-flexbox;
    display: -webkit-flex;
    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: #3f4c58;
  font-weight: 700;
}

.account-aside-item {
  border: 0;
}

.account-aside-item.is-active {
  color: #e30613;
  background: #fff;
  font-weight: 700;
}

.account-aside-item:hover {
  color: #e30613;
  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: .75rem;
}

.order-item-status-badge {
  margin: 10px 0;
}

@media (max-width:575.98px) {
  .order-item-status-badge {
    margin-top: 0;
  }
}

.order-table-header .row,
.order-table-header .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,
.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,
.order-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 {
  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 .account-content > .scroll-navigation-sidebar-entry,
.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,
.order-table-header .is-act-cartpage .checkout .checkout-container > .scroll-navigation-sidebar-entry,
.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,
.order-table-header .is-act-checkoutregisterpage .checkout .checkout-container > .scroll-navigation-sidebar-entry,
.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,
.order-table-header .is-act-confirmpage .checkout .checkout-container > .scroll-navigation-sidebar-entry,
.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,
.order-table-header .is-ctl-accountorder .checkout .checkout-container > .scroll-navigation-sidebar-entry,
.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,
.order-table-header .is-act-finishpage .checkout .checkout-container > .scroll-navigation-sidebar-entry,
.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 > .scroll-navigation-sidebar-entry,
.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,
.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 .account-content > .scroll-navigation-sidebar-entry,
.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,
.order-item-header .is-act-cartpage .checkout .checkout-container > .scroll-navigation-sidebar-entry,
.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,
.order-item-header .is-act-checkoutregisterpage .checkout .checkout-container > .scroll-navigation-sidebar-entry,
.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,
.order-item-header .is-act-confirmpage .checkout .checkout-container > .scroll-navigation-sidebar-entry,
.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,
.order-item-header .is-ctl-accountorder .checkout .checkout-container > .scroll-navigation-sidebar-entry,
.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,
.order-item-header .is-act-finishpage .checkout .checkout-container > .scroll-navigation-sidebar-entry,
.is-act-finishpage .checkout .order-item-header .checkout-container > .col,
.order-item-header .is-act-confirmpage .checkout .row > .checkout-aside,
.order-item-header .is-act-confirmpage .checkout .is-act-cartpage .checkout .checkout-container > .checkout-aside,
.is-act-cartpage .checkout .order-item-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside,
.order-item-header .is-act-confirmpage .checkout .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside,
.is-act-checkoutregisterpage .checkout .order-item-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside,
.is-act-confirmpage .checkout .order-item-header .row > .checkout-aside,
.order-item-header .is-ctl-accountorder .checkout .row > .checkout-aside,
.order-item-header .is-ctl-accountorder .checkout .is-act-cartpage .checkout .checkout-container > .checkout-aside,
.is-act-cartpage .checkout .order-item-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside,
.order-item-header .is-ctl-accountorder .checkout .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside,
.is-act-checkoutregisterpage .checkout .order-item-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside,
.is-ctl-accountorder .checkout .order-item-header .row > .checkout-aside,
.order-item-header .is-act-finishpage .checkout .row > .checkout-aside,
.order-item-header .is-act-finishpage .checkout .is-act-cartpage .checkout .checkout-container > .checkout-aside,
.is-act-cartpage .checkout .order-item-header .is-act-finishpage .checkout .checkout-container > .checkout-aside,
.order-item-header .is-act-finishpage .checkout .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside,
.is-act-checkoutregisterpage .checkout .order-item-header .is-act-finishpage .checkout .checkout-container > .checkout-aside,
.is-act-finishpage .checkout .order-item-header .row > .checkout-aside,
.order-item-header .row > .scroll-navigation-sidebar-entry,
.order-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-"],
.order-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 .account-content > .scroll-navigation-sidebar-entry,
.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,
.order-detail-content-header .is-act-cartpage .checkout .checkout-container > .scroll-navigation-sidebar-entry,
.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,
.order-detail-content-header .is-act-checkoutregisterpage .checkout .checkout-container > .scroll-navigation-sidebar-entry,
.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,
.order-detail-content-header .is-act-confirmpage .checkout .checkout-container > .scroll-navigation-sidebar-entry,
.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,
.order-detail-content-header .is-ctl-accountorder .checkout .checkout-container > .scroll-navigation-sidebar-entry,
.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,
.order-detail-content-header .is-act-finishpage .checkout .checkout-container > .scroll-navigation-sidebar-entry,
.is-act-finishpage .checkout .order-detail-content-header .checkout-container > .col,
.order-detail-content-header .is-act-confirmpage .checkout .row > .checkout-aside,
.order-detail-content-header .is-act-confirmpage .checkout .is-act-cartpage .checkout .checkout-container > .checkout-aside,
.is-act-cartpage .checkout .order-detail-content-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside,
.order-detail-content-header .is-act-confirmpage .checkout .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside,
.is-act-checkoutregisterpage .checkout .order-detail-content-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside,
.is-act-confirmpage .checkout .order-detail-content-header .row > .checkout-aside,
.order-detail-content-header .is-ctl-accountorder .checkout .row > .checkout-aside,
.order-detail-content-header .is-ctl-accountorder .checkout .is-act-cartpage .checkout .checkout-container > .checkout-aside,
.is-act-cartpage .checkout .order-detail-content-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside,
.order-detail-content-header .is-ctl-accountorder .checkout .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside,
.is-act-checkoutregisterpage .checkout .order-detail-content-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside,
.is-ctl-accountorder .checkout .order-detail-content-header .row > .checkout-aside,
.order-detail-content-header .is-act-finishpage .checkout .row > .checkout-aside,
.order-detail-content-header .is-act-finishpage .checkout .is-act-cartpage .checkout .checkout-container > .checkout-aside,
.is-act-cartpage .checkout .order-detail-content-header .is-act-finishpage .checkout .checkout-container > .checkout-aside,
.order-detail-content-header .is-act-finishpage .checkout .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside,
.is-act-checkoutregisterpage .checkout .order-detail-content-header .is-act-finishpage .checkout .checkout-container > .checkout-aside,
.is-act-finishpage .checkout .order-detail-content-header .row > .checkout-aside,
.order-detail-content-header .row > .scroll-navigation-sidebar-entry,
.order-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-"] {
  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 .account-content > .scroll-navigation-sidebar-entry,
  .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,
  .order-table-header .is-act-cartpage .checkout .checkout-container > .scroll-navigation-sidebar-entry,
  .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,
  .order-table-header .is-act-checkoutregisterpage .checkout .checkout-container > .scroll-navigation-sidebar-entry,
  .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,
  .order-table-header .is-act-confirmpage .checkout .checkout-container > .scroll-navigation-sidebar-entry,
  .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,
  .order-table-header .is-ctl-accountorder .checkout .checkout-container > .scroll-navigation-sidebar-entry,
  .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,
  .order-table-header .is-act-finishpage .checkout .checkout-container > .scroll-navigation-sidebar-entry,
  .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 > .scroll-navigation-sidebar-entry,
  .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,
  .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 .account-content > .scroll-navigation-sidebar-entry,
  .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,
  .order-item-header .is-act-cartpage .checkout .checkout-container > .scroll-navigation-sidebar-entry,
  .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,
  .order-item-header .is-act-checkoutregisterpage .checkout .checkout-container > .scroll-navigation-sidebar-entry,
  .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,
  .order-item-header .is-act-confirmpage .checkout .checkout-container > .scroll-navigation-sidebar-entry,
  .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,
  .order-item-header .is-ctl-accountorder .checkout .checkout-container > .scroll-navigation-sidebar-entry,
  .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,
  .order-item-header .is-act-finishpage .checkout .checkout-container > .scroll-navigation-sidebar-entry,
  .is-act-finishpage .checkout .order-item-header .checkout-container > .col,
  .order-item-header .is-act-confirmpage .checkout .row > .checkout-aside,
  .order-item-header .is-act-confirmpage .checkout .is-act-cartpage .checkout .checkout-container > .checkout-aside,
  .is-act-cartpage .checkout .order-item-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside,
  .order-item-header .is-act-confirmpage .checkout .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside,
  .is-act-checkoutregisterpage .checkout .order-item-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside,
  .is-act-confirmpage .checkout .order-item-header .row > .checkout-aside,
  .order-item-header .is-ctl-accountorder .checkout .row > .checkout-aside,
  .order-item-header .is-ctl-accountorder .checkout .is-act-cartpage .checkout .checkout-container > .checkout-aside,
  .is-act-cartpage .checkout .order-item-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside,
  .order-item-header .is-ctl-accountorder .checkout .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside,
  .is-act-checkoutregisterpage .checkout .order-item-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside,
  .is-ctl-accountorder .checkout .order-item-header .row > .checkout-aside,
  .order-item-header .is-act-finishpage .checkout .row > .checkout-aside,
  .order-item-header .is-act-finishpage .checkout .is-act-cartpage .checkout .checkout-container > .checkout-aside,
  .is-act-cartpage .checkout .order-item-header .is-act-finishpage .checkout .checkout-container > .checkout-aside,
  .order-item-header .is-act-finishpage .checkout .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside,
  .is-act-checkoutregisterpage .checkout .order-item-header .is-act-finishpage .checkout .checkout-container > .checkout-aside,
  .is-act-finishpage .checkout .order-item-header .row > .checkout-aside,
  .order-item-header .row > .scroll-navigation-sidebar-entry,
  .order-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-"],
  .order-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 .account-content > .scroll-navigation-sidebar-entry,
  .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,
  .order-detail-content-header .is-act-cartpage .checkout .checkout-container > .scroll-navigation-sidebar-entry,
  .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,
  .order-detail-content-header .is-act-checkoutregisterpage .checkout .checkout-container > .scroll-navigation-sidebar-entry,
  .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,
  .order-detail-content-header .is-act-confirmpage .checkout .checkout-container > .scroll-navigation-sidebar-entry,
  .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,
  .order-detail-content-header .is-ctl-accountorder .checkout .checkout-container > .scroll-navigation-sidebar-entry,
  .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,
  .order-detail-content-header .is-act-finishpage .checkout .checkout-container > .scroll-navigation-sidebar-entry,
  .is-act-finishpage .checkout .order-detail-content-header .checkout-container > .col,
  .order-detail-content-header .is-act-confirmpage .checkout .row > .checkout-aside,
  .order-detail-content-header .is-act-confirmpage .checkout .is-act-cartpage .checkout .checkout-container > .checkout-aside,
  .is-act-cartpage .checkout .order-detail-content-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside,
  .order-detail-content-header .is-act-confirmpage .checkout .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside,
  .is-act-checkoutregisterpage .checkout .order-detail-content-header .is-act-confirmpage .checkout .checkout-container > .checkout-aside,
  .is-act-confirmpage .checkout .order-detail-content-header .row > .checkout-aside,
  .order-detail-content-header .is-ctl-accountorder .checkout .row > .checkout-aside,
  .order-detail-content-header .is-ctl-accountorder .checkout .is-act-cartpage .checkout .checkout-container > .checkout-aside,
  .is-act-cartpage .checkout .order-detail-content-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside,
  .order-detail-content-header .is-ctl-accountorder .checkout .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside,
  .is-act-checkoutregisterpage .checkout .order-detail-content-header .is-ctl-accountorder .checkout .checkout-container > .checkout-aside,
  .is-ctl-accountorder .checkout .order-detail-content-header .row > .checkout-aside,
  .order-detail-content-header .is-act-finishpage .checkout .row > .checkout-aside,
  .order-detail-content-header .is-act-finishpage .checkout .is-act-cartpage .checkout .checkout-container > .checkout-aside,
  .is-act-cartpage .checkout .order-detail-content-header .is-act-finishpage .checkout .checkout-container > .checkout-aside,
  .order-detail-content-header .is-act-finishpage .checkout .is-act-checkoutregisterpage .checkout .checkout-container > .checkout-aside,
  .is-act-checkoutregisterpage .checkout .order-detail-content-header .is-act-finishpage .checkout .checkout-container > .checkout-aside,
  .is-act-finishpage .checkout .order-detail-content-header .row > .checkout-aside,
  .order-detail-content-header .row > .scroll-navigation-sidebar-entry,
  .order-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-"] {
    padding-right: 0;
    padding-left: 0;
  }
}

.order-table-header {
  font-weight: 700;
}

.order-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,
.order-item-header .row > .order-table-header-order-number,
.order-item-header .account-content > .order-table-header-order-number,
.order-item-header .is-act-cartpage .checkout .checkout-container > .order-table-header-order-number,
.is-act-cartpage .checkout .order-item-header .checkout-container > .order-table-header-order-number,
.order-item-header .is-act-checkoutregisterpage .checkout .checkout-container > .order-table-header-order-number,
.is-act-checkoutregisterpage .checkout .order-item-header .checkout-container > .order-table-header-order-number,
.order-item-header .is-act-confirmpage .checkout .checkout-container > .order-table-header-order-number,
.is-act-confirmpage .checkout .order-item-header .checkout-container > .order-table-header-order-number,
.order-item-header .is-ctl-accountorder .checkout .checkout-container > .order-table-header-order-number,
.is-ctl-accountorder .checkout .order-item-header .checkout-container > .order-table-header-order-number,
.order-item-header .is-act-finishpage .checkout .checkout-container > .order-table-header-order-number,
.is-act-finishpage .checkout .order-item-header .checkout-container > .order-table-header-order-number {
  padding-right: 0;
  padding-left: 0;
}

.order-item-name {
  color: #4a545b;
}

.order-detail-content-header {
  margin-top: 1rem;
  font-weight: 700;
}

.order-detail-content-header .order-detail-content-header-cell[class*="col-"]:first-of-type {
  padding-left: 0;
}

.order-detail-content-header .order-detail-content-header-cell[class*="col-"]:last-of-type {
  padding-right: 0;
}

.order-item-product-name {
  color: #3f4c58;
}

.order-item-product-name:hover {
  color: #e30613;
  text-decoration: none;
}

.order-item-product-name strong {
  font-weight: 700;
}

@media (min-width:768px) {
  .order-item-product-image .product-image-link {
    -ms-flex-pack: normal;
    justify-content: normal;
  }

  .order-item-product-image img {
    max-width: 100px;
  }
}

.order-item-number-value {
  font-weight: 700;
}

.order-pseudo-price-value {
  text-decoration: line-through;
}

.order-item-detail-list-item {
  margin: 0;
}

.order-item-detail-list-item.is-child {
  background-color: #f9f9f9;
}

.order-item-nested-icon {
  background-color: #798490;
}

.order-item-detail-footer {
  background-color: #f9f9f9;
}

.order-item-detail-summary dd {
  font-weight: 700;
}

.order-price-unit {
  font-size: .75rem;
}

.order-item-variants {
  font-size: .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;
  }
}

.cart-item {
  margin: 0;
  padding: 20px 0;
  border-bottom: 1px solid #bcc1c7;
}

.cart-item.is-child {
  background-color: #f9f9f9;
}

.cart-item-nested-icon {
  background-color: #798490;
}

.cart-item-img {
  padding: .25rem;
  border: 1px solid #bcc1c7;
  border-radius: 3px;
}

.cart-item-ordernumber {
  margin-bottom: .5rem;
  font-size: .75rem;
}

.cart-item-variants {
  font-size: .75rem;
}

.cart-item-variants-properties-name {
  font-weight: 700;
}

.cart-item-label {
  color: #111;
  font-weight: 700;
}

a.cart-item-label:hover {
  color: #e30613;
  text-decoration: none;
}

.cart-item-quantity-label,
.cart-item-unit-price-label,
.cart-item-total-price-label,
.cart-item-tax-price-label {
  color: #4a545b;
}

@media (min-width:768px) {
  .cart-item {
    padding: 10px 0;
  }

  .cart-item-details-container {
    padding-left: 1rem;
  }
}

.cart-item-characteristics {
  margin: .5rem 0;
  font-size: .75rem;
}

.cart-item-characteristics .cart-item-characteristics-option {
  font-weight: 700;
}

.contact-action {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.newsletter-action {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.elio-country-language-switch-item .top-bar-list-label {
  width: auto;
}

.elio-country-language-switch-item .top-bar-list-item {
  color: #111;
}

.elio-country-language-switch-item .top-bar-list-label.is-checked {
  color: #e30613;
  font-weight: bold;
}

.elio-country-language-switch-item .top-bar-list-label:hover {
  color: #e30613;
  background: transparent;
  text-decoration: none;
}

.elio-country-language-switch-item .top-bar-list-label:hover .top-bar-list-label {
  cursor: pointer;
}

.elio-country-language-switch-item .item-checked span {
  color: #e30613;
}

.top-bar-country-highlighted {
  margin-bottom: 15px;
}

.elio-blog-entry {
  margin-bottom: 30px;
}

.elio-blog-content {
  padding-top: 10px;
  padding-bottom: 20px;
}

.elio-blog-content .cart-item-img {
  margin-bottom: 15px;
}

.elio-blog-content .elio-blog-teaser-text {
  margin-bottom: 20px;
}

@media (min-width:768px) {
  .elio-blog-content {
    padding-top: 20px;
    padding-bottom: 30px;
  }

  .elio-blog-content .cart-item-img {
    max-height: 200px;
    margin-bottom: 0;
  }
}

.col-five {
  position: relative;
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
}

@media (min-width:1025px) {
  .col-five {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}

[class*="cms-block-moorl-grid-layout-"] {
  overflow: visible;
}

.moorl-grid-layout {
  width: 100%;
  display: -ms-grid;
  display: grid;
  grid-gap: 20px;
  grid-template: "a" auto "b" auto "c" auto "d" auto "e" auto "f" auto/1fr;
}

.moorl-grid-layout > div,
.moorl-grid-layout > a {
  box-sizing: border-box;
  height: auto;
  width: 100%;
}

.moorl-grid-layout > div:nth-child(1),
.moorl-grid-layout > a:nth-child(1) {
  grid-area: a;
}

.moorl-grid-layout > div:nth-child(2),
.moorl-grid-layout > a:nth-child(2) {
  grid-area: b;
}

.moorl-grid-layout > div:nth-child(3),
.moorl-grid-layout > a:nth-child(3) {
  grid-area: c;
}

.moorl-grid-layout > div:nth-child(4),
.moorl-grid-layout > a:nth-child(4) {
  grid-area: d;
}

.moorl-grid-layout > div:nth-child(5),
.moorl-grid-layout > a:nth-child(5) {
  grid-area: e;
}

.moorl-grid-layout > div:nth-child(6),
.moorl-grid-layout > a:nth-child(6) {
  grid-area: f;
}

.cms-block-moorl-grid-layout-two .moorl-grid-layout {
  grid-template: "a" auto "c" auto "d" auto "b" auto/1fr;
}

@media (min-width:768px) {
  .cms-block-moorl-grid-layout-one .moorl-grid-layout {
    grid-template: "a a a a" auto "d d d d" auto "b b c c" auto/1fr 1fr 1fr 1fr;
  }

  .cms-block-moorl-grid-layout-two .moorl-grid-layout {
    grid-template: "a b" auto "c b" auto "d b" auto/1fr 1fr;
  }
}

@media (min-width:1025px) {
  .cms-block-moorl-grid-layout-one .moorl-grid-layout {
    grid-template: "a a a b b" auto "c c d d d" auto/1fr 1fr 1fr 1fr 1fr;
  }

  .cms-block-moorl-grid-layout-two .moorl-grid-layout {
    grid-template: "a a b" auto "c d b" auto/1fr 1fr 1fr;
  }

  .cms-block-moorl-grid-layout-three .moorl-grid-layout {
    grid-template: "a c b" auto "a d b" auto/1fr 1fr 1fr;
  }

  .cms-block-moorl-grid-layout-four .moorl-grid-layout {
    grid-template: "a b" auto "c b" auto "c d" auto/1fr 1fr;
  }

  .cms-block-moorl-grid-layout-five .moorl-grid-layout {
    grid-template: "a b" auto "c b" auto/1fr 1fr;
  }

  .cms-block-moorl-grid-layout-six .moorl-grid-layout {
    grid-template: "a b c" auto "a d d" auto/1fr 1fr 1fr;
  }

  .cms-block-moorl-grid-layout-seven .moorl-grid-layout {
    grid-template: "a a b c" auto "a a b c" auto "d d d c" auto/1fr 1fr 1fr 1fr;
  }

  .cms-block-moorl-grid-layout-eight .moorl-grid-layout {
    grid-template: "a b b" auto "a c e" auto "d d e" auto/1fr 1fr 1fr;
  }

  .cms-block-moorl-grid-layout-nine .moorl-grid-layout {
    grid-template: "a b b" auto "a d e" auto "c d e" auto/1fr 1fr 1fr;
  }

  .cms-block-moorl-grid-layout-ten .moorl-grid-layout {
    grid-template: "a b c" auto "a b d" auto "e b d" auto/1fr 1fr 1fr;
  }

  .cms-block-moorl-grid-layout-eleven .moorl-grid-layout {
    grid-template: "a b c" auto "e b d" auto/1fr 1fr 1fr;
  }

  .cms-block-moorl-grid-layout-twelve .moorl-grid-layout {
    grid-template: "a b b b" auto "a c c d" auto "e e e d" auto/1fr 1fr 1fr 1fr;
  }

  .cms-block-moorl-grid-layout-thirteen .moorl-grid-layout {
    grid-template: "b b c c" auto "d a c c" auto/1fr 1fr 1fr 1fr;
  }

  .cms-block-moorl-grid-layout-fourteen .moorl-grid-layout {
    grid-template: "a b" auto "a c" auto/1fr 1fr;
  }

  .cms-block-moorl-grid-layout-fifteen .moorl-grid-layout {
    grid-template: "a b b b" auto "a c d e" auto "f f d e" auto/1fr 1fr 1fr 1fr;
  }
}

.grid-gap-30 .moorl-grid-layout {
  grid-gap: 30px;
}

.grid-gap-25 .moorl-grid-layout {
  grid-gap: 25px;
}

.grid-gap-20 .moorl-grid-layout {
  grid-gap: 20px;
}

.grid-gap-15 .moorl-grid-layout {
  grid-gap: 15px;
}

.grid-gap-10 .moorl-grid-layout {
  grid-gap: 10px;
}

.grid-gap-5 .moorl-grid-layout {
  grid-gap: 5px;
}

.grid-gap-0 .moorl-grid-layout {
  grid-gap: 0px;
}

[class*="cms-block-moorl-column-layout-"] {
  overflow: visible;
}

.moorl-column-layout {
  width: 100%;
  display: -ms-grid;
  display: grid;
  grid-gap: 20px;
  grid-template-columns: 1fr;
}

.moorl-column-layout > a,
.moorl-column-layout > div {
  box-sizing: border-box;
  height: auto;
  width: 100%;
}

.cms-block-moorl-column-layout-nb-1-1 .moorl-column-layout {
  grid-template-columns: 1fr 1fr;
}

.cms-block-moorl-column-layout-nb-1-1-1 .moorl-column-layout {
  grid-template-columns: 1fr 1fr 1fr;
}

@media (min-width:768px) {
  .cms-block-moorl-column-layout-1-1 .moorl-column-layout {
    grid-template-columns: 1fr 1fr;
  }

  .cms-block-moorl-column-layout-1-1-1 .moorl-column-layout {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .cms-block-moorl-column-layout-1-1-1-1 .moorl-column-layout {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .cms-block-moorl-column-layout-1-1-1-1-1 .moorl-column-layout {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }

  .cms-block-moorl-column-layout-2-3 .moorl-column-layout {
    grid-template-columns: 2fr 3fr;
  }

  .cms-block-moorl-column-layout-3-2 .moorl-column-layout {
    grid-template-columns: 3fr 2fr;
  }
}

.grid-gap-30 .moorl-column-layout {
  grid-gap: 30px;
}

.grid-gap-25 .moorl-column-layout {
  grid-gap: 25px;
}

.grid-gap-20 .moorl-column-layout {
  grid-gap: 20px;
}

.grid-gap-15 .moorl-column-layout {
  grid-gap: 15px;
}

.grid-gap-10 .moorl-column-layout {
  grid-gap: 10px;
}

.grid-gap-5 .moorl-column-layout {
  grid-gap: 5px;
}

.grid-gap-0 .moorl-column-layout {
  grid-gap: 0px;
}

.moorl-opening-hours {
  margin: 10px 0;
  font-size: .8em;
}

.moorl-opening-hours .form-row:nth-child(odd) {
  background-color: #ebebeb;
}

.moorl-opening-hours .form-row .moorl-opening-hours-range.closed {
  background-color: #e52427;
  color: #fff;
  font-weight: 700;
  padding: 0 10px;
  border-radius: 3px;
  font-size: .7em;
}

.moorl-opening-hours span:after {
  content: ",";
}

.moorl-opening-hours span:last-child:after {
  content: none;
}

.bg-fixed {
  background-attachment: fixed;
}

.cms-element-image-slider {
  overflow: hidden;
}

.moorl-foundation-hide,
.moorl-animation-hidden {
  opacity: 0;
}

.moorl-animation-processing {
  z-index: 9000;
}

.cms-block.no-gutters,
.cms-block.no-gutters .cms-block.cms-block-container-row {
  overflow: visible;
}

.modal {
  z-index: 1060;
}

.cms-element-moorl-replacer {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: end;
  align-items: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  min-height: 240px;
  height: 100%;
}

.cms-element-moorl-replacer > div {
  padding: 5px;
  font-size: .7em;
  color: #fff;
  font-family: "Courier";
}

.btn-facebook {
  color: #fff;
  background-color: #3c5a99;
  border-color: #3c5a99;
}

.btn-facebook:hover {
  color: #fff;
  background-color: #314a7e;
  border-color: #2e4474;
}

.btn-facebook:focus,
.btn-facebook.focus {
  box-shadow: 0 0 0 .2rem rgba(89, 115, 168, .5);
}

.btn-facebook.disabled,
.btn-facebook:disabled {
  color: #fff;
  background-color: #3c5a99;
  border-color: #3c5a99;
}

.btn-facebook:not(:disabled):not(.disabled):active,
.btn-facebook:not(:disabled):not(.disabled).active,
.show > .btn-facebook.dropdown-toggle {
  color: #fff;
  background-color: #2e4474;
  border-color: #2a3f6b;
}

.btn-facebook:not(:disabled):not(.disabled):active:focus,
.btn-facebook:not(:disabled):not(.disabled).active:focus,
.show > .btn-facebook.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(89, 115, 168, .5);
}

.btn-google {
  color: #fff;
  background-color: #0f9d58;
  border-color: #0f9d58;
}

.btn-google:hover {
  color: #fff;
  background-color: #0c7a44;
  border-color: #0b6e3e;
}

.btn-google:focus,
.btn-google.focus {
  box-shadow: 0 0 0 .2rem rgba(51, 172, 113, .5);
}

.btn-google.disabled,
.btn-google:disabled {
  color: #fff;
  background-color: #0f9d58;
  border-color: #0f9d58;
}

.btn-google:not(:disabled):not(.disabled):active,
.btn-google:not(:disabled):not(.disabled).active,
.show > .btn-google.dropdown-toggle {
  color: #fff;
  background-color: #0b6e3e;
  border-color: #096337;
}

.btn-google:not(:disabled):not(.disabled):active:focus,
.btn-google:not(:disabled):not(.disabled).active:focus,
.show > .btn-google.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(51, 172, 113, .5);
}

.btn-azure {
  color: #fff;
  background-color: #00a4ef;
  border-color: #00a4ef;
}

.btn-azure:hover {
  color: #fff;
  background-color: #008ac9;
  border-color: #0081bc;
}

.btn-azure:focus,
.btn-azure.focus {
  box-shadow: 0 0 0 .2rem rgba(38, 178, 241, .5);
}

.btn-azure.disabled,
.btn-azure:disabled {
  color: #fff;
  background-color: #00a4ef;
  border-color: #00a4ef;
}

.btn-azure:not(:disabled):not(.disabled):active,
.btn-azure:not(:disabled):not(.disabled).active,
.show > .btn-azure.dropdown-toggle {
  color: #fff;
  background-color: #0081bc;
  border-color: #0078af;
}

.btn-azure:not(:disabled):not(.disabled):active:focus,
.btn-azure:not(:disabled):not(.disabled).active:focus,
.show > .btn-azure.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(38, 178, 241, .5);
}

.btn-amazon {
  color: #212529;
  background-color: #f90;
  border-color: #f90;
}

.btn-amazon:hover {
  color: #fff;
  background-color: #d98200;
  border-color: #cc7a00;
}

.btn-amazon:focus,
.btn-amazon.focus {
  box-shadow: 0 0 0 .2rem rgba(222, 136, 6, .5);
}

.btn-amazon.disabled,
.btn-amazon:disabled {
  color: #212529;
  background-color: #f90;
  border-color: #f90;
}

.btn-amazon:not(:disabled):not(.disabled):active,
.btn-amazon:not(:disabled):not(.disabled).active,
.show > .btn-amazon.dropdown-toggle {
  color: #fff;
  background-color: #cc7a00;
  border-color: #bf7300;
}

.btn-amazon:not(:disabled):not(.disabled):active:focus,
.btn-amazon:not(:disabled):not(.disabled).active:focus,
.show > .btn-amazon.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(222, 136, 6, .5);
}

.btn-office365 {
  color: #fff;
  background-color: #00a4ef;
  border-color: #00a4ef;
}

.btn-office365:hover {
  color: #fff;
  background-color: #008ac9;
  border-color: #0081bc;
}

.btn-office365:focus,
.btn-office365.focus {
  box-shadow: 0 0 0 .2rem rgba(38, 178, 241, .5);
}

.btn-office365.disabled,
.btn-office365:disabled {
  color: #fff;
  background-color: #00a4ef;
  border-color: #00a4ef;
}

.btn-office365:not(:disabled):not(.disabled):active,
.btn-office365:not(:disabled):not(.disabled).active,
.show > .btn-office365.dropdown-toggle {
  color: #fff;
  background-color: #0081bc;
  border-color: #0078af;
}

.btn-office365:not(:disabled):not(.disabled):active:focus,
.btn-office365:not(:disabled):not(.disabled).active:focus,
.show > .btn-office365.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(38, 178, 241, .5);
}

.btn-paypal {
  color: #fff;
  background-color: #0173b9;
  border-color: #0173b9;
}

.btn-paypal:hover {
  color: #fff;
  background-color: #015b93;
  border-color: #015386;
}

.btn-paypal:focus,
.btn-paypal.focus {
  box-shadow: 0 0 0 .2rem rgba(39, 136, 196, .5);
}

.btn-paypal.disabled,
.btn-paypal:disabled {
  color: #fff;
  background-color: #0173b9;
  border-color: #0173b9;
}

.btn-paypal:not(:disabled):not(.disabled):active,
.btn-paypal:not(:disabled):not(.disabled).active,
.show > .btn-paypal.dropdown-toggle {
  color: #fff;
  background-color: #015386;
  border-color: #014c7a;
}

.btn-paypal:not(:disabled):not(.disabled):active:focus,
.btn-paypal:not(:disabled):not(.disabled).active:focus,
.show > .btn-paypal.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(39, 136, 196, .5);
}

.btn-generic {
  color: #212529;
  background-color: #efc34a;
  border-color: #efc34a;
}

.btn-generic:hover {
  color: #212529;
  background-color: #ecb727;
  border-color: #ebb31b;
}

.btn-generic:focus,
.btn-generic.focus {
  box-shadow: 0 0 0 .2rem rgba(208, 171, 69, .5);
}

.btn-generic.disabled,
.btn-generic:disabled {
  color: #212529;
  background-color: #efc34a;
  border-color: #efc34a;
}

.btn-generic:not(:disabled):not(.disabled):active,
.btn-generic:not(:disabled):not(.disabled).active,
.show > .btn-generic.dropdown-toggle {
  color: #212529;
  background-color: #ebb31b;
  border-color: #e5ad14;
}

.btn-generic:not(:disabled):not(.disabled):active:focus,
.btn-generic:not(:disabled):not(.disabled).active:focus,
.show > .btn-generic.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(208, 171, 69, .5);
}

.btn-discord {
  color: #fff;
  background-color: #7289da;
  border-color: #7289da;
}

.btn-discord:hover {
  color: #fff;
  background-color: #5470d2;
  border-color: #4a67cf;
}

.btn-discord:focus,
.btn-discord.focus {
  box-shadow: 0 0 0 .2rem rgba(135, 155, 224, .5);
}

.btn-discord.disabled,
.btn-discord:disabled {
  color: #fff;
  background-color: #7289da;
  border-color: #7289da;
}

.btn-discord:not(:disabled):not(.disabled):active,
.btn-discord:not(:disabled):not(.disabled).active,
.show > .btn-discord.dropdown-toggle {
  color: #fff;
  background-color: #4a67cf;
  border-color: #405fcd;
}

.btn-discord:not(:disabled):not(.disabled):active:focus,
.btn-discord:not(:disabled):not(.disabled).active:focus,
.show > .btn-discord.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(135, 155, 224, .5);
}

.btn-twitter {
  color: #212529;
  background-color: #55acee;
  border-color: #55acee;
}

.btn-twitter:hover {
  color: #fff;
  background-color: #329beb;
  border-color: #2795e9;
}

.btn-twitter:focus,
.btn-twitter.focus {
  box-shadow: 0 0 0 .2rem rgba(77, 152, 208, .5);
}

.btn-twitter.disabled,
.btn-twitter:disabled {
  color: #212529;
  background-color: #55acee;
  border-color: #55acee;
}

.btn-twitter:not(:disabled):not(.disabled):active,
.btn-twitter:not(:disabled):not(.disabled).active,
.show > .btn-twitter.dropdown-toggle {
  color: #fff;
  background-color: #2795e9;
  border-color: #1b90e8;
}

.btn-twitter:not(:disabled):not(.disabled):active:focus,
.btn-twitter:not(:disabled):not(.disabled).active:focus,
.show > .btn-twitter.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(77, 152, 208, .5);
}

.btn-instagram {
  color: #212529;
  background-color: #eee;
  border-color: #eee;
}

.btn-instagram:hover {
  color: #212529;
  background-color: #dbdbdb;
  border-color: #d5d5d5;
}

.btn-instagram:focus,
.btn-instagram.focus {
  box-shadow: 0 0 0 .2rem rgba(207, 208, 208, .5);
}

.btn-instagram.disabled,
.btn-instagram:disabled {
  color: #212529;
  background-color: #eee;
  border-color: #eee;
}

.btn-instagram:not(:disabled):not(.disabled):active,
.btn-instagram:not(:disabled):not(.disabled).active,
.show > .btn-instagram.dropdown-toggle {
  color: #212529;
  background-color: #d5d5d5;
  border-color: #cecece;
}

.btn-instagram:not(:disabled):not(.disabled):active:focus,
.btn-instagram:not(:disabled):not(.disabled).active:focus,
.show > .btn-instagram.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(207, 208, 208, .5);
}

.btn-pinterest {
  color: #fff;
  background-color: #bd081c;
  border-color: #bd081c;
}

.btn-pinterest:hover {
  color: #fff;
  background-color: #980617;
  border-color: #8c0615;
}

.btn-pinterest:focus,
.btn-pinterest.focus {
  box-shadow: 0 0 0 .2rem rgba(199, 45, 62, .5);
}

.btn-pinterest.disabled,
.btn-pinterest:disabled {
  color: #fff;
  background-color: #bd081c;
  border-color: #bd081c;
}

.btn-pinterest:not(:disabled):not(.disabled):active,
.btn-pinterest:not(:disabled):not(.disabled).active,
.show > .btn-pinterest.dropdown-toggle {
  color: #fff;
  background-color: #8c0615;
  border-color: #800513;
}

.btn-pinterest:not(:disabled):not(.disabled):active:focus,
.btn-pinterest:not(:disabled):not(.disabled).active:focus,
.show > .btn-pinterest.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(199, 45, 62, .5);
}

.btn-whatsapp {
  color: #fff;
  background-color: #25d366;
  border-color: #25d366;
}

.btn-whatsapp:hover {
  color: #fff;
  background-color: #1fb256;
  border-color: #1da851;
}

.btn-whatsapp:focus,
.btn-whatsapp.focus {
  box-shadow: 0 0 0 .2rem rgba(70, 218, 125, .5);
}

.btn-whatsapp.disabled,
.btn-whatsapp:disabled {
  color: #fff;
  background-color: #25d366;
  border-color: #25d366;
}

.btn-whatsapp:not(:disabled):not(.disabled):active,
.btn-whatsapp:not(:disabled):not(.disabled).active,
.show > .btn-whatsapp.dropdown-toggle {
  color: #fff;
  background-color: #1da851;
  border-color: #1b9d4c;
}

.btn-whatsapp:not(:disabled):not(.disabled):active:focus,
.btn-whatsapp:not(:disabled):not(.disabled).active:focus,
.show > .btn-whatsapp.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(70, 218, 125, .5);
}

.btn-youtube {
  color: #fff;
  background-color: #f00;
  border-color: #f00;
}

.btn-youtube:hover {
  color: #fff;
  background-color: #d90000;
  border-color: #c00;
}

.btn-youtube:focus,
.btn-youtube.focus {
  box-shadow: 0 0 0 .2rem rgba(255, 38, 38, .5);
}

.btn-youtube.disabled,
.btn-youtube:disabled {
  color: #fff;
  background-color: #f00;
  border-color: #f00;
}

.btn-youtube:not(:disabled):not(.disabled):active,
.btn-youtube:not(:disabled):not(.disabled).active,
.show > .btn-youtube.dropdown-toggle {
  color: #fff;
  background-color: #c00;
  border-color: #bf0000;
}

.btn-youtube:not(:disabled):not(.disabled):active:focus,
.btn-youtube:not(:disabled):not(.disabled).active:focus,
.show > .btn-youtube.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(255, 38, 38, .5);
}

.btn-xing {
  color: #fff;
  background-color: #126567;
  border-color: #126567;
}

.btn-xing:hover {
  color: #fff;
  background-color: #0c4546;
  border-color: #0a3a3c;
}

.btn-xing:focus,
.btn-xing.focus {
  box-shadow: 0 0 0 .2rem rgba(54, 124, 126, .5);
}

.btn-xing.disabled,
.btn-xing:disabled {
  color: #fff;
  background-color: #126567;
  border-color: #126567;
}

.btn-xing:not(:disabled):not(.disabled):active,
.btn-xing:not(:disabled):not(.disabled).active,
.show > .btn-xing.dropdown-toggle {
  color: #fff;
  background-color: #0a3a3c;
  border-color: #093031;
}

.btn-xing:not(:disabled):not(.disabled):active:focus,
.btn-xing:not(:disabled):not(.disabled).active:focus,
.show > .btn-xing.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(54, 124, 126, .5);
}

.shac {
  position: relative;
}

.shac-menu {
  margin-top: -1px;
  overflow-y: auto;
  width: 100%;
}

.shac-menu > .key-active > a {
  background-color: #f5f5f5;
}

.shac-menu > .key-active {
  background-color: #f7f8f9;
}

.shac-item {
  cursor: pointer;
  white-space: normal;
}

.mfb-rating {
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flex;
  position: relative;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.mfb-rating input {
  display: none;
}

.mfb-rating input:checked ~ label {
  color: #ffbd5d;
}

.mfb-rating input:checked ~ label::before {
  position: absolute;
  left: 0;
  color: #ffbd5d;
}

.mfb-rating label {
  padding: 0;
  margin: 0;
  font-size: 2em;
  cursor: pointer;
  color: transparent;
  text-shadow: 0 0 0 #bcc1c7;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.mfb-rating label:hover {
  color: transparent !important;
  text-shadow: 0 0 0 #e30613 !important;
}

.mfb-rating label:hover ~ label {
  color: transparent !important;
  text-shadow: 0 0 0 #e30613;
}

.moorl-form-builder-media {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  position: relative;
  text-align: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.moorl-form-builder-media img {
  max-width: 100%;
  max-height: 100px;
}

.moorl-form-builder-media button {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

.moorl-form-builder-media:hover button {
  opacity: 1;
}

.moorl-captcha {
  display: -ms-grid;
  display: grid;
  grid-gap: 10px;
  grid-template-columns: auto;
}

[data-form-repeater] .list-group-item {
  background: transparent;
}

[data-form-repeater] .list-group-item .form-row:last-child .form-group,
[data-form-repeater] .list-group-item .form-row:last-child .hbspt-form .hs-form-booleancheckbox,
.hbspt-form [data-form-repeater] .list-group-item .form-row:last-child .hs-form-booleancheckbox,
[data-form-repeater] .list-group-item .form-row:last-child .hbspt-form .hs-form-field,
.hbspt-form [data-form-repeater] .list-group-item .form-row:last-child .hs-form-field {
  margin-bottom: 0;
}

[data-moorl-form-builder] .form-tooltip {
  font-size: 10px;
  color: #fff;
  background-color: #e30613;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  text-align: center;
  display: inline-block;
  float: right;
  margin-left: 10px;
}

[data-moorl-form-builder] button[type=submit] i {
  display: none;
}

[data-moorl-form-builder] button[type=submit].loading i {
  display: inline-block;
}

.custom-file .custom-file-label::after {
  content: attr(title);
}

.moorl-form-builder-image-selection .custom-control {
  padding-left: 0;
  padding-right: 10px;
  padding-bottom: 10px;
}

.moorl-form-builder-image-selection .custom-control .custom-control-input {
  display: none;
}

.moorl-form-builder-image-selection .custom-control .custom-control-label,
.moorl-form-builder-image-selection .custom-control .hbspt-form .hs-form-radio-display label,
.hbspt-form .hs-form-radio-display .moorl-form-builder-image-selection .custom-control label {
  padding: 5px;
  border-radius: 3px;
  border: 3px solid #bcc1c7;
  -webkit-transition: all .3s;
  transition: all .3s;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  text-align: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.moorl-form-builder-image-selection .custom-control .custom-control-label:before,
.moorl-form-builder-image-selection .custom-control .hbspt-form .hs-form-radio-display label:before,
.hbspt-form .hs-form-radio-display .moorl-form-builder-image-selection .custom-control label:before,
.moorl-form-builder-image-selection .custom-control .custom-control-label:after,
.moorl-form-builder-image-selection .custom-control .hbspt-form .hs-form-radio-display label:after,
.hbspt-form .hs-form-radio-display .moorl-form-builder-image-selection .custom-control label:after {
  content: none;
}

.moorl-form-builder-image-selection .custom-control .custom-control-label img,
.moorl-form-builder-image-selection .custom-control .hbspt-form .hs-form-radio-display label img,
.hbspt-form .hs-form-radio-display .moorl-form-builder-image-selection .custom-control label img {
  max-width: 100%;
  max-height: 100px;
}

.moorl-form-builder-image-selection .custom-control .custom-control-input:checked + .custom-control-label,
.moorl-form-builder-image-selection .custom-control .hbspt-form .hs-form-radio-display .custom-control-input:checked + label,
.hbspt-form .hs-form-radio-display .moorl-form-builder-image-selection .custom-control .custom-control-input:checked + label {
  border: 3px solid #e30613;
}

@media (min-width:576px) {
  .moorl-captcha {
    grid-template-columns: auto auto 1fr;
  }
}

.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: 3px;
  -ms-flex-align: center;
  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;
  -ms-flex-item-align: stretch;
  align-self: stretch;
}

.swag-cms-extensions-quickview-modal .quickview-loading-indicator {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: center;
  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: .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: .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: 3px;
}

#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:1025px) {

  #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:1025px) 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;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.scroll-navigation-sidebar a,
.scroll-navigation-sidebar a:hover {
  text-decoration: none;
  color: #111;
}

.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, .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: #111;
}

.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, .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: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  height: auto;
  max-height: 300px;
  padding: 0 12px;
  line-height: 0;
  overflow-y: auto;
  -ms-flex-direction: column;
  flex-direction: column;
}

.scroll-navigation-sidebar-entry {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  height: 20px;
  padding: 22px 9px;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: start;
  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 #111;
}

.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;
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
  border-radius: 50%;
  background-color: #3f4c58;
  z-index: 6;
}

.scroll-navigation-sidebar-entry--active > .scroll-navigation-sidebar-entry-bullet {
  background-color: #e30613;
  -ms-transform: scale(2);
  -webkit-transform: scale(2);
  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: #e30613;
  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;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #fff;
    box-shadow: 0 0 10px 0 rgba(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: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    height: auto;
    width: 77px;
    padding: 12px;
    margin-left: -4px;
    line-height: 0;
    -ms-flex-direction: column;
    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: 3px;
  }

  .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, .15);
    pointer-events: none;
    -webkit-transition: all .2s ease-out;
    transition: all .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;
  }
}

.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.noUi-target {
  position: relative;
}

.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.noUi-connects {
  overflow: hidden;
  z-index: 0;
}

.noUi-connect,
.noUi-origin {
  will-change: -ms-transform;
  will-change: -webkit-transform;
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -webkit-transform-style: preserve-3d;
  transform-origin: 0 0;
  transform-style: flat;
}

.noUi-connect {
  height: 100%;
  width: 100%;
}

.noUi-origin {
  height: 10%;
  width: 10%;
}

.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
  left: 0;
  right: auto;
}

.noUi-vertical .noUi-origin {
  width: 0;
}

.noUi-horizontal .noUi-origin {
  height: 0;
}

.noUi-handle {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
}

.noUi-touch-area {
  height: 100%;
  width: 100%;
}

.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  -webkit-transition: -ms-transform .3s;
  -webkit-transition: -webkit-transform .3s;
  -webkit-transition: transform .3s;
  transition: -ms-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
}

.noUi-state-drag * {
  cursor: inherit !important;
}

.noUi-horizontal {
  height: 18px;
}

.noUi-horizontal .noUi-handle {
  width: 34px;
  height: 28px;
  right: -17px;
  top: -6px;
}

.noUi-vertical {
  width: 18px;
}

.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  right: -6px;
  top: -17px;
}

.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
  left: -17px;
  right: auto;
}

.noUi-target {
  background: #fafafa;
  border-radius: 4px;
  border: 1px solid #d3d3d3;
  box-shadow: inset 0 1px 1px #f0f0f0, 0 3px 6px -5px #bbb;
}

.noUi-connects {
  border-radius: 3px;
}

.noUi-connect {
  background: #3fb8af;
}

.noUi-draggable {
  cursor: ew-resize;
}

.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}

.noUi-handle {
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  background: #fff;
  cursor: default;
  box-shadow: inset 0 0 1px #fff, inset 0 1px 7px #ebebeb, 0 3px 6px -3px #bbb;
}

.noUi-active {
  box-shadow: inset 0 0 1px #fff, inset 0 1px 7px #ddd, 0 3px 6px -3px #bbb;
}

.noUi-handle:before,
.noUi-handle:after {
  content: "";
  display: block;
  position: absolute;
  height: 14px;
  width: 1px;
  background: #e8e7e6;
  left: 14px;
  top: 6px;
}

.noUi-handle:after {
  left: 17px;
}

.noUi-vertical .noUi-handle:before,
.noUi-vertical .noUi-handle:after {
  width: 14px;
  height: 1px;
  left: 6px;
  top: 14px;
}

.noUi-vertical .noUi-handle:after {
  top: 17px;
}

[disabled] .noUi-connect {
  background: #b8b8b8;
}

[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
  cursor: not-allowed;
}

.noUi-pips,
.noUi-pips * {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.noUi-pips {
  position: absolute;
  color: #999;
}

.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center;
}

.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}

.noUi-marker {
  position: absolute;
  background: #ccc;
}

.noUi-marker-sub {
  background: #aaa;
}

.noUi-marker-large {
  background: #aaa;
}

.noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%;
}

.noUi-value-horizontal {
  -webkit-transform: translate(-50%, 50%);
  -ms-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
}

.noUi-rtl .noUi-value-horizontal {
  -webkit-transform: translate(50%, 50%);
  -ms-transform: translate(50%, 50%);
  transform: translate(50%, 50%);
}

.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px;
}

.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}

.noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}

.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%;
}

.noUi-value-vertical {
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding-left: 25px;
}

.noUi-rtl .noUi-value-vertical {
  -webkit-transform: translate(0, 50%);
  -ms-transform: translate(0, 50%);
  transform: translate(0, 50%);
}

.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}

.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;

}

.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}

.noUi-tooltip {
  display: block;
  position: absolute;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  background: #fff;
  color: #000;
  padding: 5px;
  text-align: center;
  white-space: nowrap;
}

.noUi-horizontal .noUi-tooltip {
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  left: 50%;
  bottom: 120%;
}

.noUi-vertical .noUi-tooltip {
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  top: 50%;
  right: 120%;
}

.noUi-horizontal .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(50%, 0);
  -ms-transform: translate(50%, 0);
  transform: translate(50%, 0);
  left: auto;
  bottom: 10px;
}

.noUi-vertical .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(0, -18px);
  -ms-transform: translate(0, -18px);
  transform: translate(0, -18px);
  top: auto;
  right: 28px;
}

.noUi-base,
.noUi-connects {
  z-index: inherit;
}

.noUi-marker-normal {
  display: none;
}

.noUi-connects {
  background: #999;
}

.noUi-connect {
  background: #e30613;
}

.noUi-handle {
  z-index: 2;
  width: 24px;
  height: 24px;
  border: 1px solid #fff;
  background-color: #e30613;
  box-shadow: 1px 1px 1px #999;
  background-repeat: no-repeat;
  color: #fff;
}

.noUi-handle.noUi-handle-upper:before {
  content: "‹";
  left: calc(50% - 6px);
}

.noUi-handle.noUi-handle-lower:before {
  content: "›";
  left: calc(50% - 5px);
}

.noUi-handle:before {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  top: 0px;
  width: 0px;
  height: 100%;
  font-size: 30px;
  font-weight: bold;
  background: #e30613;
}

.noUi-handle:after {
  width: 0px;
}

.noUi-marker-horizontal.noUi-marker {
  width: 1px;
}

.noUi-marker-horizontal.noUi-marker-large {
  height: 16px;
  top: 0px;
  z-index: 1;
  background: white;
}

.noUi-pips {
  top: 0px;
}

.noUi-tooltip {
  color: white;
  background: #e30613;
}

.icon-filter-panel-item-toggle {
  pointer-events: none;
}

.filter-range .filter-panel-item-dropdown .filter-range-container {
  padding: 48px 10px 48px 10px;
}

.filter-range .filter-panel-item-dropdown .filter-range-container .commit-btn {
  margin-top: 3em;
}

.header-comparison .header-compare-title {
  font-weight: 600;
  color: rgba(0, 0, 0, .64);
  font-size: 12px;
  margin-left: -15px;
  display: none;
}

.header-comparison .header-compare-btn {
  overflow: visible;
  padding-right: 0px;
}

.header-comparison .header-compare-icon {
  position: relative;
}

.header-comparison .header-compare-badge {
  top: -10px;
  right: 10px;
}

.product-comparison-content .product-detail-tabs-content {
  display: unset;
}

.product-in-comparison {
  font-weight: bold;
  color: red;
}

.product-comparison-table-wrapper {
  overflow-y: auto;
}

.product-comparison-table-wrapper .table {
  max-height: 80vh;
  font-size: .8rem;
  border-collapse: separate;
  border-spacing: 0px;
}

.product-comparison-table-wrapper .table .mask-cell,
.product-comparison-table-wrapper .table .mask-cell-combi {
  left: 0px;
  z-index: 1201;
}

.product-comparison-table-wrapper .table .mask-cell:after {
  border-color: white;
}

.product-comparison-table-wrapper .table .comparison-type,
.product-comparison-table-wrapper .table .comparison-type ~ td {
  border-right: 0px;
}

.product-comparison-table-wrapper .table .comparison-type {
  font-size: 1.5rem;
  color: grey;
}

.product-comparison-table-wrapper .table .comparison-type,
.product-comparison-table-wrapper .table .compare-header .comparison-type {
  background: #f6f6f6;
}

.product-comparison-table-wrapper .table .mask-cell-combi {
  background: #f6f6f6;
}

.product-comparison-table-wrapper .table .mask-cell-combi:nth-of-type(2) {
  top: 76px;
}

.product-comparison-table-wrapper .table .mask-cell-combi:after {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  height: 100%;
  border-right: 1px solid #f6f6f6;
}

.product-comparison-table-wrapper .table .border-bottom-bold {
  border-bottom: 2px solid #bcc1c7;
}

.product-comparison-table-wrapper .table tr.border-bottom td {
  border-bottom: 1px solid #bcc1c7;
}

.product-comparison-table-wrapper .table tr td {
  border-right: 0px;
}

.product-comparison-table-wrapper .table th,
.product-comparison-table-wrapper .table td {
  width: 160px;
  max-width: 160px;
  min-width: 160px;
}

.product-comparison-table-wrapper .table-style tr:first-of-type,
.product-comparison-table-wrapper table tr:first-of-type {
  border-bottom: none;
}

.compare-feature th.sticky-top,
.compare-feature .offcanvas th.offcanvas-footer,
.offcanvas .compare-feature th.offcanvas-footer,
.compare-feature th.header-main,
.compare-feature th.nav-main {
  background: white;
  border-top: 0px;
  z-index: 2;
}

.compare-feature .d-md-table-cell {
  position: -webkit-sticky;
  position: sticky;
  left: 0px;
  background-color: white;
  z-index: 1200;
}

.compare-feature .d-md-table-cell:after {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  height: 100%;
  border-right: 1px solid grey;
}

.product-box-compare-icon,
.product-detail-compare-icon {
  -webkit-filter: invert(20%) sepia(100%) saturate(5861%) hue-rotate(350deg) brightness(86%) contrast(109%);
  filter: invert(20%) sepia(100%) saturate(5861%) hue-rotate(350deg) brightness(86%) contrast(109%);
}

.product-box-compare-icon .comparison-icon,
.product-detail-compare-icon .comparison-icon {
  width: 20px;
}

.product-in-comparison .product-box-compare-title,
.product-in-comparison .product-detail-compare-title {
  font-weight: 900;
}

.product-box-compare-title {
  color: #e30613;
  font-size: 12px;
  font-weight: 600;
}

.sticky-actions .header-comparison {
  width: 55px;
}

.product-detail-comparison .product-compare-btn {
  color: #e30613;
  font-size: .9375rem;
  font-weight: normal;
}

.product-detail-comparison .product-compare-btn:focus {
  box-shadow: none;
}

.compare-remove-product {
  line-height: 30px;
  padding: 0px 5px;
}

.product-comparison-table-wrapper .detail-image {
  min-height: 100px;
}

.product-comparison-table-wrapper .detail-link .product-name,
.product-comparison-table-wrapper .detail-link .product-detail-name {
  display: block;
  line-clamp: unset;
  height: auto;
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 90%;
  white-space: nowrap;
}

.product-comparison-table-wrapper .detail-link .product-name {
  font-size: 1.5rem;
  line-height: 24px;
  color: #e30613;
}

.product-comparison-table-wrapper h2.product-detail-name {
  font-size: 1.5rem;
  margin-bottom: 0px;
}

.product-comparison-table-wrapper h3.product-detail-name {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.product-comparison-table-wrapper .product-delivery-information {
  margin-bottom: 0px;
  height: 40px;
}

.compare-feature-header.compare-feature-header-main,
.compare-feature-header.compare-feature-header-aside {
  background: #e30613;
  color: white;
}

.compare-feature-header.compare-feature-header-main,
.compare-header.compare-feature-header-main {
  border-top: 4px solid grey;
}

.compare-feature .header-table-comparison,
.compare-feature-header {
  background: #ddd;
  color: #111;
  font-weight: 600;
}

.compare-header .sticky-left,
.compare-feature-header .sticky-left {
  position: -webkit-sticky;
  position: sticky;
  left: 0px;
  background-color: white;
  z-index: 1200;
}

.compare-feature-header .sticky-left:before {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  height: 100%;
  border-right: 1px solid grey;
  width: calc(100% - 1px);
  background: #ddd;
  z-index: -1;
}

.compare-feature-header.level-1 {
  background: #f6f6f6;
}

.compare-feature-header-main .sticky-left,
.compare-feature-header-aside .sticky-left {
  color: white;
}

.compare-feature-header-main .sticky-left:before,
.compare-feature-header-aside .sticky-left:before {
  background: #e30613;
  border-right: 1px solid #e30613;
}

.compare-header.compare-header-main,
.compare-header.compare-header-aside {
  border-bottom: 0px;
}

.sideArticleBox,
.compare-feature-element.sideArticle {
  top: 76px;
  border-bottom: 2px solid #bcc1c7 !important;
}

.compare-feature-element {
  background: #fff;
}

.compare-feature-element .product-detail-name {
  line-height: 1.8;
  font-size: .8rem;
  height: auto;
}

.compare-feature-element .product-detail-name.product-name {
  color: #e30613;
}

.compare-feature-element.compared {
  background: #ffffe0;
}

.compare-header-table-radio-group {
  padding: 2px;
  margin: 5px;
  text-align: center;
}

.compare-radio-label {
  margin: 7px;
}

@media (min-width:768px) {
  .compare-feature-element .product-detail-name {
    font-size: 1rem;
  }

  .header-comparison .header-compare-title {
    display: inline;
  }

  .compare-header .detail-link .product-name {
    max-width: 280px;
  }

  .product-comparison-table-wrapper .table {
    font-size: 1rem;
  }

  .product-comparison-table-wrapper .table th,
  .product-comparison-table-wrapper .table td {
    width: 280px;
    max-width: 280px;
    min-width: 280px;
  }
}

.product-comparison-table-wrapper .product-detail-tab-navigation .nav-link.active,
.product-comparison-table-wrapper .is-act-search .card-tabs .nav-link.active,
.is-act-search .product-comparison-table-wrapper .card-tabs .nav-link.active {
  background: #e30613;
  color: white;
}

.product-comparison-table-wrapper .wishlist-hide-text {
  display: none;
}

.product-comparison-table-wrapper .watchlist-listing-link {
  margin-right: 0px;
  width: 14px;
}

.product-comparison-table-wrapper .watchlist-listing-link img {
  -webkit-filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(100deg) brightness(200%) contrast(100%);
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(100deg) brightness(200%) contrast(100%);
}

.product-comparison-table-wrapper .detail-image .gallery-slider-thumbnails-image {
  max-height: 120px;
  padding: 15px;
  padding-left: 25px;
}

.product-comparison-table-wrapper .detail-link .product-name,
.product-comparison-table-wrapper .detail-link .product-detail-name {
  margin-bottom: 0px;
}

.product-comparison-table-wrapper .detail-link .product-detail-name {
  font-size: 1rem;
}

.product-comparison-table-wrapper .product-detail-price {
  font-size: inherit;
  font-weight: normal;
}

.compare-modal .modal-dialog {
  max-width: 95%;
}

.btn-buy img.basket-comparison-added {
  width: 21px;
}

.product-comparison-tabs .product-detail-tab-navigation .nav-link.active,
.product-comparison-tabs .is-act-search .card-tabs .nav-link.active,
.is-act-search .product-comparison-tabs .card-tabs .nav-link.active {
  background: #e30613;
  color: white;
}

@media only screen and (min-width:576px) {
  .js-pseudo-modal .compare-modal .modal-dialog {
    max-width: 95%;
  }
}

.unzer-payment-device {
  border: 1px solid #d4e2e2;
  border-radius: 2px;
  margin: 8px;
  padding: 10px;
  width: 31%;
  float: left;
}

.unzer-payment-base-body {
  display: block;
}

.unzer-payment-device-actions {
  margin-top: 8px;
}

.unzer-payment-base {
  margin-bottom: 32px;
}

.unzer-payment-base.has-margin-top {
  margin-top: 32px;
}

.unzer-payment-frame-row {
  margin-bottom: 16px;
}

.unzer-payment-error {
  color: #f27f7f;
}

.unzer-payment-text-input {
  height: 34px;
}

.unzer-payment-saved-cards-wrapper {
  margin-bottom: 24px;
}

.unzer-payment-date-input {
  width: 33%;
}

#unzer-payment-credit-card-icon {
  float: left;
}

#unzer-payment-credit-card-number-input {
  width: 90%;
  display: inline-block;
  margin-left: 8px;
}

.unzer-payment-loader {
  height: 64px;
}

.unzer-payment-sepa-wrapper-elements {
  margin-top: 20px;
  padding: 10px;
}

.unzerUI.left.icon.input {
  height: unset;
}

.unzer-payment-birthday .unzer-payment-birthday-error {
  display: none;
}

.unzer-payment-birthday.error .unzer-payment-label {
  color: #d0021b;
}

.unzer-payment-birthday.error .unzer-payment-date-input {
  border-color: #d0021b;
  background: #fff6f6;
}

.unzer-payment-birthday.error .unzer-payment-birthday-error {
  color: #d0021b;
  display: inline-block;
}

.unzerChoices {
  width: 100%;
}

.unzer-payment-transfer-information-wrapper {
  margin: 20px;
}

.unzer-payment-sepa-mandate-container {
  border: 1px solid #d4e2e2;
  padding: 16px;
  margin-top: 16px;
}

.unzer-payment-sepa-mandate-content {
  border-bottom: 1px solid #d4e2e2;
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.el-category-teaser {
  width: 100%;
}

.el-category-teaser-item {
  background: #f6f6f6;
  margin-top: 10px;
}

.el-category-teaser-wrap {
  margin-bottom: 30px;
}

.el-category-teaser-wrap .card-footer {
  background: transparent;
}

.el-category-teaser-wrap .card-footer .card-link {
  color: #e30613;
  font-weight: bold;
  text-align: center;
  padding-bottom: 15px;
}

.el-category-teaser-wrap .card-footer .card-link::before {
  content: "> ";
}

.el-category-teaser-wrap .card-body {
  padding-bottom: 15px;
}

.el-category-teaser-wrap .el-category-teaser__inner-description {
  padding: 15px;
  margin-bottom: 0;
}

.flag-link {
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flex;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0 6px;
  width: 22px;
}

.flags {
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.flags:last-child {
  border-bottom: none;
}

.fa,
.fas,
.far,
.fal,
.fad,
.fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.fa-lg {
  font-size: 1.3333333333em;
  line-height: .75em;
  vertical-align: -.0667em;
}

.fa-xs {
  font-size: .75em;
}

.fa-sm {
  font-size: .875em;
}

.fa-1x {
  font-size: 1em;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-6x {
  font-size: 6em;
}

.fa-7x {
  font-size: 7em;
}

.fa-8x {
  font-size: 8em;
}

.fa-9x {
  font-size: 9em;
}

.fa-10x {
  font-size: 10em;
}

.fa-fw {
  text-align: center;
  width: 1.25em;
}

.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0;
}

.fa-ul > li {
  position: relative;
}

.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit;
}

.fa-border {
  border: solid .08em #eee;
  border-radius: .1em;
  padding: .2em .25em .15em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left,
.fas.fa-pull-left,
.far.fa-pull-left,
.fal.fa-pull-left,
.fab.fa-pull-left {
  margin-right: .3em;
}

.fa.fa-pull-right,
.fas.fa-pull-right,
.far.fa-pull-right,
.fal.fa-pull-right,
.fab.fa-pull-right {
  margin-left: .3em;
}

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
  0% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes fa-spin {
  0% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -ms-transform: rotate(270deg);
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -ms-transform: scale(-1, 1);
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -ms-transform: scale(1, -1);
  -webkit-transform: scale(1, -1);
  transform: scale(1, -1);
}

.fa-flip-both,
.fa-flip-horizontal.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -ms-transform: scale(-1, -1);
  -webkit-transform: scale(-1, -1);
  transform: scale(-1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-flip-both {
  -webkit-filter: none;
  filter: none;
}

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em;
}

.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

.fa-500px:before {
  content: "";
}

.fa-accessible-icon:before {
  content: "";
}

.fa-accusoft:before {
  content: "";
}

.fa-acquisitions-incorporated:before {
  content: "";
}

.fa-ad:before {
  content: "";
}

.fa-address-book:before {
  content: "";
}

.fa-address-card:before {
  content: "";
}

.fa-adjust:before {
  content: "";
}

.fa-adn:before {
  content: "";
}

.fa-adobe:before {
  content: "";
}

.fa-adversal:before {
  content: "";
}

.fa-affiliatetheme:before {
  content: "";
}

.fa-air-freshener:before {
  content: "";
}

.fa-airbnb:before {
  content: "";
}

.fa-algolia:before {
  content: "";
}

.fa-align-center:before {
  content: "";
}

.fa-align-justify:before {
  content: "";
}

.fa-align-left:before {
  content: "";
}

.fa-align-right:before {
  content: "";
}

.fa-alipay:before {
  content: "";
}

.fa-allergies:before {
  content: "";
}

.fa-amazon:before {
  content: "";
}

.fa-amazon-pay:before {
  content: "";
}

.fa-ambulance:before {
  content: "";
}

.fa-american-sign-language-interpreting:before {
  content: "";
}

.fa-amilia:before {
  content: "";
}

.fa-anchor:before {
  content: "";
}

.fa-android:before {
  content: "";
}

.fa-angellist:before {
  content: "";
}

.fa-angle-double-down:before {
  content: "";
}

.fa-angle-double-left:before {
  content: "";
}

.fa-angle-double-right:before {
  content: "";
}

.fa-angle-double-up:before {
  content: "";
}

.fa-angle-down:before {
  content: "";
}

.fa-angle-left:before {
  content: "";
}

.fa-angle-right:before {
  content: "";
}

.fa-angle-up:before {
  content: "";
}

.fa-angry:before {
  content: "";
}

.fa-angrycreative:before {
  content: "";
}

.fa-angular:before {
  content: "";
}

.fa-ankh:before {
  content: "";
}

.fa-app-store:before {
  content: "";
}

.fa-app-store-ios:before {
  content: "";
}

.fa-apper:before {
  content: "";
}

.fa-apple:before {
  content: "";
}

.fa-apple-alt:before {
  content: "";
}

.fa-apple-pay:before {
  content: "";
}

.fa-archive:before {
  content: "";
}

.fa-archway:before {
  content: "";
}

.fa-arrow-alt-circle-down:before {
  content: "";
}

.fa-arrow-alt-circle-left:before {
  content: "";
}

.fa-arrow-alt-circle-right:before {
  content: "";
}

.fa-arrow-alt-circle-up:before {
  content: "";
}

.fa-arrow-circle-down:before {
  content: "";
}

.fa-arrow-circle-left:before {
  content: "";
}

.fa-arrow-circle-right:before {
  content: "";
}

.fa-arrow-circle-up:before {
  content: "";
}

.fa-arrow-down:before {
  content: "";
}

.fa-arrow-left:before {
  content: "";
}

.fa-arrow-right:before {
  content: "";
}

.fa-arrow-up:before {
  content: "";
}

.fa-arrows-alt:before {
  content: "";
}

.fa-arrows-alt-h:before {
  content: "";
}

.fa-arrows-alt-v:before {
  content: "";
}

.fa-artstation:before {
  content: "";
}

.fa-assistive-listening-systems:before {
  content: "";
}

.fa-asterisk:before {
  content: "";
}

.fa-asymmetrik:before {
  content: "";
}

.fa-at:before {
  content: "";
}

.fa-atlas:before {
  content: "";
}

.fa-atlassian:before {
  content: "";
}

.fa-atom:before {
  content: "";
}

.fa-audible:before {
  content: "";
}

.fa-audio-description:before {
  content: "";
}

.fa-autoprefixer:before {
  content: "";
}

.fa-avianex:before {
  content: "";
}

.fa-aviato:before {
  content: "";
}

.fa-award:before {
  content: "";
}

.fa-aws:before {
  content: "";
}

.fa-baby:before {
  content: "";
}

.fa-baby-carriage:before {
  content: "";
}

.fa-backspace:before {
  content: "";
}

.fa-backward:before {
  content: "";
}

.fa-bacon:before {
  content: "";
}

.fa-bahai:before {
  content: "";
}

.fa-balance-scale:before {
  content: "";
}

.fa-balance-scale-left:before {
  content: "";
}

.fa-balance-scale-right:before {
  content: "";
}

.fa-ban:before {
  content: "";
}

.fa-band-aid:before {
  content: "";
}

.fa-bandcamp:before {
  content: "";
}

.fa-barcode:before {
  content: "";
}

.fa-bars:before {
  content: "";
}

.fa-baseball-ball:before {
  content: "";
}

.fa-basketball-ball:before {
  content: "";
}

.fa-bath:before {
  content: "";
}

.fa-battery-empty:before {
  content: "";
}

.fa-battery-full:before {
  content: "";
}

.fa-battery-half:before {
  content: "";
}

.fa-battery-quarter:before {
  content: "";
}

.fa-battery-three-quarters:before {
  content: "";
}

.fa-battle-net:before {
  content: "";
}

.fa-bed:before {
  content: "";
}

.fa-beer:before {
  content: "";
}

.fa-behance:before {
  content: "";
}

.fa-behance-square:before {
  content: "";
}

.fa-bell:before {
  content: "";
}

.fa-bell-slash:before {
  content: "";
}

.fa-bezier-curve:before {
  content: "";
}

.fa-bible:before {
  content: "";
}

.fa-bicycle:before {
  content: "";
}

.fa-biking:before {
  content: "";
}

.fa-bimobject:before {
  content: "";
}

.fa-binoculars:before {
  content: "";
}

.fa-biohazard:before {
  content: "";
}

.fa-birthday-cake:before {
  content: "";
}

.fa-bitbucket:before {
  content: "";
}

.fa-bitcoin:before {
  content: "";
}

.fa-bity:before {
  content: "";
}

.fa-black-tie:before {
  content: "";
}

.fa-blackberry:before {
  content: "";
}

.fa-blender:before {
  content: "";
}

.fa-blender-phone:before {
  content: "";
}

.fa-blind:before {
  content: "";
}

.fa-blog:before {
  content: "";
}

.fa-blogger:before {
  content: "";
}

.fa-blogger-b:before {
  content: "";
}

.fa-bluetooth:before {
  content: "";
}

.fa-bluetooth-b:before {
  content: "";
}

.fa-bold:before {
  content: "";
}

.fa-bolt:before {
  content: "";
}

.fa-bomb:before {
  content: "";
}

.fa-bone:before {
  content: "";
}

.fa-bong:before {
  content: "";
}

.fa-book:before {
  content: "";
}

.fa-book-dead:before {
  content: "";
}

.fa-book-medical:before {
  content: "";
}

.fa-book-open:before {
  content: "";
}

.fa-book-reader:before {
  content: "";
}

.fa-bookmark:before {
  content: "";
}

.fa-bootstrap:before {
  content: "";
}

.fa-border-all:before {
  content: "";
}

.fa-border-none:before {
  content: "";
}

.fa-border-style:before {
  content: "";
}

.fa-bowling-ball:before {
  content: "";
}

.fa-box:before {
  content: "";
}

.fa-box-open:before {
  content: "";
}

.fa-box-tissue:before {
  content: "拏";
}

.fa-boxes:before {
  content: "";
}

.fa-braille:before {
  content: "";
}

.fa-brain:before {
  content: "";
}

.fa-bread-slice:before {
  content: "";
}

.fa-briefcase:before {
  content: "";
}

.fa-briefcase-medical:before {
  content: "";
}

.fa-broadcast-tower:before {
  content: "";
}

.fa-broom:before {
  content: "";
}

.fa-brush:before {
  content: "";
}

.fa-btc:before {
  content: "";
}

.fa-buffer:before {
  content: "";
}

.fa-bug:before {
  content: "";
}

.fa-building:before {
  content: "";
}

.fa-bullhorn:before {
  content: "";
}

.fa-bullseye:before {
  content: "";
}

.fa-burn:before {
  content: "";
}

.fa-buromobelexperte:before {
  content: "";
}

.fa-bus:before {
  content: "";
}

.fa-bus-alt:before {
  content: "";
}

.fa-business-time:before {
  content: "";
}

.fa-buy-n-large:before {
  content: "";
}

.fa-buysellads:before {
  content: "";
}

.fa-calculator:before {
  content: "";
}

.fa-calendar:before {
  content: "";
}

.fa-calendar-alt:before {
  content: "";
}

.fa-calendar-check:before {
  content: "";
}

.fa-calendar-day:before {
  content: "";
}

.fa-calendar-minus:before {
  content: "";
}

.fa-calendar-plus:before {
  content: "";
}

.fa-calendar-times:before {
  content: "";
}

.fa-calendar-week:before {
  content: "";
}

.fa-camera:before {
  content: "";
}

.fa-camera-retro:before {
  content: "";
}

.fa-campground:before {
  content: "";
}

.fa-canadian-maple-leaf:before {
  content: "";
}

.fa-candy-cane:before {
  content: "";
}

.fa-cannabis:before {
  content: "";
}

.fa-capsules:before {
  content: "";
}

.fa-car:before {
  content: "";
}

.fa-car-alt:before {
  content: "";
}

.fa-car-battery:before {
  content: "";
}

.fa-car-crash:before {
  content: "";
}

.fa-car-side:before {
  content: "";
}

.fa-caravan:before {
  content: "";
}

.fa-caret-down:before {
  content: "";
}

.fa-caret-left:before {
  content: "";
}

.fa-caret-right:before {
  content: "";
}

.fa-caret-square-down:before {
  content: "";
}

.fa-caret-square-left:before {
  content: "";
}

.fa-caret-square-right:before {
  content: "";
}

.fa-caret-square-up:before {
  content: "";
}

.fa-caret-up:before {
  content: "";
}

.fa-carrot:before {
  content: "";
}

.fa-cart-arrow-down:before {
  content: "";
}

.fa-cart-plus:before {
  content: "";
}

.fa-cash-register:before {
  content: "";
}

.fa-cat:before {
  content: "";
}

.fa-cc-amazon-pay:before {
  content: "";
}

.fa-cc-amex:before {
  content: "";
}

.fa-cc-apple-pay:before {
  content: "";
}

.fa-cc-diners-club:before {
  content: "";
}

.fa-cc-discover:before {
  content: "";
}

.fa-cc-jcb:before {
  content: "";
}

.fa-cc-mastercard:before {
  content: "";
}

.fa-cc-paypal:before {
  content: "";
}

.fa-cc-stripe:before {
  content: "";
}

.fa-cc-visa:before {
  content: "";
}

.fa-centercode:before {
  content: "";
}

.fa-centos:before {
  content: "";
}

.fa-certificate:before {
  content: "";
}

.fa-chair:before {
  content: "";
}

.fa-chalkboard:before {
  content: "";
}

.fa-chalkboard-teacher:before {
  content: "";
}

.fa-charging-station:before {
  content: "";
}

.fa-chart-area:before {
  content: "";
}

.fa-chart-bar:before {
  content: "";
}

.fa-chart-line:before {
  content: "";
}

.fa-chart-pie:before {
  content: "";
}

.fa-check:before {
  content: "";
}

.fa-check-circle:before {
  content: "";
}

.fa-check-double:before {
  content: "";
}

.fa-check-square:before {
  content: "";
}

.fa-cheese:before {
  content: "";
}

.fa-chess:before {
  content: "";
}

.fa-chess-bishop:before {
  content: "";
}

.fa-chess-board:before {
  content: "";
}

.fa-chess-king:before {
  content: "";
}

.fa-chess-knight:before {
  content: "";
}

.fa-chess-pawn:before {
  content: "";
}

.fa-chess-queen:before {
  content: "";
}

.fa-chess-rook:before {
  content: "";
}

.fa-chevron-circle-down:before {
  content: "";
}

.fa-chevron-circle-left:before {
  content: "";
}

.fa-chevron-circle-right:before {
  content: "";
}

.fa-chevron-circle-up:before {
  content: "";
}

.fa-chevron-down:before {
  content: "";
}

.fa-chevron-left:before {
  content: "";
}

.fa-chevron-right:before {
  content: "";
}

.fa-chevron-up:before {
  content: "";
}

.fa-child:before {
  content: "";
}

.fa-chrome:before {
  content: "";
}

.fa-chromecast:before {
  content: "";
}

.fa-church:before {
  content: "";
}

.fa-circle:before {
  content: "";
}

.fa-circle-notch:before {
  content: "";
}

.fa-city:before {
  content: "";
}

.fa-clinic-medical:before {
  content: "";
}

.fa-clipboard:before {
  content: "";
}

.fa-clipboard-check:before {
  content: "";
}

.fa-clipboard-list:before {
  content: "";
}

.fa-clock:before {
  content: "";
}

.fa-clone:before {
  content: "";
}

.fa-closed-captioning:before {
  content: "";
}

.fa-cloud:before {
  content: "";
}

.fa-cloud-download-alt:before {
  content: "";
}

.fa-cloud-meatball:before {
  content: "";
}

.fa-cloud-moon:before {
  content: "";
}

.fa-cloud-moon-rain:before {
  content: "";
}

.fa-cloud-rain:before {
  content: "";
}

.fa-cloud-showers-heavy:before {
  content: "";
}

.fa-cloud-sun:before {
  content: "";
}

.fa-cloud-sun-rain:before {
  content: "";
}

.fa-cloud-upload-alt:before {
  content: "";
}

.fa-cloudscale:before {
  content: "";
}

.fa-cloudsmith:before {
  content: "";
}

.fa-cloudversify:before {
  content: "";
}

.fa-cocktail:before {
  content: "";
}

.fa-code:before {
  content: "";
}

.fa-code-branch:before {
  content: "";
}

.fa-codepen:before {
  content: "";
}

.fa-codiepie:before {
  content: "";
}

.fa-coffee:before {
  content: "";
}

.fa-cog:before {
  content: "";
}

.fa-cogs:before {
  content: "";
}

.fa-coins:before {
  content: "";
}

.fa-columns:before {
  content: "";
}

.fa-comment:before {
  content: "";
}

.fa-comment-alt:before {
  content: "";
}

.fa-comment-dollar:before {
  content: "";
}

.fa-comment-dots:before {
  content: "";
}

.fa-comment-medical:before {
  content: "";
}

.fa-comment-slash:before {
  content: "";
}

.fa-comments:before {
  content: "";
}

.fa-comments-dollar:before {
  content: "";
}

.fa-compact-disc:before {
  content: "";
}

.fa-compass:before {
  content: "";
}

.fa-compress:before {
  content: "";
}

.fa-compress-alt:before {
  content: "";
}

.fa-compress-arrows-alt:before {
  content: "";
}

.fa-concierge-bell:before {
  content: "";
}

.fa-confluence:before {
  content: "";
}

.fa-connectdevelop:before {
  content: "";
}

.fa-contao:before {
  content: "";
}

.fa-cookie:before {
  content: "";
}

.fa-cookie-bite:before {
  content: "";
}

.fa-copy:before {
  content: "";
}

.fa-copyright:before {
  content: "";
}

.fa-cotton-bureau:before {
  content: "";
}

.fa-couch:before {
  content: "";
}

.fa-cpanel:before {
  content: "";
}

.fa-creative-commons:before {
  content: "";
}

.fa-creative-commons-by:before {
  content: "";
}

.fa-creative-commons-nc:before {
  content: "";
}

.fa-creative-commons-nc-eu:before {
  content: "";
}

.fa-creative-commons-nc-jp:before {
  content: "";
}

.fa-creative-commons-nd:before {
  content: "";
}

.fa-creative-commons-pd:before {
  content: "";
}

.fa-creative-commons-pd-alt:before {
  content: "";
}

.fa-creative-commons-remix:before {
  content: "";
}

.fa-creative-commons-sa:before {
  content: "";
}

.fa-creative-commons-sampling:before {
  content: "";
}

.fa-creative-commons-sampling-plus:before {
  content: "";
}

.fa-creative-commons-share:before {
  content: "";
}

.fa-creative-commons-zero:before {
  content: "";
}

.fa-credit-card:before {
  content: "";
}

.fa-critical-role:before {
  content: "";
}

.fa-crop:before {
  content: "";
}

.fa-crop-alt:before {
  content: "";
}

.fa-cross:before {
  content: "";
}

.fa-crosshairs:before {
  content: "";
}

.fa-crow:before {
  content: "";
}

.fa-crown:before {
  content: "";
}

.fa-crutch:before {
  content: "";
}

.fa-css3:before {
  content: "";
}

.fa-css3-alt:before {
  content: "";
}

.fa-cube:before {
  content: "";
}

.fa-cubes:before {
  content: "";
}

.fa-cut:before {
  content: "";
}

.fa-cuttlefish:before {
  content: "";
}

.fa-d-and-d:before {
  content: "";
}

.fa-d-and-d-beyond:before {
  content: "";
}

.fa-dailymotion:before {
  content: "勒";
}

.fa-dashcube:before {
  content: "";
}

.fa-database:before {
  content: "";
}

.fa-deaf:before {
  content: "";
}

.fa-delicious:before {
  content: "";
}

.fa-democrat:before {
  content: "";
}

.fa-deploydog:before {
  content: "";
}

.fa-deskpro:before {
  content: "";
}

.fa-desktop:before {
  content: "";
}

.fa-dev:before {
  content: "";
}

.fa-deviantart:before {
  content: "";
}

.fa-dharmachakra:before {
  content: "";
}

.fa-dhl:before {
  content: "";
}

.fa-diagnoses:before {
  content: "";
}

.fa-diaspora:before {
  content: "";
}

.fa-dice:before {
  content: "";
}

.fa-dice-d20:before {
  content: "";
}

.fa-dice-d6:before {
  content: "";
}

.fa-dice-five:before {
  content: "";
}

.fa-dice-four:before {
  content: "";
}

.fa-dice-one:before {
  content: "";
}

.fa-dice-six:before {
  content: "";
}

.fa-dice-three:before {
  content: "";
}

.fa-dice-two:before {
  content: "";
}

.fa-digg:before {
  content: "";
}

.fa-digital-ocean:before {
  content: "";
}

.fa-digital-tachograph:before {
  content: "";
}

.fa-directions:before {
  content: "";
}

.fa-discord:before {
  content: "";
}

.fa-discourse:before {
  content: "";
}

.fa-disease:before {
  content: "";
}

.fa-divide:before {
  content: "";
}

.fa-dizzy:before {
  content: "";
}

.fa-dna:before {
  content: "";
}

.fa-dochub:before {
  content: "";
}

.fa-docker:before {
  content: "";
}

.fa-dog:before {
  content: "";
}

.fa-dollar-sign:before {
  content: "";
}

.fa-dolly:before {
  content: "";
}

.fa-dolly-flatbed:before {
  content: "";
}

.fa-donate:before {
  content: "";
}

.fa-door-closed:before {
  content: "";
}

.fa-door-open:before {
  content: "";
}

.fa-dot-circle:before {
  content: "";
}

.fa-dove:before {
  content: "";
}

.fa-download:before {
  content: "";
}

.fa-draft2digital:before {
  content: "";
}

.fa-drafting-compass:before {
  content: "";
}

.fa-dragon:before {
  content: "";
}

.fa-draw-polygon:before {
  content: "";
}

.fa-dribbble:before {
  content: "";
}

.fa-dribbble-square:before {
  content: "";
}

.fa-dropbox:before {
  content: "";
}

.fa-drum:before {
  content: "";
}

.fa-drum-steelpan:before {
  content: "";
}

.fa-drumstick-bite:before {
  content: "";
}

.fa-drupal:before {
  content: "";
}

.fa-dumbbell:before {
  content: "";
}

.fa-dumpster:before {
  content: "";
}

.fa-dumpster-fire:before {
  content: "";
}

.fa-dungeon:before {
  content: "";
}

.fa-dyalog:before {
  content: "";
}

.fa-earlybirds:before {
  content: "";
}

.fa-ebay:before {
  content: "";
}

.fa-edge:before {
  content: "";
}

.fa-edit:before {
  content: "";
}

.fa-egg:before {
  content: "";
}

.fa-eject:before {
  content: "";
}

.fa-elementor:before {
  content: "";
}

.fa-ellipsis-h:before {
  content: "";
}

.fa-ellipsis-v:before {
  content: "";
}

.fa-ello:before {
  content: "";
}

.fa-ember:before {
  content: "";
}

.fa-empire:before {
  content: "";
}

.fa-envelope:before {
  content: "";
}

.fa-envelope-open:before {
  content: "";
}

.fa-envelope-open-text:before {
  content: "";
}

.fa-envelope-square:before {
  content: "";
}

.fa-envira:before {
  content: "";
}

.fa-equals:before {
  content: "";
}

.fa-eraser:before {
  content: "";
}

.fa-erlang:before {
  content: "";
}

.fa-ethereum:before {
  content: "";
}

.fa-ethernet:before {
  content: "";
}

.fa-etsy:before {
  content: "";
}

.fa-euro-sign:before {
  content: "";
}

.fa-evernote:before {
  content: "";
}

.fa-exchange-alt:before {
  content: "";
}

.fa-exclamation:before {
  content: "";
}

.fa-exclamation-circle:before {
  content: "";
}

.fa-exclamation-triangle:before {
  content: "";
}

.fa-expand:before {
  content: "";
}

.fa-expand-alt:before {
  content: "";
}

.fa-expand-arrows-alt:before {
  content: "";
}

.fa-expeditedssl:before {
  content: "";
}

.fa-external-link-alt:before {
  content: "";
}

.fa-external-link-square-alt:before {
  content: "";
}

.fa-eye:before {
  content: "";
}

.fa-eye-dropper:before {
  content: "";
}

.fa-eye-slash:before {
  content: "";
}

.fa-facebook:before {
  content: "";
}

.fa-facebook-f:before {
  content: "";
}

.fa-facebook-messenger:before {
  content: "";
}

.fa-facebook-square:before {
  content: "";
}

.fa-fan:before {
  content: "";
}

.fa-fantasy-flight-games:before {
  content: "";
}

.fa-fast-backward:before {
  content: "";
}

.fa-fast-forward:before {
  content: "";
}

.fa-faucet:before {
  content: "串";
}

.fa-fax:before {
  content: "";
}

.fa-feather:before {
  content: "";
}

.fa-feather-alt:before {
  content: "";
}

.fa-fedex:before {
  content: "";
}

.fa-fedora:before {
  content: "";
}

.fa-female:before {
  content: "";
}

.fa-fighter-jet:before {
  content: "";
}

.fa-figma:before {
  content: "";
}

.fa-file:before {
  content: "";
}

.fa-file-alt:before {
  content: "";
}

.fa-file-archive:before {
  content: "";
}

.fa-file-audio:before {
  content: "";
}

.fa-file-code:before {
  content: "";
}

.fa-file-contract:before {
  content: "";
}

.fa-file-csv:before {
  content: "";
}

.fa-file-download:before {
  content: "";
}

.fa-file-excel:before {
  content: "";
}

.fa-file-export:before {
  content: "";
}

.fa-file-image:before {
  content: "";
}

.fa-file-import:before {
  content: "";
}

.fa-file-invoice:before {
  content: "";
}

.fa-file-invoice-dollar:before {
  content: "";
}

.fa-file-medical:before {
  content: "";
}

.fa-file-medical-alt:before {
  content: "";
}

.fa-file-pdf:before {
  content: "";
}

.fa-file-powerpoint:before {
  content: "";
}

.fa-file-prescription:before {
  content: "";
}

.fa-file-signature:before {
  content: "";
}

.fa-file-upload:before {
  content: "";
}

.fa-file-video:before {
  content: "";
}

.fa-file-word:before {
  content: "";
}

.fa-fill:before {
  content: "";
}

.fa-fill-drip:before {
  content: "";
}

.fa-film:before {
  content: "";
}

.fa-filter:before {
  content: "";
}

.fa-fingerprint:before {
  content: "";
}

.fa-fire:before {
  content: "";
}

.fa-fire-alt:before {
  content: "";
}

.fa-fire-extinguisher:before {
  content: "";
}

.fa-firefox:before {
  content: "";
}

.fa-firefox-browser:before {
  content: "龜";
}

.fa-first-aid:before {
  content: "";
}

.fa-first-order:before {
  content: "";
}

.fa-first-order-alt:before {
  content: "";
}

.fa-firstdraft:before {
  content: "";
}

.fa-fish:before {
  content: "";
}

.fa-fist-raised:before {
  content: "";
}

.fa-flag:before {
  content: "";
}

.fa-flag-checkered:before {
  content: "";
}

.fa-flag-usa:before {
  content: "";
}

.fa-flask:before {
  content: "";
}

.fa-flickr:before {
  content: "";
}

.fa-flipboard:before {
  content: "";
}

.fa-flushed:before {
  content: "";
}

.fa-fly:before {
  content: "";
}

.fa-folder:before {
  content: "";
}

.fa-folder-minus:before {
  content: "";
}

.fa-folder-open:before {
  content: "";
}

.fa-folder-plus:before {
  content: "";
}

.fa-font:before {
  content: "";
}

.fa-font-awesome:before {
  content: "";
}

.fa-font-awesome-alt:before {
  content: "";
}

.fa-font-awesome-flag:before {
  content: "";
}

.fa-font-awesome-logo-full:before {
  content: "";
}

.fa-fonticons:before {
  content: "";
}

.fa-fonticons-fi:before {
  content: "";
}

.fa-football-ball:before {
  content: "";
}

.fa-fort-awesome:before {
  content: "";
}

.fa-fort-awesome-alt:before {
  content: "";
}

.fa-forumbee:before {
  content: "";
}

.fa-forward:before {
  content: "";
}

.fa-foursquare:before {
  content: "";
}

.fa-free-code-camp:before {
  content: "";
}

.fa-freebsd:before {
  content: "";
}

.fa-frog:before {
  content: "";
}

.fa-frown:before {
  content: "";
}

.fa-frown-open:before {
  content: "";
}

.fa-fulcrum:before {
  content: "";
}

.fa-funnel-dollar:before {
  content: "";
}

.fa-futbol:before {
  content: "";
}

.fa-galactic-republic:before {
  content: "";
}

.fa-galactic-senate:before {
  content: "";
}

.fa-gamepad:before {
  content: "";
}

.fa-gas-pump:before {
  content: "";
}

.fa-gavel:before {
  content: "";
}

.fa-gem:before {
  content: "";
}

.fa-genderless:before {
  content: "";
}

.fa-get-pocket:before {
  content: "";
}

.fa-gg:before {
  content: "";
}

.fa-gg-circle:before {
  content: "";
}

.fa-ghost:before {
  content: "";
}

.fa-gift:before {
  content: "";
}

.fa-gifts:before {
  content: "";
}

.fa-git:before {
  content: "";
}

.fa-git-alt:before {
  content: "";
}

.fa-git-square:before {
  content: "";
}

.fa-github:before {
  content: "";
}

.fa-github-alt:before {
  content: "";
}

.fa-github-square:before {
  content: "";
}

.fa-gitkraken:before {
  content: "";
}

.fa-gitlab:before {
  content: "";
}

.fa-gitter:before {
  content: "";
}

.fa-glass-cheers:before {
  content: "";
}

.fa-glass-martini:before {
  content: "";
}

.fa-glass-martini-alt:before {
  content: "";
}

.fa-glass-whiskey:before {
  content: "";
}

.fa-glasses:before {
  content: "";
}

.fa-glide:before {
  content: "";
}

.fa-glide-g:before {
  content: "";
}

.fa-globe:before {
  content: "";
}

.fa-globe-africa:before {
  content: "";
}

.fa-globe-americas:before {
  content: "";
}

.fa-globe-asia:before {
  content: "";
}

.fa-globe-europe:before {
  content: "";
}

.fa-gofore:before {
  content: "";
}

.fa-golf-ball:before {
  content: "";
}

.fa-goodreads:before {
  content: "";
}

.fa-goodreads-g:before {
  content: "";
}

.fa-google:before {
  content: "";
}

.fa-google-drive:before {
  content: "";
}

.fa-google-play:before {
  content: "";
}

.fa-google-plus:before {
  content: "";
}

.fa-google-plus-g:before {
  content: "";
}

.fa-google-plus-square:before {
  content: "";
}

.fa-google-wallet:before {
  content: "";
}

.fa-gopuram:before {
  content: "";
}

.fa-graduation-cap:before {
  content: "";
}

.fa-gratipay:before {
  content: "";
}

.fa-grav:before {
  content: "";
}

.fa-greater-than:before {
  content: "";
}

.fa-greater-than-equal:before {
  content: "";
}

.fa-grimace:before {
  content: "";
}

.fa-grin:before {
  content: "";
}

.fa-grin-alt:before {
  content: "";
}

.fa-grin-beam:before {
  content: "";
}

.fa-grin-beam-sweat:before {
  content: "";
}

.fa-grin-hearts:before {
  content: "";
}

.fa-grin-squint:before {
  content: "";
}

.fa-grin-squint-tears:before {
  content: "";
}

.fa-grin-stars:before {
  content: "";
}

.fa-grin-tears:before {
  content: "";
}

.fa-grin-tongue:before {
  content: "";
}

.fa-grin-tongue-squint:before {
  content: "";
}

.fa-grin-tongue-wink:before {
  content: "";
}

.fa-grin-wink:before {
  content: "";
}

.fa-grip-horizontal:before {
  content: "";
}

.fa-grip-lines:before {
  content: "";
}

.fa-grip-lines-vertical:before {
  content: "";
}

.fa-grip-vertical:before {
  content: "";
}

.fa-gripfire:before {
  content: "";
}

.fa-grunt:before {
  content: "";
}

.fa-guitar:before {
  content: "";
}

.fa-gulp:before {
  content: "";
}

.fa-h-square:before {
  content: "";
}

.fa-hacker-news:before {
  content: "";
}

.fa-hacker-news-square:before {
  content: "";
}

.fa-hackerrank:before {
  content: "";
}

.fa-hamburger:before {
  content: "";
}

.fa-hammer:before {
  content: "";
}

.fa-hamsa:before {
  content: "";
}

.fa-hand-holding:before {
  content: "";
}

.fa-hand-holding-heart:before {
  content: "";
}

.fa-hand-holding-medical:before {
  content: "樂";
}

.fa-hand-holding-usd:before {
  content: "";
}

.fa-hand-holding-water:before {
  content: "";
}

.fa-hand-lizard:before {
  content: "";
}

.fa-hand-middle-finger:before {
  content: "";
}

.fa-hand-paper:before {
  content: "";
}

.fa-hand-peace:before {
  content: "";
}

.fa-hand-point-down:before {
  content: "";
}

.fa-hand-point-left:before {
  content: "";
}

.fa-hand-point-right:before {
  content: "";
}

.fa-hand-point-up:before {
  content: "";
}

.fa-hand-pointer:before {
  content: "";
}

.fa-hand-rock:before {
  content: "";
}

.fa-hand-scissors:before {
  content: "";
}

.fa-hand-sparkles:before {
  content: "諾";
}

.fa-hand-spock:before {
  content: "";
}

.fa-hands:before {
  content: "";
}

.fa-hands-helping:before {
  content: "";
}

.fa-hands-wash:before {
  content: "丹";
}

.fa-handshake:before {
  content: "";
}

.fa-handshake-alt-slash:before {
  content: "寧";
}

.fa-handshake-slash:before {
  content: "怒";
}

.fa-hanukiah:before {
  content: "";
}

.fa-hard-hat:before {
  content: "";
}

.fa-hashtag:before {
  content: "";
}

.fa-hat-cowboy:before {
  content: "";
}

.fa-hat-cowboy-side:before {
  content: "";
}

.fa-hat-wizard:before {
  content: "";
}

.fa-hdd:before {
  content: "";
}

.fa-head-side-cough:before {
  content: "率";
}

.fa-head-side-cough-slash:before {
  content: "異";
}

.fa-head-side-mask:before {
  content: "北";
}

.fa-head-side-virus:before {
  content: "磻";
}

.fa-heading:before {
  content: "";
}

.fa-headphones:before {
  content: "";
}

.fa-headphones-alt:before {
  content: "";
}

.fa-headset:before {
  content: "";
}

.fa-heart:before {
  content: "";
}

.fa-heart-broken:before {
  content: "";
}

.fa-heartbeat:before {
  content: "";
}

.fa-helicopter:before {
  content: "";
}

.fa-highlighter:before {
  content: "";
}

.fa-hiking:before {
  content: "";
}

.fa-hippo:before {
  content: "";
}

.fa-hips:before {
  content: "";
}

.fa-hire-a-helper:before {
  content: "";
}

.fa-history:before {
  content: "";
}

.fa-hockey-puck:before {
  content: "";
}

.fa-holly-berry:before {
  content: "";
}

.fa-home:before {
  content: "";
}

.fa-hooli:before {
  content: "";
}

.fa-hornbill:before {
  content: "";
}

.fa-horse:before {
  content: "";
}

.fa-horse-head:before {
  content: "";
}

.fa-hospital:before {
  content: "";
}

.fa-hospital-alt:before {
  content: "";
}

.fa-hospital-symbol:before {
  content: "";
}

.fa-hospital-user:before {
  content: "";
}

.fa-hot-tub:before {
  content: "";
}

.fa-hotdog:before {
  content: "";
}

.fa-hotel:before {
  content: "";
}

.fa-hotjar:before {
  content: "";
}

.fa-hourglass:before {
  content: "";
}

.fa-hourglass-end:before {
  content: "";
}

.fa-hourglass-half:before {
  content: "";
}

.fa-hourglass-start:before {
  content: "";
}

.fa-house-damage:before {
  content: "";
}

.fa-house-user:before {
  content: "便";
}

.fa-houzz:before {
  content: "";
}

.fa-hryvnia:before {
  content: "";
}

.fa-html5:before {
  content: "";
}

.fa-hubspot:before {
  content: "";
}

.fa-i-cursor:before {
  content: "";
}

.fa-ice-cream:before {
  content: "";
}

.fa-icicles:before {
  content: "";
}

.fa-icons:before {
  content: "";
}

.fa-id-badge:before {
  content: "";
}

.fa-id-card:before {
  content: "";
}

.fa-id-card-alt:before {
  content: "";
}

.fa-ideal:before {
  content: "邏";
}

.fa-igloo:before {
  content: "";
}

.fa-image:before {
  content: "";
}

.fa-images:before {
  content: "";
}

.fa-imdb:before {
  content: "";
}

.fa-inbox:before {
  content: "";
}

.fa-indent:before {
  content: "";
}

.fa-industry:before {
  content: "";
}

.fa-infinity:before {
  content: "";
}

.fa-info:before {
  content: "";
}

.fa-info-circle:before {
  content: "";
}

.fa-instagram:before {
  content: "";
}

.fa-instagram-square:before {
  content: "凌";
}

.fa-intercom:before {
  content: "";
}

.fa-internet-explorer:before {
  content: "";
}

.fa-invision:before {
  content: "";
}

.fa-ioxhost:before {
  content: "";
}

.fa-italic:before {
  content: "";
}

.fa-itch-io:before {
  content: "";
}

.fa-itunes:before {
  content: "";
}

.fa-itunes-note:before {
  content: "";
}

.fa-java:before {
  content: "";
}

.fa-jedi:before {
  content: "";
}

.fa-jedi-order:before {
  content: "";
}

.fa-jenkins:before {
  content: "";
}

.fa-jira:before {
  content: "";
}

.fa-joget:before {
  content: "";
}

.fa-joint:before {
  content: "";
}

.fa-joomla:before {
  content: "";
}

.fa-journal-whills:before {
  content: "";
}

.fa-js:before {
  content: "";
}

.fa-js-square:before {
  content: "";
}

.fa-jsfiddle:before {
  content: "";
}

.fa-kaaba:before {
  content: "";
}

.fa-kaggle:before {
  content: "";
}

.fa-key:before {
  content: "";
}

.fa-keybase:before {
  content: "";
}

.fa-keyboard:before {
  content: "";
}

.fa-keycdn:before {
  content: "";
}

.fa-khanda:before {
  content: "";
}

.fa-kickstarter:before {
  content: "";
}

.fa-kickstarter-k:before {
  content: "";
}

.fa-kiss:before {
  content: "";
}

.fa-kiss-beam:before {
  content: "";
}

.fa-kiss-wink-heart:before {
  content: "";
}

.fa-kiwi-bird:before {
  content: "";
}

.fa-korvue:before {
  content: "";
}

.fa-landmark:before {
  content: "";
}

.fa-language:before {
  content: "";
}

.fa-laptop:before {
  content: "";
}

.fa-laptop-code:before {
  content: "";
}

.fa-laptop-house:before {
  content: "復";
}

.fa-laptop-medical:before {
  content: "";
}

.fa-laravel:before {
  content: "";
}

.fa-lastfm:before {
  content: "";
}

.fa-lastfm-square:before {
  content: "";
}

.fa-laugh:before {
  content: "";
}

.fa-laugh-beam:before {
  content: "";
}

.fa-laugh-squint:before {
  content: "";
}

.fa-laugh-wink:before {
  content: "";
}

.fa-layer-group:before {
  content: "";
}

.fa-leaf:before {
  content: "";
}

.fa-leanpub:before {
  content: "";
}

.fa-lemon:before {
  content: "";
}

.fa-less:before {
  content: "";
}

.fa-less-than:before {
  content: "";
}

.fa-less-than-equal:before {
  content: "";
}

.fa-level-down-alt:before {
  content: "";
}

.fa-level-up-alt:before {
  content: "";
}

.fa-life-ring:before {
  content: "";
}

.fa-lightbulb:before {
  content: "";
}

.fa-line:before {
  content: "";
}

.fa-link:before {
  content: "";
}

.fa-linkedin:before {
  content: "";
}

.fa-linkedin-in:before {
  content: "";
}

.fa-linode:before {
  content: "";
}

.fa-linux:before {
  content: "";
}

.fa-lira-sign:before {
  content: "";
}

.fa-list:before {
  content: "";
}

.fa-list-alt:before {
  content: "";
}

.fa-list-ol:before {
  content: "";
}

.fa-list-ul:before {
  content: "";
}

.fa-location-arrow:before {
  content: "";
}

.fa-lock:before {
  content: "";
}

.fa-lock-open:before {
  content: "";
}

.fa-long-arrow-alt-down:before {
  content: "";
}

.fa-long-arrow-alt-left:before {
  content: "";
}

.fa-long-arrow-alt-right:before {
  content: "";
}

.fa-long-arrow-alt-up:before {
  content: "";
}

.fa-low-vision:before {
  content: "";
}

.fa-luggage-cart:before {
  content: "";
}

.fa-lungs:before {
  content: "";
}

.fa-lungs-virus:before {
  content: "不";
}

.fa-lyft:before {
  content: "";
}

.fa-magento:before {
  content: "";
}

.fa-magic:before {
  content: "";
}

.fa-magnet:before {
  content: "";
}

.fa-mail-bulk:before {
  content: "";
}

.fa-mailchimp:before {
  content: "";
}

.fa-male:before {
  content: "";
}

.fa-mandalorian:before {
  content: "";
}

.fa-map:before {
  content: "";
}

.fa-map-marked:before {
  content: "";
}

.fa-map-marked-alt:before {
  content: "";
}

.fa-map-marker:before {
  content: "";
}

.fa-map-marker-alt:before {
  content: "";
}

.fa-map-pin:before {
  content: "";
}

.fa-map-signs:before {
  content: "";
}

.fa-markdown:before {
  content: "";
}

.fa-marker:before {
  content: "";
}

.fa-mars:before {
  content: "";
}

.fa-mars-double:before {
  content: "";
}

.fa-mars-stroke:before {
  content: "";
}

.fa-mars-stroke-h:before {
  content: "";
}

.fa-mars-stroke-v:before {
  content: "";
}

.fa-mask:before {
  content: "";
}

.fa-mastodon:before {
  content: "";
}

.fa-maxcdn:before {
  content: "";
}

.fa-mdb:before {
  content: "";
}

.fa-medal:before {
  content: "";
}

.fa-medapps:before {
  content: "";
}

.fa-medium:before {
  content: "";
}

.fa-medium-m:before {
  content: "";
}

.fa-medkit:before {
  content: "";
}

.fa-medrt:before {
  content: "";
}

.fa-meetup:before {
  content: "";
}

.fa-megaport:before {
  content: "";
}

.fa-meh:before {
  content: "";
}

.fa-meh-blank:before {
  content: "";
}

.fa-meh-rolling-eyes:before {
  content: "";
}

.fa-memory:before {
  content: "";
}

.fa-mendeley:before {
  content: "";
}

.fa-menorah:before {
  content: "";
}

.fa-mercury:before {
  content: "";
}

.fa-meteor:before {
  content: "";
}

.fa-microblog:before {
  content: "駱";
}

.fa-microchip:before {
  content: "";
}

.fa-microphone:before {
  content: "";
}

.fa-microphone-alt:before {
  content: "";
}

.fa-microphone-alt-slash:before {
  content: "";
}

.fa-microphone-slash:before {
  content: "";
}

.fa-microscope:before {
  content: "";
}

.fa-microsoft:before {
  content: "";
}

.fa-minus:before {
  content: "";
}

.fa-minus-circle:before {
  content: "";
}

.fa-minus-square:before {
  content: "";
}

.fa-mitten:before {
  content: "";
}

.fa-mix:before {
  content: "";
}

.fa-mixcloud:before {
  content: "";
}

.fa-mixer:before {
  content: "稜";
}

.fa-mizuni:before {
  content: "";
}

.fa-mobile:before {
  content: "";
}

.fa-mobile-alt:before {
  content: "";
}

.fa-modx:before {
  content: "";
}

.fa-monero:before {
  content: "";
}

.fa-money-bill:before {
  content: "";
}

.fa-money-bill-alt:before {
  content: "";
}

.fa-money-bill-wave:before {
  content: "";
}

.fa-money-bill-wave-alt:before {
  content: "";
}

.fa-money-check:before {
  content: "";
}

.fa-money-check-alt:before {
  content: "";
}

.fa-monument:before {
  content: "";
}

.fa-moon:before {
  content: "";
}

.fa-mortar-pestle:before {
  content: "";
}

.fa-mosque:before {
  content: "";
}

.fa-motorcycle:before {
  content: "";
}

.fa-mountain:before {
  content: "";
}

.fa-mouse:before {
  content: "";
}

.fa-mouse-pointer:before {
  content: "";
}

.fa-mug-hot:before {
  content: "";
}

.fa-music:before {
  content: "";
}

.fa-napster:before {
  content: "";
}

.fa-neos:before {
  content: "";
}

.fa-network-wired:before {
  content: "";
}

.fa-neuter:before {
  content: "";
}

.fa-newspaper:before {
  content: "";
}

.fa-nimblr:before {
  content: "";
}

.fa-node:before {
  content: "";
}

.fa-node-js:before {
  content: "";
}

.fa-not-equal:before {
  content: "";
}

.fa-notes-medical:before {
  content: "";
}

.fa-npm:before {
  content: "";
}

.fa-ns8:before {
  content: "";
}

.fa-nutritionix:before {
  content: "";
}

.fa-object-group:before {
  content: "";
}

.fa-object-ungroup:before {
  content: "";
}

.fa-odnoklassniki:before {
  content: "";
}

.fa-odnoklassniki-square:before {
  content: "";
}

.fa-oil-can:before {
  content: "";
}

.fa-old-republic:before {
  content: "";
}

.fa-om:before {
  content: "";
}

.fa-opencart:before {
  content: "";
}

.fa-openid:before {
  content: "";
}

.fa-opera:before {
  content: "";
}

.fa-optin-monster:before {
  content: "";
}

.fa-orcid:before {
  content: "";
}

.fa-osi:before {
  content: "";
}

.fa-otter:before {
  content: "";
}

.fa-outdent:before {
  content: "";
}

.fa-page4:before {
  content: "";
}

.fa-pagelines:before {
  content: "";
}

.fa-pager:before {
  content: "";
}

.fa-paint-brush:before {
  content: "";
}

.fa-paint-roller:before {
  content: "";
}

.fa-palette:before {
  content: "";
}

.fa-palfed:before {
  content: "";
}

.fa-pallet:before {
  content: "";
}

.fa-paper-plane:before {
  content: "";
}

.fa-paperclip:before {
  content: "";
}

.fa-parachute-box:before {
  content: "";
}

.fa-paragraph:before {
  content: "";
}

.fa-parking:before {
  content: "";
}

.fa-passport:before {
  content: "";
}

.fa-pastafarianism:before {
  content: "";
}

.fa-paste:before {
  content: "";
}

.fa-patreon:before {
  content: "";
}

.fa-pause:before {
  content: "";
}

.fa-pause-circle:before {
  content: "";
}

.fa-paw:before {
  content: "";
}

.fa-paypal:before {
  content: "";
}

.fa-peace:before {
  content: "";
}

.fa-pen:before {
  content: "";
}

.fa-pen-alt:before {
  content: "";
}

.fa-pen-fancy:before {
  content: "";
}

.fa-pen-nib:before {
  content: "";
}

.fa-pen-square:before {
  content: "";
}

.fa-pencil-alt:before {
  content: "";
}

.fa-pencil-ruler:before {
  content: "";
}

.fa-penny-arcade:before {
  content: "";
}

.fa-people-arrows:before {
  content: "泌";
}

.fa-people-carry:before {
  content: "";
}

.fa-pepper-hot:before {
  content: "";
}

.fa-percent:before {
  content: "";
}

.fa-percentage:before {
  content: "";
}

.fa-periscope:before {
  content: "";
}

.fa-person-booth:before {
  content: "";
}

.fa-phabricator:before {
  content: "";
}

.fa-phoenix-framework:before {
  content: "";
}

.fa-phoenix-squadron:before {
  content: "";
}

.fa-phone:before {
  content: "";
}

.fa-phone-alt:before {
  content: "";
}

.fa-phone-slash:before {
  content: "";
}

.fa-phone-square:before {
  content: "";
}

.fa-phone-square-alt:before {
  content: "";
}

.fa-phone-volume:before {
  content: "";
}

.fa-photo-video:before {
  content: "";
}

.fa-php:before {
  content: "";
}

.fa-pied-piper:before {
  content: "";
}

.fa-pied-piper-alt:before {
  content: "";
}

.fa-pied-piper-hat:before {
  content: "";
}

.fa-pied-piper-pp:before {
  content: "";
}

.fa-pied-piper-square:before {
  content: "爛";
}

.fa-piggy-bank:before {
  content: "";
}

.fa-pills:before {
  content: "";
}

.fa-pinterest:before {
  content: "";
}

.fa-pinterest-p:before {
  content: "";
}

.fa-pinterest-square:before {
  content: "";
}

.fa-pizza-slice:before {
  content: "";
}

.fa-place-of-worship:before {
  content: "";
}

.fa-plane:before {
  content: "";
}

.fa-plane-arrival:before {
  content: "";
}

.fa-plane-departure:before {
  content: "";
}

.fa-plane-slash:before {
  content: "數";
}

.fa-play:before {
  content: "";
}

.fa-play-circle:before {
  content: "";
}

.fa-playstation:before {
  content: "";
}

.fa-plug:before {
  content: "";
}

.fa-plus:before {
  content: "";
}

.fa-plus-circle:before {
  content: "";
}

.fa-plus-square:before {
  content: "";
}

.fa-podcast:before {
  content: "";
}

.fa-poll:before {
  content: "";
}

.fa-poll-h:before {
  content: "";
}

.fa-poo:before {
  content: "";
}

.fa-poo-storm:before {
  content: "";
}

.fa-poop:before {
  content: "";
}

.fa-portrait:before {
  content: "";
}

.fa-pound-sign:before {
  content: "";
}

.fa-power-off:before {
  content: "";
}

.fa-pray:before {
  content: "";
}

.fa-praying-hands:before {
  content: "";
}

.fa-prescription:before {
  content: "";
}

.fa-prescription-bottle:before {
  content: "";
}

.fa-prescription-bottle-alt:before {
  content: "";
}

.fa-print:before {
  content: "";
}

.fa-procedures:before {
  content: "";
}

.fa-product-hunt:before {
  content: "";
}

.fa-project-diagram:before {
  content: "";
}

.fa-pump-medical:before {
  content: "索";
}

.fa-pump-soap:before {
  content: "參";
}

.fa-pushed:before {
  content: "";
}

.fa-puzzle-piece:before {
  content: "";
}

.fa-python:before {
  content: "";
}

.fa-qq:before {
  content: "";
}

.fa-qrcode:before {
  content: "";
}

.fa-question:before {
  content: "";
}

.fa-question-circle:before {
  content: "";
}

.fa-quidditch:before {
  content: "";
}

.fa-quinscape:before {
  content: "";
}

.fa-quora:before {
  content: "";
}

.fa-quote-left:before {
  content: "";
}

.fa-quote-right:before {
  content: "";
}

.fa-quran:before {
  content: "";
}

.fa-r-project:before {
  content: "";
}

.fa-radiation:before {
  content: "";
}

.fa-radiation-alt:before {
  content: "";
}

.fa-rainbow:before {
  content: "";
}

.fa-random:before {
  content: "";
}

.fa-raspberry-pi:before {
  content: "";
}

.fa-ravelry:before {
  content: "";
}

.fa-react:before {
  content: "";
}

.fa-reacteurope:before {
  content: "";
}

.fa-readme:before {
  content: "";
}

.fa-rebel:before {
  content: "";
}

.fa-receipt:before {
  content: "";
}

.fa-record-vinyl:before {
  content: "";
}

.fa-recycle:before {
  content: "";
}

.fa-red-river:before {
  content: "";
}

.fa-reddit:before {
  content: "";
}

.fa-reddit-alien:before {
  content: "";
}

.fa-reddit-square:before {
  content: "";
}

.fa-redhat:before {
  content: "";
}

.fa-redo:before {
  content: "";
}

.fa-redo-alt:before {
  content: "";
}

.fa-registered:before {
  content: "";
}

.fa-remove-format:before {
  content: "";
}

.fa-renren:before {
  content: "";
}

.fa-reply:before {
  content: "";
}

.fa-reply-all:before {
  content: "";
}

.fa-replyd:before {
  content: "";
}

.fa-republican:before {
  content: "";
}

.fa-researchgate:before {
  content: "";
}

.fa-resolving:before {
  content: "";
}

.fa-restroom:before {
  content: "";
}

.fa-retweet:before {
  content: "";
}

.fa-rev:before {
  content: "";
}

.fa-ribbon:before {
  content: "";
}

.fa-ring:before {
  content: "";
}

.fa-road:before {
  content: "";
}

.fa-robot:before {
  content: "";
}

.fa-rocket:before {
  content: "";
}

.fa-rocketchat:before {
  content: "";
}

.fa-rockrms:before {
  content: "";
}

.fa-route:before {
  content: "";
}

.fa-rss:before {
  content: "";
}

.fa-rss-square:before {
  content: "";
}

.fa-ruble-sign:before {
  content: "";
}

.fa-ruler:before {
  content: "";
}

.fa-ruler-combined:before {
  content: "";
}

.fa-ruler-horizontal:before {
  content: "";
}

.fa-ruler-vertical:before {
  content: "";
}

.fa-running:before {
  content: "";
}

.fa-rupee-sign:before {
  content: "";
}

.fa-sad-cry:before {
  content: "";
}

.fa-sad-tear:before {
  content: "";
}

.fa-safari:before {
  content: "";
}

.fa-salesforce:before {
  content: "";
}

.fa-sass:before {
  content: "";
}

.fa-satellite:before {
  content: "";
}

.fa-satellite-dish:before {
  content: "";
}

.fa-save:before {
  content: "";
}

.fa-schlix:before {
  content: "";
}

.fa-school:before {
  content: "";
}

.fa-screwdriver:before {
  content: "";
}

.fa-scribd:before {
  content: "";
}

.fa-scroll:before {
  content: "";
}

.fa-sd-card:before {
  content: "";
}

.fa-search:before {
  content: "";
}

.fa-search-dollar:before {
  content: "";
}

.fa-search-location:before {
  content: "";
}

.fa-search-minus:before {
  content: "";
}

.fa-search-plus:before {
  content: "";
}

.fa-searchengin:before {
  content: "";
}

.fa-seedling:before {
  content: "";
}

.fa-sellcast:before {
  content: "";
}

.fa-sellsy:before {
  content: "";
}

.fa-server:before {
  content: "";
}

.fa-servicestack:before {
  content: "";
}

.fa-shapes:before {
  content: "";
}

.fa-share:before {
  content: "";
}

.fa-share-alt:before {
  content: "";
}

.fa-share-alt-square:before {
  content: "";
}

.fa-share-square:before {
  content: "";
}

.fa-shekel-sign:before {
  content: "";
}

.fa-shield-alt:before {
  content: "";
}

.fa-shield-virus:before {
  content: "塞";
}

.fa-ship:before {
  content: "";
}

.fa-shipping-fast:before {
  content: "";
}

.fa-shirtsinbulk:before {
  content: "";
}

.fa-shoe-prints:before {
  content: "";
}

.fa-shopify:before {
  content: "綾";
}

.fa-shopping-bag:before {
  content: "";
}

.fa-shopping-basket:before {
  content: "";
}

.fa-shopping-cart:before {
  content: "";
}

.fa-shopware:before {
  content: "";
}

.fa-shower:before {
  content: "";
}

.fa-shuttle-van:before {
  content: "";
}

.fa-sign:before {
  content: "";
}

.fa-sign-in-alt:before {
  content: "";
}

.fa-sign-language:before {
  content: "";
}

.fa-sign-out-alt:before {
  content: "";
}

.fa-signal:before {
  content: "";
}

.fa-signature:before {
  content: "";
}

.fa-sim-card:before {
  content: "";
}

.fa-simplybuilt:before {
  content: "";
}

.fa-sistrix:before {
  content: "";
}

.fa-sitemap:before {
  content: "";
}

.fa-sith:before {
  content: "";
}

.fa-skating:before {
  content: "";
}

.fa-sketch:before {
  content: "";
}

.fa-skiing:before {
  content: "";
}

.fa-skiing-nordic:before {
  content: "";
}

.fa-skull:before {
  content: "";
}

.fa-skull-crossbones:before {
  content: "";
}

.fa-skyatlas:before {
  content: "";
}

.fa-skype:before {
  content: "";
}

.fa-slack:before {
  content: "";
}

.fa-slack-hash:before {
  content: "";
}

.fa-slash:before {
  content: "";
}

.fa-sleigh:before {
  content: "";
}

.fa-sliders-h:before {
  content: "";
}

.fa-slideshare:before {
  content: "";
}

.fa-smile:before {
  content: "";
}

.fa-smile-beam:before {
  content: "";
}

.fa-smile-wink:before {
  content: "";
}

.fa-smog:before {
  content: "";
}

.fa-smoking:before {
  content: "";
}

.fa-smoking-ban:before {
  content: "";
}

.fa-sms:before {
  content: "";
}

.fa-snapchat:before {
  content: "";
}

.fa-snapchat-ghost:before {
  content: "";
}

.fa-snapchat-square:before {
  content: "";
}

.fa-snowboarding:before {
  content: "";
}

.fa-snowflake:before {
  content: "";
}

.fa-snowman:before {
  content: "";
}

.fa-snowplow:before {
  content: "";
}

.fa-soap:before {
  content: "葉";
}

.fa-socks:before {
  content: "";
}

.fa-solar-panel:before {
  content: "";
}

.fa-sort:before {
  content: "";
}

.fa-sort-alpha-down:before {
  content: "";
}

.fa-sort-alpha-down-alt:before {
  content: "";
}

.fa-sort-alpha-up:before {
  content: "";
}

.fa-sort-alpha-up-alt:before {
  content: "";
}

.fa-sort-amount-down:before {
  content: "";
}

.fa-sort-amount-down-alt:before {
  content: "";
}

.fa-sort-amount-up:before {
  content: "";
}

.fa-sort-amount-up-alt:before {
  content: "";
}

.fa-sort-down:before {
  content: "";
}

.fa-sort-numeric-down:before {
  content: "";
}

.fa-sort-numeric-down-alt:before {
  content: "";
}

.fa-sort-numeric-up:before {
  content: "";
}

.fa-sort-numeric-up-alt:before {
  content: "";
}

.fa-sort-up:before {
  content: "";
}

.fa-soundcloud:before {
  content: "";
}

.fa-sourcetree:before {
  content: "";
}

.fa-spa:before {
  content: "";
}

.fa-space-shuttle:before {
  content: "";
}

.fa-speakap:before {
  content: "";
}

.fa-speaker-deck:before {
  content: "";
}

.fa-spell-check:before {
  content: "";
}

.fa-spider:before {
  content: "";
}

.fa-spinner:before {
  content: "";
}

.fa-splotch:before {
  content: "";
}

.fa-spotify:before {
  content: "";
}

.fa-spray-can:before {
  content: "";
}

.fa-square:before {
  content: "";
}

.fa-square-full:before {
  content: "";
}

.fa-square-root-alt:before {
  content: "";
}

.fa-squarespace:before {
  content: "";
}

.fa-stack-exchange:before {
  content: "";
}

.fa-stack-overflow:before {
  content: "";
}

.fa-stackpath:before {
  content: "";
}

.fa-stamp:before {
  content: "";
}

.fa-star:before {
  content: "";
}

.fa-star-and-crescent:before {
  content: "";
}

.fa-star-half:before {
  content: "";
}

.fa-star-half-alt:before {
  content: "";
}

.fa-star-of-david:before {
  content: "";
}

.fa-star-of-life:before {
  content: "";
}

.fa-staylinked:before {
  content: "";
}

.fa-steam:before {
  content: "";
}

.fa-steam-square:before {
  content: "";
}

.fa-steam-symbol:before {
  content: "";
}

.fa-step-backward:before {
  content: "";
}

.fa-step-forward:before {
  content: "";
}

.fa-stethoscope:before {
  content: "";
}

.fa-sticker-mule:before {
  content: "";
}

.fa-sticky-note:before {
  content: "";
}

.fa-stop:before {
  content: "";
}

.fa-stop-circle:before {
  content: "";
}

.fa-stopwatch:before {
  content: "";
}

.fa-stopwatch-20:before {
  content: "說";
}

.fa-store:before {
  content: "";
}

.fa-store-alt:before {
  content: "";
}

.fa-store-alt-slash:before {
  content: "殺";
}

.fa-store-slash:before {
  content: "辰";
}

.fa-strava:before {
  content: "";
}

.fa-stream:before {
  content: "";
}

.fa-street-view:before {
  content: "";
}

.fa-strikethrough:before {
  content: "";
}

.fa-stripe:before {
  content: "";
}

.fa-stripe-s:before {
  content: "";
}

.fa-stroopwafel:before {
  content: "";
}

.fa-studiovinari:before {
  content: "";
}

.fa-stumbleupon:before {
  content: "";
}

.fa-stumbleupon-circle:before {
  content: "";
}

.fa-subscript:before {
  content: "";
}

.fa-subway:before {
  content: "";
}

.fa-suitcase:before {
  content: "";
}

.fa-suitcase-rolling:before {
  content: "";
}

.fa-sun:before {
  content: "";
}

.fa-superpowers:before {
  content: "";
}

.fa-superscript:before {
  content: "";
}

.fa-supple:before {
  content: "";
}

.fa-surprise:before {
  content: "";
}

.fa-suse:before {
  content: "";
}

.fa-swatchbook:before {
  content: "";
}

.fa-swift:before {
  content: "";
}

.fa-swimmer:before {
  content: "";
}

.fa-swimming-pool:before {
  content: "";
}

.fa-symfony:before {
  content: "";
}

.fa-synagogue:before {
  content: "";
}

.fa-sync:before {
  content: "";
}

.fa-sync-alt:before {
  content: "";
}

.fa-syringe:before {
  content: "";
}

.fa-table:before {
  content: "";
}

.fa-table-tennis:before {
  content: "";
}

.fa-tablet:before {
  content: "";
}

.fa-tablet-alt:before {
  content: "";
}

.fa-tablets:before {
  content: "";
}

.fa-tachometer-alt:before {
  content: "";
}

.fa-tag:before {
  content: "";
}

.fa-tags:before {
  content: "";
}

.fa-tape:before {
  content: "";
}

.fa-tasks:before {
  content: "";
}

.fa-taxi:before {
  content: "";
}

.fa-teamspeak:before {
  content: "";
}

.fa-teeth:before {
  content: "";
}

.fa-teeth-open:before {
  content: "";
}

.fa-telegram:before {
  content: "";
}

.fa-telegram-plane:before {
  content: "";
}

.fa-temperature-high:before {
  content: "";
}

.fa-temperature-low:before {
  content: "";
}

.fa-tencent-weibo:before {
  content: "";
}

.fa-tenge:before {
  content: "";
}

.fa-terminal:before {
  content: "";
}

.fa-text-height:before {
  content: "";
}

.fa-text-width:before {
  content: "";
}

.fa-th:before {
  content: "";
}

.fa-th-large:before {
  content: "";
}

.fa-th-list:before {
  content: "";
}

.fa-the-red-yeti:before {
  content: "";
}

.fa-theater-masks:before {
  content: "";
}

.fa-themeco:before {
  content: "";
}

.fa-themeisle:before {
  content: "";
}

.fa-thermometer:before {
  content: "";
}

.fa-thermometer-empty:before {
  content: "";
}

.fa-thermometer-full:before {
  content: "";
}

.fa-thermometer-half:before {
  content: "";
}

.fa-thermometer-quarter:before {
  content: "";
}

.fa-thermometer-three-quarters:before {
  content: "";
}

.fa-think-peaks:before {
  content: "";
}

.fa-thumbs-down:before {
  content: "";
}

.fa-thumbs-up:before {
  content: "";
}

.fa-thumbtack:before {
  content: "";
}

.fa-ticket-alt:before {
  content: "";
}

.fa-times:before {
  content: "";
}

.fa-times-circle:before {
  content: "";
}

.fa-tint:before {
  content: "";
}

.fa-tint-slash:before {
  content: "";
}

.fa-tired:before {
  content: "";
}

.fa-toggle-off:before {
  content: "";
}

.fa-toggle-on:before {
  content: "";
}

.fa-toilet:before {
  content: "";
}

.fa-toilet-paper:before {
  content: "";
}

.fa-toilet-paper-slash:before {
  content: "沈";
}

.fa-toolbox:before {
  content: "";
}

.fa-tools:before {
  content: "";
}

.fa-tooth:before {
  content: "";
}

.fa-torah:before {
  content: "";
}

.fa-torii-gate:before {
  content: "";
}

.fa-tractor:before {
  content: "";
}

.fa-trade-federation:before {
  content: "";
}

.fa-trademark:before {
  content: "";
}

.fa-traffic-light:before {
  content: "";
}

.fa-trailer:before {
  content: "論";
}

.fa-train:before {
  content: "";
}

.fa-tram:before {
  content: "";
}

.fa-transgender:before {
  content: "";
}

.fa-transgender-alt:before {
  content: "";
}

.fa-trash:before {
  content: "";
}

.fa-trash-alt:before {
  content: "";
}

.fa-trash-restore:before {
  content: "";
}

.fa-trash-restore-alt:before {
  content: "";
}

.fa-tree:before {
  content: "";
}

.fa-trello:before {
  content: "";
}

.fa-tripadvisor:before {
  content: "";
}

.fa-trophy:before {
  content: "";
}

.fa-truck:before {
  content: "";
}

.fa-truck-loading:before {
  content: "";
}

.fa-truck-monster:before {
  content: "";
}

.fa-truck-moving:before {
  content: "";
}

.fa-truck-pickup:before {
  content: "";
}

.fa-tshirt:before {
  content: "";
}

.fa-tty:before {
  content: "";
}

.fa-tumblr:before {
  content: "";
}

.fa-tumblr-square:before {
  content: "";
}

.fa-tv:before {
  content: "";
}

.fa-twitch:before {
  content: "";
}

.fa-twitter:before {
  content: "";
}

.fa-twitter-square:before {
  content: "";
}

.fa-typo3:before {
  content: "";
}

.fa-uber:before {
  content: "";
}

.fa-ubuntu:before {
  content: "";
}

.fa-uikit:before {
  content: "";
}

.fa-umbraco:before {
  content: "";
}

.fa-umbrella:before {
  content: "";
}

.fa-umbrella-beach:before {
  content: "";
}

.fa-underline:before {
  content: "";
}

.fa-undo:before {
  content: "";
}

.fa-undo-alt:before {
  content: "";
}

.fa-uniregistry:before {
  content: "";
}

.fa-unity:before {
  content: "雷";
}

.fa-universal-access:before {
  content: "";
}

.fa-university:before {
  content: "";
}

.fa-unlink:before {
  content: "";
}

.fa-unlock:before {
  content: "";
}

.fa-unlock-alt:before {
  content: "";
}

.fa-untappd:before {
  content: "";
}

.fa-upload:before {
  content: "";
}

.fa-ups:before {
  content: "";
}

.fa-usb:before {
  content: "";
}

.fa-user:before {
  content: "";
}

.fa-user-alt:before {
  content: "";
}

.fa-user-alt-slash:before {
  content: "";
}

.fa-user-astronaut:before {
  content: "";
}

.fa-user-check:before {
  content: "";
}

.fa-user-circle:before {
  content: "";
}

.fa-user-clock:before {
  content: "";
}

.fa-user-cog:before {
  content: "";
}

.fa-user-edit:before {
  content: "";
}

.fa-user-friends:before {
  content: "";
}

.fa-user-graduate:before {
  content: "";
}

.fa-user-injured:before {
  content: "";
}

.fa-user-lock:before {
  content: "";
}

.fa-user-md:before {
  content: "";
}

.fa-user-minus:before {
  content: "";
}

.fa-user-ninja:before {
  content: "";
}

.fa-user-nurse:before {
  content: "";
}

.fa-user-plus:before {
  content: "";
}

.fa-user-secret:before {
  content: "";
}

.fa-user-shield:before {
  content: "";
}

.fa-user-slash:before {
  content: "";
}

.fa-user-tag:before {
  content: "";
}

.fa-user-tie:before {
  content: "";
}

.fa-user-times:before {
  content: "";
}

.fa-users:before {
  content: "";
}

.fa-users-cog:before {
  content: "";
}

.fa-usps:before {
  content: "";
}

.fa-ussunnah:before {
  content: "";
}

.fa-utensil-spoon:before {
  content: "";
}

.fa-utensils:before {
  content: "";
}

.fa-vaadin:before {
  content: "";
}

.fa-vector-square:before {
  content: "";
}

.fa-venus:before {
  content: "";
}

.fa-venus-double:before {
  content: "";
}

.fa-venus-mars:before {
  content: "";
}

.fa-viacoin:before {
  content: "";
}

.fa-viadeo:before {
  content: "";
}

.fa-viadeo-square:before {
  content: "";
}

.fa-vial:before {
  content: "";
}

.fa-vials:before {
  content: "";
}

.fa-viber:before {
  content: "";
}

.fa-video:before {
  content: "";
}

.fa-video-slash:before {
  content: "";
}

.fa-vihara:before {
  content: "";
}

.fa-vimeo:before {
  content: "";
}

.fa-vimeo-square:before {
  content: "";
}

.fa-vimeo-v:before {
  content: "";
}

.fa-vine:before {
  content: "";
}

.fa-virus:before {
  content: "若";
}

.fa-virus-slash:before {
  content: "掠";
}

.fa-viruses:before {
  content: "略";
}

.fa-vk:before {
  content: "";
}

.fa-vnv:before {
  content: "";
}

.fa-voicemail:before {
  content: "";
}

.fa-volleyball-ball:before {
  content: "";
}

.fa-volume-down:before {
  content: "";
}

.fa-volume-mute:before {
  content: "";
}

.fa-volume-off:before {
  content: "";
}

.fa-volume-up:before {
  content: "";
}

.fa-vote-yea:before {
  content: "";
}

.fa-vr-cardboard:before {
  content: "";
}

.fa-vuejs:before {
  content: "";
}

.fa-walking:before {
  content: "";
}

.fa-wallet:before {
  content: "";
}

.fa-warehouse:before {
  content: "";
}

.fa-water:before {
  content: "";
}

.fa-wave-square:before {
  content: "";
}

.fa-waze:before {
  content: "";
}

.fa-weebly:before {
  content: "";
}

.fa-weibo:before {
  content: "";
}

.fa-weight:before {
  content: "";
}

.fa-weight-hanging:before {
  content: "";
}

.fa-weixin:before {
  content: "";
}

.fa-whatsapp:before {
  content: "";
}

.fa-whatsapp-square:before {
  content: "";
}

.fa-wheelchair:before {
  content: "";
}

.fa-whmcs:before {
  content: "";
}

.fa-wifi:before {
  content: "";
}

.fa-wikipedia-w:before {
  content: "";
}

.fa-wind:before {
  content: "";
}

.fa-window-close:before {
  content: "";
}

.fa-window-maximize:before {
  content: "";
}

.fa-window-minimize:before {
  content: "";
}

.fa-window-restore:before {
  content: "";
}

.fa-windows:before {
  content: "";
}

.fa-wine-bottle:before {
  content: "";
}

.fa-wine-glass:before {
  content: "";
}

.fa-wine-glass-alt:before {
  content: "";
}

.fa-wix:before {
  content: "";
}

.fa-wizards-of-the-coast:before {
  content: "";
}

.fa-wolf-pack-battalion:before {
  content: "";
}

.fa-won-sign:before {
  content: "";
}

.fa-wordpress:before {
  content: "";
}

.fa-wordpress-simple:before {
  content: "";
}

.fa-wpbeginner:before {
  content: "";
}

.fa-wpexplorer:before {
  content: "";
}

.fa-wpforms:before {
  content: "";
}

.fa-wpressr:before {
  content: "";
}

.fa-wrench:before {
  content: "";
}

.fa-x-ray:before {
  content: "";
}

.fa-xbox:before {
  content: "";
}

.fa-xing:before {
  content: "";
}

.fa-xing-square:before {
  content: "";
}

.fa-y-combinator:before {
  content: "";
}

.fa-yahoo:before {
  content: "";
}

.fa-yammer:before {
  content: "";
}

.fa-yandex:before {
  content: "";
}

.fa-yandex-international:before {
  content: "";
}

.fa-yarn:before {
  content: "";
}

.fa-yelp:before {
  content: "";
}

.fa-yen-sign:before {
  content: "";
}

.fa-yin-yang:before {
  content: "";
}

.fa-yoast:before {
  content: "";
}

.fa-youtube:before {
  content: "";
}

.fa-youtube-square:before {
  content: "";
}

.fa-zhihu:before {
  content: "";
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("../../../bundles/netzppowerpack6/static/font/webfonts/fa-solid-900.eot");
  src: url("../../../bundles/netzppowerpack6/static/font/webfonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("../../../bundles/netzppowerpack6/static/font/webfonts/fa-solid-900.woff2") format("woff2"), url("../../../bundles/netzppowerpack6/static/font/webfonts/fa-solid-900.woff") format("woff"), url("../../../bundles/netzppowerpack6/static/font/webfonts/fa-solid-900.ttf") format("truetype"), url("../../../bundles/netzppowerpack6/static/font/webfonts/fa-solid-900.svg#fontawesome") format("svg");
}

.fa,
.fas {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.netzp-powerpack6-header-cms .cms-section-default {
  margin: 0 !important;
  padding: 0 !important;
}

.netzp-powerpack6-header-cms .cms-section-default .cms-block-container {
  padding-left: .5rem !important;
  padding-right: .5rem !important;
}

.netzp-powerpack6-infobar-element {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.netzp-powerpack6-infobar-element .item {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.netzp-powerpack6-infobar-element .item.vertical {
  -ms-flex-direction: column;
  flex-direction: column;
}

.netzp-powerpack6-infobar-element .item.vertical .icon {
  border-radius: 50% !important;
  margin-right: 0 !important;
}

.netzp-powerpack6-infobar-element .item.vertical .info {
  margin-top: .25rem;
}

.netzp-powerpack6-infobar-element .item .icon {
  display: inline-block;
  width: auto;
  height: auto;
  text-align: center;
  margin-right: .75rem;
}

.netzp-powerpack6-infobar-element .item .info {
  font-weight: bold;
  text-align: center;
}

.netzp-powerpack6-countdown-element h3 {
  font-size: 130%;
}

.netzp-powerpack6-countdown-element .countdown .boxed {
  display: inline-block;
  margin: .5rem 0 .5rem 0;
}

.netzp-powerpack6-countdown-element .countdown .boxed .box1,
.netzp-powerpack6-countdown-element .countdown .boxed .box2,
.netzp-powerpack6-countdown-element .countdown .boxed .box3,
.netzp-powerpack6-countdown-element .countdown .boxed .box4 {
  display: inline-block;
  text-align: center;
  margin-right: 1rem;
}

.netzp-powerpack6-countdown-element .countdown .boxed .box1 .counter,
.netzp-powerpack6-countdown-element .countdown .boxed .box2 .counter,
.netzp-powerpack6-countdown-element .countdown .boxed .box3 .counter,
.netzp-powerpack6-countdown-element .countdown .boxed .box4 .counter {
  display: block;
  border: 1px solid #666;
  border-radius: 10px;
  background-color: #eee;
  font-weight: bold;
  font-size: 130%;
}

.netzp-powerpack6-countdown-element .countdown .boxed .box1 .title,
.netzp-powerpack6-countdown-element .countdown .boxed .box2 .title,
.netzp-powerpack6-countdown-element .countdown .boxed .box3 .title,
.netzp-powerpack6-countdown-element .countdown .boxed .box4 .title {
  font-size: 80%;
}

.netzp-powerpack6-countdown-element .netzp-powerpack6-countdown-button {
  display: inline-block;
  margin-top: 1rem;
  padding: .5rem;
}

.netzp-powerpack6-countdown-element .netzp-powerpack6-countdown-button-absolute {
  position: absolute;
  right: 2rem;
  bottom: 1rem;
}

.netzp-powerpack6-collapse-element [data-toggle="collapse"] i:before {
  content: "";
}

.netzp-powerpack6-collapse-element [data-toggle="collapse"].collapsed i:before {
  content: "";
}

.netzp-powerpack6-map-element {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.netzp-powerpack6-testimonial-element .netzp-testimonial-circle {
  object-fit: cover;
  width: 100px;
  height: 100px;
  margin-right: 1rem;
}

.netzp-powerpack6-testimonial-element .netzp-testimonial-title {
  font-size: 130%;
  font-weight: bold;
}

.netzp-powerpack6-testimonial-element .netzp-testimonial-body {
  margin-top: .25rem;
}

.netzp-powerpack6-testimonial-element .netzp-testimonial-meta {
  margin-top: .5rem;
}

.netzp-powerpack6-cta-element .netzp-cta-wrapper {
  position: relative;
  overflow: hidden;
}

.netzp-powerpack6-cta-element .netzp-cta-wrapper.layout-auto .netzp-cta-image {
  display: inline-block;
  float: left;
}

.netzp-powerpack6-cta-element .netzp-cta-wrapper.layout-auto .netzp-cta-title {
  display: inline-block;
  float: right;
}

.netzp-powerpack6-cta-element .netzp-cta-wrapper.layout-auto .netzp-cta-text {
  display: inline-block;
  float: right;
}

.netzp-powerpack6-cta-element .netzp-cta-wrapper.layout-auto .netzp-cta-button {
  position: absolute;
}

.netzp-powerpack6-cta-element .netzp-cta-wrapper.layout-manual .netzp-cta-title,
.netzp-powerpack6-cta-element .netzp-cta-wrapper.layout-manual .netzp-cta-text,
.netzp-powerpack6-cta-element .netzp-cta-wrapper.layout-manual .netzp-cta-image,
.netzp-powerpack6-cta-element .netzp-cta-wrapper.layout-manual .netzp-cta-button {
  position: absolute;
}

.netzp-powerpack6-cta-element .netzp-cta-wrapper .pos-x-left {
  left: 0;
}

.netzp-powerpack6-cta-element .netzp-cta-wrapper .pos-x-left.image,
.netzp-powerpack6-cta-element .netzp-cta-wrapper .pos-x-left.netzp-cta-button {
  left: .5rem;
}

.netzp-powerpack6-cta-element .netzp-cta-wrapper .pos-x-left.netzp-cta-button.btn-block {
  left: .5rem;
  width: calc(100% - 1rem);
}

.netzp-powerpack6-cta-element .netzp-cta-wrapper .pos-x-left.netzp-cta-image.image-block {
  left: 0;
}

.netzp-powerpack6-cta-element .netzp-cta-wrapper .pos-x-right {
  right: 0;
}

.netzp-powerpack6-cta-element .netzp-cta-wrapper .pos-x-right.netzp-cta-image,
.netzp-powerpack6-cta-element .netzp-cta-wrapper .pos-x-right.netzp-cta-button {
  right: .5rem;
}

.netzp-powerpack6-cta-element .netzp-cta-wrapper .pos-x-right.netzp-cta-button.btn-block {
  left: .5rem;
  width: calc(100% - 1rem);
}

.netzp-powerpack6-cta-element .netzp-cta-wrapper .pos-x-right.netzp-cta-image.image-block {
  right: 0;
}

.netzp-powerpack6-cta-element .netzp-cta-wrapper .pos-y-top {
  top: 0;
}

.netzp-powerpack6-cta-element .netzp-cta-wrapper .pos-y-top.netzp-cta-image,
.netzp-powerpack6-cta-element .netzp-cta-wrapper .pos-y-top.netzp-cta-button {
  top: .5rem;
}

.netzp-powerpack6-cta-element .netzp-cta-wrapper .pos-y-top.netzp-cta-image.image-block {
  top: 0;
}

.netzp-powerpack6-cta-element .netzp-cta-wrapper .pos-y-bottom {
  bottom: 0;
}

.netzp-powerpack6-cta-element .netzp-cta-wrapper .pos-y-bottom.netzp-cta-image,
.netzp-powerpack6-cta-element .netzp-cta-wrapper .pos-y-bottom.netzp-cta-button {
  bottom: .5rem;
}

.netzp-powerpack6-cta-element .netzp-cta-wrapper .pos-y-bottom.netzp-cta-image.image-block {
  bottom: 0;
}

.netzp-powerpack6-cta-element .netzp-cta-wrapper .pos-x-center {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.netzp-powerpack6-cta-element .netzp-cta-wrapper .pos-x-center.image-block {
  width: 100%;
}

.netzp-powerpack6-cta-element .netzp-cta-wrapper .pos-x-center.netzp-cta-button.btn-block {
  margin-left: .25rem;
  width: calc(100% - 2rem);
}

.netzp-powerpack6-cta-element .netzp-cta-wrapper .pos-y-center {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.netzp-powerpack6-cta-element .netzp-cta-wrapper .pos-y-center.image-block {
  width: 100%;
}

.netzp-powerpack6-cta-element .netzp-cta-wrapper .pos-xy-center {
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.netzp-powerpack6-cta-element .netzp-cta-wrapper .pos-xy-center.image-block {
  width: 100%;
}

.netzp-powerpack6-cta-element .netzp-cta-wrapper .netzp-cta-title {
  font-size: 1.3rem;
  font-weight: bold;
  padding: .25rem .5rem .25rem .5rem;
  white-space: nowrap;
}

.netzp-powerpack6-cta-element .netzp-cta-wrapper .netzp-cta-text {
  padding: .5rem;
  height: auto;
}

.netzp-powerpack6-cta-element .netzp-cta-wrapper .netzp-cta-image img {
  width: 5rem;
  height: 5rem;
}

.netzp-powerpack6-cta-element .netzp-cta-wrapper .netzp-cta-image.image-block {
  width: 100%;
}

.netzp-powerpack6-cta-element .netzp-cta-wrapper .netzp-cta-image.image-block img {
  object-fit: cover;
}

.netzp-powerpack6-cta-element .netzp-cta-wrapper .btn-rounded {
  border-radius: 45px;
}

.netzp-powerpack6-cta-element .netzp-cta-wrapper .btn-shadow {
  box-shadow: 3px 3px 15px rgba(50, 50, 50, .7);
}

.netzp-powerpack6-cta-element .netzp-cta-wrapper .text-shadow {
  text-shadow: 1px 1px 3px rgba(50, 50, 50, .7);
}

@media (max-width:767.98px) {
  .netzp-powerpack6-infobar-element .item.vertical .info {
    margin-top: 0 !important;
  }

  .netzp-powerpack6-infobar-element .item .icon {
    font-size: 100% !important;
    margin-right: .25rem;
    -webkit-transform: scale(.75);
    -ms-transform: scale(.75);
    transform: scale(.75);
  }

  .netzp-powerpack6-infobar-element .item .info {
    font-size: 100% !important;
  }

  .netzp-powerpack6-countdown-element {
    font-size: 1.5rem !important;
  }

  .netzp-powerpack6-countdown-element .boxed {
    font-size: 1rem !important;
  }

  .netzp-powerpack6-countdown-element .netzp-powerpack6-countdown-button {
    font-size: 1.5rem !important;
  }

  .netzp-powerpack6-cta-element .netzp-cta-wrapper:not(.layout-manual) {
    height: inherit !important;
  }

  .netzp-powerpack6-cta-element .netzp-cta-wrapper:not(.layout-manual) .netzp-cta-button {
    clear: both !important;
    display: block !important;
    position: unset !important;
  }

  .netzp-powerpack6-cta-element .netzp-cta-wrapper .netzp-cta-text {
    margin-bottom: 2.5rem;
  }

  .netzp-powerpack6-cta-element .netzp-cta-wrapper .netzp-cta-image {
    display: block !important;
    float: inherit !important;
  }

  .netzp-powerpack6-tabs-element .nav-tabs {
    border: 1px solid #bcc1c7 !important;
  }

  .netzp-powerpack6-tabs-element .nav-item {
    display: block;
    width: 100%;
  }

  .netzp-powerpack6-tabs-element .nav-link {
    border: none !important;
  }

  .netzp-powerpack6-tabs-element .nav-link.active {
    border-bottom: 2px solid #bcc1c7 !important;
  }
}

.elio-content-listing-entry {
  margin-bottom: 30px;
}

.elio-content-listing-content {
  padding-top: 10px;
  padding-bottom: 20px;
}

.elio-content-listing-content .cart-item-img {
  margin-bottom: 15px;
}

.elio-content-listing-content .elio-content-listing-teaser-text {
  margin-bottom: 20px;
}

@media (min-width:768px) {
  .elio-content-listing-content {
    padding-top: 20px;
    padding-bottom: 30px;
  }

  .elio-content-listing-content .cart-item-img {
    max-height: 200px;
    margin-bottom: 0;
  }
}

.e-search-suggest .search-suggest-container {
  padding: 0 0 .625rem 0;
}

.e-search-suggest .empty {
  padding-bottom: .375rem;
  padding-top: 1rem;
  text-align: center;
}

.e-search-suggest .e-search-suggest-container {
  list-style: none;
  touch-action: manipulation;
  margin-bottom: 0;
}

.e-search-suggest .elio-suggest-block-header {
  margin-top: 1.375rem;
  margin-bottom: .625rem;
  font-size: 1.25rem;
  font-weight: 500;
  border-bottom: 1px solid #111;
}

.e-search-suggest .highlight {
  text-decoration: underline;
  color: #e52427;
}

.e-search-suggest .search-suggest-total {
  padding-right: 20px;
  padding-top: 20px;
  padding-left: 20px;
}

.e-search-suggest .search-suggest-product:last-child {
  border-bottom: .0625rem solid #bcc1c7;
}

@media (min-width:576px) {
  .e-search-suggest .search-suggest-container {
    width: 28.125rem;
  }
}

@media (min-width:768px) {
  .e-search-suggest .search-suggest-container {
    width: 40rem;
  }
}

@media (min-width:1025px) {
  .e-search-suggest .search-suggest-container {
    width: 55rem;
  }
}

.e-search-page .filter-panel-wrapper-toggle {
  margin-bottom: .625rem;
}

.e-header-search-form .e-autocomplete {
  position: absolute;
  z-index: 4;
  bottom: 1px;
  top: 1px;
  padding: .5625rem .5625rem;
  color: #c3c3c3;
}

body.is-ctl-wishlist .wl_item.row p,
body.is-ctl-wishlist .wl_item.account-content p,
body.is-ctl-wishlist .is-act-cartpage .checkout .wl_item.checkout-container p,
.is-act-cartpage .checkout body.is-ctl-wishlist .wl_item.checkout-container p,
body.is-ctl-wishlist .is-act-checkoutregisterpage .checkout .wl_item.checkout-container p,
.is-act-checkoutregisterpage .checkout body.is-ctl-wishlist .wl_item.checkout-container p,
body.is-ctl-wishlist .is-act-confirmpage .checkout .wl_item.checkout-container p,
.is-act-confirmpage .checkout body.is-ctl-wishlist .wl_item.checkout-container p,
body.is-ctl-wishlist .is-ctl-accountorder .checkout .wl_item.checkout-container p,
.is-ctl-accountorder .checkout body.is-ctl-wishlist .wl_item.checkout-container p,
body.is-ctl-wishlist .is-act-finishpage .checkout .wl_item.checkout-container p,
.is-act-finishpage .checkout body.is-ctl-wishlist .wl_item.checkout-container p {
  margin-top: 13px;
}

.wishlist-listing-link {
  z-index: 500;
  right: 0;
  top: 0;
}

.wishlist-add-from-cart .hidden-element {
  display: none;
}

.wishlist-add-from-cart .wishlist-select-create-new .form-control,
.wishlist-add-from-cart .wishlist-select-create-new .hbspt-form input.hs-input[type="text"],
.hbspt-form .wishlist-add-from-cart .wishlist-select-create-new input.hs-input[type="text"],
.wishlist-add-from-cart .wishlist-select-create-new .hbspt-form input.hs-input[type="tel"],
.hbspt-form .wishlist-add-from-cart .wishlist-select-create-new input.hs-input[type="tel"],
.wishlist-add-from-cart .wishlist-select-create-new .hbspt-form input.hs-input[type="email"],
.hbspt-form .wishlist-add-from-cart .wishlist-select-create-new input.hs-input[type="email"] {
  display: inline-block;
  width: auto;
}

.icon-request,
.icon-privacy {
  width: 24px;
  height: 24px;
}

.wishlist-detail-btns .btn,
.wishlist-detail-btns .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .watchlist-listing-link,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .wishlist-detail-btns .watchlist-listing-link,
.wishlist-detail-btns .hbspt-form input.hs-button,
.hbspt-form .wishlist-detail-btns input.hs-button {
  margin-right: 5px;
}

.wishlist-message-div {
  margin-top: 16px;
}

.btn-mark {
  color: #fff;
  color: #e30613;
  background-color: #e30613;
  background-color: #fff;
  border-color: #e30613;
}

.btn-mark:hover {
  color: #fff;
  background-color: #be0510;
  border-color: #b1050f;
}

.btn-mark:focus,
.btn-mark.focus {
  box-shadow: 0 0 0 .2rem rgba(231, 43, 54, .5);
}

.btn-mark.disabled,
.btn-mark:disabled {
  color: #fff;
  background-color: #e30613;
  border-color: #e30613;
}

.btn-mark:not(:disabled):not(.disabled):active,
.btn-mark:not(:disabled):not(.disabled).active,
.show > .btn-mark.dropdown-toggle {
  color: #fff;
  background-color: #b1050f;
  border-color: #a5040e;
}

.btn-mark:not(:disabled):not(.disabled):active:focus,
.btn-mark:not(:disabled):not(.disabled).active:focus,
.show > .btn-mark.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(231, 43, 54, .5);
}

.btn-mark.disabled,
.btn-mark:disabled {
  cursor: not-allowed;
  pointer-events: none;
}

.btn-marked {
  color: #fff;
  color: #fff;
  background-color: #e30613;
  background-color: #e30613;
  border-color: #e30613;
}

.btn-marked:hover {
  color: #212529;
  background-color: #fff;
  border-color: #b1050f;
}

.btn-marked:focus,
.btn-marked.focus {
  box-shadow: 0 0 0 .2rem rgba(231, 43, 54, .5);
}

.btn-marked.disabled,
.btn-marked:disabled {
  color: #fff;
  background-color: #e30613;
  border-color: #e30613;
}

.btn-marked:not(:disabled):not(.disabled):active,
.btn-marked:not(:disabled):not(.disabled).active,
.show > .btn-marked.dropdown-toggle {
  color: #fff;
  background-color: #b1050f;
  border-color: #a5040e;
}

.btn-marked:not(:disabled):not(.disabled):active:focus,
.btn-marked:not(:disabled):not(.disabled).active:focus,
.show > .btn-marked.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(231, 43, 54, .5);
}

.btn-marked.disabled,
.btn-marked:disabled {
  cursor: not-allowed;
  pointer-events: none;
}

.cart-item-wishlist-heart {
  padding: 2px 12px 2px 12px;
}

.wishlist-product-select-form {
  width: 70px;
}

#wishlistRemoveConfirmModal {
  z-index: 1070;
}

@media (min-width:576px) {
  .js-pseudo-modal .modal-dialog {
    max-width: 47.25rem;
    margin: 1.75rem auto;
  }
}

#sendWishlistModalInModal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 200;
}

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

.modal-request-offer .wl-add-all-into-cart-btn .asset-icon {
  -webkit-filter: invert(100%) sepia(0%) saturate(14%) hue-rotate(267deg) brightness(106%) contrast(103%);
  filter: invert(100%) sepia(0%) saturate(14%) hue-rotate(267deg) brightness(106%) contrast(103%);
}

.offer-request-modal-title {
  position: absolute;
  top: -20px;
}

.wishlist-request-form .card {
  position: unset;
}

.modal-request-offer .request-title {
  margin-top: -10%;
  font-size: 1.5em;
}

.modal-request-offer .request-title h1 {
  font-size: 1em;
}

.modal-request-offer #sendWishlistModalInModal .modal-content {
  padding-bottom: inherit;
}

.modal-request-offer .modal-content {
  padding-bottom: 70px;
}

.modal-request-offer .wl-request-submit-form {
  position: absolute;
  bottom: -40px;
}

.modal-request-offer .wishlist-detail-btns {
  -ms-flex-align: baseline;
  align-items: baseline;
}

.modal-request-offer .wishlist-detail-btns .d-flex a {
  margin-bottom: .5rem;
}

.cms-block-container a:link,
.cms-block-container a:visited,
.cms-block-container a:hover,
.cms-block-container a:active {
  text-decoration: none;
}

.teaser-alert-element,
.alert,
.hbspt-form div.submitted-message {
  height: 100%;
}

.teaser-alert-element .alert,
.teaser-alert-element .hbspt-form div.submitted-message,
.hbspt-form .teaser-alert-element div.submitted-message {
  position: relative;
  padding: 60px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
}

.teaser-alert-element .bottom-left,
.teaser-alert-element .top-right {
  position: absolute;
  width: 30px;
  height: 50px;
  background-color: transparent;
}

.teaser-alert-element .bottom-left {
  border-left: 10px solid;
  border-bottom: 10px solid;
  bottom: 20px;
  left: 20px;
}

.teaser-alert-element .top-right {
  border-right: 10px solid;
  border-top: 10px solid;
  top: 20px;
  right: 20px;
}

.teaser-alert-element .alert-error {
  background: #e30613;
  color: white;
}

.teaser-alert-element .alert-success,
.teaser-alert-element .hbspt-form div.submitted-message,
.hbspt-form .teaser-alert-element div.submitted-message {
  background: #eee;
  color: #111;
}

.teaser-alert-element .alert-success .top-right,
.teaser-alert-element .hbspt-form div.submitted-message .top-right,
.hbspt-form .teaser-alert-element div.submitted-message .top-right,
.teaser-alert-element .alert-success .bottom-left,
.teaser-alert-element .hbspt-form div.submitted-message .bottom-left,
.hbspt-form .teaser-alert-element div.submitted-message .bottom-left {
  color: #e30613;
}

.teaser-alert-element .alert-warning {
  background: #ffe500;
  color: #111;
}

.image-text-element {
  position: relative;
  overflow: hidden;
}

.image-text-element .title {
  font-size: 1.2em;
  font-weight: bold;
}

.image-text-element figure {
  display: -ms-grid;
  display: grid;
}

.image-text-element figure figcaption {
  display: table-caption;
  caption-side: bottom;
}

.image-text-element .imageCaption {
  font-size: .875rem;
  color: #9d9d9d;
}

.image-text-element.image-left .title .sw-text-editor__content {
  padding-bottom: 5px;
}

.image-text-element.image-left figure {
  float: left;
  max-width: 50%;
  margin-right: 35px;
}

@media (max-width:767.98px) {
  .image-text-element.image-left figure {
    max-width: 100%;
    width: 100%;
  }
}

.image-text-element.image-left figure .sw-field {

  margin-bottom: 0px;
}

.image-text-element.image-right .title .sw-text-editor__content {
  padding-bottom: 5px;
}

.image-text-element.image-right figure {
  float: right;
  max-width: 50%;
  margin-left: 35px;
}

@media (max-width:767.98px) {
  .image-text-element.image-right figure {
    max-width: 100%;
    width: 100%;
  }
}

.image-text-element.image-right figure .sw-field {
  margin-bottom: 0px;
}

.image-text-element img {
  float: left;
  width: 100%;
  object-fit: contain;
}

@media (max-width:1199.98px) {
  .image-text-element img {
    object-fit: cover;
  }
}

@media (max-width:767.98px) {
  .image-text-element img {
    height: auto;
  }
}

.image-text-element.image-top {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.image-text-element.image-top img {
  max-width: 100%;
  width: inherit;
  padding: 0px;
}

@media (max-width:767.98px) {
  .image-text-element.image-top img {
    width: 100%;
  }
}

.linked-card-teaser-element {
  height: 100%;
}

.linked-card-teaser-element .teaser-link {
  color: unset;
}

.linked-card-teaser-element .teaser-link:hover {
  text-decoration: none;
  color: unset;
}

.linked-card-teaser-element .teaser-wrapper {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #f6f6f6;
  height: 100%;
}

.linked-card-teaser-element .teaser-wrapper:hover {
  box-shadow: 0 0 16px rgba(0, 0, 0, .16);
  cursor: pointer;
}

.linked-card-teaser-element .teaser-wrapper .teaser-image {
  width: 100%;
  /*height: 320px;*/
  object-fit: cover;
}

.linked-card-teaser-element .teaser-wrapper .teaser-body .button {
  margin-top: 10px;
}

.linked-card-teaser-element .teaser-wrapper .teaser-body,
.linked-card-teaser-element .teaser-wrapper .teaser-footer {
  padding: 20px;
}

.linked-card-teaser-element .teaser-wrapper .teaser-footer {
  margin-top: auto;
}

.linked-card-teaser-element .teaser-wrapper .teaser-footer button:not(.btn-primary):not(.btn-secondary):not(.btn-outline-primary) {
  padding: 0;
  color: #e30613;
}

.linked-card-teaser-element .teaser-wrapper .teaser-footer button::after {
  content: "";
  background: url("/bundles/storefront/assets/icon/solid/arrow-medium-right.svg");
  margin-left: 8px;
  display: inline-block;
  width: 15px;
  height: 15px;
  -webkit-filter: invert(20%) sepia(100%) saturate(5861%) hue-rotate(350deg) brightness(86%) contrast(109%);
  filter: invert(20%) sepia(100%) saturate(5861%) hue-rotate(350deg) brightness(86%) contrast(109%);
  vertical-align: middle;
}

.teaser-card-with-border-element {
  border: 4px solid #ededed;
}

@media (min-width:768px) {
  .teaser-card-with-border-element {
    height: 100%;
  }
}

.teaser-card-with-border-element .teaser-link {
  color: unset;
}

.teaser-card-with-border-element .teaser-link:hover {
  text-decoration: none;
  color: unset;
}

.teaser-card-with-border-element .teaser-wrapper {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}

@media (min-width:1025px) {
  .teaser-card-with-border-element .teaser-wrapper {
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.teaser-card-with-border-element .teaser-wrapper:hover {
  box-shadow: 0 0 16px rgba(0, 0, 0, .16);
  cursor: pointer;
}

.teaser-card-with-border-element .teaser-wrapper .teaser-image {
  object-fit: contain;
  max-width: 140px;
  margin: 15px 15px 0 15px;
}

@media (min-width:1025px) {
  .teaser-card-with-border-element .teaser-wrapper .teaser-image {
    margin: 30px 0 30px 30px;
  }
}

.teaser-card-with-border-element .teaser-wrapper .teaser-body {
  padding: 15px;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (min-width:1025px) {
  .teaser-card-with-border-element .teaser-wrapper .teaser-body {
    padding: 30px;
  }
}

.teaser-card-with-border-element .teaser-wrapper .button-wrapper {
  margin-top: auto;
}

.teaser-card-with-border-element .teaser-wrapper .button-wrapper button {
  min-height: 40px;
}

.teaser-card-with-border-element .teaser-wrapper .button-wrapper button.no-border,
.teaser-card-with-border-element .teaser-wrapper .button-wrapper button.btn-low:hover {
  color: #e30613;
}

.teaser-card-with-border-element .teaser-wrapper .button-wrapper button.no-border:hover {
  color: #98040d;
}

.teaser-card-with-border-element .teaser-wrapper .button-wrapper button.btn-low,
.teaser-card-with-border-element .teaser-wrapper .button-wrapper button.no-border {
  padding: 0px;
}

.teaser-card-with-border-element .teaser-wrapper .button-wrapper button.btn-low::after {
  content: "";
  background: url("/bundles/storefront/assets/icon/solid/arrow-medium-right.svg");
  margin-left: 8px;
  display: inline-block;
  width: 15px;
  height: 15px;
  -webkit-filter: invert(20%) sepia(100%) saturate(5861%) hue-rotate(350deg) brightness(86%) contrast(109%);
  filter: invert(20%) sepia(100%) saturate(5861%) hue-rotate(350deg) brightness(86%) contrast(109%);
  vertical-align: middle;
}

.expand-outer {
  position: relative;
  height: 100%;
}

.expand-js--container {
  height: 100%;
}

.expand-js {
  height: 100%;
}

.expand-js.-hidden {
  overflow-x: hidden;
}

.expand-js.-rtl {
  direction: rtl;
}

.expand-js--item {
  float: left;
  overflow-x: hidden;
  height: 100%;
}

.expand-js--item.f-right {
  float: right;
}

.expand-js--prev,
.expand-js--next {
  position: absolute;
  top: 49%;
  width: 2.5rem;
  height: 3rem;
  line-height: 1;
  padding-bottom: .33rem;
  text-align: center;
  background: rgba(255, 255, 255, .8);
  box-shadow: .1rem .1rem .2rem 0 rgba(0, 0, 0, .25);
  color: #333;
  font-size: 2rem;
  cursor: pointer;
  -webkit-transition: 275ms background ease-in-out;
  transition: 275ms background ease-in-out;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.expand-js--prev:hover,
.expand-js--next:hover {
  background: white;
}

.expand-js--prev {
  left: 1rem;
}

.expand-js--next {
  right: 1rem;
}

.expand-js.-is-pagination + .expand-js--prev {
  margin-top: 0;
}

.expand-js.-is-pagination + .expand-js--prev + .expand-js--next {
  margin-top: 0;
}

.expand-pagination {
  padding-top: .625rem;
  text-align: center;
}

.expand-pagination .expand-pagination--item {
  display: inline-block;
  padding: .375rem;
  cursor: pointer;
}

.expand-pagination .expand-pagination--item.active {
  background: #ddd;
}

.expand-pagination .expand-pagination--item.expand-pagination--item--dots {
  width: .75rem;
  height: .75rem;
  margin: 0 .25rem;
  background: #ddd;
  border-radius: 50%;
}

.expand-pagination .expand-pagination--item.expand-pagination--item--dots.active {
  background: #999;
}

.faesslich-slider-wrapper-outer {
  width: 100%;
}

.faesslich-slider-wrapper-outer.-show-dots:not(.-dots-inside) .expand-js {
  height: calc(100% - 2.5rem);
}

.faesslich-slider-wrapper-outer .faesslich-slider-slide-item {
  position: relative;
  min-height: 20rem;
  margin-bottom: 5rem;
  background-size: auto 20rem;
  background-position: 50% top;
  background-repeat: no-repeat;
}
.faesslich-slider-wrapper-outer .faesslich-slider-slide-item1 {
  position: relative;
  min-height: 20rem;
  margin-bottom: 5rem;
  background-size: auto 20rem;
  background-position: 50% top;
  background-repeat: no-repeat;
}

.faesslich-slider-wrapper-outer .faesslich-slider-slide-item.-is-video-item {
  height: 100% !important;
}
.faesslich-slider-wrapper-outer .faesslich-slider-slide-item1.-is-video-item {
  height: 100% !important;
}
@media (min-width:576px) {
  .faesslich-slider-wrapper-outer .faesslich-slider-slide-item {
    background-size: cover;
    background-position: center;
  }
  .faesslich-slider-wrapper-outer .faesslich-slider-slide-item1 {
    background-size: cover;
    background-position: center;
  }
}

@media (min-width:1025px) {
  .faesslich-slider-wrapper-outer .faesslich-slider-slide-item {
    margin-bottom: 0;
  }
  .faesslich-slider-wrapper-outer .faesslich-slider-slide-item1 {
    margin-bottom: 0;
  }
}

.faesslich-slider-wrapper-outer .faesslich-slider-slide-item--overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: rgba(0, 0, 0, .5);
}
.faesslich-slider-wrapper-outer .faesslich-slider-slide-item1--overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: rgba(0, 0, 0, .5);
}

.faesslich-slider-wrapper-outer .faesslich-slider-slide-item video {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.faesslich-slider-wrapper-outer .faesslich-slider-slide-item1 video {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.faesslich-slider-wrapper-outer .faesslich-slider-slide-item--picture {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.faesslich-slider-wrapper-outer .faesslich-slider-slide-item1--picture {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.faesslich-slider-wrapper-outer .faesslich-slider-slide-item--picture img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.faesslich-slider-wrapper-outer .faesslich-slider-slide-item1--picture img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.faesslich-slider-wrapper-outer .faesslich-slider-slide-item--content {
  position: relative;
  z-index: 20;
  padding: 6rem 2.25rem 0;
  margin-bottom: 6rem;
  -ms-transform: translateY(6rem);
  -webkit-transform: translateY(6rem);
  transform: translateY(6rem);
}
.faesslich-slider-wrapper-outer .faesslich-slider-slide-item1--content {
  position: relative;
  z-index: 20;
  padding: 6rem 2.25rem 0;
  margin-bottom: 6rem;
  -ms-transform: translateY(6rem);
  -webkit-transform: translateY(6rem);
  transform: translateY(6rem);
}

@media (min-width:1025px) {
  .faesslich-slider-wrapper-outer .faesslich-slider-slide-item--content {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -ms-flex-align: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 60%;
    max-width: 45rem;
    padding: 3rem;
    margin-bottom: 0;
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
    background: none;
  }
  .faesslich-slider-wrapper-outer .faesslich-slider-slide-item1--content {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -ms-flex-align: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 60%;
    max-width: 45rem;
    padding: 3rem;
    margin-bottom: 0;
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
    background: none;
  }
}

@media (min-width:1200px) {
  .faesslich-slider-wrapper-outer .faesslich-slider-slide-item--content {
    padding: 3rem 2rem 3rem 5rem;
  }
  .faesslich-slider-wrapper-outer .faesslich-slider-slide-item1--content {
    padding: 3rem 2rem 3rem 5rem;
  }
}

.faesslich-slider-wrapper-outer .faesslich-slider-slide-item--content-inner {
  position: relative;
  z-index: 10;
  padding: 1rem;
  margin: 0 auto;
  background: #f9f9f9;
}
.faesslich-slider-wrapper-outer .faesslich-slider-slide-item1--content-inner {
  position: relative;
  z-index: 10;
  padding: 1rem;
  margin: 0 auto;
  background: #f9f9f9;
}

.faesslich-slider-wrapper-outer .faesslich-slider-slide-item--content-inner .slide-item--upper-headline {
  display: block;
  text-transform: uppercase;
  font-size: 21px;
  font-weight: 300;
  line-height: 1.25;
}
.faesslich-slider-wrapper-outer .faesslich-slider-slide-item1--content-inner .slide-item--upper-headline {
  display: block;
  text-transform: uppercase;
  font-size: 21px;
  font-weight: 300;
  line-height: 1.25;
}

.faesslich-slider-wrapper-outer .faesslich-slider-slide-item--content-inner .slide-item--headline {
  padding-bottom: .5rem;
  font-size: 27px;
  font-weight: 700;
  line-height: 1.25;
}
.faesslich-slider-wrapper-outer .faesslich-slider-slide-item1--content-inner .slide-item--headline {
  padding-bottom: .5rem;
  font-size: 27px;
  font-weight: 700;
  line-height: 1.25;
}

.faesslich-slider-wrapper-outer .faesslich-slider-slide-item--content-inner .slide-item--paragraph {
  padding-bottom: .625rem;
  font-size: 1rem;
}
.faesslich-slider-wrapper-outer .faesslich-slider-slide-item1--content-inner .slide-item--paragraph {
  padding-bottom: .625rem;
  font-size: 1rem;
}


.faesslich-slider-wrapper-outer .faesslich-slider-slide-item--content-inner .slide-item--button-wrapper {
  padding-top: .625rem;
}

.faesslich-slider-wrapper-outer .faesslich-slider-slide-item1--content-inner .slide-item--button-wrapper {
  padding-top: .625rem;
}
@media (min-width:1025px) {
  .faesslich-slider-wrapper-outer .faesslich-slider-slide-item--content-inner {
    width: 100%;
    padding: 2rem 3rem;
    margin: 0;
    background: rgba(28, 32, 35, .9);
    border-bottom: .5rem solid #e30613;
    color: #f9f9f9;
  }
  .faesslich-slider-wrapper-outer .faesslich-slider-slide-item1--content-inner {
    width: 100%;
    padding: 2rem 3rem;
    margin: 0;
    background: rgba(28, 32, 35, .9);
    border-bottom: .5rem solid #e30613;
    color: #f9f9f9;
  }

  .faesslich-slider-wrapper-outer .faesslich-slider-slide-item--content-inner .slide-item--upper-headline {
    font-size: 28px;
  }
  .faesslich-slider-wrapper-outer .faesslich-slider-slide-item1--content-inner .slide-item--upper-headline {
    font-size: 28px;
  }

  .faesslich-slider-wrapper-outer .faesslich-slider-slide-item--content-inner .slide-item--headline {
    font-size: 36px;
  }
  .faesslich-slider-wrapper-outer .faesslich-slider-slide-item1--content-inner .slide-item--headline {
    font-size: 36px;
  }

  .faesslich-slider-wrapper-outer .faesslich-slider-slide-item--content-inner .slide-item--paragraph {
    color: #f9f9f9;
  }
  .faesslich-slider-wrapper-outer .faesslich-slider-slide-item1--content-inner .slide-item--paragraph {
    color: #f9f9f9;
  }


}

.faesslich-slider-wrapper-outer .expand-js--prev,
.faesslich-slider-wrapper-outer .expand-js--next {
  border: 0;
}

.faesslich-slider-wrapper-outer .expand-js--prev {
  left: 1rem;
}

.faesslich-slider-wrapper-outer .expand-js--next {
  right: 1rem;
}

.faesslich-slider-wrapper-outer .expand-js--item {
  overflow: hidden;
}

.faesslich-slider-wrapper-outer.-dots-inside .expand-pagination {
  position: relative;
  z-index: 100;
  margin-top: -2.5rem;
}

.faesslich-slider-wrapper-outer .faesslich-slider-wrapper {
  width: 100%;
}

@media (min-width:1025px) {
  .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-one .faesslich-slider-slide-item--content {
    width: 100%;
    padding: 3rem;
    background: none;
  }

  .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-one .faesslich-slider-slide-item--content::before {
    display: none;
  }
}

@media (min-width:1200px) {
  .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-one .faesslich-slider-slide-item--content {
    min-height: 36rem;
    padding: 3rem 2rem 3rem 5rem;
  }
}

.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-one .faesslich-slider-slide-item--content-inner {
  max-width: 40rem;
  padding: 1rem;
  background: #f9f9f9;
  box-shadow: -.1rem .1rem 1rem 0 rgba(0, 0, 0, .25);
}

@media (min-width:1025px) {
  .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-one .faesslich-slider-slide-item--content-inner {
    width: 100%;
    padding: 2rem 3rem;
    -ms-transform: skewX(0);
    -webkit-transform: skewX(0);
    transform: skewX(0);
    color: #4a545b;
  }

  .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-one .faesslich-slider-slide-item--content-inner .slide-item--paragraph {
    color: #4a545b;
  }
}

.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-one .expand-pagination {
  max-width: 7rem;
  padding: .25rem .25rem 0;
  margin: 0 auto;
}

@media (min-width:1025px) {
  .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-one .expand-pagination {
    -ms-transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    background: rgba(40, 45, 49, .8);
  }
}

.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-one .expand-pagination .expand-pagination--item {
  background: #f9f9f9;
  padding: .25rem .5rem;
}

.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-one .expand-pagination .expand-pagination--item.active {
  background: #e30613;
  color: #f9f9f9;
}

.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-one .expand-pagination .expand-pagination--item--dots {
  padding: .375rem;
}

.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-one .expand-pagination .expand-pagination--item--dots.active {
  background: #e30613;
}

@media (min-width:1025px) {
  .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-one .expand-pagination .expand-pagination--item.active {
    background: #f9f9f9;
  }

  .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-one .expand-pagination .expand-pagination--item--dots {
    background: #f9f9f9;
  }

  .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-one .expand-pagination .expand-pagination--item--dots.active {
    background: #e30613;
  }
}

@media (min-width:1025px) {
  .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-two .faesslich-slider-slide-item--content {
    width: 100%;
    max-width: 70rem;
  }

  .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-two .faesslich-slider-slide-item--content::before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 170%;
    background: linear-gradient(90deg, #08090a 0%, rgba(8, 9, 10, .6) 50%, rgba(0, 0, 0, 0) 100%);
    content: "";
  }
}

.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-two .faesslich-slider-slide-item--content-inner {
  max-width: 45rem;
}

.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-two .faesslich-slider-slide-item--content-inner .slide-item--upper-headline {
  display: inline-block;
  padding: .25rem .5rem;
  background: #e30613;
  color: #f9f9f9;
  font-size: 1rem;
  font-weight: 700;
}

@media (min-width:1025px) {
  .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-two .faesslich-slider-slide-item--content-inner {
    padding: 0;
    background: none;
    border-bottom: 0;
  }

  .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-two .faesslich-slider-slide-item--content-inner .slide-item--upper-headline {
    font-size: 1rem;
  }

  .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-two .faesslich-slider-slide-item--content-inner .slide-item--headline {
    font-size: 45px;

  }
}

.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-two .expand-pagination {
  padding: .5rem;
}

@media (min-width:1025px) {
  .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-two .expand-pagination {
    -ms-transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-two .expand-pagination .expand-pagination--item {
  padding: .25rem .5rem;
  background: #e30613;
  opacity: .5;
}

.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-two .expand-pagination .expand-pagination--item.active {
  opacity: 1;
}

.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-two .expand-pagination .expand-pagination--item--dots {
  padding: .375rem;
  background: none;
  border: .125rem solid #e30613;
}

.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-two .expand-pagination .expand-pagination--item--dots.active {
  background: #e30613;
}

@media (min-width:1025px) {
  .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-two .expand-pagination .expand-pagination--item {
    background: #f9f9f9;
  }

  .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-two .expand-pagination .expand-pagination--item--dots {
    border-color: #f9f9f9;
  }

  .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-two .expand-pagination .expand-pagination--item--dots.active {
    background: #f9f9f9;
  }
}

.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-two .expand-js--prev,
.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-two .expand-js--next {
  top: 50%;
  width: 3rem;
  height: 4rem;
  line-height: 1;
  padding-bottom: .67rem;
  background: none;
  border: 0;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  color: #f9f9f9;
  font-size: 3rem;
  opacity: .7;
}

.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-two .expand-js--prev:hover,
.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-two .expand-js--next:hover {
  opacity: 1;
}

.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three::before {
  position: absolute;
  left: -20%;
  top: 100%;
  width: 140%;
  height: 6rem;
  -ms-transform: translateY(-50%) rotate(-2deg);
  -webkit-transform: translateY(-50%) rotate(-2deg);
  transform: translateY(-50%) rotate(-2deg);
  background: #fff;
  box-shadow: 0 0 1rem 0 rgba(40, 45, 49, .3);
  z-index: 100;
  content: "";
}

@media (min-width:1025px) {
  .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three::before {
    height: 10rem;
  }
}

.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .faesslich-slider-slide-item {
  height: 30rem;
  margin-bottom: 0;
  background-size: cover;
  background-position: center;
}

@media (min-width:1025px) {
  .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .faesslich-slider-slide-item {
    height: auto;
  }
}

.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .faesslich-slider-slide-item--content {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  max-width: inherit;
  padding: 0 2.25rem 3rem;
  margin-bottom: 0;
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
  text-align: center;
}

.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .faesslich-slider-slide-item--content::before {
  position: absolute;
  top: 0;
  left: -20%;
  height: 100%;
  width: 145%;
  background: linear-gradient(170deg, rgba(227, 6, 19, .85) 0%, rgba(227, 6, 19, .85) 50%, rgba(251, 109, 118, .75) 100%);
  content: "";
}

@media (min-width:1025px) {
  .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .faesslich-slider-slide-item--content {
    width: 100%;
  }

  .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .faesslich-slider-slide-item--content::before {
    background: linear-gradient(170deg, rgba(227, 6, 19, .85) 0%, rgba(227, 6, 19, .85) 50%, rgba(251, 109, 118, .75) 100%);
  }
}

.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .faesslich-slider-slide-item--content-inner {
  max-width: 45rem;
  margin: 0 auto;
  background: none;
  color: #f9f9f9;
}

.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .faesslich-slider-slide-item--content-inner .slide-item--upper-headline {
  color: #f9f9f9;
  font-size: 1rem;
  font-weight: 700;
}

.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .faesslich-slider-slide-item--content-inner .slide-item--paragraph {
  font-size: 1rem;
  color: #f9f9f9;
}

@media (min-width:1025px) {
  .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .faesslich-slider-slide-item--content-inner {
    padding: 0;
    background: none;
    border-bottom: 0;
    -ms-transform: skewX(0);
    -webkit-transform: skewX(0);
    transform: skewX(0);
  }

  .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .faesslich-slider-slide-item--content-inner .slide-item--upper-headline {
    font-size: 1rem;
  }

  .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .faesslich-slider-slide-item--content-inner .slide-item--headline {
    font-size: 45px;
  }
}

.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .faesslich-slider-slide-item--content-inner .btn.btn-primary,
.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .faesslich-slider-slide-item--content-inner .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .btn-primary.watchlist-listing-link,
.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .faesslich-slider-slide-item--content-inner .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .watchlist-listing-link.address-editor-select:not(.collapsed),
.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .faesslich-slider-slide-item--content-inner .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .watchlist-listing-link.address-editor-edit:not(.collapsed),
.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .faesslich-slider-slide-item--content-inner .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .watchlist-listing-link.address-editor-create:not(.collapsed),
.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .faesslich-slider-slide-item--content-inner .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .is-act-search .card-tabs .watchlist-listing-link.btn-success,
.is-act-search .card-tabs .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .faesslich-slider-slide-item--content-inner .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .watchlist-listing-link.btn-success,
.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .faesslich-slider-slide-item--content-inner .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .hbspt-form input.watchlist-listing-link.hs-button,
.hbspt-form .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .faesslich-slider-slide-item--content-inner .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child input.watchlist-listing-link.hs-button,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .faesslich-slider-slide-item--content-inner .btn-primary.watchlist-listing-link,
.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .faesslich-slider-slide-item--content-inner .hbspt-form input.btn-primary.hs-button,
.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .faesslich-slider-slide-item--content-inner .hbspt-form input.hs-button.address-editor-select:not(.collapsed),
.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .faesslich-slider-slide-item--content-inner .hbspt-form input.hs-button.address-editor-edit:not(.collapsed),
.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .faesslich-slider-slide-item--content-inner .hbspt-form input.hs-button.address-editor-create:not(.collapsed),
.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .faesslich-slider-slide-item--content-inner .hbspt-form .is-act-search .card-tabs input.hs-button.btn-success,
.is-act-search .card-tabs .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .faesslich-slider-slide-item--content-inner .hbspt-form input.hs-button.btn-success,
.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .faesslich-slider-slide-item--content-inner .hbspt-form .hbspt-form input.hs-button,
.hbspt-form .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .faesslich-slider-slide-item--content-inner .hbspt-form input.hs-button,
.hbspt-form .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .faesslich-slider-slide-item--content-inner input.btn-primary.hs-button,
.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .faesslich-slider-slide-item--content-inner .btn.address-editor-select:not(.collapsed),
.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .faesslich-slider-slide-item--content-inner .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .address-editor-select.watchlist-listing-link:not(.collapsed),
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .faesslich-slider-slide-item--content-inner .address-editor-select.watchlist-listing-link:not(.collapsed),
.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .faesslich-slider-slide-item--content-inner .hbspt-form input.address-editor-select.hs-button:not(.collapsed),
.hbspt-form .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .faesslich-slider-slide-item--content-inner input.address-editor-select.hs-button:not(.collapsed),
.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .faesslich-slider-slide-item--content-inner .btn.address-editor-edit:not(.collapsed),
.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .faesslich-slider-slide-item--content-inner .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .address-editor-edit.watchlist-listing-link:not(.collapsed),
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .faesslich-slider-slide-item--content-inner .address-editor-edit.watchlist-listing-link:not(.collapsed),
.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .faesslich-slider-slide-item--content-inner .hbspt-form input.address-editor-edit.hs-button:not(.collapsed),
.hbspt-form .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .faesslich-slider-slide-item--content-inner input.address-editor-edit.hs-button:not(.collapsed),
.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .faesslich-slider-slide-item--content-inner .btn.address-editor-create:not(.collapsed),
.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .faesslich-slider-slide-item--content-inner .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .address-editor-create.watchlist-listing-link:not(.collapsed),
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .faesslich-slider-slide-item--content-inner .address-editor-create.watchlist-listing-link:not(.collapsed),
.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .faesslich-slider-slide-item--content-inner .hbspt-form input.address-editor-create.hs-button:not(.collapsed),
.hbspt-form .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .faesslich-slider-slide-item--content-inner input.address-editor-create.hs-button:not(.collapsed),
.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .faesslich-slider-slide-item--content-inner .is-act-search .card-tabs .btn.btn-success,
.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .faesslich-slider-slide-item--content-inner .is-act-search .card-tabs .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .btn-success.watchlist-listing-link,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .faesslich-slider-slide-item--content-inner .is-act-search .card-tabs .btn-success.watchlist-listing-link,
.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .faesslich-slider-slide-item--content-inner .is-act-search .card-tabs .hbspt-form input.btn-success.hs-button,
.hbspt-form .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .faesslich-slider-slide-item--content-inner .is-act-search .card-tabs input.btn-success.hs-button,
.is-act-search .card-tabs .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .faesslich-slider-slide-item--content-inner .btn.btn-success,
.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .faesslich-slider-slide-item--content-inner .hbspt-form input.btn.hs-button,
.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .faesslich-slider-slide-item--content-inner .hbspt-form .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child input.hs-button.watchlist-listing-link,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .faesslich-slider-slide-item--content-inner .hbspt-form input.hs-button.watchlist-listing-link,
.hbspt-form .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .faesslich-slider-slide-item--content-inner input.btn.hs-button {
  background: #f9f9f9;
  color: #e30613;
}

.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .expand-pagination {
  position: relative;
  z-index: 200;
  padding: 0 3rem;
  text-align: right;
}

@media (min-width:1025px) {
  .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .expand-pagination {
    -ms-transform: translateY(-3.5rem);
    -webkit-transform: translateY(-3.5rem);
    transform: translateY(-3.5rem);
  }
}

.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .expand-pagination .expand-pagination--item {
  padding: .25rem .5rem;
  background: #4a545b;
  color: #f9f9f9;
  opacity: .5;
}

.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .expand-pagination .expand-pagination--item.active {
  opacity: 1;
}

.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .expand-pagination .expand-pagination--item--dots {
  padding: .375rem;
  background: none;
  border: .125rem solid #4a545b;
}

.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .expand-pagination .expand-pagination--item--dots.active {
  background: #4a545b;
}

.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .expand-js--prev,
.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .expand-js--next {
  top: 45%;
  width: 3rem;
  height: 4rem;
  line-height: 1;
  padding-bottom: .67rem;
  background: none;
  border: 0;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  color: #f9f9f9;
  font-size: 3rem;
  opacity: .7;
}

.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .expand-js--prev:hover,
.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-three .expand-js--next:hover {
  opacity: 1;
}

.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-four .faesslich-slider-slide-item {
  height: 30rem;
  margin-bottom: 0;
  background-size: cover;
  background-position: center;
}

@media (min-width:1025px) {
  .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-four .faesslich-slider-slide-item {
    height: auto;
  }
}

.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-four .faesslich-slider-slide-item--content {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  max-width: inherit;
  padding: 3rem 2.25rem 3rem;
  margin-bottom: 0;
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
  text-align: center;
}

@media (min-width:1025px) {
  .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-four .faesslich-slider-slide-item--content {
    width: 100%;
  }
}

.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-four .faesslich-slider-slide-item--content-inner {
  max-width: 45rem;
  margin: 0 auto;
  background: none;
  color: #fff;
}

.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-four .faesslich-slider-slide-item--content-inner .slide-item--upper-headline {
  color: #fff;
  font-size: .9375rem;
  font-weight: 700;
}

.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-four .faesslich-slider-slide-item--content-inner .slide-item--paragraph {
  font-size: 1rem;
  color: #fff;
}

@media (min-width:1025px) {
  .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-four .faesslich-slider-slide-item--content-inner {
    padding: 0;
    background: none;
    border-bottom: 0;
    -ms-transform: skewX(0);
    -webkit-transform: skewX(0);
    transform: skewX(0);
  }

  .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-four .faesslich-slider-slide-item--content-inner .slide-item--upper-headline {
    font-size: 1rem;
  }

  .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-four .faesslich-slider-slide-item--content-inner .slide-item--headline {
    font-size: 45px;
  }
}

.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-four .faesslich-slider-slide-item--content-inner .btn.btn-primary,
.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-four .faesslich-slider-slide-item--content-inner .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .btn-primary.watchlist-listing-link,
.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-four .faesslich-slider-slide-item--content-inner .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .watchlist-listing-link.address-editor-select:not(.collapsed),
.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-four .faesslich-slider-slide-item--content-inner .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .watchlist-listing-link.address-editor-edit:not(.collapsed),
.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-four .faesslich-slider-slide-item--content-inner .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .watchlist-listing-link.address-editor-create:not(.collapsed),
.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-four .faesslich-slider-slide-item--content-inner .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .is-act-search .card-tabs .watchlist-listing-link.btn-success,
.is-act-search .card-tabs .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-four .faesslich-slider-slide-item--content-inner .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .watchlist-listing-link.btn-success,
.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-four .faesslich-slider-slide-item--content-inner .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .hbspt-form input.watchlist-listing-link.hs-button,
.hbspt-form .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-four .faesslich-slider-slide-item--content-inner .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child input.watchlist-listing-link.hs-button,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-four .faesslich-slider-slide-item--content-inner .btn-primary.watchlist-listing-link,
.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-four .faesslich-slider-slide-item--content-inner .hbspt-form input.btn-primary.hs-button,
.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-four .faesslich-slider-slide-item--content-inner .hbspt-form input.hs-button.address-editor-select:not(.collapsed),
.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-four .faesslich-slider-slide-item--content-inner .hbspt-form input.hs-button.address-editor-edit:not(.collapsed),
.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-four .faesslich-slider-slide-item--content-inner .hbspt-form input.hs-button.address-editor-create:not(.collapsed),
.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-four .faesslich-slider-slide-item--content-inner .hbspt-form .is-act-search .card-tabs input.hs-button.btn-success,
.is-act-search .card-tabs .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-four .faesslich-slider-slide-item--content-inner .hbspt-form input.hs-button.btn-success,
.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-four .faesslich-slider-slide-item--content-inner .hbspt-form .hbspt-form input.hs-button,
.hbspt-form .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-four .faesslich-slider-slide-item--content-inner .hbspt-form input.hs-button,
.hbspt-form .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-four .faesslich-slider-slide-item--content-inner input.btn-primary.hs-button,
.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-four .faesslich-slider-slide-item--content-inner .btn.address-editor-select:not(.collapsed),
.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-four .faesslich-slider-slide-item--content-inner .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .address-editor-select.watchlist-listing-link:not(.collapsed),
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-four .faesslich-slider-slide-item--content-inner .address-editor-select.watchlist-listing-link:not(.collapsed),
.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-four .faesslich-slider-slide-item--content-inner .hbspt-form input.address-editor-select.hs-button:not(.collapsed),
.hbspt-form .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-four .faesslich-slider-slide-item--content-inner input.address-editor-select.hs-button:not(.collapsed),
.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-four .faesslich-slider-slide-item--content-inner .btn.address-editor-edit:not(.collapsed),
.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-four .faesslich-slider-slide-item--content-inner .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .address-editor-edit.watchlist-listing-link:not(.collapsed),
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-four .faesslich-slider-slide-item--content-inner .address-editor-edit.watchlist-listing-link:not(.collapsed),
.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-four .faesslich-slider-slide-item--content-inner .hbspt-form input.address-editor-edit.hs-button:not(.collapsed),
.hbspt-form .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-four .faesslich-slider-slide-item--content-inner input.address-editor-edit.hs-button:not(.collapsed),
.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-four .faesslich-slider-slide-item--content-inner .btn.address-editor-create:not(.collapsed),
.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-four .faesslich-slider-slide-item--content-inner .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .address-editor-create.watchlist-listing-link:not(.collapsed),
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-four .faesslich-slider-slide-item--content-inner .address-editor-create.watchlist-listing-link:not(.collapsed),
.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-four .faesslich-slider-slide-item--content-inner .hbspt-form input.address-editor-create.hs-button:not(.collapsed),
.hbspt-form .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-four .faesslich-slider-slide-item--content-inner input.address-editor-create.hs-button:not(.collapsed),
.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-four .faesslich-slider-slide-item--content-inner .is-act-search .card-tabs .btn.btn-success,
.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-four .faesslich-slider-slide-item--content-inner .is-act-search .card-tabs .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .btn-success.watchlist-listing-link,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-four .faesslich-slider-slide-item--content-inner .is-act-search .card-tabs .btn-success.watchlist-listing-link,
.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-four .faesslich-slider-slide-item--content-inner .is-act-search .card-tabs .hbspt-form input.btn-success.hs-button,
.hbspt-form .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-four .faesslich-slider-slide-item--content-inner .is-act-search .card-tabs input.btn-success.hs-button,
.is-act-search .card-tabs .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-four .faesslich-slider-slide-item--content-inner .btn.btn-success,
.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-four .faesslich-slider-slide-item--content-inner .hbspt-form input.btn.hs-button,
.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-four .faesslich-slider-slide-item--content-inner .hbspt-form .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child input.hs-button.watchlist-listing-link,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-four .faesslich-slider-slide-item--content-inner .hbspt-form input.hs-button.watchlist-listing-link,
.hbspt-form .faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-four .faesslich-slider-slide-item--content-inner input.btn.hs-button {
  background: #f9f9f9;
  color: #e30613;
}

.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-four .expand-js--prev,
.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-four .expand-js--next {
  top: 50%;
  width: 3rem;
  height: 4rem;
  line-height: 1;
  padding-bottom: .67rem;
  background: none;
  border: 0;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  color: #f9f9f9;
  font-size: 3rem;
  opacity: .7;
}

.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-four .expand-js--prev:hover,
.faesslich-slider-wrapper-outer .faesslich-slider-wrapper.theme-preset-four .expand-js--next:hover {
  opacity: 1;
}

@media (min-width:1025px) {
  .cms-section-default .faesslich-slider-wrapper-outer:not(.-is-carousel) .faesslich-slider-slide-item--content {
    min-height: 24rem;
  }
}

@media (min-width:1200px) {
  .cms-section-default .faesslich-slider-wrapper-outer:not(.-is-carousel) .faesslich-slider-slide-item--content {
    min-height: 36rem;
  }
}

@media (min-width:1025px) {
  .cms-section-default.full-width .faesslich-slider-wrapper-outer:not(.-is-carousel) .faesslich-slider-slide-item--content {
    min-height: 30rem;
  }
}

@media (min-width:1200px) {
  .cms-section-default.full-width .faesslich-slider-wrapper-outer:not(.-is-carousel) .faesslich-slider-slide-item--content {
    min-height: 42rem;
  }
}

.faesslich-carousel-wrapper-outer {
  width: 100%;
  height: calc(100% - 2.5rem);
}

.faesslich-carousel-wrapper-outer.-show-dots .faesslich-slider-wrapper {
  padding-bottom: 0;
}

.faesslich-carousel-wrapper-outer .expand-js--container {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.faesslich-carousel-wrapper-outer .expand-js {
  height: calc(100% - 2.5rem);
  overflow: visible;
}

.faesslich-carousel-wrapper-outer .expand-js--item {
  float: inherit;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-flex-align: stretch;
  align-items: stretch;
  height: auto;
  overflow: visible !important;
  opacity: .4;
  -webkit-transition: .3s all linear;
  transition: .3s all linear;
}

.faesslich-carousel-wrapper-outer .expand-js--item.expand-js--item-active {
  opacity: 1;
}

@supports (filter: blur(3px)) {
  .faesslich-carousel-wrapper-outer.-blur-non-active-slides .expand-js--item {
    -webkit-filter: blur(3px);
    filter: blur(3px);
  }
}

.faesslich-carousel-wrapper-outer.-blur-non-active-slides .expand-js--item.expand-js--item-active {
  -webkit-filter: blur(0);
  filter: blur(0);
}

.faesslich-carousel-wrapper-outer .faesslich-slider-slide-item {
  position: relative;
  width: 100%;
  background: #fff;
  box-shadow: 0 0 2rem 0 rgba(0, 0, 0, .12);
}

.faesslich-carousel-wrapper-outer .faesslich-slider-slide-item .slide-item--upper-headline {
  position: absolute;
  left: .5rem;
  top: .5rem;
  padding: .25rem .5rem;
  background: #e30613;
  color: #f9f9f9;
  text-transform: uppercase;
}

.faesslich-carousel-wrapper-outer .faesslich-slider-slide-item.-is-video-item {
  height: 100% !important;
}

.faesslich-carousel-wrapper-outer .faesslich-slider-slide-item--video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.faesslich-carousel-wrapper-outer .faesslich-slider-slide-item--picture,
.faesslich-carousel-wrapper-outer .faesslich-slider-slide-item--video {
  position: relative;
  left: .5rem;
  top: .5rem;
  width: calc(100% - 1rem);
  height: 0;
  padding-bottom: 56.25%;
}

.faesslich-carousel-wrapper-outer .faesslich-slider-slide-item--picture img,
.faesslich-carousel-wrapper-outer .faesslich-slider-slide-item--picture video,
.faesslich-carousel-wrapper-outer .faesslich-slider-slide-item--video img,
.faesslich-carousel-wrapper-outer .faesslich-slider-slide-item--video video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faesslich-carousel-wrapper-outer .faesslich-slider-slide-item--content {
  position: relative;
  z-index: 20;
}

@media (min-width:1025px) {
  .faesslich-carousel-wrapper-outer .faesslich-slider-slide-item--content {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
  }
}

.faesslich-carousel-wrapper-outer .faesslich-slider-slide-item--content-inner {
  position: relative;
  z-index: 10;
  width: 100%;
  margin: 0 auto;
  padding: 1rem 1rem 1.5rem;
  background: #fff;
  color: #212529;
}

@media (min-width:1025px) {
  .faesslich-carousel-wrapper-outer .faesslich-slider-slide-item--content-inner {
    padding: 1.5rem;
  }
}

.faesslich-carousel-wrapper-outer .faesslich-slider-slide-item--content-inner .slide-item--headline {
  padding-bottom: .5rem;
  font-size: 27px;
  font-weight: 700;
  line-height: 1.25;
}

.faesslich-carousel-wrapper-outer .faesslich-slider-slide-item--content-inner .slide-item--paragraph {
  padding-bottom: .625rem;
  font-size: 1rem;
}

.faesslich-carousel-wrapper-outer .faesslich-slider-slide-item--content-inner .slide-item--button-wrapper {
  padding-top: .625rem;
}

.faesslich-carousel-wrapper-outer .expand-js--prev,
.faesslich-carousel-wrapper-outer .expand-js--next {
  top: 100%;
  height: 3rem;
  -ms-transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  box-shadow: none;
  background: none;
  border: 0;
}

.faesslich-carousel-wrapper-outer .expand-js--prev {
  left: 0;
}

.faesslich-carousel-wrapper-outer .expand-js--next {
  right: 0;
}

.faesslich-carousel-wrapper-outer .expand-pagination {
  padding-top: 1rem;
  min-height: 3rem;
}

.faesslich-carousel-wrapper-outer .faesslich-slider-wrapper {
  width: 100%;
  padding-bottom: 3rem;
}

.faesslich-carousel-wrapper-outer .faesslich-slider-wrapper.theme-carousel-preset-one .faesslich-slider-slide-item {
  border-radius: .75rem;
}

.faesslich-carousel-wrapper-outer .faesslich-slider-wrapper.theme-carousel-preset-one .faesslich-slider-slide-item--picture,
.faesslich-carousel-wrapper-outer .faesslich-slider-wrapper.theme-carousel-preset-one .faesslich-slider-slide-item--video {
  overflow: hidden;
  border-radius: .5rem;
}

.faesslich-carousel-wrapper-outer .faesslich-slider-wrapper.theme-carousel-preset-one .faesslich-slider-slide-item .slide-item--upper-headline {
  border-top-left-radius: .45rem;
  border-bottom-right-radius: .5rem;
}

.faesslich-carousel-wrapper-outer .faesslich-slider-wrapper.theme-carousel-preset-one .faesslich-slider-slide-item--content-inner {
  background: none;
  border-bottom-left-radius: .5rem;
  border-bottom-right-radius: .5rem;
}

.faesslich-carousel-wrapper-outer .faesslich-slider-wrapper.theme-carousel-preset-two .faesslich-slider-slide-item {
  background: #212529;
  border-radius: .75rem;
}

.faesslich-carousel-wrapper-outer .faesslich-slider-wrapper.theme-carousel-preset-two .faesslich-slider-slide-item * {
  color: #f9f9f9;
}

.faesslich-carousel-wrapper-outer .faesslich-slider-wrapper.theme-carousel-preset-two .faesslich-slider-slide-item .slide-item--inline-cta {
  color: #f9f9f9;
}

.faesslich-carousel-wrapper-outer .faesslich-slider-wrapper.theme-carousel-preset-two .faesslich-slider-slide-item .slide-item--inline-cta:hover {
  color: #d2d2d2;
}

.faesslich-carousel-wrapper-outer .faesslich-slider-wrapper.theme-carousel-preset-two .faesslich-slider-slide-item .slide-item--inline-cta:hover::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'0 0 512 512\'%3E%3Cdefs/%3E%3Cpath fill=\'rgb(210, 210, 210)\' d=\'M506.1 241.8l-104.5-104a20 20 0 00-28.2 28.4l70.2 69.8H20a20 20 0 100 40h423.6l-70.2 69.8a20 20 0 1028.2 28.4l104.5-104a20 20 0 000-28.4z\'/%3E%3C/svg%3E");
}

.faesslich-carousel-wrapper-outer .faesslich-slider-wrapper.theme-carousel-preset-two .faesslich-slider-slide-item .slide-item--inline-cta::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'0 0 512 512\'%3E%3Cdefs/%3E%3Cpath fill=\'rgb(249, 249, 249)\' d=\'M506.1 241.8l-104.5-104a20 20 0 00-28.2 28.4l70.2 69.8H20a20 20 0 100 40h423.6l-70.2 69.8a20 20 0 1028.2 28.4l104.5-104a20 20 0 000-28.4z\'/%3E%3C/svg%3E");
}

.faesslich-carousel-wrapper-outer .faesslich-slider-wrapper.theme-carousel-preset-two .faesslich-slider-slide-item--picture,
.faesslich-carousel-wrapper-outer .faesslich-slider-wrapper.theme-carousel-preset-two .faesslich-slider-slide-item--video {
  overflow: hidden;
  border-radius: .5rem;
}

.faesslich-carousel-wrapper-outer .faesslich-slider-wrapper.theme-carousel-preset-two .faesslich-slider-slide-item .slide-item--upper-headline {
  border-top-left-radius: .45rem;
  border-bottom-right-radius: .5rem;
}

.faesslich-carousel-wrapper-outer .faesslich-slider-wrapper.theme-carousel-preset-two .faesslich-slider-slide-item--content-inner {
  background: none;
  border-bottom-left-radius: .5rem;
  border-bottom-right-radius: .5rem;
}

.faesslich-carousel-wrapper-outer .faesslich-slider-wrapper.theme-carousel-preset-three .faesslich-slider-slide-item {
  border-radius: .75rem;
}

.faesslich-carousel-wrapper-outer .faesslich-slider-wrapper.theme-carousel-preset-three .faesslich-slider-slide-item .slide-item--upper-headline {
  left: 0;
  top: 0;
  border-top-left-radius: .5rem;
  border-bottom-right-radius: .5rem;
}

.faesslich-carousel-wrapper-outer .faesslich-slider-wrapper.theme-carousel-preset-three .faesslich-slider-slide-item--picture,
.faesslich-carousel-wrapper-outer .faesslich-slider-wrapper.theme-carousel-preset-three .faesslich-slider-slide-item--video {
  left: 0;
  top: 0;
  width: 100%;
  overflow: hidden;
  border-top-left-radius: .5rem;
  border-top-right-radius: .5rem;
}

.faesslich-carousel-wrapper-outer .faesslich-slider-wrapper.theme-carousel-preset-three .faesslich-slider-slide-item--content-inner {
  background: none;
  border-bottom-left-radius: .5rem;
  border-bottom-right-radius: .5rem;
}

.faesslich-carousel-wrapper-outer .faesslich-slider-wrapper.theme-carousel-preset-four .faesslich-slider-slide-item {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  border-radius: .75rem;
}

.faesslich-carousel-wrapper-outer .faesslich-slider-wrapper.theme-carousel-preset-four .faesslich-slider-slide-item .slide-item--upper-headline {
  left: 0;
  top: 0;
  border-top-left-radius: .5rem;
  border-bottom-right-radius: .5rem;
}

.faesslich-carousel-wrapper-outer .faesslich-slider-wrapper.theme-carousel-preset-four .faesslich-slider-slide-item--picture,
.faesslich-carousel-wrapper-outer .faesslich-slider-wrapper.theme-carousel-preset-four .faesslich-slider-slide-item--video {
  left: 0;
  top: 0;
  width: 40%;
  height: 100%;
  padding-bottom: 0;
  overflow: hidden;
  border-top-left-radius: .5rem;
  border-bottom-left-radius: .5rem;
}

.faesslich-carousel-wrapper-outer .faesslich-slider-wrapper.theme-carousel-preset-four .faesslich-slider-slide-item--content {
  width: 60%;
}

.faesslich-carousel-wrapper-outer .faesslich-slider-wrapper.theme-carousel-preset-four .faesslich-slider-slide-item--content-inner {
  padding: 1rem;
  background: none;
  border-bottom-left-radius: .5rem;
  border-bottom-right-radius: .5rem;
}

@media (min-width:1025px) {
  .faesslich-carousel-wrapper-outer .faesslich-slider-wrapper.theme-carousel-preset-four .faesslich-slider-slide-item--content-inner {
    padding: 1.5rem 1rem 1.5rem 1.5rem;
  }
}

.faesslich-carousel-wrapper-outer .faesslich-slider-wrapper.theme-carousel-preset-five .faesslich-slider-slide-item {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  border-radius: .75rem;
}

.faesslich-carousel-wrapper-outer .faesslich-slider-wrapper.theme-carousel-preset-five .faesslich-slider-slide-item .slide-item--upper-headline {
  border-top-left-radius: .5rem;
  border-bottom-right-radius: .5rem;
}

.faesslich-carousel-wrapper-outer .faesslich-slider-wrapper.theme-carousel-preset-five .faesslich-slider-slide-item--picture,
.faesslich-carousel-wrapper-outer .faesslich-slider-wrapper.theme-carousel-preset-five .faesslich-slider-slide-item--video {
  top: 0;
  width: 40%;
  height: calc(100% - 1rem);
  padding-bottom: 0;
  overflow: hidden;
  border-radius: .5rem;
}

.faesslich-carousel-wrapper-outer .faesslich-slider-wrapper.theme-carousel-preset-five .faesslich-slider-slide-item--content {
  width: 60%;
}

.faesslich-carousel-wrapper-outer .faesslich-slider-wrapper.theme-carousel-preset-five .faesslich-slider-slide-item--content-inner {
  padding: 1rem;
  background: none;
  border-bottom-left-radius: .5rem;
  border-bottom-right-radius: .5rem;
}

@media (min-width:1025px) {
  .faesslich-carousel-wrapper-outer .faesslich-slider-wrapper.theme-carousel-preset-five .faesslich-slider-slide-item--content-inner {
    padding: 1.5rem 1rem 1.5rem 2rem;
  }
}

.slide-item--inline-cta {
  position: relative;
  padding-right: .5rem;
  -webkit-transition: .25s padding-right linear;
  transition: .25s padding-right linear;
}

.slide-item--inline-cta:hover {
  padding-right: 1rem;
  text-decoration: none;
}

.slide-item--inline-cta:hover::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'0 0 512 512\'%3E%3Cdefs/%3E%3Cpath fill=\'%2398040d\' d=\'M506.1 241.8l-104.5-104a20 20 0 00-28.2 28.4l70.2 69.8H20a20 20 0 100 40h423.6l-70.2 69.8a20 20 0 1028.2 28.4l104.5-104a20 20 0 000-28.4z\'/%3E%3C/svg%3E");
}

.slide-item--inline-cta::after {
  position: absolute;
  left: 100%;
  top: 50%;
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 1.5rem;
  height: 1rem;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'0 0 512 512\'%3E%3Cdefs/%3E%3Cpath fill=\'%23E30613\' d=\'M506.1 241.8l-104.5-104a20 20 0 00-28.2 28.4l70.2 69.8H20a20 20 0 100 40h423.6l-70.2 69.8a20 20 0 1028.2 28.4l104.5-104a20 20 0 000-28.4z\'/%3E%3C/svg%3E");
  content: "";
}

[class*="cms-block-carousel-"] {
  overflow: visible;
}

.cms-block-elio-slider-element .e-low-priority:hover,
.cms-block-elio-slider-element .elio-slider-element .carousel-control-prev .icon,
.cms-block-elio-slider-element .elio-slider-element .carousel-control-next .icon {
  color: #e30613;
}

.cms-block-elio-slider-element .elio-slider-element .elio-slider_element-box .card-img-top,
.cms-block-elio-slider-element .elio-slider-element .elio-slider_element-box.singleElement .image-wrapper .card-img-top {
  height: 100%;
}

.cms-block-elio-slider-element .e-low-priority,
.cms-block-elio-slider-element .elio-slider-element .elio-slider_element-box.singleElement .image-wrapper {
  padding: 0;
}

.cms-block-elio-slider-element {
  position: relative;
}

.cms-block-elio-slider-element .cms-block-container {
  padding: 0 !important;
}

.cms-block-elio-slider-element .e-low-priority {
  font-weight: normal;
}

.cms-block-elio-slider-element .e-low-priority img {
  -webkit-filter: invert(20%) sepia(100%) saturate(5861%) hue-rotate(350deg) brightness(86%) contrast(109%);
  filter: invert(20%) sepia(100%) saturate(5861%) hue-rotate(350deg) brightness(86%) contrast(109%);
}

.cms-block-elio-slider-element .e-btn-link-medium-priority {
  padding-top: 0;
  padding-bottom: 0;
}

.cms-block-elio-slider-element .elioCmsSlider {
  position: unset;
}

.cms-block-elio-slider-element .elio-slider-element .carousel-inner {
  overflow: unset;
  width: unset;
}

.cms-block-elio-slider-element .elio-slider-element .carousel-inner .carousel-item .elio-slider_element-box {
  display: none;
}

.cms-block-elio-slider-element .elio-slider-element .carousel-inner .carousel-item .elio-slider_element-box:first-child {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.cms-block-elio-slider-element .elio-slider-element .elio-slider_element-box .card {
  background: #f6f6f6;
}

.cms-block-elio-slider-element .elio-slider-element .elio-slider_element-box .card-body {
  padding: 20px 50px;
}

.cms-block-elio-slider-element .elio-slider-element .elio-slider_element-box .card-footer {
  background: none;
  padding-left: 50px;
  padding-bottom: 20px;
}

.cms-block-elio-slider-element .elio-slider-element .elio-slider_element-box .card-img-top {
  width: 100%;
}

.cms-block-elio-slider-element .elio-slider-element .elio-slider_element-box .card-img-top,
.cms-block-elio-slider-element .elio-slider-element .elio-slider_element-box .image-wrapper .card-img-top {
  object-fit: cover;
  object-position: top;
}

.cms-block-elio-slider-element .elio-slider-element .elio-slider_element-box.singleElement .image-wrapper .card-img-top {
  max-height: 480px;
}

.cms-block-elio-slider-element .elio-slider-element .elio-slider_element-box.singleElement .card-footer {
  padding-left: 0px;
}

.cms-block-elio-slider-element .elio-slider-element .elio-slider_element-box .image-wrapper .card-img-top {
  max-height: 440px;
  min-width: 100%;
  border-radius: 0px;
}

.cms-block-elio-slider-element .elio-slider-element .elio-slider_element-box .card-title {
  border: none;
  margin-bottom: 0px;
  font-size: 1.5em;
}

.cms-block-elio-slider-element .elio-slider-element .carousel-control-prev,
.cms-block-elio-slider-element .elio-slider-element .carousel-control-next {
  opacity: 1;
  width: unset;
  bottom: unset;
  position: unset;
}

.cms-block-elio-slider-element .elio-slider-element .carousel-control-prev {
  -ms-flex-pack: start;
  justify-content: start;
}

.cms-block-elio-slider-element .elio-slider-element .carousel-control-next {
  -ms-flex-pack: end;
  justify-content: end;
}

.cms-block-elio-slider-element .elio-slider-element .carousel-indicators {
  position: unset;
  margin-left: unset;
  margin-right: unset;
  padding-right: 0;
  margin-bottom: 0;
  -ms-flex-item-align: center;
  align-self: center;
}

.cms-block-elio-slider-element .elio-slider-element .carousel-indicators li {
  opacity: 1;
  background-color: #9d9d9d;
}

.cms-block-elio-slider-element .elio-slider-element .carousel-indicators li.active {
  background-color: #e30613;
}

@media (min-width:768px) {
  .cms-block-elio-slider-element .elio-slider-element .singleElement .card {
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .cms-block-elio-slider-element .elio-slider-element .singleElement .card .card-body {
    padding: 50px;
  }

  .cms-block-elio-slider-element .elio-slider-element .carousel-inner {
    width: 150%;
    left: -25%;
  }

  .cms-block-elio-slider-element .elio-slider-element .carousel-inner .carousel-item .elio-slider_element-box {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }

  .cms-block-elio-slider-element .elio-slider-element .carousel-inner .carousel-item .elio-slider_element-box:hover .card {
    box-shadow: 0 0 16px rgba(0, 0, 0, .16);
  }

  .cms-block-elio-slider-element .elio-slider-element .carousel-inner .carousel-item .elio-slider_element-box .card {
    border: 0;
    border-radius: 0px;
  }

  .cms-block-elio-slider-element .elio-slider-element .carousel-inner .carousel-item .elio-slider_element-box .image-wrapper .card-img-top {
    height: 320px;
    min-width: 100%;
  }


  .cms-block-elio-slider-element .elio-slider-element .carousel-inner .carousel-item .elio-slider_element-box .card-body,
  .cms-block-elio-slider-element .elio-slider-element .carousel-inner .carousel-item .elio-slider_element-box .card-footer {
    padding: 40px;
  }

  .cms-block-elio-slider-element .elio-slider-element .carousel-inner .carousel-item .elio-slider_element-box .card-footer {
    padding-top: 20px;
  }

  .cms-block-elio-slider-element .elio-slider-element .carousel-inner .carousel-item .elio-slider_element-box .card-body {
    padding-bottom: 0px;
  }

  .cms-block-elio-slider-element .elio-slider-element .carousel-inner.transform-33 .carousel-item-right.active,
  .cms-block-elio-slider-element .elio-slider-element .carousel-inner.transform-33 .carousel-item-next {
    -ms-transform: translateX(33%);
    -webkit-transform: translateX(33%);
    transform: translateX(33%);
  }

  .cms-block-elio-slider-element .elio-slider-element .carousel-inner.transform-33 .carousel-item-left.active,
  .cms-block-elio-slider-element .elio-slider-element .carousel-inner.transform-33 .carousel-item-prev {
    -ms-transform: translateX(-33%);
    -webkit-transform: translateX(-33%);
    transform: translateX(-33%);
  }

  .cms-block-elio-slider-element .elio-slider-element .carousel-inner.transform-25 .carousel-item-right.active,
  .cms-block-elio-slider-element .elio-slider-element .carousel-inner.transform-25 .carousel-item-next {
    -ms-transform: translateX(25%);
    -webkit-transform: translateX(25%);
    transform: translateX(25%);
  }

  .cms-block-elio-slider-element .elio-slider-element .carousel-inner.transform-25 .carousel-item-left.active,
  .cms-block-elio-slider-element .elio-slider-element .carousel-inner.transform-25 .carousel-item-prev {
    -ms-transform: translateX(-25%);
    -webkit-transform: translateX(-25%);
    transform: translateX(-25%);
  }

  .cms-block-elio-slider-element .elio-slider-element .carousel-inner.transform-25 .carousel-item-right,
  .cms-block-elio-slider-element .elio-slider-element .carousel-inner.transform-25 .carousel-item-left,
  .cms-block-elio-slider-element .elio-slider-element .carousel-inner.transform-33 .carousel-item-right,
  .cms-block-elio-slider-element .elio-slider-element .carousel-inner.transform-33 .carousel-item-left {
    -ms-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  .cms-block-elio-slider-element .elio-slider-element .carousel-item.active,
  .cms-block-elio-slider-element .elio-slider-element .carousel-item-next,
  .cms-block-elio-slider-element .elio-slider-element .carousel-item-prev {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }

  .cms-block-elio-slider-element .elio-slider-element .carousel-item.w-100.active.carousel-item-left .elio-slider_element-box {
    opacity: 0;
  }

  .cms-block-elio-slider-element .elio-slider-element .carousel-item.w-100.active.carousel-item-left .elio-slider_element-box:first-child {
    opacity: 1;
  }

  .cms-block-elio-slider-element .elio-slider-element .carousel-item.w-100.active.carousel-item-right .elio-slider_element-box {
    opacity: 0;
  }

  .cms-block-elio-slider-element .elio-slider-element .carousel-item.w-100.active.carousel-item-right .elio-slider_element-box:last-child {
    opacity: 1;
  }
}

@media (min-width:1025px) {
  .cms-block-elio-slider-element .elio-slider-element .carousel-inner .carousel-item .elio-slider_element-box .image-wrapper .card-img-top {
    height: 480px;
  }
}

@media (min-width:1200px) {
  .cms-block-elio-slider-element .elio-slider-element .carousel-inner .carousel-item .elio-slider_element-box .image-wrapper .card-img-top {
    height: 640px;
  }
}

.loader-container {
  margin: 20px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: initial;
}

.dot-pulse {
  position: relative;
  left: -9999px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #e30613;
  color: #e30613;
  box-shadow: 9999px 0 0 -5px;
  -webkit-animation: dot-pulse 1.5s infinite linear;
  animation: dot-pulse 1.5s infinite linear;
  animation-delay: .25s;
}

.dot-pulse::before,
.dot-pulse::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #e30613;
  color: #e30613;
}

.dot-pulse::before {
  box-shadow: 9984px 0 0 -5px;
  -webkit-animation: dot-pulse-before 1.5s infinite linear;
  animation: dot-pulse-before 1.5s infinite linear;
  animation-delay: 0s;
}

.dot-pulse::after {
  box-shadow: 10014px 0 0 -5px;
  -webkit-animation: dot-pulse-after 1.5s infinite linear;
  animation: dot-pulse-after 1.5s infinite linear;
  animation-delay: .5s;
}

@-webkit-keyframes dot-pulse-before {
  0% {
    box-shadow: 9984px 0 0 -5px;
  }

  30% {
    box-shadow: 9984px 0 0 2px;
  }

  60%,
  100% {
    box-shadow: 9984px 0 0 -5px;
  }
}

@keyframes dot-pulse-before {
  0% {
    box-shadow: 9984px 0 0 -5px;
  }

  30% {
    box-shadow: 9984px 0 0 2px;
  }

  60%,
  100% {
    box-shadow: 9984px 0 0 -5px;
  }
}

@-webkit-keyframes dot-pulse {
  0% {
    box-shadow: 9999px 0 0 -5px;
  }

  30% {
    box-shadow: 9999px 0 0 2px;
  }

  60%,
  100% {
    box-shadow: 9999px 0 0 -5px;
  }
}

@keyframes dot-pulse {
  0% {
    box-shadow: 9999px 0 0 -5px;
  }

  30% {
    box-shadow: 9999px 0 0 2px;
  }

  60%,
  100% {
    box-shadow: 9999px 0 0 -5px;
  }
}

@-webkit-keyframes dot-pulse-after {
  0% {
    box-shadow: 10014px 0 0 -5px;
  }

  30% {
    box-shadow: 10014px 0 0 2px;
  }

  60%,
  100% {
    box-shadow: 10014px 0 0 -5px;
  }
}

@keyframes dot-pulse-after {
  0% {
    box-shadow: 10014px 0 0 -5px;
  }

  30% {
    box-shadow: 10014px 0 0 2px;
  }

  60%,
  100% {
    box-shadow: 10014px 0 0 -5px;
  }
}

@font-face {
  font-display: swap;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: url("/bundles/sisipdfflipbookelement6/fonts/open-sans/open-sans-v34-latin_latin-ext-regular.eot") format("eot"), url("/bundles/sisipdfflipbookelement6/fonts/open-sans/open-sans-v34-latin_latin-ext-regular.woff") format("woff"), url("/bundles/sisipdfflipbookelement6/fonts/open-sans/open-sans-v34-latin_latin-ext-regular.woff2") format("woff2"), url("/bundles/sisipdfflipbookelement6/fonts/open-sans/open-sans-v34-latin_latin-ext-regular.ttf") format("ttf"), url("/bundles/sisipdfflipbookelement6/fonts/open-sans/open-sans-v34-latin_latin-ext-regular.svg") format("svg");
}

@font-face {
  font-display: swap;
  font-family: "OpenSans";
  font-style: italic;
  font-weight: 400;
  src: url("/bundles/sisipdfflipbookelement6/fonts/open-sans/open-sans-v34-latin_latin-ext-italic.eot") format("eot"), url("/bundles/sisipdfflipbookelement6/fonts/open-sans/open-sans-v34-latin_latin-ext-italic.woff") format("woff"), url("/bundles/sisipdfflipbookelement6/fonts/open-sans/open-sans-v34-latin_latin-ext-italic.woff2") format("woff2"), url("/bundles/sisipdfflipbookelement6/fonts/open-sans/open-sans-v34-latin_latin-ext-italic.ttf") format("ttf"), url("/bundles/sisipdfflipbookelement6/fonts/open-sans/open-sans-v34-latin_latin-ext-italic.svg") format("svg");
}

@font-face {
  font-display: swap;
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 700;
  src: url("/bundles/sisipdfflipbookelement6/fonts/open-sans/open-sans-v34-latin_latin-ext-700.eot") format("eot"), url("/bundles/sisipdfflipbookelement6/fonts/open-sans/open-sans-v34-latin_latin-ext-700.woff") format("woff"), url("/bundles/sisipdfflipbookelement6/fonts/open-sans/open-sans-v34-latin_latin-ext-700.woff2") format("woff2"), url("/bundles/sisipdfflipbookelement6/fonts/open-sans/open-sans-v34-latin_latin-ext-700.ttf") format("ttf"), url("/bundles/sisipdfflipbookelement6/fonts/open-sans/open-sans-v34-latin_latin-ext-700.svg") format("svg");
}

@font-face {
  font-display: swap;
  font-family: "OpenSans";
  font-style: italic;
  font-weight: 700;
  src: url("/bundles/sisipdfflipbookelement6/fonts/open-sans/open-sans-v34-latin_latin-ext-700italic.eot") format("eot"), url("/bundles/sisipdfflipbookelement6/fonts/open-sans/open-sans-v34-latin_latin-ext-700italic.woff") format("woff"), url("/bundles/sisipdfflipbookelement6/fonts/open-sans/open-sans-v34-latin_latin-ext-700italic.woff2") format("woff2"), url("/bundles/sisipdfflipbookelement6/fonts/open-sans/open-sans-v34-latin_latin-ext-700italic.ttf") format("ttf"), url("/bundles/sisipdfflipbookelement6/fonts/open-sans/open-sans-v34-latin_latin-ext-700italic.svg") format("svg");
}

.cms-element-sisi-pdf-flipbook--cover img {
  width: 100%;
}

.cms-element-sisi-pdf-flipbook--actions a {
  margin-top: 5px;
}

.sisi-pdf-flipbook-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #777;
  z-index: 9999;
}

.sisi-pdf-flipbook-popup iframe {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.sisi-pdf-flipbook-popup--close {
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/PjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDUxMi4wMDEgNTEyLjAwMSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNTEyLjAwMSA1MTIuMDAxOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PGc+PGc+PHBhdGggZD0iTTI4NC4yODYsMjU2LjAwMkw1MDYuMTQzLDM0LjE0NGM3LjgxMS03LjgxMSw3LjgxMS0yMC40NzUsMC0yOC4yODVjLTcuODExLTcuODEtMjAuNDc1LTcuODExLTI4LjI4NSwwTDI1NiwyMjcuNzE3TDM0LjE0Myw1Ljg1OWMtNy44MTEtNy44MTEtMjAuNDc1LTcuODExLTI4LjI4NSwwYy03LjgxLDcuODExLTcuODExLDIwLjQ3NSwwLDI4LjI4NWwyMjEuODU3LDIyMS44NTdMNS44NTgsNDc3Ljg1OWMtNy44MTEsNy44MTEtNy44MTEsMjAuNDc1LDAsMjguMjg1YzMuOTA1LDMuOTA1LDkuMDI0LDUuODU3LDE0LjE0Myw1Ljg1N2M1LjExOSwwLDEwLjIzNy0xLjk1MiwxNC4xNDMtNS44NTdMMjU2LDI4NC4yODdsMjIxLjg1NywyMjEuODU3YzMuOTA1LDMuOTA1LDkuMDI0LDUuODU3LDE0LjE0Myw1Ljg1N3MxMC4yMzctMS45NTIsMTQuMTQzLTUuODU3YzcuODExLTcuODExLDcuODExLTIwLjQ3NSwwLTI4LjI4NUwyODQuMjg2LDI1Ni4wMDJ6Ii8+PC9nPjwvZz48Zz48L2c+PGc+PC9nPjxnPjwvZz48Zz48L2c+PGc+PC9nPjxnPjwvZz48Zz48L2c+PGc+PC9nPjxnPjwvZz48Zz48L2c+PGc+PC9nPjxnPjwvZz48Zz48L2c+PGc+PC9nPjxnPjwvZz48L3N2Zz4=");
  background-position: center center;
  background-repeat: no-repeat;
  opacity: .3;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 30px;
  height: 30px;
  z-index: 9999;
  cursor: pointer;
}

.sisi-pdf-flipbook-popup--close:hover {
  opacity: .7 !important;
}

.mollie-components-credit-card {
  max-width: 465px;
}

.mollie-components-credit-card label {
  display: block;
  font-weight: bold;
  margin-top: 10px;
}

.mollie-components-credit-card .block-group {
  display: block;
  position: relative;
}

.mollie-components-credit-card .block-group:after {
  clear: both;
  content: "";
  display: block;
}

.mollie-components-credit-card .block-group .b1 {
  width: 48%;
  float: left;
  position: relative;
}

.mollie-components-credit-card .block-group .b2 {
  width: 48%;
  float: right;
}

.mollie-components-credit-card .intro-text {
  margin-top: 10px;
}

.mollie-components-credit-card .tag-line {
  margin-top: 10px;
}

.mollie-components-credit-card .tag-line .logo {
  display: inline-block;
  margin-top: -8px;
  max-width: 50px;
}

.mollie-components-credit-card .error-message {
  color: #ff233a;
  margin-bottom: 5px;
}

.mollie-components-credit-card .input--field.mollie {
  border-radius: 3px;
  min-height: 34px;
  margin-bottom: 5px;
  background: #fff;
  color: #262626;
  text-align: left;
  box-shadow: inset 0 0 0 0 transparent, 0 1px 1px 0 rgba(0, 0, 0, .1), 0 1px 3px 0 rgba(0, 0, 0, .1), 0 0 0 1px rgba(0, 0, 0, .05);
  -webkit-transition: all .05s ease;
  transition: all .05s ease;
}

.mollie-components-credit-card .input--field.mollie.is-focused {
  box-shadow: inset 0 0 0 2px #07f, 0 1px 1px 0 rgba(0, 0, 0, .1), 0 2px 6px 0 rgba(0, 0, 0, .1), 0 0 0 1px rgba(0, 0, 0, .05);
}

.mollie-components-credit-card .input--field.mollie.error {
  background-color: #fff0f0;
  box-shadow: 0 0 0 1px #f33, 0 1px 1px 0 rgba(0, 0, 0, .1), 0 2px 6px 0 rgba(0, 0, 0, .1), 0 0 0 1px rgba(0, 0, 0, .05);
}

.mollie-components-credit-card .input--field.mollie:active {
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, .1), 0 2px 6px 0 rgba(0, 0, 0, .1), 0 0 0 1px rgba(0, 0, 0, .05);
  border: 2px solid #07f;
}

.mollie-components-credit-card .block-group .mollie-credit-card-custom-checkbox label {
  font-weight: 400;
}

.mollie-components-credit-card .block-group .mollie-credit-card-custom-checkbox .custom-control-label::before,
.mollie-components-credit-card .block-group .mollie-credit-card-custom-checkbox .hbspt-form .hs-form-radio-display label::before,
.hbspt-form .hs-form-radio-display .mollie-components-credit-card .block-group .mollie-credit-card-custom-checkbox label::before {
  border-radius: 5px;
}

@supports (-webkit-appearance: -apple-pay-button) {
  .only-support-apple-pay {
    display: block !important;
  }

  .apple-pay-button-with-text {
    display: inline-block;
    -webkit-appearance: -apple-pay-button;
    -apple-pay-button-type: buy;
  }

  .apple-pay-button-with-text > * {
    display: none;
  }

  .apple-pay-button-black-with-text {
    -apple-pay-button-style: black;
  }

  .apple-pay-button-white-with-text {
    -apple-pay-button-style: white;
  }

  .apple-pay-button-white-with-line-with-text {
    -apple-pay-button-style: white-outline;
  }
}

@supports not (-webkit-appearance: -apple-pay-button) {
  .apple-pay-button-with-text {
    --apple-pay-scale: 1;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 12px;
    border-radius: 5px;
    padding: 0px;
    box-sizing: border-box;
    min-width: 200px;
    min-height: 32px;
    max-height: 64px;
  }

  .apple-pay-button-black-with-text {
    background-color: black;
    color: white;
  }

  .apple-pay-button-white-with-text {
    background-color: white;
    color: black;
  }

  .apple-pay-button-white-with-line-with-text {
    background-color: white;
    color: black;
    border: .5px solid black;
  }

  .apple-pay-button-with-text.apple-pay-button-black-with-text > .logo {
    background-image: -webkit-named-image(apple-pay-logo-white);
    background-color: black;
  }

  .apple-pay-button-with-text.apple-pay-button-white-with-text > .logo {
    background-image: -webkit-named-image(apple-pay-logo-black);
    background-color: white;
  }

  .apple-pay-button-with-text.apple-pay-button-white-with-line-with-text > .logo {
    background-image: -webkit-named-image(apple-pay-logo-black);
    background-color: white;
  }

  .apple-pay-button-with-text > .text {
    font-family: -apple-system;
    font-size: calc(1em * var(--apple-pay-scale));
    font-weight: 300;
    -ms-flex-item-align: center;
    align-self: center;
    margin-right: calc(2px * var(--apple-pay-scale));
  }

  .apple-pay-button-with-text > .logo {
    width: calc(35px * var(--scale));
    height: 100%;
    background-size: 100% 60%;
    background-repeat: no-repeat;
    background-position: 0 50%;
    margin-left: calc(2px * var(--apple-pay-scale));
    border: none;
  }
}

.modal-content .payment-method-label {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.modal-content .mollie-ideal-issuer {
  margin-top: 15px;
}

.modal-content .payment-method-description {
  -ms-flex-order: -1;
  order: -1;
}

.confirm-payment .mollie-ideal-issuer {
  margin-top: 15px;
}

.confirm-payment .mollie-ideal-issuer .custom-select:invalid,
.confirm-payment .mollie-ideal-issuer .hbspt-form select.hs-input:invalid,
.hbspt-form .confirm-payment .mollie-ideal-issuer select.hs-input:invalid {
  border: 1px solid red;
}

.account-payment .payment-method-description {
  -ms-flex-order: -1;
  order: -1;
}

.order-table-header-heading.heading-mollie-subscriptions {
  max-width: 350px;
}

.order-item-status-badge.order-item-status-badge-active {
  background-color: #26b6cf;
  color: #fff;
  margin: 10px 0;
}

.order-item-status-badge.order-item-status-badge-canceled {
  background-color: #ffb100;
  color: #fff;
  margin: 10px 0;
}

.order-item-status-badge.order-item-status-badge-paused {
  background-color: #707070;
  color: #fff;
  margin: 10px 0;
}

.order-item-status-badge.order-item-status-badge-skipped {
  background-color: #ffb100;
  color: #fff;
  margin: 10px 0;
}

.order-item-status-badge.order-item-status-badge-resumed {
  background-color: #26b6cf;
  color: #fff;
  margin: 10px 0;
}

.order-table-header-description {
  padding: 0 !important;
  display: block;
  font-weight: 400;
  margin-bottom: 1.5rem;
  width: 100%;
}

.subscription-toggle-button-wrapper {
  padding: 0 !important;
}

.subscription-hide-btn {
  margin-bottom: 25px;
  float: right;
}

.subscription-hide-btn .subscription-hide-btn-text {
  display: block;
}

.subscription-hide-btn .subscription-view-btn-text {
  display: none;
}

.subscription-hide-btn.collapsed .subscription-hide-btn-text {
  display: none;
}

.subscription-hide-btn.collapsed .subscription-view-btn-text {
  display: block;
}

.subscription-item-detail {
  padding: 0 !important;
}

.btn-mollie-subscription-cancel {
  color: #e60909;
}

.mollie-credit-card-mandate-manage {
  margin-top: 50px;
  margin-bottom: 50px;
}

.mollie-credit-card-mandate-list .mollie-credit-card-mandate:last-child {
  margin-bottom: 15px;
}

.mollie-credit-card-mandate-remove-modal .modal-body {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.mollie-credit-card-mandate-remove-modal .modal-body p {
  margin-bottom: 8px;
  font-weight: 700;
}

.mollie-credit-card-mandate {
  margin-bottom: 25px;
}

.mollie-credit-card-mandate .mollie-credit-card-mandate-radio {
  margin-top: 13px;
}

.mollie-credit-card-mandate .mollie-credit-card-mandate-label {
  margin-bottom: 0;
}

.mollie-credit-card-mandate .mollie-credit-card-mandate-actions-item {
  margin-top: 4px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -moz-column-gap: 8px;
  -webkit-column-gap: 8px;
  column-gap: 8px;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.mollie-credit-card-mandate .mollie-credit-card-mandate-actions-item svg {
  top: 0;
}

.mollie-credit-card-mandate .mollie-credit-card-mandate-actions-item .mollie-credit-card-mandate-actions-item-text {
  color: #e30613;
}

.mollie-credit-card-mandate .mollie-credit-card-mandate-actions-item:hover .mollie-credit-card-mandate-actions-item-text {
  color: #98040d;
}

.mollie-credit-card-mandate .mollie-credit-card-mandate-title {
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
}

.mollie-credit-card-mandate .mollie-credit-card-mandate-full-view {
  position: relative;
  padding: 12px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 210px;
  height: 95px;
  border-radius: 8px;
  background-color: #e30613;
  margin-top: 12px;
}

.mollie-credit-card-mandate .mollie-credit-card-mandate-full-view .mollie-credit-card-mandate-full-view-card-type {
  color: #fff;
  margin: 0;
  font-size: 20px;
  line-height: 20px;
}

.mollie-credit-card-mandate .mollie-credit-card-mandate-full-view .mollie-credit-card-mandate-full-view-card-info {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.mollie-credit-card-mandate .mollie-credit-card-mandate-full-view .mollie-credit-card-mandate-full-view-card-info .mollie-credit-card-mandate-full-view-card-number {
  color: #fff;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 4px;
}

.mollie-credit-card-mandate .mollie-credit-card-mandate-full-view .mollie-credit-card-mandate-full-view-card-info .mollie-credit-card-mandate-full-view-card-holder-name {
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
}

.mollie-credit-card-mandate .mollie-credit-card-mandate-compact-view-card-holder-name {
  color: #bcc1c7;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  display: block;
}

@font-face {
  font-family: "HelveticaNeueLTW04-55Roman";
  src: url("/bundles/leuzetheme/font/helvetica/HelveticaNeueLTW04-55Roman.woff2") format("woff2"), url("/bundles/leuzetheme/font/helvetica/HelveticaNeueLTW04-55Roman.woff") format("woff");
}

@font-face {
  font-family: "HelveticaNeueLTW04-75Bold";
  src: url("/bundles/leuzetheme/font/helvetica/HelveticaNeueLTW04-75Bold.woff2") format("woff2"), url("/bundles/leuzetheme/font/helvetica/HelveticaNeueLTW04-75Bold.woff") format("woff");
}

.footer-main,
.footer-column-headline,
.footer-bottom,
.footer-main a,
.footer-main a:hover,
.footer-main h1,
.footer-column-toggle .icon {
  color: white;
}

.footer-main,
.footer-bottom {
  background: #e30613;
}

.footer-main .btn,
.footer-main .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .watchlist-listing-link,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .footer-main .watchlist-listing-link,
.footer-main .hbspt-form input.hs-button,
.hbspt-form .footer-main input.hs-button,
.footer-bottom .btn,
.footer-bottom .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .watchlist-listing-link,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .footer-bottom .watchlist-listing-link,
.footer-bottom .hbspt-form input.hs-button,
.hbspt-form .footer-bottom input.hs-button {
  border-radius: 0;
  max-width: 330px;
  font-weight: normal;
}

.footer-main .social-item,
.footer-bottom .social-item {
  margin-bottom: 10px;
}

.footer-main .social-item .social-icon,
.footer-bottom .social-item .social-icon {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.footer-header,
.footer-column-headline {
  font-weight: bold;
}

.footer-header {
  font-size: 1.85rem;
  padding-top: 50px;
}

.footer-column-headline {
  font-size: 1.25rem;
}

.footer-vat .e-footer-vat-left {
  max-width: 50%;
  text-align: left;
}

.footer-vat ul {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer-bottom {
  padding: 16px 20px;
}

.footer-contact-hotline a {
  font-weight: normal;
  margin: 0;
}

.footer-column-content-inner a {
  padding: 2px 0;
}

.header-main {
  background: white;
}

.header-cart-total {
  color: rgba(0, 0, 0, .64);
  font-weight: 600;
  font-size: .75rem;
}

.header-search-btn,
.header-search-btn.btn:disabled,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .header-search-btn.watchlist-listing-link:disabled,
.hbspt-form input.header-search-btn.hs-button:disabled,
.header-search-btn.btn[disabled],
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .header-search-btn.watchlist-listing-link[disabled],
.hbspt-form input.header-search-btn.hs-button[disabled] {
  background: #e30613;
  border-color: transparent;
  border-radius: 0px;
}

.header-search-btn .icon,
.header-search-btn.btn:disabled .icon,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .header-search-btn.watchlist-listing-link:disabled .icon,
.hbspt-form input.header-search-btn.hs-button:disabled .icon,
.header-search-btn.btn[disabled] .icon,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .header-search-btn.watchlist-listing-link[disabled] .icon,
.hbspt-form input.header-search-btn.hs-button[disabled] .icon {
  color: white;
}

.header-search-btn:hover,
.header-search-btn.btn:disabled:hover,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .header-search-btn.watchlist-listing-link:disabled:hover,
.hbspt-form input.header-search-btn.hs-button:disabled:hover,
.header-search-btn.btn[disabled]:hover,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .header-search-btn.watchlist-listing-link[disabled]:hover,
.hbspt-form input.header-search-btn.hs-button[disabled]:hover {
  background: #ca0511;
}

.header-search-btn:hover .icon,
.header-search-btn.btn:disabled:hover .icon,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .header-search-btn.watchlist-listing-link:disabled:hover .icon,
.hbspt-form input.header-search-btn.hs-button:disabled:hover .icon,
.header-search-btn.btn[disabled]:hover .icon,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .header-search-btn.watchlist-listing-link[disabled]:hover .icon,
.hbspt-form input.header-search-btn.hs-button[disabled]:hover .icon {
  color: white;
}

.header-search-btn .loader,
.header-search-btn.btn:disabled .loader,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .header-search-btn.watchlist-listing-link:disabled .loader,
.hbspt-form input.header-search-btn.hs-button:disabled .loader,
.header-search-btn.btn[disabled] .loader,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .header-search-btn.watchlist-listing-link[disabled] .loader,
.hbspt-form input.header-search-btn.hs-button[disabled] .loader {
  display: none;
}

.header-search-btn .loader ~ .header-search-icon,
.header-search-btn.btn:disabled .loader ~ .header-search-icon,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .header-search-btn.watchlist-listing-link:disabled .loader ~ .header-search-icon,
.hbspt-form input.header-search-btn.hs-button:disabled .loader ~ .header-search-icon,
.header-search-btn.btn[disabled] .loader ~ .header-search-icon,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .header-search-btn.watchlist-listing-link[disabled] .loader ~ .header-search-icon,
.hbspt-form input.header-search-btn.hs-button[disabled] .loader ~ .header-search-icon {
  display: block;
}

.top-bar {
  color: black;
  background: #f6f6f6;
}

.header-wishlist .wishlist-btn-text,
.header-wishlist .watchlist-btn-text {
  color: rgba(0, 0, 0, .64);
  font-size: 12px;
  margin-left: 12px;
}

.header-wishlist .header-wishlist-btn .header-wishlist-badge,
.header-wishlist .header-watchlist-btn .header-wishlist-badge {
  display: none;
  left: 16px;
  top: 2px;
  right: unset;
}

.header-wishlist .header-wishlist-btn:hover .wishlist-btn-text,
.header-wishlist .header-wishlist-btn:hover .watchlist-btn-text,
.header-wishlist .header-watchlist-btn:hover .wishlist-btn-text,
.header-wishlist .header-watchlist-btn:hover .watchlist-btn-text {
  color: #e30613;
}

.header-search {
  max-width: 555px;
}

.header-search .icon-search {
  width: 15px;
  height: 15px;
  -ms-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.header-search .icon-search svg {
  top: 3px;
}

.header-search .form-control.header-search-input,
.header-search .hbspt-form input.header-search-input.hs-input[type="text"],
.hbspt-form .header-search input.header-search-input.hs-input[type="text"],
.header-search .hbspt-form input.header-search-input.hs-input[type="tel"],
.hbspt-form .header-search input.header-search-input.hs-input[type="tel"],
.header-search .hbspt-form input.header-search-input.hs-input[type="email"],
.hbspt-form .header-search input.header-search-input.hs-input[type="email"] {
  border-color: rgba(0, 0, 0, .08);
  border-radius: 0;
}

.header-search .form-control.header-search-input:focus,
.header-search .hbspt-form input.header-search-input.hs-input[type="text"]:focus,
.hbspt-form .header-search input.header-search-input.hs-input[type="text"]:focus,
.header-search .hbspt-form input.header-search-input.hs-input[type="tel"]:focus,
.hbspt-form .header-search input.header-search-input.hs-input[type="tel"]:focus,
.header-search .hbspt-form input.header-search-input.hs-input[type="email"]:focus,
.hbspt-form .header-search input.header-search-input.hs-input[type="email"]:focus {
  z-index: auto;
}

@media (min-width:576px) {
  .header-row {
    padding-top: 20px;
  }

  .header-cart-badge {
    display: block;
  }
}

@media (min-width:1025px) {
  .header-main {
    position: relative;
  }
}

.nav-main {
  background: #fff;
  z-index: 100;
  top: -1px;
}

.main-navigation-link {
  font-weight: 600;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
}

.main-navigation-link .main-navigation-link-text {
  padding-bottom: 0;
  border-bottom: 0;
}

.main-navigation-link.is-open:after {
  -ms-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  width: 18px;
  height: 18px;
  bottom: -30px;
  content: "";
  display: block;
  position: absolute;
  background: #e30613;
  left: 22%;
  z-index: 800;
}

@media (min-width:576px) {
  .header-row .header-cart-total {
    margin-left: 12px;
  }
}

.header-cart .header-cart-btn {
  overflow: visible;
}

.header-cart .header-cart-icon {
  position: relative;
}

.header-cart .header-cart-badge {
  top: -10px;
  right: -15px;
}

.sticky-nav.main-navigation > .container:first-child,
.cms-section .sticky-nav.main-navigation > .boxed:first-child {
  margin-bottom: 0;
}

.sticky-nav #logo-sticky-header {
  -ms-flex-item-align: start;
  align-self: flex-start;
  margin-right: 70px;
}

.sticky-nav .main-navigation-link.is-open:after {
  bottom: -26px;
}

#nav-container-top {
  height: 1px;
}

.main-navigation-menu,
#nav-container-top {
  background-color: white;
}

.main-navigation > .container:first-child,
.cms-section .main-navigation > .boxed:first-child {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-bottom: 20px;
  margin-top: 10px;
}

.main-navigation-menu,
#sticky-topbar-actions {
  grid-row: 1/2;
  -ms-flex-align: center;
  align-items: center;
}

#sticky-topbar-actions {
  grid-column: 2/-1;
}

.main-navigation-menu {
  grid-column: 1/6;
}

.sticky-actions {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-left: auto;
  -ms-flex-align: center;
  align-items: center;
}

.sticky-actions .header-cart-total {
  display: none;
}

.sticky-actions .header-search-form .input-group {
  overflow: hidden;
  font-size: 17px;
  position: relative;
  width: 41px;
  height: 41px;
  -webkit-transition: width 300ms ease-in-out;
  transition: width 300ms ease-in-out;
  margin-left: auto;
}

.sticky-actions .header-search-form .input-group:focus-within {
  width: 400px;
}

.sticky-actions .header-search-form .input-group:focus-within .header-search-input {
  opacity: 1;
  cursor: initial;
  width: calc(100% - 41px);
  border: 2px solid #ededed;
  border-right: 0;
  border-radius: 0;
}

.sticky-actions .header-search-form .input-group:focus-within .header-search-btn {
  background: #e30613;
  border: 2px solid #e30613;
}

.sticky-actions .header-search-form .input-group:focus-within .header-search-btn .icon-search {
  color: white;
}

.sticky-actions .input-group-append {
  margin-left: auto;
}

.sticky-actions .header-search-btn {
  font-size: 24px;
  margin-left: auto;
  background: 0;
  cursor: pointer;
  -webkit-transition: background 200ms ease-out;
  transition: background 200ms ease-out;
  width: 41px;
  height: 100%;
  padding: 0;
}

.sticky-actions .header-search-btn .icon-search {
  color: gray;
  width: 22px;
  height: 22px;
}

.sticky-actions .header-search-btn .icon-search svg {
  top: 4px;
}

.sticky-actions .header-search-btn:hover .icon-search {
  color: #e30613;
}

.sticky-actions .header-search-input {
  border: 0;
  padding: 4px 14px;
  -ms-flex-positive: 1;
  flex-grow: 1;
  outline: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  height: auto;
}

.sticky-actions .header-search-input:focus {
  outline: 0;
}

.main-navigation-link.active,
.navigation-offcanvas-headline {
  color: #e30613;
}

.navigation-offcanvas-link.is-current-category,
.navigation-offcanvas-link.is-back-link {
  font-weight: normal;
}

.navigation-offcanvas-link.is-back-link {
  color: #111;
}

.navigation-offcanvas-link-icon svg {
  -webkit-filter: invert(20%) sepia(100%) saturate(5861%) hue-rotate(350deg) brightness(86%) contrast(109%);
  filter: invert(20%) sepia(100%) saturate(5861%) hue-rotate(350deg) brightness(86%) contrast(109%);
}

@media (min-width:576px) {
  .main-navigation-link:last-child {
    margin-right: 0px;
  }
}

@media (min-width:1025px) {
  .header-main {
    box-shadow: none;
  }
}

@media (max-width:1199.98px) {
  .sticky-nav .main-navigation-menu {
    font-size: .9rem;
  }

  .sticky-nav #logo-sticky-header {
    margin-right: 20px;
  }
}

.navigation-flyout {
  width: 100%;
  box-shadow: none;
  background-color: transparent;
}

.navigation-flyout .navigation-flyout-bar .navigation-flyout-category-link a,
.navigation-flyout .navigation-flyout-bar .navigation-flyout-link,
.navigation-flyout .navigation-flyout-bar .navigation-flyout-description,
.navigation-flyout .navigation-flyout-bar .icon-x,
.navigation-flyout .navigation-flyout-content .navigation-flyout-category-link a,
.navigation-flyout .navigation-flyout-content .navigation-flyout-link,
.navigation-flyout .navigation-flyout-content .navigation-flyout-description,
.navigation-flyout .navigation-flyout-content .icon-x {
  color: white;
}

.main-menu {
  width: 300px;
  line-height: 22px;
  position: relative;
  padding: 25px;
  margin: 0;
  min-height: 540px;
}

.main-menu .column {
  width: 50%;
  float: left;
  color: white;
  height: 100%;
  border-left: 1px solid white;
  padding: 25px 40px;
  overflow-y: auto;
  border-radius: 0;
  scrollbar-face-color: #e30613;
  scrollbar-track-color: #f6f6f6;
  scrollbar-color: #e30613 #f6f6f6;
  scrollbar-width: thin;
}

.main-menu .column::-webkit-scrollbar {
  width: 4px;
}

.main-menu .column::-webkit-scrollbar-track {
  background-color: #f6f6f6;
}

.main-menu .column::-webkit-scrollbar-thumb {
  box-shadow: inset 0 0 6px #e30613;
}

.main-menu .column .teaser-headline {
  font-size: 18px;
  line-height: 27px;
  font-weight: 700;
  color: white;
}

.main-menu .column ul {
  padding: 0;
  margin: 0;
}

.main-menu .column ul li {
  padding: 0;
  list-style: none;
  font-size: 15px;
}

.main-menu .column ul li a {
  display: block;
  padding: 5px 0px;
}

.main-menu .column ul li a:hover,
.main-menu li a:hover {
  text-decoration: underline;
}

.main-menu a {
  color: white;
  text-decoration: none;
}

.main-menu,
.main-menu .column {
  padding-top: 0px;
}

.main-menu > li {
  display: block;
  text-align: left;
  margin-left: -4px;
}

.main-menu > li > a {
  padding: 10px 18px;
  display: block;
  font-weight: 700;
  font-size: 15px;
}

.main-menu > li > .subcategory {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  list-style: none;
  top: 0;
  left: 276px;
  width: 640px;
  height: 100%;
  text-align: left;
  margin-top: 30px;
  padding: 0;
  z-index: 99;
  overflow: hidden;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  transition-delay: .5s;
}

.main-menu > li:hover .subcategory {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.main-menu > li > ul li ul,
.main-menu li > ul li,
.main-menu > li > ul,
.main-menu > li {
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.navigation-flyout-bar {
  padding: 0;
}

.navigation-flyout-categories {
  padding-bottom: 35px;
}

.navigation-flyout-teaser-image {
  object-fit: contain;
  font-family: "object-fit: contain;";
}

.flyout-inner-container {
  box-shadow: 0 3px 20px rgba(0, 0, 0, .2);
  background-color: #e30613;
}

.navigation-flyout-close {
  padding: 10px;
}

.sticky-nav .navigation-flyout.is-open {
  margin-top: 8px;
}

.top-bar-nav-item,
.top-bar-nav-btn.btn,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .top-bar-nav-btn.watchlist-listing-link,
.hbspt-form input.top-bar-nav-btn.hs-button {
  font-size: .75rem;
  color: rgba(17, 17, 17, .64);
  font-weight: 500;
}

.pagination .icon {
  color: black;
}

.pagination .page-link {
  color: black;
}

.page-item:last-child .page-link,
.page-item:first-child .page-link {
  border-radius: 0;
}

.result-total {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 32px;
  margin-top: 20px;
}

@media (min-width:1025px) {
  .result-total {
    margin-top: 0;
  }
}

.breadcrumb {
  margin-bottom: 0px;
}

.breadcrumb a.is-active {
  color: #111;
}

.breadcrumb .breadcrumb-placeholder .icon-arrow-medium-right {
  color: #e30613;
}

.is-act-home .breadcrumb {
  display: none;
}

.filter-panel-item button {
  border-radius: 0;
}

.filter-panel-item .filter-panel-item-toggle {
  border-color: #f6f6f6;
  padding: 10px;
}

.is--sidebar .filter-multi-select-dropdown {
  overflow-y: hidden;
}

.is--sidebar .filter-multi-select-dropdown.show {
  overflow-y: auto;
}

.is--sidebar .filter-panel-item-dropdown {
  border-radius: 0;
  scrollbar-face-color: #e30613;
  scrollbar-track-color: #f6f6f6;
  scrollbar-color: #e30613 #f6f6f6;
  scrollbar-width: auto;
  -webkit-transition: none;
  transition: none;
}

.is--sidebar .filter-panel-item-dropdown::-webkit-scrollbar {
  width: 10px;
}

.is--sidebar .filter-panel-item-dropdown::-webkit-scrollbar-track {
  background-color: #f6f6f6;
}

.is--sidebar .filter-panel-item-dropdown::-webkit-scrollbar-thumb {
  box-shadow: inset 0 0 8px #e30613;
}

.is--sidebar .filter-panel-item-toggle:focus {
  outline: none;
}

.is--sidebar .icon-filter-panel-item-toggle > svg {
  -ms-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  color: #e30613;
}

.is--sidebar .icon-filter-panel-item-toggle {
  margin-left: 0;
  margin-right: 4px;
}

.listing-section-title {
  font-weight: 700;
}

.listing-section-title.boxed {
  padding: 20px 40px;
}

.contact-card-wrapper p,
.contact-card-wrapper h3 {
  color: white;
}

.contact-card-wrapper h3 {
  font-size: 22px;
}

.contact-card-wrapper p {
  margin-bottom: 5px;
}

.cms-element-sidebar-filter .filter-range sub {
  bottom: -2.25em;
}

.product-box {
  border: 0;
}

.product-box .card-body {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  padding: 0;
  background-color: #f6f6f6;
}

.product-box .card-body .product-image-wrapper {
  -ms-flex-preferred-size: 30%;
  flex-basis: 30%;
  margin-bottom: 0;
  height: 100%;
  padding: 5px;
}

.product-box .card-body .product-image-wrapper .product-image-link {
  background-color: white;
}

.product-box .card-body .product-info {
  -ms-flex-preferred-size: 70%;
  flex-basis: 70%;
  padding: 25px;
}

.product-box .card-body .product-info .product-name {
  color: #e30613;
  height: 22px;
  font-size: 16px;
}

.product-box .card-body .product-info .product-price-unit,
.product-box .card-body .product-info .product-cheapest-price {
  display: none;
}

.product-box .card-body .product-info .product-number-container,
.product-box .card-body .product-info .product-tax-info {
  font-size: 12px;
}

.product-box .card-body .product-info .product-tax-info {
  margin-bottom: 5px;
}

.product-box .card-body .product-info .product-delivery-information {
  font-size: 11px;
}

.product-box .card-body .product-info .product-number-container {
  margin-bottom: 45px;
  font-weight: 500;
}

.product-box .card-body .product-info .product-selector-features ul {
  padding-inline-start: 15px;
  list-style-type: none;
  padding-left: 0px;
}

.product-box .card-body .product-info .product-description {
  height: 35px;
  font-weight: 500;
}

@media (min-width:768px) {
  .product-box .card-body .product-info .product-description {
    height: 40px;
  }
}
.product-box .card-body .product-info .product-description:before {
  content: "";
}

.product-box .card-body .product-info .buy-widget-container .custom-select,
.product-box .card-body .product-info .buy-widget-container .hbspt-form select.hs-input,
.hbspt-form .product-box .card-body .product-info .buy-widget-container select.hs-input {
  border-color: #dadada;
}

.product-box .card-body .product-info .buy-widget-container .btn-buy,
.product-box .card-body .product-info .buy-widget-container .custom-select,
.product-box .card-body .product-info .buy-widget-container .hbspt-form select.hs-input,
.hbspt-form .product-box .card-body .product-info .buy-widget-container select.hs-input {
  border-radius: 0;
}

.product-box .card-body .product-info .product-wishlist .wishlist-listing-link {
  right: unset;
  top: unset;
  z-index: unset;
  position: static !important;
  min-width: 130px;
}

.product-box .card-body .product-info .product-wishlist .wishlist-listing-modal-link,
.product-box .card-body .product-info .product-wishlist .wishlist-link,
.product-box .card-body .product-info .product-wishlist .watchlist-listing-link {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  font-size: 12px;
  font-weight: 600;
}

.product-box .card-body .product-info .product-wishlist .wishlist-listing-modal-link img.check-icon-white,
.product-box .card-body .product-info .product-wishlist .wishlist-link img.check-icon-white,
.product-box .card-body .product-info .product-wishlist .watchlist-listing-link img.check-icon-white {
  max-width: 15px;
  -webkit-filter: invert(100%) sepia(0%) saturate(14%) hue-rotate(267deg) brightness(106%) contrast(103%);
  filter: invert(100%) sepia(0%) saturate(14%) hue-rotate(267deg) brightness(106%) contrast(103%);
}

.product-box .card-body .product-info .product-wishlist .wishlist-listing-modal-link:hover,
.product-box .card-body .product-info .product-wishlist .wishlist-link:hover,
.product-box .card-body .product-info .product-wishlist .watchlist-listing-link:hover {
  color: #e30613;
  text-decoration: none;
}

.product-box .card-body .product-info .product-wishlist .wishlist-listing-modal-link:hover.btn-primary,
.product-box .card-body .product-info .product-wishlist .wishlist-listing-modal-link.address-editor-select:not(.collapsed):hover,
.product-box .card-body .product-info .product-wishlist .wishlist-listing-modal-link.address-editor-edit:not(.collapsed):hover,
.product-box .card-body .product-info .product-wishlist .wishlist-listing-modal-link.address-editor-create:not(.collapsed):hover,
.product-box .card-body .product-info .product-wishlist .is-act-search .card-tabs .wishlist-listing-modal-link.btn-success:hover,
.is-act-search .card-tabs .product-box .card-body .product-info .product-wishlist .wishlist-listing-modal-link.btn-success:hover,
.product-box .card-body .product-info .product-wishlist .hbspt-form input.wishlist-listing-modal-link.hs-button:hover,
.hbspt-form .product-box .card-body .product-info .product-wishlist input.wishlist-listing-modal-link.hs-button:hover,
.product-box .card-body .product-info .product-wishlist .wishlist-link:hover.btn-primary,
.product-box .card-body .product-info .product-wishlist .wishlist-link.address-editor-select:not(.collapsed):hover,
.product-box .card-body .product-info .product-wishlist .wishlist-link.address-editor-edit:not(.collapsed):hover,
.product-box .card-body .product-info .product-wishlist .wishlist-link.address-editor-create:not(.collapsed):hover,
.product-box .card-body .product-info .product-wishlist .is-act-search .card-tabs .wishlist-link.btn-success:hover,
.is-act-search .card-tabs .product-box .card-body .product-info .product-wishlist .wishlist-link.btn-success:hover,
.product-box .card-body .product-info .product-wishlist .hbspt-form input.wishlist-link.hs-button:hover,
.hbspt-form .product-box .card-body .product-info .product-wishlist input.wishlist-link.hs-button:hover,
.product-box .card-body .product-info .product-wishlist .watchlist-listing-link:hover.btn-primary,
.product-box .card-body .product-info .product-wishlist .watchlist-listing-link.address-editor-select:not(.collapsed):hover,
.product-box .card-body .product-info .product-wishlist .watchlist-listing-link.address-editor-edit:not(.collapsed):hover,
.product-box .card-body .product-info .product-wishlist .watchlist-listing-link.address-editor-create:not(.collapsed):hover,
.product-box .card-body .product-info .product-wishlist .is-act-search .card-tabs .watchlist-listing-link.btn-success:hover,
.is-act-search .card-tabs .product-box .card-body .product-info .product-wishlist .watchlist-listing-link.btn-success:hover,
.product-box .card-body .product-info .product-wishlist .hbspt-form input.watchlist-listing-link.hs-button:hover,
.hbspt-form .product-box .card-body .product-info .product-wishlist input.watchlist-listing-link.hs-button:hover {
  color: white;
}

.product-box .card-body .product-info .product-wishlist .wishlist-listing-modal-link.marked .watchlist-listing-link,
.product-box .card-body .product-info .product-wishlist .wishlist-link.marked .watchlist-listing-link,
.product-box .card-body .product-info .product-wishlist .watchlist-listing-link.marked .watchlist-listing-link {
  max-width: 15px;
  -webkit-filter: invert(20%) sepia(100%) saturate(5861%) hue-rotate(350deg) brightness(86%) contrast(109%);
  filter: invert(20%) sepia(100%) saturate(5861%) hue-rotate(350deg) brightness(86%) contrast(109%);
}

.product-box .card-body .product-info .product-wishlist .wishlist-listing-modal-link .wishlist-listing-modal-link,
.product-box .card-body .product-info .product-wishlist .wishlist-link .wishlist-listing-modal-link,
.product-box .card-body .product-info .product-wishlist .watchlist-listing-link .wishlist-listing-modal-link {
  margin-right: 10px;
}

.product-box .card-body .product-info .product-wishlist .product-wishlist-row {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.product-box .card-body .product-info .product-wishlist.prevent-purchase .product-wishlist-row {
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: end;
  align-items: flex-end;
}

.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6 {
  padding: 0;
}

.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .watchlist-listing-link {
  background-color: #e30613;
  color: white;
  font-size: 12px;
}

.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .watchlist-listing-link:hover {
  color: white;
}

.product-box .card-body .product-info .product-action {
  margin-top: 12px;
}

.cms-section.category-info .product-name,
.cms-section.category-info .product-description {
  height: auto;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.cms-section.category-info .product-description {
  font-size: 20px;
  line-height: 29px;
}

.cms-section.category-info .product-name {
  font-size: 40px;
  line-height: 58px;
}

@media (min-width:768px) {

  .cms-section.category-info .product-name,
  .cms-section.category-info .product-description {
    padding: 0 100px;
  }
}

.combiproduct .product-box .card-body .product-image-wrapper {
  padding-left: 20px;
}

.combiproduct .product-box .card-body .product-image-wrapper:first-of-type {
  padding-left: 0px;
}

.combiproduct .header-combiproduct,
.combiproduct .footer-combiproduct {
  color: #111;
  background: #c6c6c6;
  padding: 10px 20px;
}

.combiproduct .footer-combiproduct,
.combiproduct .btn-link .icon-arrow-medium-down svg {
  color: #e30613;
}

.combiproduct .footer-combiproduct .btn-link.disabled {
  background: transparent;
  border: none;
}

.combiproduct button[aria-expanded="false"] .hide-combiproducts-headline,
.combiproduct button[aria-expanded="true"] .show-combiproducts-headline {
  display: none;
}

.combiproduct button[aria-expanded="false"] .show-combiproducts-headline,
.combiproduct button[aria-expanded="true"] .hide-combiproducts-headline {
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flex;
}

.combiproduct button[aria-expanded="true"] .icon-arrow-medium-down {
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.combiproduct .icon-arrow-medium-down svg {
  top: 0px;
  color: #e30613;
}

.product-box-comparison .product-compare-btn:focus {
  box-shadow: none;
}

.product-box-comparison .product-compare-btn .comparison-active {
  display: none;
}

.product-box-comparison .product-compare-btn.product-in-comparison {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: right;
  justify-content: right;
  font-weight: normal;
}

.product-box-comparison .product-compare-btn.product-in-comparison .product-box-compare-title,
.product-box-comparison .product-compare-btn.product-in-comparison .product-detail-compare-title {
  font-weight: 600;
}

.product-box-comparison .product-compare-btn.product-in-comparison .product-box-compare-icon {
  display: inherit;
  margin-right: 10px;
}

.product-box-comparison .product-compare-btn.product-in-comparison .comparison-active {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: 15px;
}

.product-box-comparison .product-compare-btn.product-in-comparison .comparison-icon {
  display: none;
}

.product-box-comparison .product-detail-price {
  font-size: inherit;
  font-weight: normal;
}

.btn-buy,
.btn-wishlist-offer-request {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  font-size: 1em;
  line-height: 1em;
  text-decoration: none;
  white-space: unset;
}

.btn-wishlist-offer-request {
  padding: 8px 12px;
  border-color: #e30613;
  border-width: 2px;
  background: white;
}

.btn-wishlist-offer-request-red {
  padding: 8px 12px;
  border-color: #e30613;
  border-width: 2px;
  background: #e30613;
  color: white;
}

.el-category-teaser .el-category-teaser-wrap a:hover {
  color: #111;
  text-decoration: none;
}

.el-category-teaser .el-category-teaser-item {
  border-radius: 0;
  border-width: 2px;
}

.el-category-teaser .el-category-teaser-item .img-fluid {
  height: 243px;
  object-fit: contain;
  background: white;
}

.el-category-teaser .el-category-teaser-item:hover {
  box-shadow: 0 0 16px rgba(0, 0, 0, .16);
  cursor: pointer;
}

.el-category-teaser .card-title {
  border-bottom: 0;
  margin-bottom: 0;
  font-size: 22px;
  line-height: 32px;
}

.el-category-teaser .el-category-teaser-wrap {
  padding-left: 10px;
  padding-right: 10px;
}

.el-category-teaser .el-category-teaser-wrap .card-body {
  padding: 25px 18px;
}

.el-category-teaser .el-category-teaser-wrap .el-category-teaser__inner-description {
  padding: 0;
}

.el-category-teaser .el-category-teaser-wrap .card-footer .card-link {
  font-size: 17px;
}

.el-category-teaser .el-category-teaser-wrap .card-footer .card-link::before {
  all: unset;
}

.el-category-teaser .el-category-teaser-wrap .card-footer .card-link::after {
  content: " >";
}

.el-category-teaser ul {
  padding-inline-start: 1em;
  list-style-type: none;
}

.el-category-teaser ul li {
  color: #111;
}

.el-category-teaser ul li:before {
  content: "■";
  color: #e30613;
  display: inline-block;
  width: 1.2em;
  margin-left: -1.2em;
  font-size: 12px;
  vertical-align: middle;
  margin-top: -4px;
}

.listing-section-title.padding-cms-box {
  padding: 20px 20px 0 20px;
}

.offsetClass {
  background: black;
}

.scroll-navigation-sidebar-mobile-menu {
  display: none;
}

.scroll-navigation-sidebar-list {
  -ms-flex-direction: row;
  flex-direction: row;
  line-height: 21px;
  margin-left: 0;
  border-bottom: none;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.scroll-navigation-sidebar-entry-label {
  border-bottom: 5px solid transparent;
  padding: 5px;
}

.scroll-navigation-sidebar-entry {
  cursor: pointer;
  width: auto;
  height: auto;
  padding: 0;
  font-size: 1rem;
  position: relative;
  border-bottom: 2px solid lightgrey;
}

.scroll-navigation-sidebar-entry > .scroll-navigation-sidebar-entry-label {
  opacity: 1;
  width: auto;
  margin-left: 0;
  box-shadow: none;
  pointer-events: none;
  -webkit-transition: none;
  transition: none;
  border-radius: 0;
  left: 0;
  color: #111;
}

.scroll-navigation-sidebar-entry--active > .scroll-navigation-sidebar-entry-label {
  text-shadow: 1px 0 0 black;
  font-weight: normal;
  border-bottom: 5px solid #e30613;
}

.scroll-navigation-sidebar-entry:hover > .scroll-navigation-sidebar-entry-label {
  margin-left: 0;
  box-shadow: none;
}

.scroll-navigation-sidebar,
.scroll-navigation-sidebar-list {
  width: auto;
}

.scroll-navigation-sidebar {
  border-radius: 0;
  left: 0;
  position: static;
  -ms-transform: none;
  -webkit-transform: none;
  transform: none;
  padding: 20px 0;
  box-shadow: none;
  -webkit-transition: none;
  transition: none;
  background: white;
}

.no-shopping ~ .section-navigation-list {
  top: 150px;
}

.section-navigation-list {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  z-index: 20;
}

@media (min-width:576px) {
  .scroll-navigation-sidebar-entry {
    border-bottom: none;
  }

  .scroll-navigation-sidebar-list {
    border-bottom: 2px solid lightgrey;
  }

  .section-navigation-list {
    top: 130px;
  }
}

@media (min-width:768px) {
  .swag-cms-extensions-scroll-navigation-wrapper {
    padding: 3em 0 3em;
  }

  .scroll-navigation-sidebar-entry {
    font-size: 20px;
    height: 45px;
  }

  .scroll-navigation-sidebar-entry-label {
    padding: 14px;
  }
}

@media (min-width:1025px) {
  .scroll-navigation-sidebar-list {
    padding: 0 100px;
  }

  .section-navigation-list {
    top: 60px;
  }

  .scroll-navigation-sidebar-entry:hover > .scroll-navigation-sidebar-entry-label {
    background: transparent;
  }
}

:target:before {
  content: "";
  display: block;
  height: 250px;
  margin: -250px 0 0;
}

@media (min-width:768px) {
  :target:before {
    height: 140px;
    margin: -140px 0 0;
  }
}

.btn,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .watchlist-listing-link,
.hbspt-form input.hs-button,
.btn.btn-lg,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .btn-lg.watchlist-listing-link,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .btn-group-lg > .watchlist-listing-link.btn,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .btn-group-lg > .watchlist-listing-link,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .hbspt-form .btn-group-lg > input.watchlist-listing-link.hs-button,
.hbspt-form .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .btn-group-lg > input.watchlist-listing-link.hs-button,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .watchlist-listing-link.btn-buy,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .watchlist-listing-link.btn-mark,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .watchlist-listing-link.btn-marked,
.hbspt-form input.btn-lg.hs-button,
.hbspt-form .btn-group-lg > input.hs-button.btn,
.hbspt-form .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .btn-group-lg > input.hs-button.watchlist-listing-link,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .hbspt-form .btn-group-lg > input.hs-button.watchlist-listing-link,
.hbspt-form .btn-group-lg > input.hs-button,
.hbspt-form input.hs-button.btn-buy,
.hbspt-form input.hs-button.btn-mark,
.hbspt-form input.hs-button.btn-marked,
.btn-group-lg > .btn,
.btn.btn-buy,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .btn-buy.watchlist-listing-link,
.hbspt-form input.btn-buy.hs-button,
.btn.btn-mark,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .btn-mark.watchlist-listing-link,
.hbspt-form input.btn-mark.hs-button,
.btn.btn-marked,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .btn-marked.watchlist-listing-link,
.hbspt-form input.btn-marked.hs-button,
.btn.btn-outline-primary,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .btn-outline-primary.watchlist-listing-link,
.hbspt-form input.btn-outline-primary.hs-button {
  border-radius: 0px;
}

.btn.btn-outline-primary,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .btn-outline-primary.watchlist-listing-link,
.hbspt-form input.btn-outline-primary.hs-button {
  border-width: 2px;
  padding: 1px 20px;
  color: #111;
}

.btn.btn-outline-primary:hover,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .btn-outline-primary.watchlist-listing-link:hover,
.hbspt-form input.btn-outline-primary.hs-button:hover,
.btn.btn-outline-primary:active,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .btn-outline-primary.watchlist-listing-link:active,
.hbspt-form input.btn-outline-primary.hs-button:active,
.btn.btn-outline-primary:focus,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .btn-outline-primary.watchlist-listing-link:focus,
.hbspt-form input.btn-outline-primary.hs-button:focus {
  background-color: transparent;
  color: #e30613;
}

.e-btn-link-low-priority::after {
  content: "";
  background: url("/bundles/storefront/assets/icon/solid/arrow-medium-right.svg");
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-left: 6px;
  -webkit-filter: invert(20%) sepia(100%) saturate(5861%) hue-rotate(350deg) brightness(86%) contrast(109%);
  filter: invert(20%) sepia(100%) saturate(5861%) hue-rotate(350deg) brightness(86%) contrast(109%);
  vertical-align: middle;
  -ms-transform: translateY(-1px);
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
}

.e-btn-link-low-priority:hover {
  text-decoration: none;
}

.e-low-priority-inverted::after {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.e-low-priority-inverted:hover {
  text-decoration: underline !important;
}

.e-low-priority-disabled::after {
  -webkit-filter: invert(100%) sepia(11%) saturate(7%) hue-rotate(292deg) brightness(93%) contrast(82%);
  filter: invert(100%) sepia(11%) saturate(7%) hue-rotate(292deg) brightness(93%) contrast(82%);
}

.e-btn-link-medium-priority,
.e-btn-link-high-priority {
  font-weight: 800;
  padding: 12px 20px 9px 20px;
}

.e-btn-link-medium-priority {
  border: 2px solid #e30613;
}

.e-medium-priority-inverted {
  border-color: #fff;
}

.e-medium-priority-inverted:hover {
  background-color: #fff;
}

.e-medium-priority-disabled {
  border-color: #dadada;
}

.e-btn-link-high-priority {
  background: #e30613;
}

.e-btn-link-high-priority:focus {
  background: #be0510;
}

.e-btn-link-medium-priority,
.e-btn-link-low-priority {
  color: #111;
}

.e-medium-priority-inverted:hover,
.e-btn-link-medium-priority:hover,
.e-btn-link-low-priority:hover {
  color: #e30613;
}

.high-priority-disabled,
.high-priority-disabled:focus {
  background: #dadada;
}

.high-priority-disabled,
.high-priority-disabled:hover {
  color: #9d9d9d;
}

.high-priority-disabled,
.e-medium-priority-disabled,
.e-low-priority-disabled {
  cursor: not-allowed;
}

.e-medium-priority-disabled,
.e-medium-priority-disabled:hover,
.e-low-priority-disabled,
.e-low-priority-disabled:hover {
  color: #dadada;
}

.e-btn-link-high-priority,
.e-btn-link-high-priority:hover,
.e-medium-priority-inverted,
.e-low-priority-inverted,
.e-low-priority-inverted:hover {
  color: #fff;
}

.offcanvas .offcanvas-close {
  color: inherit;
}

.btn:focus,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .watchlist-listing-link:focus,
.hbspt-form input.hs-button:focus {
  box-shadow: none !important;
  outline: none !important;
}

.four-column-card .cms-block-container-row {
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: 0;
  margin-right: 0;
}

.four-column-card .cms-block-container-row > .col-12,
.four-column-card .cms-block-elio-slider-element .elio-slider-element .singleElement .card .cms-block-container-row > .image-wrapper,
.cms-block-elio-slider-element .elio-slider-element .singleElement .card .four-column-card .cms-block-container-row > .image-wrapper,
.four-column-card .cms-block-elio-slider-element .elio-slider-element .singleElement .card .cms-block-container-row > .card-body,
.cms-block-elio-slider-element .elio-slider-element .singleElement .card .four-column-card .cms-block-container-row > .card-body,
.four-column-card .checkout-additional .cms-block-container-row > .form-group.col-lg-4,
.four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .col-lg-4.hs-form-booleancheckbox,
.four-column-card .checkout-additional .hbspt-form .is-act-cartpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside,
.is-act-cartpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside,
.four-column-card .checkout-additional .hbspt-form .is-act-checkoutregisterpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside,
.is-act-checkoutregisterpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside,
.four-column-card .checkout-additional .hbspt-form .is-act-confirmpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional,
.is-act-confirmpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional,
.four-column-card .checkout-additional .hbspt-form .is-ctl-accountorder .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional,
.is-ctl-accountorder .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional,
.four-column-card .checkout-additional .hbspt-form .is-act-confirmpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside,
.is-act-confirmpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside,
.four-column-card .checkout-additional .hbspt-form .is-ctl-accountorder .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside,
.is-ctl-accountorder .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside,
.four-column-card .checkout-additional .hbspt-form .is-act-finishpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional,
.is-act-finishpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional,
.four-column-card .checkout-additional .hbspt-form .is-act-finishpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside,
.is-act-finishpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside,
.hbspt-form .four-column-card .checkout-additional .cms-block-container-row > .col-lg-4.hs-form-booleancheckbox,
.four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .col-lg-4.hs-form-field,
.four-column-card .checkout-additional .hbspt-form .is-act-cartpage .checkout .cms-block-container-row > .hs-form-field.checkout-aside,
.is-act-cartpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-aside,
.four-column-card .checkout-additional .hbspt-form .is-act-checkoutregisterpage .checkout .cms-block-container-row > .hs-form-field.checkout-aside,
.is-act-checkoutregisterpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-aside,
.four-column-card .checkout-additional .hbspt-form .is-act-confirmpage .checkout .cms-block-container-row > .hs-form-field.checkout-additional,
.is-act-confirmpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-additional,
.four-column-card .checkout-additional .hbspt-form .is-ctl-accountorder .checkout .cms-block-container-row > .hs-form-field.checkout-additional,
.is-ctl-accountorder .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-additional,
.four-column-card .checkout-additional .hbspt-form .is-act-confirmpage .checkout .cms-block-container-row > .hs-form-field.checkout-aside,
.is-act-confirmpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-aside,
.four-column-card .checkout-additional .hbspt-form .is-ctl-accountorder .checkout .cms-block-container-row > .hs-form-field.checkout-aside,
.is-ctl-accountorder .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-aside,
.four-column-card .checkout-additional .hbspt-form .is-act-finishpage .checkout .cms-block-container-row > .hs-form-field.checkout-additional,
.is-act-finishpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-additional,
.four-column-card .checkout-additional .hbspt-form .is-act-finishpage .checkout .cms-block-container-row > .hs-form-field.checkout-aside,
.is-act-finishpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-aside,
.hbspt-form .four-column-card .checkout-additional .cms-block-container-row > .col-lg-4.hs-form-field,
.four-column-card .checkout-additional .is-act-cartpage .checkout .cms-block-container-row > .form-group.checkout-aside,
.four-column-card .checkout-additional .is-act-cartpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox,
.hbspt-form .four-column-card .checkout-additional .is-act-cartpage .checkout .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox,
.four-column-card .checkout-additional .is-act-cartpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-field,
.hbspt-form .four-column-card .checkout-additional .is-act-cartpage .checkout .cms-block-container-row > .checkout-aside.hs-form-field,
.is-act-cartpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-aside,
.four-column-card .checkout-additional .is-act-checkoutregisterpage .checkout .cms-block-container-row > .form-group.checkout-aside,
.four-column-card .checkout-additional .is-act-checkoutregisterpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox,
.hbspt-form .four-column-card .checkout-additional .is-act-checkoutregisterpage .checkout .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox,
.four-column-card .checkout-additional .is-act-checkoutregisterpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-field,
.hbspt-form .four-column-card .checkout-additional .is-act-checkoutregisterpage .checkout .cms-block-container-row > .checkout-aside.hs-form-field,
.is-act-checkoutregisterpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-aside,
.four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .form-group.checkout-additional,
.four-column-card .checkout-additional .is-act-confirmpage .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox,
.hbspt-form .four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox,
.four-column-card .checkout-additional .is-act-confirmpage .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-field,
.hbspt-form .four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .checkout-additional.hs-form-field,
.is-act-confirmpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-additional,
.four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .form-group.checkout-additional,
.four-column-card .checkout-additional .is-ctl-accountorder .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox,
.hbspt-form .four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox,
.four-column-card .checkout-additional .is-ctl-accountorder .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-field,
.hbspt-form .four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .checkout-additional.hs-form-field,
.is-ctl-accountorder .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-additional,
.four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .form-group.checkout-aside,
.four-column-card .checkout-additional .is-act-confirmpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox,
.hbspt-form .four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox,
.four-column-card .checkout-additional .is-act-confirmpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-field,
.hbspt-form .four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .checkout-aside.hs-form-field,
.is-act-confirmpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-aside,
.four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .form-group.checkout-aside,
.four-column-card .checkout-additional .is-ctl-accountorder .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox,
.hbspt-form .four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox,
.four-column-card .checkout-additional .is-ctl-accountorder .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-field,
.hbspt-form .four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .checkout-aside.hs-form-field,
.is-ctl-accountorder .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-aside,
.four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .form-group.checkout-additional,
.four-column-card .checkout-additional .is-act-finishpage .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox,
.hbspt-form .four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox,
.four-column-card .checkout-additional .is-act-finishpage .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-field,
.hbspt-form .four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .checkout-additional.hs-form-field,
.is-act-finishpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-additional,
.four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .form-group.checkout-aside,
.four-column-card .checkout-additional .is-act-finishpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox,
.hbspt-form .four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox,
.four-column-card .checkout-additional .is-act-finishpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-field,
.hbspt-form .four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .checkout-aside.hs-form-field,
.is-act-finishpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-aside,
.checkout-additional .four-column-card .cms-block-container-row > .form-group.col-lg-4,
.four-column-card .product-detail-tabs-content .cms-block-container-row > .tab-pane#accessories-tab-pane,
.product-detail-tabs-content .four-column-card .cms-block-container-row > .tab-pane#accessories-tab-pane {
  padding: 24px 36px;
  box-shadow: 0 3px 20px rgba(0, 0, 0, .1);
  border-top: 2px solid #e30613;
  margin-bottom: 15px;
}

@media (min-width:768px) {

  .four-column-card .cms-block-container-row > .col-12,
  .four-column-card .cms-block-elio-slider-element .elio-slider-element .singleElement .card .cms-block-container-row > .image-wrapper,
  .cms-block-elio-slider-element .elio-slider-element .singleElement .card .four-column-card .cms-block-container-row > .image-wrapper,
  .four-column-card .cms-block-elio-slider-element .elio-slider-element .singleElement .card .cms-block-container-row > .card-body,
  .cms-block-elio-slider-element .elio-slider-element .singleElement .card .four-column-card .cms-block-container-row > .card-body,
  .four-column-card .checkout-additional .cms-block-container-row > .form-group.col-lg-4,
  .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .col-lg-4.hs-form-booleancheckbox,
  .four-column-card .checkout-additional .hbspt-form .is-act-cartpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside,
  .is-act-cartpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside,
  .four-column-card .checkout-additional .hbspt-form .is-act-checkoutregisterpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside,
  .is-act-checkoutregisterpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside,
  .four-column-card .checkout-additional .hbspt-form .is-act-confirmpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional,
  .is-act-confirmpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional,
  .four-column-card .checkout-additional .hbspt-form .is-ctl-accountorder .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional,
  .is-ctl-accountorder .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional,
  .four-column-card .checkout-additional .hbspt-form .is-act-confirmpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside,
  .is-act-confirmpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside,
  .four-column-card .checkout-additional .hbspt-form .is-ctl-accountorder .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside,
  .is-ctl-accountorder .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside,
  .four-column-card .checkout-additional .hbspt-form .is-act-finishpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional,
  .is-act-finishpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional,
  .four-column-card .checkout-additional .hbspt-form .is-act-finishpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside,
  .is-act-finishpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside,
  .hbspt-form .four-column-card .checkout-additional .cms-block-container-row > .col-lg-4.hs-form-booleancheckbox,
  .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .col-lg-4.hs-form-field,
  .four-column-card .checkout-additional .hbspt-form .is-act-cartpage .checkout .cms-block-container-row > .hs-form-field.checkout-aside,
  .is-act-cartpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-aside,
  .four-column-card .checkout-additional .hbspt-form .is-act-checkoutregisterpage .checkout .cms-block-container-row > .hs-form-field.checkout-aside,
  .is-act-checkoutregisterpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-aside,
  .four-column-card .checkout-additional .hbspt-form .is-act-confirmpage .checkout .cms-block-container-row > .hs-form-field.checkout-additional,
  .is-act-confirmpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-additional,
  .four-column-card .checkout-additional .hbspt-form .is-ctl-accountorder .checkout .cms-block-container-row > .hs-form-field.checkout-additional,
  .is-ctl-accountorder .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-additional,
  .four-column-card .checkout-additional .hbspt-form .is-act-confirmpage .checkout .cms-block-container-row > .hs-form-field.checkout-aside,
  .is-act-confirmpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-aside,
  .four-column-card .checkout-additional .hbspt-form .is-ctl-accountorder .checkout .cms-block-container-row > .hs-form-field.checkout-aside,
  .is-ctl-accountorder .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-aside,
  .four-column-card .checkout-additional .hbspt-form .is-act-finishpage .checkout .cms-block-container-row > .hs-form-field.checkout-additional,
  .is-act-finishpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-additional,
  .four-column-card .checkout-additional .hbspt-form .is-act-finishpage .checkout .cms-block-container-row > .hs-form-field.checkout-aside,
  .is-act-finishpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-aside,
  .hbspt-form .four-column-card .checkout-additional .cms-block-container-row > .col-lg-4.hs-form-field,
  .four-column-card .checkout-additional .is-act-cartpage .checkout .cms-block-container-row > .form-group.checkout-aside,
  .four-column-card .checkout-additional .is-act-cartpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox,
  .hbspt-form .four-column-card .checkout-additional .is-act-cartpage .checkout .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox,
  .four-column-card .checkout-additional .is-act-cartpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-field,
  .hbspt-form .four-column-card .checkout-additional .is-act-cartpage .checkout .cms-block-container-row > .checkout-aside.hs-form-field,
  .is-act-cartpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-aside,
  .four-column-card .checkout-additional .is-act-checkoutregisterpage .checkout .cms-block-container-row > .form-group.checkout-aside,
  .four-column-card .checkout-additional .is-act-checkoutregisterpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox,
  .hbspt-form .four-column-card .checkout-additional .is-act-checkoutregisterpage .checkout .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox,
  .four-column-card .checkout-additional .is-act-checkoutregisterpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-field,
  .hbspt-form .four-column-card .checkout-additional .is-act-checkoutregisterpage .checkout .cms-block-container-row > .checkout-aside.hs-form-field,
  .is-act-checkoutregisterpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-aside,
  .four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .form-group.checkout-additional,
  .four-column-card .checkout-additional .is-act-confirmpage .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox,
  .hbspt-form .four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox,
  .four-column-card .checkout-additional .is-act-confirmpage .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-field,
  .hbspt-form .four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .checkout-additional.hs-form-field,
  .is-act-confirmpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-additional,
  .four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .form-group.checkout-additional,
  .four-column-card .checkout-additional .is-ctl-accountorder .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox,
  .hbspt-form .four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox,
  .four-column-card .checkout-additional .is-ctl-accountorder .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-field,
  .hbspt-form .four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .checkout-additional.hs-form-field,
  .is-ctl-accountorder .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-additional,
  .four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .form-group.checkout-aside,
  .four-column-card .checkout-additional .is-act-confirmpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox,
  .hbspt-form .four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox,
  .four-column-card .checkout-additional .is-act-confirmpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-field,
  .hbspt-form .four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .checkout-aside.hs-form-field,
  .is-act-confirmpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-aside,
  .four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .form-group.checkout-aside,
  .four-column-card .checkout-additional .is-ctl-accountorder .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox,
  .hbspt-form .four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox,
  .four-column-card .checkout-additional .is-ctl-accountorder .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-field,
  .hbspt-form .four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .checkout-aside.hs-form-field,
  .is-ctl-accountorder .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-aside,
  .four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .form-group.checkout-additional,
  .four-column-card .checkout-additional .is-act-finishpage .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox,
  .hbspt-form .four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox,
  .four-column-card .checkout-additional .is-act-finishpage .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-field,
  .hbspt-form .four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .checkout-additional.hs-form-field,
  .is-act-finishpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-additional,
  .four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .form-group.checkout-aside,
  .four-column-card .checkout-additional .is-act-finishpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox,
  .hbspt-form .four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox,
  .four-column-card .checkout-additional .is-act-finishpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-field,
  .hbspt-form .four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .checkout-aside.hs-form-field,
  .is-act-finishpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-aside,
  .checkout-additional .four-column-card .cms-block-container-row > .form-group.col-lg-4,
  .four-column-card .product-detail-tabs-content .cms-block-container-row > .tab-pane#accessories-tab-pane,
  .product-detail-tabs-content .four-column-card .cms-block-container-row > .tab-pane#accessories-tab-pane {
    -ms-flex: 0 0 calc((100% - 15px) / 2);
    flex: 0 0 calc((100% - 15px) / 2);
    max-width: calc((100% - 15px) / 2);
    margin-right: 15px;
  }

  .four-column-card .cms-block-container-row > .col-12:nth-child(2),
  .four-column-card .cms-block-elio-slider-element .elio-slider-element .singleElement .card .cms-block-container-row > .image-wrapper:nth-child(2),
  .cms-block-elio-slider-element .elio-slider-element .singleElement .card .four-column-card .cms-block-container-row > .image-wrapper:nth-child(2),
  .four-column-card .cms-block-elio-slider-element .elio-slider-element .singleElement .card .cms-block-container-row > .card-body:nth-child(2),
  .cms-block-elio-slider-element .elio-slider-element .singleElement .card .four-column-card .cms-block-container-row > .card-body:nth-child(2),
  .four-column-card .checkout-additional .cms-block-container-row > .form-group.col-lg-4:nth-child(2),
  .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .col-lg-4.hs-form-booleancheckbox:nth-child(2),
  .four-column-card .checkout-additional .hbspt-form .is-act-cartpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:nth-child(2),
  .is-act-cartpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:nth-child(2),
  .four-column-card .checkout-additional .hbspt-form .is-act-checkoutregisterpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:nth-child(2),
  .is-act-checkoutregisterpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:nth-child(2),
  .four-column-card .checkout-additional .hbspt-form .is-act-confirmpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional:nth-child(2),
  .is-act-confirmpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional:nth-child(2),
  .four-column-card .checkout-additional .hbspt-form .is-ctl-accountorder .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional:nth-child(2),
  .is-ctl-accountorder .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional:nth-child(2),
  .four-column-card .checkout-additional .hbspt-form .is-act-confirmpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:nth-child(2),
  .is-act-confirmpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:nth-child(2),
  .four-column-card .checkout-additional .hbspt-form .is-ctl-accountorder .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:nth-child(2),
  .is-ctl-accountorder .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:nth-child(2),
  .four-column-card .checkout-additional .hbspt-form .is-act-finishpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional:nth-child(2),
  .is-act-finishpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional:nth-child(2),
  .four-column-card .checkout-additional .hbspt-form .is-act-finishpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:nth-child(2),
  .is-act-finishpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:nth-child(2),
  .hbspt-form .four-column-card .checkout-additional .cms-block-container-row > .col-lg-4.hs-form-booleancheckbox:nth-child(2),
  .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .col-lg-4.hs-form-field:nth-child(2),
  .four-column-card .checkout-additional .hbspt-form .is-act-cartpage .checkout .cms-block-container-row > .hs-form-field.checkout-aside:nth-child(2),
  .is-act-cartpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-aside:nth-child(2),
  .four-column-card .checkout-additional .hbspt-form .is-act-checkoutregisterpage .checkout .cms-block-container-row > .hs-form-field.checkout-aside:nth-child(2),
  .is-act-checkoutregisterpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-aside:nth-child(2),
  .four-column-card .checkout-additional .hbspt-form .is-act-confirmpage .checkout .cms-block-container-row > .hs-form-field.checkout-additional:nth-child(2),
  .is-act-confirmpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-additional:nth-child(2),
  .four-column-card .checkout-additional .hbspt-form .is-ctl-accountorder .checkout .cms-block-container-row > .hs-form-field.checkout-additional:nth-child(2),
  .is-ctl-accountorder .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-additional:nth-child(2),
  .four-column-card .checkout-additional .hbspt-form .is-act-confirmpage .checkout .cms-block-container-row > .hs-form-field.checkout-aside:nth-child(2),
  .is-act-confirmpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-aside:nth-child(2),
  .four-column-card .checkout-additional .hbspt-form .is-ctl-accountorder .checkout .cms-block-container-row > .hs-form-field.checkout-aside:nth-child(2),
  .is-ctl-accountorder .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-aside:nth-child(2),
  .four-column-card .checkout-additional .hbspt-form .is-act-finishpage .checkout .cms-block-container-row > .hs-form-field.checkout-additional:nth-child(2),
  .is-act-finishpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-additional:nth-child(2),
  .four-column-card .checkout-additional .hbspt-form .is-act-finishpage .checkout .cms-block-container-row > .hs-form-field.checkout-aside:nth-child(2),
  .is-act-finishpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-aside:nth-child(2),
  .hbspt-form .four-column-card .checkout-additional .cms-block-container-row > .col-lg-4.hs-form-field:nth-child(2),
  .four-column-card .checkout-additional .is-act-cartpage .checkout .cms-block-container-row > .form-group.checkout-aside:nth-child(2),
  .four-column-card .checkout-additional .is-act-cartpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:nth-child(2),
  .hbspt-form .four-column-card .checkout-additional .is-act-cartpage .checkout .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:nth-child(2),
  .four-column-card .checkout-additional .is-act-cartpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-field:nth-child(2),
  .hbspt-form .four-column-card .checkout-additional .is-act-cartpage .checkout .cms-block-container-row > .checkout-aside.hs-form-field:nth-child(2),
  .is-act-cartpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-aside:nth-child(2),
  .four-column-card .checkout-additional .is-act-checkoutregisterpage .checkout .cms-block-container-row > .form-group.checkout-aside:nth-child(2),
  .four-column-card .checkout-additional .is-act-checkoutregisterpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:nth-child(2),
  .hbspt-form .four-column-card .checkout-additional .is-act-checkoutregisterpage .checkout .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:nth-child(2),
  .four-column-card .checkout-additional .is-act-checkoutregisterpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-field:nth-child(2),
  .hbspt-form .four-column-card .checkout-additional .is-act-checkoutregisterpage .checkout .cms-block-container-row > .checkout-aside.hs-form-field:nth-child(2),
  .is-act-checkoutregisterpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-aside:nth-child(2),
  .four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .form-group.checkout-additional:nth-child(2),
  .four-column-card .checkout-additional .is-act-confirmpage .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox:nth-child(2),
  .hbspt-form .four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox:nth-child(2),
  .four-column-card .checkout-additional .is-act-confirmpage .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-field:nth-child(2),
  .hbspt-form .four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .checkout-additional.hs-form-field:nth-child(2),
  .is-act-confirmpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-additional:nth-child(2),
  .four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .form-group.checkout-additional:nth-child(2),
  .four-column-card .checkout-additional .is-ctl-accountorder .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox:nth-child(2),
  .hbspt-form .four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox:nth-child(2),
  .four-column-card .checkout-additional .is-ctl-accountorder .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-field:nth-child(2),
  .hbspt-form .four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .checkout-additional.hs-form-field:nth-child(2),
  .is-ctl-accountorder .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-additional:nth-child(2),
  .four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .form-group.checkout-aside:nth-child(2),
  .four-column-card .checkout-additional .is-act-confirmpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:nth-child(2),
  .hbspt-form .four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:nth-child(2),
  .four-column-card .checkout-additional .is-act-confirmpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-field:nth-child(2),
  .hbspt-form .four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .checkout-aside.hs-form-field:nth-child(2),
  .is-act-confirmpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-aside:nth-child(2),
  .four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .form-group.checkout-aside:nth-child(2),
  .four-column-card .checkout-additional .is-ctl-accountorder .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:nth-child(2),
  .hbspt-form .four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:nth-child(2),
  .four-column-card .checkout-additional .is-ctl-accountorder .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-field:nth-child(2),
  .hbspt-form .four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .checkout-aside.hs-form-field:nth-child(2),
  .is-ctl-accountorder .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-aside:nth-child(2),
  .four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .form-group.checkout-additional:nth-child(2),
  .four-column-card .checkout-additional .is-act-finishpage .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox:nth-child(2),
  .hbspt-form .four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox:nth-child(2),
  .four-column-card .checkout-additional .is-act-finishpage .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-field:nth-child(2),
  .hbspt-form .four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .checkout-additional.hs-form-field:nth-child(2),
  .is-act-finishpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-additional:nth-child(2),
  .four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .form-group.checkout-aside:nth-child(2),
  .four-column-card .checkout-additional .is-act-finishpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:nth-child(2),
  .hbspt-form .four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:nth-child(2),
  .four-column-card .checkout-additional .is-act-finishpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-field:nth-child(2),
  .hbspt-form .four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .checkout-aside.hs-form-field:nth-child(2),
  .is-act-finishpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-aside:nth-child(2),
  .checkout-additional .four-column-card .cms-block-container-row > .form-group.col-lg-4:nth-child(2),
  .four-column-card .product-detail-tabs-content .cms-block-container-row > .tab-pane#accessories-tab-pane:nth-child(2),
  .product-detail-tabs-content .four-column-card .cms-block-container-row > .tab-pane#accessories-tab-pane:nth-child(2),
  .four-column-card .cms-block-container-row > .col-12:last-child,
  .four-column-card .cms-block-elio-slider-element .elio-slider-element .singleElement .card .cms-block-container-row > .image-wrapper:last-child,
  .cms-block-elio-slider-element .elio-slider-element .singleElement .card .four-column-card .cms-block-container-row > .image-wrapper:last-child,
  .four-column-card .cms-block-elio-slider-element .elio-slider-element .singleElement .card .cms-block-container-row > .card-body:last-child,
  .cms-block-elio-slider-element .elio-slider-element .singleElement .card .four-column-card .cms-block-container-row > .card-body:last-child,
  .four-column-card .checkout-additional .cms-block-container-row > .form-group.col-lg-4:last-child,
  .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .col-lg-4.hs-form-booleancheckbox:last-child,
  .four-column-card .checkout-additional .hbspt-form .is-act-cartpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:last-child,
  .is-act-cartpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:last-child,
  .four-column-card .checkout-additional .hbspt-form .is-act-checkoutregisterpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:last-child,
  .is-act-checkoutregisterpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:last-child,
  .four-column-card .checkout-additional .hbspt-form .is-act-confirmpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional:last-child,
  .is-act-confirmpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional:last-child,
  .four-column-card .checkout-additional .hbspt-form .is-ctl-accountorder .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional:last-child,
  .is-ctl-accountorder .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional:last-child,
  .four-column-card .checkout-additional .hbspt-form .is-act-confirmpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:last-child,
  .is-act-confirmpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:last-child,
  .four-column-card .checkout-additional .hbspt-form .is-ctl-accountorder .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:last-child,
  .is-ctl-accountorder .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:last-child,
  .four-column-card .checkout-additional .hbspt-form .is-act-finishpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional:last-child,
  .is-act-finishpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional:last-child,
  .four-column-card .checkout-additional .hbspt-form .is-act-finishpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:last-child,
  .is-act-finishpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:last-child,
  .hbspt-form .four-column-card .checkout-additional .cms-block-container-row > .col-lg-4.hs-form-booleancheckbox:last-child,
  .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .col-lg-4.hs-form-field:last-child,
  .four-column-card .checkout-additional .hbspt-form .is-act-cartpage .checkout .cms-block-container-row > .hs-form-field.checkout-aside:last-child,
  .is-act-cartpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-aside:last-child,
  .four-column-card .checkout-additional .hbspt-form .is-act-checkoutregisterpage .checkout .cms-block-container-row > .hs-form-field.checkout-aside:last-child,
  .is-act-checkoutregisterpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-aside:last-child,
  .four-column-card .checkout-additional .hbspt-form .is-act-confirmpage .checkout .cms-block-container-row > .hs-form-field.checkout-additional:last-child,
  .is-act-confirmpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-additional:last-child,
  .four-column-card .checkout-additional .hbspt-form .is-ctl-accountorder .checkout .cms-block-container-row > .hs-form-field.checkout-additional:last-child,
  .is-ctl-accountorder .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-additional:last-child,
  .four-column-card .checkout-additional .hbspt-form .is-act-confirmpage .checkout .cms-block-container-row > .hs-form-field.checkout-aside:last-child,
  .is-act-confirmpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-aside:last-child,
  .four-column-card .checkout-additional .hbspt-form .is-ctl-accountorder .checkout .cms-block-container-row > .hs-form-field.checkout-aside:last-child,
  .is-ctl-accountorder .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-aside:last-child,
  .four-column-card .checkout-additional .hbspt-form .is-act-finishpage .checkout .cms-block-container-row > .hs-form-field.checkout-additional:last-child,
  .is-act-finishpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-additional:last-child,
  .four-column-card .checkout-additional .hbspt-form .is-act-finishpage .checkout .cms-block-container-row > .hs-form-field.checkout-aside:last-child,
  .is-act-finishpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-aside:last-child,
  .hbspt-form .four-column-card .checkout-additional .cms-block-container-row > .col-lg-4.hs-form-field:last-child,
  .four-column-card .checkout-additional .is-act-cartpage .checkout .cms-block-container-row > .form-group.checkout-aside:last-child,
  .four-column-card .checkout-additional .is-act-cartpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:last-child,
  .hbspt-form .four-column-card .checkout-additional .is-act-cartpage .checkout .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:last-child,
  .four-column-card .checkout-additional .is-act-cartpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-field:last-child,
  .hbspt-form .four-column-card .checkout-additional .is-act-cartpage .checkout .cms-block-container-row > .checkout-aside.hs-form-field:last-child,
  .is-act-cartpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-aside:last-child,
  .four-column-card .checkout-additional .is-act-checkoutregisterpage .checkout .cms-block-container-row > .form-group.checkout-aside:last-child,
  .four-column-card .checkout-additional .is-act-checkoutregisterpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:last-child,
  .hbspt-form .four-column-card .checkout-additional .is-act-checkoutregisterpage .checkout .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:last-child,
  .four-column-card .checkout-additional .is-act-checkoutregisterpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-field:last-child,
  .hbspt-form .four-column-card .checkout-additional .is-act-checkoutregisterpage .checkout .cms-block-container-row > .checkout-aside.hs-form-field:last-child,
  .is-act-checkoutregisterpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-aside:last-child,
  .four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .form-group.checkout-additional:last-child,
  .four-column-card .checkout-additional .is-act-confirmpage .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox:last-child,
  .hbspt-form .four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox:last-child,
  .four-column-card .checkout-additional .is-act-confirmpage .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-field:last-child,
  .hbspt-form .four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .checkout-additional.hs-form-field:last-child,
  .is-act-confirmpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-additional:last-child,
  .four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .form-group.checkout-additional:last-child,
  .four-column-card .checkout-additional .is-ctl-accountorder .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox:last-child,
  .hbspt-form .four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox:last-child,
  .four-column-card .checkout-additional .is-ctl-accountorder .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-field:last-child,
  .hbspt-form .four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .checkout-additional.hs-form-field:last-child,
  .is-ctl-accountorder .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-additional:last-child,
  .four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .form-group.checkout-aside:last-child,
  .four-column-card .checkout-additional .is-act-confirmpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:last-child,
  .hbspt-form .four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:last-child,
  .four-column-card .checkout-additional .is-act-confirmpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-field:last-child,
  .hbspt-form .four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .checkout-aside.hs-form-field:last-child,
  .is-act-confirmpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-aside:last-child,
  .four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .form-group.checkout-aside:last-child,
  .four-column-card .checkout-additional .is-ctl-accountorder .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:last-child,
  .hbspt-form .four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:last-child,
  .four-column-card .checkout-additional .is-ctl-accountorder .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-field:last-child,
  .hbspt-form .four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .checkout-aside.hs-form-field:last-child,
  .is-ctl-accountorder .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-aside:last-child,
  .four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .form-group.checkout-additional:last-child,
  .four-column-card .checkout-additional .is-act-finishpage .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox:last-child,
  .hbspt-form .four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox:last-child,
  .four-column-card .checkout-additional .is-act-finishpage .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-field:last-child,
  .hbspt-form .four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .checkout-additional.hs-form-field:last-child,
  .is-act-finishpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-additional:last-child,
  .four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .form-group.checkout-aside:last-child,
  .four-column-card .checkout-additional .is-act-finishpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:last-child,
  .hbspt-form .four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:last-child,
  .four-column-card .checkout-additional .is-act-finishpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-field:last-child,
  .hbspt-form .four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .checkout-aside.hs-form-field:last-child,
  .is-act-finishpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-aside:last-child,
  .checkout-additional .four-column-card .cms-block-container-row > .form-group.col-lg-4:last-child,
  .four-column-card .product-detail-tabs-content .cms-block-container-row > .tab-pane#accessories-tab-pane:last-child,
  .product-detail-tabs-content .four-column-card .cms-block-container-row > .tab-pane#accessories-tab-pane:last-child {
    margin-right: 0;
  }
}

@media (min-width:1025px) {

  .four-column-card .cms-block-container-row > .col-12,
  .four-column-card .cms-block-elio-slider-element .elio-slider-element .singleElement .card .cms-block-container-row > .image-wrapper,
  .cms-block-elio-slider-element .elio-slider-element .singleElement .card .four-column-card .cms-block-container-row > .image-wrapper,
  .four-column-card .cms-block-elio-slider-element .elio-slider-element .singleElement .card .cms-block-container-row > .card-body,
  .cms-block-elio-slider-element .elio-slider-element .singleElement .card .four-column-card .cms-block-container-row > .card-body,
  .four-column-card .checkout-additional .cms-block-container-row > .form-group.col-lg-4,
  .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .col-lg-4.hs-form-booleancheckbox,
  .four-column-card .checkout-additional .hbspt-form .is-act-cartpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside,
  .is-act-cartpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside,
  .four-column-card .checkout-additional .hbspt-form .is-act-checkoutregisterpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside,
  .is-act-checkoutregisterpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside,
  .four-column-card .checkout-additional .hbspt-form .is-act-confirmpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional,
  .is-act-confirmpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional,
  .four-column-card .checkout-additional .hbspt-form .is-ctl-accountorder .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional,
  .is-ctl-accountorder .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional,
  .four-column-card .checkout-additional .hbspt-form .is-act-confirmpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside,
  .is-act-confirmpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside,
  .four-column-card .checkout-additional .hbspt-form .is-ctl-accountorder .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside,
  .is-ctl-accountorder .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside,
  .four-column-card .checkout-additional .hbspt-form .is-act-finishpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional,
  .is-act-finishpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional,
  .four-column-card .checkout-additional .hbspt-form .is-act-finishpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside,
  .is-act-finishpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside,
  .hbspt-form .four-column-card .checkout-additional .cms-block-container-row > .col-lg-4.hs-form-booleancheckbox,
  .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .col-lg-4.hs-form-field,
  .four-column-card .checkout-additional .hbspt-form .is-act-cartpage .checkout .cms-block-container-row > .hs-form-field.checkout-aside,
  .is-act-cartpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-aside,
  .four-column-card .checkout-additional .hbspt-form .is-act-checkoutregisterpage .checkout .cms-block-container-row > .hs-form-field.checkout-aside,
  .is-act-checkoutregisterpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-aside,
  .four-column-card .checkout-additional .hbspt-form .is-act-confirmpage .checkout .cms-block-container-row > .hs-form-field.checkout-additional,
  .is-act-confirmpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-additional,
  .four-column-card .checkout-additional .hbspt-form .is-ctl-accountorder .checkout .cms-block-container-row > .hs-form-field.checkout-additional,
  .is-ctl-accountorder .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-additional,
  .four-column-card .checkout-additional .hbspt-form .is-act-confirmpage .checkout .cms-block-container-row > .hs-form-field.checkout-aside,
  .is-act-confirmpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-aside,
  .four-column-card .checkout-additional .hbspt-form .is-ctl-accountorder .checkout .cms-block-container-row > .hs-form-field.checkout-aside,
  .is-ctl-accountorder .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-aside,
  .four-column-card .checkout-additional .hbspt-form .is-act-finishpage .checkout .cms-block-container-row > .hs-form-field.checkout-additional,
  .is-act-finishpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-additional,
  .four-column-card .checkout-additional .hbspt-form .is-act-finishpage .checkout .cms-block-container-row > .hs-form-field.checkout-aside,
  .is-act-finishpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-aside,
  .hbspt-form .four-column-card .checkout-additional .cms-block-container-row > .col-lg-4.hs-form-field,
  .four-column-card .checkout-additional .is-act-cartpage .checkout .cms-block-container-row > .form-group.checkout-aside,
  .four-column-card .checkout-additional .is-act-cartpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox,
  .hbspt-form .four-column-card .checkout-additional .is-act-cartpage .checkout .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox,
  .four-column-card .checkout-additional .is-act-cartpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-field,
  .hbspt-form .four-column-card .checkout-additional .is-act-cartpage .checkout .cms-block-container-row > .checkout-aside.hs-form-field,
  .is-act-cartpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-aside,
  .four-column-card .checkout-additional .is-act-checkoutregisterpage .checkout .cms-block-container-row > .form-group.checkout-aside,
  .four-column-card .checkout-additional .is-act-checkoutregisterpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox,
  .hbspt-form .four-column-card .checkout-additional .is-act-checkoutregisterpage .checkout .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox,
  .four-column-card .checkout-additional .is-act-checkoutregisterpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-field,
  .hbspt-form .four-column-card .checkout-additional .is-act-checkoutregisterpage .checkout .cms-block-container-row > .checkout-aside.hs-form-field,
  .is-act-checkoutregisterpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-aside,
  .four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .form-group.checkout-additional,
  .four-column-card .checkout-additional .is-act-confirmpage .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox,
  .hbspt-form .four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox,
  .four-column-card .checkout-additional .is-act-confirmpage .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-field,
  .hbspt-form .four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .checkout-additional.hs-form-field,
  .is-act-confirmpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-additional,
  .four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .form-group.checkout-additional,
  .four-column-card .checkout-additional .is-ctl-accountorder .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox,
  .hbspt-form .four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox,
  .four-column-card .checkout-additional .is-ctl-accountorder .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-field,
  .hbspt-form .four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .checkout-additional.hs-form-field,
  .is-ctl-accountorder .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-additional,
  .four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .form-group.checkout-aside,
  .four-column-card .checkout-additional .is-act-confirmpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox,
  .hbspt-form .four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox,
  .four-column-card .checkout-additional .is-act-confirmpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-field,
  .hbspt-form .four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .checkout-aside.hs-form-field,
  .is-act-confirmpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-aside,
  .four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .form-group.checkout-aside,
  .four-column-card .checkout-additional .is-ctl-accountorder .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox,
  .hbspt-form .four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox,
  .four-column-card .checkout-additional .is-ctl-accountorder .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-field,
  .hbspt-form .four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .checkout-aside.hs-form-field,
  .is-ctl-accountorder .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-aside,
  .four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .form-group.checkout-additional,
  .four-column-card .checkout-additional .is-act-finishpage .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox,
  .hbspt-form .four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox,
  .four-column-card .checkout-additional .is-act-finishpage .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-field,
  .hbspt-form .four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .checkout-additional.hs-form-field,
  .is-act-finishpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-additional,
  .four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .form-group.checkout-aside,
  .four-column-card .checkout-additional .is-act-finishpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox,
  .hbspt-form .four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox,
  .four-column-card .checkout-additional .is-act-finishpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-field,
  .hbspt-form .four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .checkout-aside.hs-form-field,
  .is-act-finishpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-aside,
  .checkout-additional .four-column-card .cms-block-container-row > .form-group.col-lg-4,
  .four-column-card .product-detail-tabs-content .cms-block-container-row > .tab-pane#accessories-tab-pane,
  .product-detail-tabs-content .four-column-card .cms-block-container-row > .tab-pane#accessories-tab-pane {
    -ms-flex: 0 0 calc((100% - 45px) / 4);
    flex: 0 0 calc((100% - 45px) / 4);
    max-width: calc((100% - 45px) / 4);
    margin-bottom: 0;
  }

  .four-column-card .cms-block-container-row > .col-12:nth-child(2),
  .four-column-card .cms-block-elio-slider-element .elio-slider-element .singleElement .card .cms-block-container-row > .image-wrapper:nth-child(2),
  .cms-block-elio-slider-element .elio-slider-element .singleElement .card .four-column-card .cms-block-container-row > .image-wrapper:nth-child(2),
  .four-column-card .cms-block-elio-slider-element .elio-slider-element .singleElement .card .cms-block-container-row > .card-body:nth-child(2),
  .cms-block-elio-slider-element .elio-slider-element .singleElement .card .four-column-card .cms-block-container-row > .card-body:nth-child(2),
  .four-column-card .checkout-additional .cms-block-container-row > .form-group.col-lg-4:nth-child(2),
  .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .col-lg-4.hs-form-booleancheckbox:nth-child(2),
  .four-column-card .checkout-additional .hbspt-form .is-act-cartpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:nth-child(2),
  .is-act-cartpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:nth-child(2),
  .four-column-card .checkout-additional .hbspt-form .is-act-checkoutregisterpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:nth-child(2),
  .is-act-checkoutregisterpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:nth-child(2),
  .four-column-card .checkout-additional .hbspt-form .is-act-confirmpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional:nth-child(2),
  .is-act-confirmpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional:nth-child(2),
  .four-column-card .checkout-additional .hbspt-form .is-ctl-accountorder .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional:nth-child(2),
  .is-ctl-accountorder .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional:nth-child(2),
  .four-column-card .checkout-additional .hbspt-form .is-act-confirmpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:nth-child(2),
  .is-act-confirmpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:nth-child(2),
  .four-column-card .checkout-additional .hbspt-form .is-ctl-accountorder .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:nth-child(2),
  .is-ctl-accountorder .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:nth-child(2),
  .four-column-card .checkout-additional .hbspt-form .is-act-finishpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional:nth-child(2),
  .is-act-finishpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional:nth-child(2),
  .four-column-card .checkout-additional .hbspt-form .is-act-finishpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:nth-child(2),
  .is-act-finishpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:nth-child(2),
  .hbspt-form .four-column-card .checkout-additional .cms-block-container-row > .col-lg-4.hs-form-booleancheckbox:nth-child(2),
  .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .col-lg-4.hs-form-field:nth-child(2),
  .four-column-card .checkout-additional .hbspt-form .is-act-cartpage .checkout .cms-block-container-row > .hs-form-field.checkout-aside:nth-child(2),
  .is-act-cartpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-aside:nth-child(2),
  .four-column-card .checkout-additional .hbspt-form .is-act-checkoutregisterpage .checkout .cms-block-container-row > .hs-form-field.checkout-aside:nth-child(2),
  .is-act-checkoutregisterpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-aside:nth-child(2),
  .four-column-card .checkout-additional .hbspt-form .is-act-confirmpage .checkout .cms-block-container-row > .hs-form-field.checkout-additional:nth-child(2),
  .is-act-confirmpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-additional:nth-child(2),
  .four-column-card .checkout-additional .hbspt-form .is-ctl-accountorder .checkout .cms-block-container-row > .hs-form-field.checkout-additional:nth-child(2),
  .is-ctl-accountorder .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-additional:nth-child(2),
  .four-column-card .checkout-additional .hbspt-form .is-act-confirmpage .checkout .cms-block-container-row > .hs-form-field.checkout-aside:nth-child(2),
  .is-act-confirmpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-aside:nth-child(2),
  .four-column-card .checkout-additional .hbspt-form .is-ctl-accountorder .checkout .cms-block-container-row > .hs-form-field.checkout-aside:nth-child(2),
  .is-ctl-accountorder .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-aside:nth-child(2),
  .four-column-card .checkout-additional .hbspt-form .is-act-finishpage .checkout .cms-block-container-row > .hs-form-field.checkout-additional:nth-child(2),
  .is-act-finishpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-additional:nth-child(2),
  .four-column-card .checkout-additional .hbspt-form .is-act-finishpage .checkout .cms-block-container-row > .hs-form-field.checkout-aside:nth-child(2),
  .is-act-finishpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-aside:nth-child(2),
  .hbspt-form .four-column-card .checkout-additional .cms-block-container-row > .col-lg-4.hs-form-field:nth-child(2),
  .four-column-card .checkout-additional .is-act-cartpage .checkout .cms-block-container-row > .form-group.checkout-aside:nth-child(2),
  .four-column-card .checkout-additional .is-act-cartpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:nth-child(2),
  .hbspt-form .four-column-card .checkout-additional .is-act-cartpage .checkout .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:nth-child(2),
  .four-column-card .checkout-additional .is-act-cartpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-field:nth-child(2),
  .hbspt-form .four-column-card .checkout-additional .is-act-cartpage .checkout .cms-block-container-row > .checkout-aside.hs-form-field:nth-child(2),
  .is-act-cartpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-aside:nth-child(2),
  .four-column-card .checkout-additional .is-act-checkoutregisterpage .checkout .cms-block-container-row > .form-group.checkout-aside:nth-child(2),
  .four-column-card .checkout-additional .is-act-checkoutregisterpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:nth-child(2),
  .hbspt-form .four-column-card .checkout-additional .is-act-checkoutregisterpage .checkout .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:nth-child(2),
  .four-column-card .checkout-additional .is-act-checkoutregisterpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-field:nth-child(2),
  .hbspt-form .four-column-card .checkout-additional .is-act-checkoutregisterpage .checkout .cms-block-container-row > .checkout-aside.hs-form-field:nth-child(2),
  .is-act-checkoutregisterpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-aside:nth-child(2),
  .four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .form-group.checkout-additional:nth-child(2),
  .four-column-card .checkout-additional .is-act-confirmpage .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox:nth-child(2),
  .hbspt-form .four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox:nth-child(2),
  .four-column-card .checkout-additional .is-act-confirmpage .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-field:nth-child(2),
  .hbspt-form .four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .checkout-additional.hs-form-field:nth-child(2),
  .is-act-confirmpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-additional:nth-child(2),
  .four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .form-group.checkout-additional:nth-child(2),
  .four-column-card .checkout-additional .is-ctl-accountorder .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox:nth-child(2),
  .hbspt-form .four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox:nth-child(2),
  .four-column-card .checkout-additional .is-ctl-accountorder .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-field:nth-child(2),
  .hbspt-form .four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .checkout-additional.hs-form-field:nth-child(2),
  .is-ctl-accountorder .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-additional:nth-child(2),
  .four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .form-group.checkout-aside:nth-child(2),
  .four-column-card .checkout-additional .is-act-confirmpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:nth-child(2),
  .hbspt-form .four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:nth-child(2),
  .four-column-card .checkout-additional .is-act-confirmpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-field:nth-child(2),
  .hbspt-form .four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .checkout-aside.hs-form-field:nth-child(2),
  .is-act-confirmpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-aside:nth-child(2),
  .four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .form-group.checkout-aside:nth-child(2),
  .four-column-card .checkout-additional .is-ctl-accountorder .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:nth-child(2),
  .hbspt-form .four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:nth-child(2),
  .four-column-card .checkout-additional .is-ctl-accountorder .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-field:nth-child(2),
  .hbspt-form .four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .checkout-aside.hs-form-field:nth-child(2),
  .is-ctl-accountorder .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-aside:nth-child(2),
  .four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .form-group.checkout-additional:nth-child(2),
  .four-column-card .checkout-additional .is-act-finishpage .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox:nth-child(2),
  .hbspt-form .four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox:nth-child(2),
  .four-column-card .checkout-additional .is-act-finishpage .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-field:nth-child(2),
  .hbspt-form .four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .checkout-additional.hs-form-field:nth-child(2),
  .is-act-finishpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-additional:nth-child(2),
  .four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .form-group.checkout-aside:nth-child(2),
  .four-column-card .checkout-additional .is-act-finishpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:nth-child(2),
  .hbspt-form .four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:nth-child(2),
  .four-column-card .checkout-additional .is-act-finishpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-field:nth-child(2),
  .hbspt-form .four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .checkout-aside.hs-form-field:nth-child(2),
  .is-act-finishpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-aside:nth-child(2),
  .checkout-additional .four-column-card .cms-block-container-row > .form-group.col-lg-4:nth-child(2),
  .four-column-card .product-detail-tabs-content .cms-block-container-row > .tab-pane#accessories-tab-pane:nth-child(2),
  .product-detail-tabs-content .four-column-card .cms-block-container-row > .tab-pane#accessories-tab-pane:nth-child(2) {
    margin-right: 15px;
  }
}

.four-column-card .cms-block-container-row > .col-12:first-child,
.four-column-card .cms-block-elio-slider-element .elio-slider-element .singleElement .card .cms-block-container-row > .image-wrapper:first-child,
.cms-block-elio-slider-element .elio-slider-element .singleElement .card .four-column-card .cms-block-container-row > .image-wrapper:first-child,
.four-column-card .cms-block-elio-slider-element .elio-slider-element .singleElement .card .cms-block-container-row > .card-body:first-child,
.cms-block-elio-slider-element .elio-slider-element .singleElement .card .four-column-card .cms-block-container-row > .card-body:first-child,
.four-column-card .checkout-additional .cms-block-container-row > .form-group.col-lg-4:first-child,
.four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .col-lg-4.hs-form-booleancheckbox:first-child,
.four-column-card .checkout-additional .hbspt-form .is-act-cartpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:first-child,
.is-act-cartpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:first-child,
.four-column-card .checkout-additional .hbspt-form .is-act-checkoutregisterpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:first-child,
.is-act-checkoutregisterpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:first-child,
.four-column-card .checkout-additional .hbspt-form .is-act-confirmpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional:first-child,
.is-act-confirmpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional:first-child,
.four-column-card .checkout-additional .hbspt-form .is-ctl-accountorder .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional:first-child,
.is-ctl-accountorder .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional:first-child,
.four-column-card .checkout-additional .hbspt-form .is-act-confirmpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:first-child,
.is-act-confirmpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:first-child,
.four-column-card .checkout-additional .hbspt-form .is-ctl-accountorder .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:first-child,
.is-ctl-accountorder .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:first-child,
.four-column-card .checkout-additional .hbspt-form .is-act-finishpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional:first-child,
.is-act-finishpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional:first-child,
.four-column-card .checkout-additional .hbspt-form .is-act-finishpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:first-child,
.is-act-finishpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:first-child,
.hbspt-form .four-column-card .checkout-additional .cms-block-container-row > .col-lg-4.hs-form-booleancheckbox:first-child,
.four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .col-lg-4.hs-form-field:first-child,
.four-column-card .checkout-additional .hbspt-form .is-act-cartpage .checkout .cms-block-container-row > .hs-form-field.checkout-aside:first-child,
.is-act-cartpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-aside:first-child,
.four-column-card .checkout-additional .hbspt-form .is-act-checkoutregisterpage .checkout .cms-block-container-row > .hs-form-field.checkout-aside:first-child,
.is-act-checkoutregisterpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-aside:first-child,
.four-column-card .checkout-additional .hbspt-form .is-act-confirmpage .checkout .cms-block-container-row > .hs-form-field.checkout-additional:first-child,
.is-act-confirmpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-additional:first-child,
.four-column-card .checkout-additional .hbspt-form .is-ctl-accountorder .checkout .cms-block-container-row > .hs-form-field.checkout-additional:first-child,
.is-ctl-accountorder .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-additional:first-child,
.four-column-card .checkout-additional .hbspt-form .is-act-confirmpage .checkout .cms-block-container-row > .hs-form-field.checkout-aside:first-child,
.is-act-confirmpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-aside:first-child,
.four-column-card .checkout-additional .hbspt-form .is-ctl-accountorder .checkout .cms-block-container-row > .hs-form-field.checkout-aside:first-child,
.is-ctl-accountorder .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-aside:first-child,
.four-column-card .checkout-additional .hbspt-form .is-act-finishpage .checkout .cms-block-container-row > .hs-form-field.checkout-additional:first-child,
.is-act-finishpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-additional:first-child,
.four-column-card .checkout-additional .hbspt-form .is-act-finishpage .checkout .cms-block-container-row > .hs-form-field.checkout-aside:first-child,
.is-act-finishpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-aside:first-child,
.hbspt-form .four-column-card .checkout-additional .cms-block-container-row > .col-lg-4.hs-form-field:first-child,
.four-column-card .checkout-additional .is-act-cartpage .checkout .cms-block-container-row > .form-group.checkout-aside:first-child,
.four-column-card .checkout-additional .is-act-cartpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:first-child,
.hbspt-form .four-column-card .checkout-additional .is-act-cartpage .checkout .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:first-child,
.four-column-card .checkout-additional .is-act-cartpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-field:first-child,
.hbspt-form .four-column-card .checkout-additional .is-act-cartpage .checkout .cms-block-container-row > .checkout-aside.hs-form-field:first-child,
.is-act-cartpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-aside:first-child,
.four-column-card .checkout-additional .is-act-checkoutregisterpage .checkout .cms-block-container-row > .form-group.checkout-aside:first-child,
.four-column-card .checkout-additional .is-act-checkoutregisterpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:first-child,
.hbspt-form .four-column-card .checkout-additional .is-act-checkoutregisterpage .checkout .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:first-child,
.four-column-card .checkout-additional .is-act-checkoutregisterpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-field:first-child,
.hbspt-form .four-column-card .checkout-additional .is-act-checkoutregisterpage .checkout .cms-block-container-row > .checkout-aside.hs-form-field:first-child,
.is-act-checkoutregisterpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-aside:first-child,
.four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .form-group.checkout-additional:first-child,
.four-column-card .checkout-additional .is-act-confirmpage .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox:first-child,
.hbspt-form .four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox:first-child,
.four-column-card .checkout-additional .is-act-confirmpage .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-field:first-child,
.hbspt-form .four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .checkout-additional.hs-form-field:first-child,
.is-act-confirmpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-additional:first-child,
.four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .form-group.checkout-additional:first-child,
.four-column-card .checkout-additional .is-ctl-accountorder .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox:first-child,
.hbspt-form .four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox:first-child,
.four-column-card .checkout-additional .is-ctl-accountorder .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-field:first-child,
.hbspt-form .four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .checkout-additional.hs-form-field:first-child,
.is-ctl-accountorder .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-additional:first-child,
.four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .form-group.checkout-aside:first-child,
.four-column-card .checkout-additional .is-act-confirmpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:first-child,
.hbspt-form .four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:first-child,
.four-column-card .checkout-additional .is-act-confirmpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-field:first-child,
.hbspt-form .four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .checkout-aside.hs-form-field:first-child,
.is-act-confirmpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-aside:first-child,
.four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .form-group.checkout-aside:first-child,
.four-column-card .checkout-additional .is-ctl-accountorder .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:first-child,
.hbspt-form .four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:first-child,
.four-column-card .checkout-additional .is-ctl-accountorder .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-field:first-child,
.hbspt-form .four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .checkout-aside.hs-form-field:first-child,
.is-ctl-accountorder .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-aside:first-child,
.four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .form-group.checkout-additional:first-child,
.four-column-card .checkout-additional .is-act-finishpage .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox:first-child,
.hbspt-form .four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox:first-child,
.four-column-card .checkout-additional .is-act-finishpage .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-field:first-child,
.hbspt-form .four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .checkout-additional.hs-form-field:first-child,
.is-act-finishpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-additional:first-child,
.four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .form-group.checkout-aside:first-child,
.four-column-card .checkout-additional .is-act-finishpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:first-child,
.hbspt-form .four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:first-child,
.four-column-card .checkout-additional .is-act-finishpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-field:first-child,
.hbspt-form .four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .checkout-aside.hs-form-field:first-child,
.is-act-finishpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-aside:first-child,
.checkout-additional .four-column-card .cms-block-container-row > .form-group.col-lg-4:first-child,
.four-column-card .product-detail-tabs-content .cms-block-container-row > .tab-pane#accessories-tab-pane:first-child,
.product-detail-tabs-content .four-column-card .cms-block-container-row > .tab-pane#accessories-tab-pane:first-child {
  background-color: #e30613;
}

.four-column-card .cms-block-container-row > .col-12:first-child p,
.four-column-card .cms-block-elio-slider-element .elio-slider-element .singleElement .card .cms-block-container-row > .image-wrapper:first-child p,
.cms-block-elio-slider-element .elio-slider-element .singleElement .card .four-column-card .cms-block-container-row > .image-wrapper:first-child p,
.four-column-card .cms-block-elio-slider-element .elio-slider-element .singleElement .card .cms-block-container-row > .card-body:first-child p,
.cms-block-elio-slider-element .elio-slider-element .singleElement .card .four-column-card .cms-block-container-row > .card-body:first-child p,
.four-column-card .checkout-additional .cms-block-container-row > .form-group.col-lg-4:first-child p,
.four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .col-lg-4.hs-form-booleancheckbox:first-child p,
.four-column-card .checkout-additional .hbspt-form .is-act-cartpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:first-child p,
.is-act-cartpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:first-child p,
.four-column-card .checkout-additional .hbspt-form .is-act-checkoutregisterpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:first-child p,
.is-act-checkoutregisterpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:first-child p,
.four-column-card .checkout-additional .hbspt-form .is-act-confirmpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional:first-child p,
.is-act-confirmpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional:first-child p,
.four-column-card .checkout-additional .hbspt-form .is-ctl-accountorder .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional:first-child p,
.is-ctl-accountorder .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional:first-child p,
.four-column-card .checkout-additional .hbspt-form .is-act-confirmpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:first-child p,
.is-act-confirmpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:first-child p,
.four-column-card .checkout-additional .hbspt-form .is-ctl-accountorder .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:first-child p,
.is-ctl-accountorder .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:first-child p,
.four-column-card .checkout-additional .hbspt-form .is-act-finishpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional:first-child p,
.is-act-finishpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional:first-child p,
.four-column-card .checkout-additional .hbspt-form .is-act-finishpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:first-child p,
.is-act-finishpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:first-child p,
.hbspt-form .four-column-card .checkout-additional .cms-block-container-row > .col-lg-4.hs-form-booleancheckbox:first-child p,
.four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .col-lg-4.hs-form-field:first-child p,
.four-column-card .checkout-additional .hbspt-form .is-act-cartpage .checkout .cms-block-container-row > .hs-form-field.checkout-aside:first-child p,
.is-act-cartpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-aside:first-child p,
.four-column-card .checkout-additional .hbspt-form .is-act-checkoutregisterpage .checkout .cms-block-container-row > .hs-form-field.checkout-aside:first-child p,
.is-act-checkoutregisterpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-aside:first-child p,
.four-column-card .checkout-additional .hbspt-form .is-act-confirmpage .checkout .cms-block-container-row > .hs-form-field.checkout-additional:first-child p,
.is-act-confirmpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-additional:first-child p,
.four-column-card .checkout-additional .hbspt-form .is-ctl-accountorder .checkout .cms-block-container-row > .hs-form-field.checkout-additional:first-child p,
.is-ctl-accountorder .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-additional:first-child p,
.four-column-card .checkout-additional .hbspt-form .is-act-confirmpage .checkout .cms-block-container-row > .hs-form-field.checkout-aside:first-child p,
.is-act-confirmpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-aside:first-child p,
.four-column-card .checkout-additional .hbspt-form .is-ctl-accountorder .checkout .cms-block-container-row > .hs-form-field.checkout-aside:first-child p,
.is-ctl-accountorder .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-aside:first-child p,
.four-column-card .checkout-additional .hbspt-form .is-act-finishpage .checkout .cms-block-container-row > .hs-form-field.checkout-additional:first-child p,
.is-act-finishpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-additional:first-child p,
.four-column-card .checkout-additional .hbspt-form .is-act-finishpage .checkout .cms-block-container-row > .hs-form-field.checkout-aside:first-child p,
.is-act-finishpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-aside:first-child p,
.hbspt-form .four-column-card .checkout-additional .cms-block-container-row > .col-lg-4.hs-form-field:first-child p,
.four-column-card .checkout-additional .is-act-cartpage .checkout .cms-block-container-row > .form-group.checkout-aside:first-child p,
.four-column-card .checkout-additional .is-act-cartpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:first-child p,
.hbspt-form .four-column-card .checkout-additional .is-act-cartpage .checkout .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:first-child p,
.four-column-card .checkout-additional .is-act-cartpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-field:first-child p,
.hbspt-form .four-column-card .checkout-additional .is-act-cartpage .checkout .cms-block-container-row > .checkout-aside.hs-form-field:first-child p,
.is-act-cartpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-aside:first-child p,
.four-column-card .checkout-additional .is-act-checkoutregisterpage .checkout .cms-block-container-row > .form-group.checkout-aside:first-child p,
.four-column-card .checkout-additional .is-act-checkoutregisterpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:first-child p,
.hbspt-form .four-column-card .checkout-additional .is-act-checkoutregisterpage .checkout .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:first-child p,
.four-column-card .checkout-additional .is-act-checkoutregisterpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-field:first-child p,
.hbspt-form .four-column-card .checkout-additional .is-act-checkoutregisterpage .checkout .cms-block-container-row > .checkout-aside.hs-form-field:first-child p,
.is-act-checkoutregisterpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-aside:first-child p,
.four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .form-group.checkout-additional:first-child p,
.four-column-card .checkout-additional .is-act-confirmpage .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox:first-child p,
.hbspt-form .four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox:first-child p,
.four-column-card .checkout-additional .is-act-confirmpage .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-field:first-child p,
.hbspt-form .four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .checkout-additional.hs-form-field:first-child p,
.is-act-confirmpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-additional:first-child p,
.four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .form-group.checkout-additional:first-child p,
.four-column-card .checkout-additional .is-ctl-accountorder .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox:first-child p,
.hbspt-form .four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox:first-child p,
.four-column-card .checkout-additional .is-ctl-accountorder .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-field:first-child p,
.hbspt-form .four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .checkout-additional.hs-form-field:first-child p,
.is-ctl-accountorder .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-additional:first-child p,
.four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .form-group.checkout-aside:first-child p,
.four-column-card .checkout-additional .is-act-confirmpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:first-child p,
.hbspt-form .four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:first-child p,
.four-column-card .checkout-additional .is-act-confirmpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-field:first-child p,
.hbspt-form .four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .checkout-aside.hs-form-field:first-child p,
.is-act-confirmpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-aside:first-child p,
.four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .form-group.checkout-aside:first-child p,
.four-column-card .checkout-additional .is-ctl-accountorder .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:first-child p,
.hbspt-form .four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:first-child p,
.four-column-card .checkout-additional .is-ctl-accountorder .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-field:first-child p,
.hbspt-form .four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .checkout-aside.hs-form-field:first-child p,
.is-ctl-accountorder .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-aside:first-child p,
.four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .form-group.checkout-additional:first-child p,
.four-column-card .checkout-additional .is-act-finishpage .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox:first-child p,
.hbspt-form .four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox:first-child p,
.four-column-card .checkout-additional .is-act-finishpage .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-field:first-child p,
.hbspt-form .four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .checkout-additional.hs-form-field:first-child p,
.is-act-finishpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-additional:first-child p,
.four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .form-group.checkout-aside:first-child p,
.four-column-card .checkout-additional .is-act-finishpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:first-child p,
.hbspt-form .four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:first-child p,
.four-column-card .checkout-additional .is-act-finishpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-field:first-child p,
.hbspt-form .four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .checkout-aside.hs-form-field:first-child p,
.is-act-finishpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-aside:first-child p,
.checkout-additional .four-column-card .cms-block-container-row > .form-group.col-lg-4:first-child p,
.four-column-card .product-detail-tabs-content .cms-block-container-row > .tab-pane#accessories-tab-pane:first-child p,
.product-detail-tabs-content .four-column-card .cms-block-container-row > .tab-pane#accessories-tab-pane:first-child p,
.four-column-card .cms-block-container-row > .col-12:first-child h3,
.four-column-card .cms-block-elio-slider-element .elio-slider-element .singleElement .card .cms-block-container-row > .image-wrapper:first-child h3,
.cms-block-elio-slider-element .elio-slider-element .singleElement .card .four-column-card .cms-block-container-row > .image-wrapper:first-child h3,
.four-column-card .cms-block-elio-slider-element .elio-slider-element .singleElement .card .cms-block-container-row > .card-body:first-child h3,
.cms-block-elio-slider-element .elio-slider-element .singleElement .card .four-column-card .cms-block-container-row > .card-body:first-child h3,
.four-column-card .checkout-additional .cms-block-container-row > .form-group.col-lg-4:first-child h3,
.four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .col-lg-4.hs-form-booleancheckbox:first-child h3,
.four-column-card .checkout-additional .hbspt-form .is-act-cartpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:first-child h3,
.is-act-cartpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:first-child h3,
.four-column-card .checkout-additional .hbspt-form .is-act-checkoutregisterpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:first-child h3,
.is-act-checkoutregisterpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:first-child h3,
.four-column-card .checkout-additional .hbspt-form .is-act-confirmpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional:first-child h3,
.is-act-confirmpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional:first-child h3,
.four-column-card .checkout-additional .hbspt-form .is-ctl-accountorder .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional:first-child h3,
.is-ctl-accountorder .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional:first-child h3,
.four-column-card .checkout-additional .hbspt-form .is-act-confirmpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:first-child h3,
.is-act-confirmpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:first-child h3,
.four-column-card .checkout-additional .hbspt-form .is-ctl-accountorder .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:first-child h3,
.is-ctl-accountorder .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:first-child h3,
.four-column-card .checkout-additional .hbspt-form .is-act-finishpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional:first-child h3,
.is-act-finishpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional:first-child h3,
.four-column-card .checkout-additional .hbspt-form .is-act-finishpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:first-child h3,
.is-act-finishpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:first-child h3,
.hbspt-form .four-column-card .checkout-additional .cms-block-container-row > .col-lg-4.hs-form-booleancheckbox:first-child h3,
.four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .col-lg-4.hs-form-field:first-child h3,
.four-column-card .checkout-additional .hbspt-form .is-act-cartpage .checkout .cms-block-container-row > .hs-form-field.checkout-aside:first-child h3,
.is-act-cartpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-aside:first-child h3,
.four-column-card .checkout-additional .hbspt-form .is-act-checkoutregisterpage .checkout .cms-block-container-row > .hs-form-field.checkout-aside:first-child h3,
.is-act-checkoutregisterpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-aside:first-child h3,
.four-column-card .checkout-additional .hbspt-form .is-act-confirmpage .checkout .cms-block-container-row > .hs-form-field.checkout-additional:first-child h3,
.is-act-confirmpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-additional:first-child h3,
.four-column-card .checkout-additional .hbspt-form .is-ctl-accountorder .checkout .cms-block-container-row > .hs-form-field.checkout-additional:first-child h3,
.is-ctl-accountorder .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-additional:first-child h3,
.four-column-card .checkout-additional .hbspt-form .is-act-confirmpage .checkout .cms-block-container-row > .hs-form-field.checkout-aside:first-child h3,
.is-act-confirmpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-aside:first-child h3,
.four-column-card .checkout-additional .hbspt-form .is-ctl-accountorder .checkout .cms-block-container-row > .hs-form-field.checkout-aside:first-child h3,
.is-ctl-accountorder .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-aside:first-child h3,
.four-column-card .checkout-additional .hbspt-form .is-act-finishpage .checkout .cms-block-container-row > .hs-form-field.checkout-additional:first-child h3,
.is-act-finishpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-additional:first-child h3,
.four-column-card .checkout-additional .hbspt-form .is-act-finishpage .checkout .cms-block-container-row > .hs-form-field.checkout-aside:first-child h3,
.is-act-finishpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-aside:first-child h3,
.hbspt-form .four-column-card .checkout-additional .cms-block-container-row > .col-lg-4.hs-form-field:first-child h3,
.four-column-card .checkout-additional .is-act-cartpage .checkout .cms-block-container-row > .form-group.checkout-aside:first-child h3,
.four-column-card .checkout-additional .is-act-cartpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:first-child h3,
.hbspt-form .four-column-card .checkout-additional .is-act-cartpage .checkout .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:first-child h3,
.four-column-card .checkout-additional .is-act-cartpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-field:first-child h3,
.hbspt-form .four-column-card .checkout-additional .is-act-cartpage .checkout .cms-block-container-row > .checkout-aside.hs-form-field:first-child h3,
.is-act-cartpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-aside:first-child h3,
.four-column-card .checkout-additional .is-act-checkoutregisterpage .checkout .cms-block-container-row > .form-group.checkout-aside:first-child h3,
.four-column-card .checkout-additional .is-act-checkoutregisterpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:first-child h3,
.hbspt-form .four-column-card .checkout-additional .is-act-checkoutregisterpage .checkout .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:first-child h3,
.four-column-card .checkout-additional .is-act-checkoutregisterpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-field:first-child h3,
.hbspt-form .four-column-card .checkout-additional .is-act-checkoutregisterpage .checkout .cms-block-container-row > .checkout-aside.hs-form-field:first-child h3,
.is-act-checkoutregisterpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-aside:first-child h3,
.four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .form-group.checkout-additional:first-child h3,
.four-column-card .checkout-additional .is-act-confirmpage .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox:first-child h3,
.hbspt-form .four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox:first-child h3,
.four-column-card .checkout-additional .is-act-confirmpage .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-field:first-child h3,
.hbspt-form .four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .checkout-additional.hs-form-field:first-child h3,
.is-act-confirmpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-additional:first-child h3,
.four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .form-group.checkout-additional:first-child h3,
.four-column-card .checkout-additional .is-ctl-accountorder .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox:first-child h3,
.hbspt-form .four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox:first-child h3,
.four-column-card .checkout-additional .is-ctl-accountorder .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-field:first-child h3,
.hbspt-form .four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .checkout-additional.hs-form-field:first-child h3,
.is-ctl-accountorder .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-additional:first-child h3,
.four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .form-group.checkout-aside:first-child h3,
.four-column-card .checkout-additional .is-act-confirmpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:first-child h3,
.hbspt-form .four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:first-child h3,
.four-column-card .checkout-additional .is-act-confirmpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-field:first-child h3,
.hbspt-form .four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .checkout-aside.hs-form-field:first-child h3,
.is-act-confirmpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-aside:first-child h3,
.four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .form-group.checkout-aside:first-child h3,
.four-column-card .checkout-additional .is-ctl-accountorder .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:first-child h3,
.hbspt-form .four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:first-child h3,
.four-column-card .checkout-additional .is-ctl-accountorder .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-field:first-child h3,
.hbspt-form .four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .checkout-aside.hs-form-field:first-child h3,
.is-ctl-accountorder .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-aside:first-child h3,
.four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .form-group.checkout-additional:first-child h3,
.four-column-card .checkout-additional .is-act-finishpage .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox:first-child h3,
.hbspt-form .four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox:first-child h3,
.four-column-card .checkout-additional .is-act-finishpage .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-field:first-child h3,
.hbspt-form .four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .checkout-additional.hs-form-field:first-child h3,
.is-act-finishpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-additional:first-child h3,
.four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .form-group.checkout-aside:first-child h3,
.four-column-card .checkout-additional .is-act-finishpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:first-child h3,
.hbspt-form .four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:first-child h3,
.four-column-card .checkout-additional .is-act-finishpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-field:first-child h3,
.hbspt-form .four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .checkout-aside.hs-form-field:first-child h3,
.is-act-finishpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-aside:first-child h3,
.checkout-additional .four-column-card .cms-block-container-row > .form-group.col-lg-4:first-child h3,
.four-column-card .product-detail-tabs-content .cms-block-container-row > .tab-pane#accessories-tab-pane:first-child h3,
.product-detail-tabs-content .four-column-card .cms-block-container-row > .tab-pane#accessories-tab-pane:first-child h3 {
  color: white;
}

.four-column-card .cms-block-container-row > .col-12:nth-child(3) img,
.four-column-card .cms-block-elio-slider-element .elio-slider-element .singleElement .card .cms-block-container-row > .image-wrapper:nth-child(3) img,
.cms-block-elio-slider-element .elio-slider-element .singleElement .card .four-column-card .cms-block-container-row > .image-wrapper:nth-child(3) img,
.four-column-card .cms-block-elio-slider-element .elio-slider-element .singleElement .card .cms-block-container-row > .card-body:nth-child(3) img,
.cms-block-elio-slider-element .elio-slider-element .singleElement .card .four-column-card .cms-block-container-row > .card-body:nth-child(3) img,
.four-column-card .checkout-additional .cms-block-container-row > .form-group.col-lg-4:nth-child(3) img,
.four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .col-lg-4.hs-form-booleancheckbox:nth-child(3) img,
.four-column-card .checkout-additional .hbspt-form .is-act-cartpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:nth-child(3) img,
.is-act-cartpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:nth-child(3) img,
.four-column-card .checkout-additional .hbspt-form .is-act-checkoutregisterpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:nth-child(3) img,
.is-act-checkoutregisterpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:nth-child(3) img,
.four-column-card .checkout-additional .hbspt-form .is-act-confirmpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional:nth-child(3) img,
.is-act-confirmpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional:nth-child(3) img,
.four-column-card .checkout-additional .hbspt-form .is-ctl-accountorder .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional:nth-child(3) img,
.is-ctl-accountorder .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional:nth-child(3) img,
.four-column-card .checkout-additional .hbspt-form .is-act-confirmpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:nth-child(3) img,
.is-act-confirmpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:nth-child(3) img,
.four-column-card .checkout-additional .hbspt-form .is-ctl-accountorder .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:nth-child(3) img,
.is-ctl-accountorder .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:nth-child(3) img,
.four-column-card .checkout-additional .hbspt-form .is-act-finishpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional:nth-child(3) img,
.is-act-finishpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional:nth-child(3) img,
.four-column-card .checkout-additional .hbspt-form .is-act-finishpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:nth-child(3) img,
.is-act-finishpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside:nth-child(3) img,
.hbspt-form .four-column-card .checkout-additional .cms-block-container-row > .col-lg-4.hs-form-booleancheckbox:nth-child(3) img,
.four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .col-lg-4.hs-form-field:nth-child(3) img,
.four-column-card .checkout-additional .hbspt-form .is-act-cartpage .checkout .cms-block-container-row > .hs-form-field.checkout-aside:nth-child(3) img,
.is-act-cartpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-aside:nth-child(3) img,
.four-column-card .checkout-additional .hbspt-form .is-act-checkoutregisterpage .checkout .cms-block-container-row > .hs-form-field.checkout-aside:nth-child(3) img,
.is-act-checkoutregisterpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-aside:nth-child(3) img,
.four-column-card .checkout-additional .hbspt-form .is-act-confirmpage .checkout .cms-block-container-row > .hs-form-field.checkout-additional:nth-child(3) img,
.is-act-confirmpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-additional:nth-child(3) img,
.four-column-card .checkout-additional .hbspt-form .is-ctl-accountorder .checkout .cms-block-container-row > .hs-form-field.checkout-additional:nth-child(3) img,
.is-ctl-accountorder .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-additional:nth-child(3) img,
.four-column-card .checkout-additional .hbspt-form .is-act-confirmpage .checkout .cms-block-container-row > .hs-form-field.checkout-aside:nth-child(3) img,
.is-act-confirmpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-aside:nth-child(3) img,
.four-column-card .checkout-additional .hbspt-form .is-ctl-accountorder .checkout .cms-block-container-row > .hs-form-field.checkout-aside:nth-child(3) img,
.is-ctl-accountorder .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-aside:nth-child(3) img,
.four-column-card .checkout-additional .hbspt-form .is-act-finishpage .checkout .cms-block-container-row > .hs-form-field.checkout-additional:nth-child(3) img,
.is-act-finishpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-additional:nth-child(3) img,
.four-column-card .checkout-additional .hbspt-form .is-act-finishpage .checkout .cms-block-container-row > .hs-form-field.checkout-aside:nth-child(3) img,
.is-act-finishpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-aside:nth-child(3) img,
.hbspt-form .four-column-card .checkout-additional .cms-block-container-row > .col-lg-4.hs-form-field:nth-child(3) img,
.four-column-card .checkout-additional .is-act-cartpage .checkout .cms-block-container-row > .form-group.checkout-aside:nth-child(3) img,
.four-column-card .checkout-additional .is-act-cartpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:nth-child(3) img,
.hbspt-form .four-column-card .checkout-additional .is-act-cartpage .checkout .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:nth-child(3) img,
.four-column-card .checkout-additional .is-act-cartpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-field:nth-child(3) img,
.hbspt-form .four-column-card .checkout-additional .is-act-cartpage .checkout .cms-block-container-row > .checkout-aside.hs-form-field:nth-child(3) img,
.is-act-cartpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-aside:nth-child(3) img,
.four-column-card .checkout-additional .is-act-checkoutregisterpage .checkout .cms-block-container-row > .form-group.checkout-aside:nth-child(3) img,
.four-column-card .checkout-additional .is-act-checkoutregisterpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:nth-child(3) img,
.hbspt-form .four-column-card .checkout-additional .is-act-checkoutregisterpage .checkout .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:nth-child(3) img,
.four-column-card .checkout-additional .is-act-checkoutregisterpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-field:nth-child(3) img,
.hbspt-form .four-column-card .checkout-additional .is-act-checkoutregisterpage .checkout .cms-block-container-row > .checkout-aside.hs-form-field:nth-child(3) img,
.is-act-checkoutregisterpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-aside:nth-child(3) img,
.four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .form-group.checkout-additional:nth-child(3) img,
.four-column-card .checkout-additional .is-act-confirmpage .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox:nth-child(3) img,
.hbspt-form .four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox:nth-child(3) img,
.four-column-card .checkout-additional .is-act-confirmpage .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-field:nth-child(3) img,
.hbspt-form .four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .checkout-additional.hs-form-field:nth-child(3) img,
.is-act-confirmpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-additional:nth-child(3) img,
.four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .form-group.checkout-additional:nth-child(3) img,
.four-column-card .checkout-additional .is-ctl-accountorder .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox:nth-child(3) img,
.hbspt-form .four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox:nth-child(3) img,
.four-column-card .checkout-additional .is-ctl-accountorder .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-field:nth-child(3) img,
.hbspt-form .four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .checkout-additional.hs-form-field:nth-child(3) img,
.is-ctl-accountorder .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-additional:nth-child(3) img,
.four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .form-group.checkout-aside:nth-child(3) img,
.four-column-card .checkout-additional .is-act-confirmpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:nth-child(3) img,
.hbspt-form .four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:nth-child(3) img,
.four-column-card .checkout-additional .is-act-confirmpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-field:nth-child(3) img,
.hbspt-form .four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .checkout-aside.hs-form-field:nth-child(3) img,
.is-act-confirmpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-aside:nth-child(3) img,
.four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .form-group.checkout-aside:nth-child(3) img,
.four-column-card .checkout-additional .is-ctl-accountorder .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:nth-child(3) img,
.hbspt-form .four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:nth-child(3) img,
.four-column-card .checkout-additional .is-ctl-accountorder .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-field:nth-child(3) img,
.hbspt-form .four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .checkout-aside.hs-form-field:nth-child(3) img,
.is-ctl-accountorder .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-aside:nth-child(3) img,
.four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .form-group.checkout-additional:nth-child(3) img,
.four-column-card .checkout-additional .is-act-finishpage .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox:nth-child(3) img,
.hbspt-form .four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox:nth-child(3) img,
.four-column-card .checkout-additional .is-act-finishpage .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-field:nth-child(3) img,
.hbspt-form .four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .checkout-additional.hs-form-field:nth-child(3) img,
.is-act-finishpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-additional:nth-child(3) img,
.four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .form-group.checkout-aside:nth-child(3) img,
.four-column-card .checkout-additional .is-act-finishpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:nth-child(3) img,
.hbspt-form .four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox:nth-child(3) img,
.four-column-card .checkout-additional .is-act-finishpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-field:nth-child(3) img,
.hbspt-form .four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .checkout-aside.hs-form-field:nth-child(3) img,
.is-act-finishpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-aside:nth-child(3) img,
.checkout-additional .four-column-card .cms-block-container-row > .form-group.col-lg-4:nth-child(3) img,
.four-column-card .product-detail-tabs-content .cms-block-container-row > .tab-pane#accessories-tab-pane:nth-child(3) img,
.product-detail-tabs-content .four-column-card .cms-block-container-row > .tab-pane#accessories-tab-pane:nth-child(3) img {
  width: 100%;
  height: auto;
  max-width: 259px;
}

.four-column-card .cms-block-container-row > .col-12 h3,
.four-column-card .cms-block-elio-slider-element .elio-slider-element .singleElement .card .cms-block-container-row > .image-wrapper h3,
.cms-block-elio-slider-element .elio-slider-element .singleElement .card .four-column-card .cms-block-container-row > .image-wrapper h3,
.four-column-card .cms-block-elio-slider-element .elio-slider-element .singleElement .card .cms-block-container-row > .card-body h3,
.cms-block-elio-slider-element .elio-slider-element .singleElement .card .four-column-card .cms-block-container-row > .card-body h3,
.four-column-card .checkout-additional .cms-block-container-row > .form-group.col-lg-4 h3,
.four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .col-lg-4.hs-form-booleancheckbox h3,
.four-column-card .checkout-additional .hbspt-form .is-act-cartpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside h3,
.is-act-cartpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside h3,
.four-column-card .checkout-additional .hbspt-form .is-act-checkoutregisterpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside h3,
.is-act-checkoutregisterpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside h3,
.four-column-card .checkout-additional .hbspt-form .is-act-confirmpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional h3,
.is-act-confirmpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional h3,
.four-column-card .checkout-additional .hbspt-form .is-ctl-accountorder .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional h3,
.is-ctl-accountorder .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional h3,
.four-column-card .checkout-additional .hbspt-form .is-act-confirmpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside h3,
.is-act-confirmpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside h3,
.four-column-card .checkout-additional .hbspt-form .is-ctl-accountorder .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside h3,
.is-ctl-accountorder .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside h3,
.four-column-card .checkout-additional .hbspt-form .is-act-finishpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional h3,
.is-act-finishpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional h3,
.four-column-card .checkout-additional .hbspt-form .is-act-finishpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside h3,
.is-act-finishpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside h3,
.hbspt-form .four-column-card .checkout-additional .cms-block-container-row > .col-lg-4.hs-form-booleancheckbox h3,
.four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .col-lg-4.hs-form-field h3,
.four-column-card .checkout-additional .hbspt-form .is-act-cartpage .checkout .cms-block-container-row > .hs-form-field.checkout-aside h3,
.is-act-cartpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-aside h3,
.four-column-card .checkout-additional .hbspt-form .is-act-checkoutregisterpage .checkout .cms-block-container-row > .hs-form-field.checkout-aside h3,
.is-act-checkoutregisterpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-aside h3,
.four-column-card .checkout-additional .hbspt-form .is-act-confirmpage .checkout .cms-block-container-row > .hs-form-field.checkout-additional h3,
.is-act-confirmpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-additional h3,
.four-column-card .checkout-additional .hbspt-form .is-ctl-accountorder .checkout .cms-block-container-row > .hs-form-field.checkout-additional h3,
.is-ctl-accountorder .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-additional h3,
.four-column-card .checkout-additional .hbspt-form .is-act-confirmpage .checkout .cms-block-container-row > .hs-form-field.checkout-aside h3,
.is-act-confirmpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-aside h3,
.four-column-card .checkout-additional .hbspt-form .is-ctl-accountorder .checkout .cms-block-container-row > .hs-form-field.checkout-aside h3,
.is-ctl-accountorder .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-aside h3,
.four-column-card .checkout-additional .hbspt-form .is-act-finishpage .checkout .cms-block-container-row > .hs-form-field.checkout-additional h3,
.is-act-finishpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-additional h3,
.four-column-card .checkout-additional .hbspt-form .is-act-finishpage .checkout .cms-block-container-row > .hs-form-field.checkout-aside h3,
.is-act-finishpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-aside h3,
.hbspt-form .four-column-card .checkout-additional .cms-block-container-row > .col-lg-4.hs-form-field h3,
.four-column-card .checkout-additional .is-act-cartpage .checkout .cms-block-container-row > .form-group.checkout-aside h3,
.four-column-card .checkout-additional .is-act-cartpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox h3,
.hbspt-form .four-column-card .checkout-additional .is-act-cartpage .checkout .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox h3,
.four-column-card .checkout-additional .is-act-cartpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-field h3,
.hbspt-form .four-column-card .checkout-additional .is-act-cartpage .checkout .cms-block-container-row > .checkout-aside.hs-form-field h3,
.is-act-cartpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-aside h3,
.four-column-card .checkout-additional .is-act-checkoutregisterpage .checkout .cms-block-container-row > .form-group.checkout-aside h3,
.four-column-card .checkout-additional .is-act-checkoutregisterpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox h3,
.hbspt-form .four-column-card .checkout-additional .is-act-checkoutregisterpage .checkout .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox h3,
.four-column-card .checkout-additional .is-act-checkoutregisterpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-field h3,
.hbspt-form .four-column-card .checkout-additional .is-act-checkoutregisterpage .checkout .cms-block-container-row > .checkout-aside.hs-form-field h3,
.is-act-checkoutregisterpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-aside h3,
.four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .form-group.checkout-additional h3,
.four-column-card .checkout-additional .is-act-confirmpage .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox h3,
.hbspt-form .four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox h3,
.four-column-card .checkout-additional .is-act-confirmpage .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-field h3,
.hbspt-form .four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .checkout-additional.hs-form-field h3,
.is-act-confirmpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-additional h3,
.four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .form-group.checkout-additional h3,
.four-column-card .checkout-additional .is-ctl-accountorder .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox h3,
.hbspt-form .four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox h3,
.four-column-card .checkout-additional .is-ctl-accountorder .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-field h3,
.hbspt-form .four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .checkout-additional.hs-form-field h3,
.is-ctl-accountorder .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-additional h3,
.four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .form-group.checkout-aside h3,
.four-column-card .checkout-additional .is-act-confirmpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox h3,
.hbspt-form .four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox h3,
.four-column-card .checkout-additional .is-act-confirmpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-field h3,
.hbspt-form .four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .checkout-aside.hs-form-field h3,
.is-act-confirmpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-aside h3,
.four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .form-group.checkout-aside h3,
.four-column-card .checkout-additional .is-ctl-accountorder .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox h3,
.hbspt-form .four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox h3,
.four-column-card .checkout-additional .is-ctl-accountorder .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-field h3,
.hbspt-form .four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .checkout-aside.hs-form-field h3,
.is-ctl-accountorder .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-aside h3,
.four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .form-group.checkout-additional h3,
.four-column-card .checkout-additional .is-act-finishpage .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox h3,
.hbspt-form .four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox h3,
.four-column-card .checkout-additional .is-act-finishpage .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-field h3,
.hbspt-form .four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .checkout-additional.hs-form-field h3,
.is-act-finishpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-additional h3,
.four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .form-group.checkout-aside h3,
.four-column-card .checkout-additional .is-act-finishpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox h3,
.hbspt-form .four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox h3,
.four-column-card .checkout-additional .is-act-finishpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-field h3,
.hbspt-form .four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .checkout-aside.hs-form-field h3,
.is-act-finishpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-aside h3,
.checkout-additional .four-column-card .cms-block-container-row > .form-group.col-lg-4 h3,
.four-column-card .product-detail-tabs-content .cms-block-container-row > .tab-pane#accessories-tab-pane h3,
.product-detail-tabs-content .four-column-card .cms-block-container-row > .tab-pane#accessories-tab-pane h3 {
  font-size: 22px;
}

.four-column-card .cms-block-container-row > .col-12 p,
.four-column-card .cms-block-elio-slider-element .elio-slider-element .singleElement .card .cms-block-container-row > .image-wrapper p,
.cms-block-elio-slider-element .elio-slider-element .singleElement .card .four-column-card .cms-block-container-row > .image-wrapper p,
.four-column-card .cms-block-elio-slider-element .elio-slider-element .singleElement .card .cms-block-container-row > .card-body p,
.cms-block-elio-slider-element .elio-slider-element .singleElement .card .four-column-card .cms-block-container-row > .card-body p,
.four-column-card .checkout-additional .cms-block-container-row > .form-group.col-lg-4 p,
.four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .col-lg-4.hs-form-booleancheckbox p,
.four-column-card .checkout-additional .hbspt-form .is-act-cartpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside p,
.is-act-cartpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside p,
.four-column-card .checkout-additional .hbspt-form .is-act-checkoutregisterpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside p,
.is-act-checkoutregisterpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside p,
.four-column-card .checkout-additional .hbspt-form .is-act-confirmpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional p,
.is-act-confirmpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional p,
.four-column-card .checkout-additional .hbspt-form .is-ctl-accountorder .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional p,
.is-ctl-accountorder .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional p,
.four-column-card .checkout-additional .hbspt-form .is-act-confirmpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside p,
.is-act-confirmpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside p,
.four-column-card .checkout-additional .hbspt-form .is-ctl-accountorder .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside p,
.is-ctl-accountorder .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside p,
.four-column-card .checkout-additional .hbspt-form .is-act-finishpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional p,
.is-act-finishpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-additional p,
.four-column-card .checkout-additional .hbspt-form .is-act-finishpage .checkout .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside p,
.is-act-finishpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-booleancheckbox.checkout-aside p,
.hbspt-form .four-column-card .checkout-additional .cms-block-container-row > .col-lg-4.hs-form-booleancheckbox p,
.four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .col-lg-4.hs-form-field p,
.four-column-card .checkout-additional .hbspt-form .is-act-cartpage .checkout .cms-block-container-row > .hs-form-field.checkout-aside p,
.is-act-cartpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-aside p,
.four-column-card .checkout-additional .hbspt-form .is-act-checkoutregisterpage .checkout .cms-block-container-row > .hs-form-field.checkout-aside p,
.is-act-checkoutregisterpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-aside p,
.four-column-card .checkout-additional .hbspt-form .is-act-confirmpage .checkout .cms-block-container-row > .hs-form-field.checkout-additional p,
.is-act-confirmpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-additional p,
.four-column-card .checkout-additional .hbspt-form .is-ctl-accountorder .checkout .cms-block-container-row > .hs-form-field.checkout-additional p,
.is-ctl-accountorder .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-additional p,
.four-column-card .checkout-additional .hbspt-form .is-act-confirmpage .checkout .cms-block-container-row > .hs-form-field.checkout-aside p,
.is-act-confirmpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-aside p,
.four-column-card .checkout-additional .hbspt-form .is-ctl-accountorder .checkout .cms-block-container-row > .hs-form-field.checkout-aside p,
.is-ctl-accountorder .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-aside p,
.four-column-card .checkout-additional .hbspt-form .is-act-finishpage .checkout .cms-block-container-row > .hs-form-field.checkout-additional p,
.is-act-finishpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-additional p,
.four-column-card .checkout-additional .hbspt-form .is-act-finishpage .checkout .cms-block-container-row > .hs-form-field.checkout-aside p,
.is-act-finishpage .checkout .four-column-card .checkout-additional .hbspt-form .cms-block-container-row > .hs-form-field.checkout-aside p,
.hbspt-form .four-column-card .checkout-additional .cms-block-container-row > .col-lg-4.hs-form-field p,
.four-column-card .checkout-additional .is-act-cartpage .checkout .cms-block-container-row > .form-group.checkout-aside p,
.four-column-card .checkout-additional .is-act-cartpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox p,
.hbspt-form .four-column-card .checkout-additional .is-act-cartpage .checkout .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox p,
.four-column-card .checkout-additional .is-act-cartpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-field p,
.hbspt-form .four-column-card .checkout-additional .is-act-cartpage .checkout .cms-block-container-row > .checkout-aside.hs-form-field p,
.is-act-cartpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-aside p,
.four-column-card .checkout-additional .is-act-checkoutregisterpage .checkout .cms-block-container-row > .form-group.checkout-aside p,
.four-column-card .checkout-additional .is-act-checkoutregisterpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox p,
.hbspt-form .four-column-card .checkout-additional .is-act-checkoutregisterpage .checkout .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox p,
.four-column-card .checkout-additional .is-act-checkoutregisterpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-field p,
.hbspt-form .four-column-card .checkout-additional .is-act-checkoutregisterpage .checkout .cms-block-container-row > .checkout-aside.hs-form-field p,
.is-act-checkoutregisterpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-aside p,
.four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .form-group.checkout-additional p,
.four-column-card .checkout-additional .is-act-confirmpage .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox p,
.hbspt-form .four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox p,
.four-column-card .checkout-additional .is-act-confirmpage .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-field p,
.hbspt-form .four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .checkout-additional.hs-form-field p,
.is-act-confirmpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-additional p,
.four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .form-group.checkout-additional p,
.four-column-card .checkout-additional .is-ctl-accountorder .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox p,
.hbspt-form .four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox p,
.four-column-card .checkout-additional .is-ctl-accountorder .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-field p,
.hbspt-form .four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .checkout-additional.hs-form-field p,
.is-ctl-accountorder .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-additional p,
.four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .form-group.checkout-aside p,
.four-column-card .checkout-additional .is-act-confirmpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox p,
.hbspt-form .four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox p,
.four-column-card .checkout-additional .is-act-confirmpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-field p,
.hbspt-form .four-column-card .checkout-additional .is-act-confirmpage .checkout .cms-block-container-row > .checkout-aside.hs-form-field p,
.is-act-confirmpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-aside p,
.four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .form-group.checkout-aside p,
.four-column-card .checkout-additional .is-ctl-accountorder .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox p,
.hbspt-form .four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox p,
.four-column-card .checkout-additional .is-ctl-accountorder .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-field p,
.hbspt-form .four-column-card .checkout-additional .is-ctl-accountorder .checkout .cms-block-container-row > .checkout-aside.hs-form-field p,
.is-ctl-accountorder .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-aside p,
.four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .form-group.checkout-additional p,
.four-column-card .checkout-additional .is-act-finishpage .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox p,
.hbspt-form .four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .checkout-additional.hs-form-booleancheckbox p,
.four-column-card .checkout-additional .is-act-finishpage .checkout .hbspt-form .cms-block-container-row > .checkout-additional.hs-form-field p,
.hbspt-form .four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .checkout-additional.hs-form-field p,
.is-act-finishpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-additional p,
.four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .form-group.checkout-aside p,
.four-column-card .checkout-additional .is-act-finishpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox p,
.hbspt-form .four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .checkout-aside.hs-form-booleancheckbox p,
.four-column-card .checkout-additional .is-act-finishpage .checkout .hbspt-form .cms-block-container-row > .checkout-aside.hs-form-field p,
.hbspt-form .four-column-card .checkout-additional .is-act-finishpage .checkout .cms-block-container-row > .checkout-aside.hs-form-field p,
.is-act-finishpage .checkout .four-column-card .checkout-additional .cms-block-container-row > .form-group.checkout-aside p,
.checkout-additional .four-column-card .cms-block-container-row > .form-group.col-lg-4 p,
.four-column-card .product-detail-tabs-content .cms-block-container-row > .tab-pane#accessories-tab-pane p,
.product-detail-tabs-content .four-column-card .cms-block-container-row > .tab-pane#accessories-tab-pane p {
  margin-bottom: 5px;
}

@media (max-width:767.98px) {

  div[class^="cms-block-grid"] .col-12,
  div[class^="cms-block-grid"] .cms-block-elio-slider-element .elio-slider-element .singleElement .card .image-wrapper,
  .cms-block-elio-slider-element .elio-slider-element .singleElement .card div[class^="cms-block-grid"] .image-wrapper,
  div[class^="cms-block-grid"] .cms-block-elio-slider-element .elio-slider-element .singleElement .card .card-body,
  .cms-block-elio-slider-element .elio-slider-element .singleElement .card div[class^="cms-block-grid"] .card-body,
  div[class^="cms-block-grid"] .checkout-additional .form-group.col-lg-4,
  div[class^="cms-block-grid"] .checkout-additional .hbspt-form .col-lg-4.hs-form-booleancheckbox,
  div[class^="cms-block-grid"] .checkout-additional .hbspt-form .is-act-cartpage .checkout .hs-form-booleancheckbox.checkout-aside,
  .is-act-cartpage .checkout div[class^="cms-block-grid"] .checkout-additional .hbspt-form .hs-form-booleancheckbox.checkout-aside,
  div[class^="cms-block-grid"] .checkout-additional .hbspt-form .is-act-checkoutregisterpage .checkout .hs-form-booleancheckbox.checkout-aside,
  .is-act-checkoutregisterpage .checkout div[class^="cms-block-grid"] .checkout-additional .hbspt-form .hs-form-booleancheckbox.checkout-aside,
  div[class^="cms-block-grid"] .checkout-additional .hbspt-form .is-act-confirmpage .checkout .hs-form-booleancheckbox.checkout-additional,
  .is-act-confirmpage .checkout div[class^="cms-block-grid"] .checkout-additional .hbspt-form .hs-form-booleancheckbox.checkout-additional,
  div[class^="cms-block-grid"] .checkout-additional .hbspt-form .is-ctl-accountorder .checkout .hs-form-booleancheckbox.checkout-additional,
  .is-ctl-accountorder .checkout div[class^="cms-block-grid"] .checkout-additional .hbspt-form .hs-form-booleancheckbox.checkout-additional,
  div[class^="cms-block-grid"] .checkout-additional .hbspt-form .is-act-confirmpage .checkout .hs-form-booleancheckbox.checkout-aside,
  .is-act-confirmpage .checkout div[class^="cms-block-grid"] .checkout-additional .hbspt-form .hs-form-booleancheckbox.checkout-aside,
  div[class^="cms-block-grid"] .checkout-additional .hbspt-form .is-ctl-accountorder .checkout .hs-form-booleancheckbox.checkout-aside,
  .is-ctl-accountorder .checkout div[class^="cms-block-grid"] .checkout-additional .hbspt-form .hs-form-booleancheckbox.checkout-aside,
  div[class^="cms-block-grid"] .checkout-additional .hbspt-form .is-act-finishpage .checkout .hs-form-booleancheckbox.checkout-additional,
  .is-act-finishpage .checkout div[class^="cms-block-grid"] .checkout-additional .hbspt-form .hs-form-booleancheckbox.checkout-additional,
  div[class^="cms-block-grid"] .checkout-additional .hbspt-form .is-act-finishpage .checkout .hs-form-booleancheckbox.checkout-aside,
  .is-act-finishpage .checkout div[class^="cms-block-grid"] .checkout-additional .hbspt-form .hs-form-booleancheckbox.checkout-aside,
  .hbspt-form div[class^="cms-block-grid"] .checkout-additional .col-lg-4.hs-form-booleancheckbox,
  div[class^="cms-block-grid"] .checkout-additional .hbspt-form .col-lg-4.hs-form-field,
  div[class^="cms-block-grid"] .checkout-additional .hbspt-form .is-act-cartpage .checkout .hs-form-field.checkout-aside,
  .is-act-cartpage .checkout div[class^="cms-block-grid"] .checkout-additional .hbspt-form .hs-form-field.checkout-aside,
  div[class^="cms-block-grid"] .checkout-additional .hbspt-form .is-act-checkoutregisterpage .checkout .hs-form-field.checkout-aside,
  .is-act-checkoutregisterpage .checkout div[class^="cms-block-grid"] .checkout-additional .hbspt-form .hs-form-field.checkout-aside,
  div[class^="cms-block-grid"] .checkout-additional .hbspt-form .is-act-confirmpage .checkout .hs-form-field.checkout-additional,
  .is-act-confirmpage .checkout div[class^="cms-block-grid"] .checkout-additional .hbspt-form .hs-form-field.checkout-additional,
  div[class^="cms-block-grid"] .checkout-additional .hbspt-form .is-ctl-accountorder .checkout .hs-form-field.checkout-additional,
  .is-ctl-accountorder .checkout div[class^="cms-block-grid"] .checkout-additional .hbspt-form .hs-form-field.checkout-additional,
  div[class^="cms-block-grid"] .checkout-additional .hbspt-form .is-act-confirmpage .checkout .hs-form-field.checkout-aside,
  .is-act-confirmpage .checkout div[class^="cms-block-grid"] .checkout-additional .hbspt-form .hs-form-field.checkout-aside,
  div[class^="cms-block-grid"] .checkout-additional .hbspt-form .is-ctl-accountorder .checkout .hs-form-field.checkout-aside,
  .is-ctl-accountorder .checkout div[class^="cms-block-grid"] .checkout-additional .hbspt-form .hs-form-field.checkout-aside,
  div[class^="cms-block-grid"] .checkout-additional .hbspt-form .is-act-finishpage .checkout .hs-form-field.checkout-additional,
  .is-act-finishpage .checkout div[class^="cms-block-grid"] .checkout-additional .hbspt-form .hs-form-field.checkout-additional,
  div[class^="cms-block-grid"] .checkout-additional .hbspt-form .is-act-finishpage .checkout .hs-form-field.checkout-aside,
  .is-act-finishpage .checkout div[class^="cms-block-grid"] .checkout-additional .hbspt-form .hs-form-field.checkout-aside,
  .hbspt-form div[class^="cms-block-grid"] .checkout-additional .col-lg-4.hs-form-field,
  div[class^="cms-block-grid"] .checkout-additional .is-act-cartpage .checkout .form-group.checkout-aside,
  div[class^="cms-block-grid"] .checkout-additional .is-act-cartpage .checkout .hbspt-form .checkout-aside.hs-form-booleancheckbox,
  .hbspt-form div[class^="cms-block-grid"] .checkout-additional .is-act-cartpage .checkout .checkout-aside.hs-form-booleancheckbox,
  div[class^="cms-block-grid"] .checkout-additional .is-act-cartpage .checkout .hbspt-form .checkout-aside.hs-form-field,
  .hbspt-form div[class^="cms-block-grid"] .checkout-additional .is-act-cartpage .checkout .checkout-aside.hs-form-field,
  .is-act-cartpage .checkout div[class^="cms-block-grid"] .checkout-additional .form-group.checkout-aside,
  div[class^="cms-block-grid"] .checkout-additional .is-act-checkoutregisterpage .checkout .form-group.checkout-aside,
  div[class^="cms-block-grid"] .checkout-additional .is-act-checkoutregisterpage .checkout .hbspt-form .checkout-aside.hs-form-booleancheckbox,
  .hbspt-form div[class^="cms-block-grid"] .checkout-additional .is-act-checkoutregisterpage .checkout .checkout-aside.hs-form-booleancheckbox,
  div[class^="cms-block-grid"] .checkout-additional .is-act-checkoutregisterpage .checkout .hbspt-form .checkout-aside.hs-form-field,
  .hbspt-form div[class^="cms-block-grid"] .checkout-additional .is-act-checkoutregisterpage .checkout .checkout-aside.hs-form-field,
  .is-act-checkoutregisterpage .checkout div[class^="cms-block-grid"] .checkout-additional .form-group.checkout-aside,
  div[class^="cms-block-grid"] .checkout-additional .is-act-confirmpage .checkout .form-group.checkout-additional,
  div[class^="cms-block-grid"] .checkout-additional .is-act-confirmpage .checkout .hbspt-form .checkout-additional.hs-form-booleancheckbox,
  .hbspt-form div[class^="cms-block-grid"] .checkout-additional .is-act-confirmpage .checkout .checkout-additional.hs-form-booleancheckbox,
  div[class^="cms-block-grid"] .checkout-additional .is-act-confirmpage .checkout .hbspt-form .checkout-additional.hs-form-field,
  .hbspt-form div[class^="cms-block-grid"] .checkout-additional .is-act-confirmpage .checkout .checkout-additional.hs-form-field,
  .is-act-confirmpage .checkout div[class^="cms-block-grid"] .checkout-additional .form-group.checkout-additional,
  div[class^="cms-block-grid"] .checkout-additional .is-ctl-accountorder .checkout .form-group.checkout-additional,
  div[class^="cms-block-grid"] .checkout-additional .is-ctl-accountorder .checkout .hbspt-form .checkout-additional.hs-form-booleancheckbox,
  .hbspt-form div[class^="cms-block-grid"] .checkout-additional .is-ctl-accountorder .checkout .checkout-additional.hs-form-booleancheckbox,
  div[class^="cms-block-grid"] .checkout-additional .is-ctl-accountorder .checkout .hbspt-form .checkout-additional.hs-form-field,
  .hbspt-form div[class^="cms-block-grid"] .checkout-additional .is-ctl-accountorder .checkout .checkout-additional.hs-form-field,
  .is-ctl-accountorder .checkout div[class^="cms-block-grid"] .checkout-additional .form-group.checkout-additional,
  div[class^="cms-block-grid"] .checkout-additional .is-act-confirmpage .checkout .form-group.checkout-aside,
  div[class^="cms-block-grid"] .checkout-additional .is-act-confirmpage .checkout .hbspt-form .checkout-aside.hs-form-booleancheckbox,
  .hbspt-form div[class^="cms-block-grid"] .checkout-additional .is-act-confirmpage .checkout .checkout-aside.hs-form-booleancheckbox,
  div[class^="cms-block-grid"] .checkout-additional .is-act-confirmpage .checkout .hbspt-form .checkout-aside.hs-form-field,
  .hbspt-form div[class^="cms-block-grid"] .checkout-additional .is-act-confirmpage .checkout .checkout-aside.hs-form-field,
  .is-act-confirmpage .checkout div[class^="cms-block-grid"] .checkout-additional .form-group.checkout-aside,
  div[class^="cms-block-grid"] .checkout-additional .is-ctl-accountorder .checkout .form-group.checkout-aside,
  div[class^="cms-block-grid"] .checkout-additional .is-ctl-accountorder .checkout .hbspt-form .checkout-aside.hs-form-booleancheckbox,
  .hbspt-form div[class^="cms-block-grid"] .checkout-additional .is-ctl-accountorder .checkout .checkout-aside.hs-form-booleancheckbox,
  div[class^="cms-block-grid"] .checkout-additional .is-ctl-accountorder .checkout .hbspt-form .checkout-aside.hs-form-field,
  .hbspt-form div[class^="cms-block-grid"] .checkout-additional .is-ctl-accountorder .checkout .checkout-aside.hs-form-field,
  .is-ctl-accountorder .checkout div[class^="cms-block-grid"] .checkout-additional .form-group.checkout-aside,
  div[class^="cms-block-grid"] .checkout-additional .is-act-finishpage .checkout .form-group.checkout-additional,
  div[class^="cms-block-grid"] .checkout-additional .is-act-finishpage .checkout .hbspt-form .checkout-additional.hs-form-booleancheckbox,
  .hbspt-form div[class^="cms-block-grid"] .checkout-additional .is-act-finishpage .checkout .checkout-additional.hs-form-booleancheckbox,
  div[class^="cms-block-grid"] .checkout-additional .is-act-finishpage .checkout .hbspt-form .checkout-additional.hs-form-field,
  .hbspt-form div[class^="cms-block-grid"] .checkout-additional .is-act-finishpage .checkout .checkout-additional.hs-form-field,
  .is-act-finishpage .checkout div[class^="cms-block-grid"] .checkout-additional .form-group.checkout-additional,
  div[class^="cms-block-grid"] .checkout-additional .is-act-finishpage .checkout .form-group.checkout-aside,
  div[class^="cms-block-grid"] .checkout-additional .is-act-finishpage .checkout .hbspt-form .checkout-aside.hs-form-booleancheckbox,
  .hbspt-form div[class^="cms-block-grid"] .checkout-additional .is-act-finishpage .checkout .checkout-aside.hs-form-booleancheckbox,
  div[class^="cms-block-grid"] .checkout-additional .is-act-finishpage .checkout .hbspt-form .checkout-aside.hs-form-field,
  .hbspt-form div[class^="cms-block-grid"] .checkout-additional .is-act-finishpage .checkout .checkout-aside.hs-form-field,
  .is-act-finishpage .checkout div[class^="cms-block-grid"] .checkout-additional .form-group.checkout-aside,
  .checkout-additional div[class^="cms-block-grid"] .form-group.col-lg-4,
  div[class^="cms-block-grid"] .product-detail-tabs-content .tab-pane#accessories-tab-pane,
  .product-detail-tabs-content div[class^="cms-block-grid"] .tab-pane#accessories-tab-pane,
  div[class*="cms-block-grid"] .col-12,
  div[class*="cms-block-grid"] .cms-block-elio-slider-element .elio-slider-element .singleElement .card .image-wrapper,
  .cms-block-elio-slider-element .elio-slider-element .singleElement .card div[class*="cms-block-grid"] .image-wrapper,
  div[class*="cms-block-grid"] .cms-block-elio-slider-element .elio-slider-element .singleElement .card .card-body,
  .cms-block-elio-slider-element .elio-slider-element .singleElement .card div[class*="cms-block-grid"] .card-body,
  div[class*="cms-block-grid"] .checkout-additional .form-group.col-lg-4,
  div[class*="cms-block-grid"] .checkout-additional .hbspt-form .col-lg-4.hs-form-booleancheckbox,
  div[class*="cms-block-grid"] .checkout-additional .hbspt-form .is-act-cartpage .checkout .hs-form-booleancheckbox.checkout-aside,
  .is-act-cartpage .checkout div[class*="cms-block-grid"] .checkout-additional .hbspt-form .hs-form-booleancheckbox.checkout-aside,
  div[class*="cms-block-grid"] .checkout-additional .hbspt-form .is-act-checkoutregisterpage .checkout .hs-form-booleancheckbox.checkout-aside,
  .is-act-checkoutregisterpage .checkout div[class*="cms-block-grid"] .checkout-additional .hbspt-form .hs-form-booleancheckbox.checkout-aside,
  div[class*="cms-block-grid"] .checkout-additional .hbspt-form .is-act-confirmpage .checkout .hs-form-booleancheckbox.checkout-additional,
  .is-act-confirmpage .checkout div[class*="cms-block-grid"] .checkout-additional .hbspt-form .hs-form-booleancheckbox.checkout-additional,
  div[class*="cms-block-grid"] .checkout-additional .hbspt-form .is-ctl-accountorder .checkout .hs-form-booleancheckbox.checkout-additional,
  .is-ctl-accountorder .checkout div[class*="cms-block-grid"] .checkout-additional .hbspt-form .hs-form-booleancheckbox.checkout-additional,
  div[class*="cms-block-grid"] .checkout-additional .hbspt-form .is-act-confirmpage .checkout .hs-form-booleancheckbox.checkout-aside,
  .is-act-confirmpage .checkout div[class*="cms-block-grid"] .checkout-additional .hbspt-form .hs-form-booleancheckbox.checkout-aside,
  div[class*="cms-block-grid"] .checkout-additional .hbspt-form .is-ctl-accountorder .checkout .hs-form-booleancheckbox.checkout-aside,
  .is-ctl-accountorder .checkout div[class*="cms-block-grid"] .checkout-additional .hbspt-form .hs-form-booleancheckbox.checkout-aside,
  div[class*="cms-block-grid"] .checkout-additional .hbspt-form .is-act-finishpage .checkout .hs-form-booleancheckbox.checkout-additional,
  .is-act-finishpage .checkout div[class*="cms-block-grid"] .checkout-additional .hbspt-form .hs-form-booleancheckbox.checkout-additional,
  div[class*="cms-block-grid"] .checkout-additional .hbspt-form .is-act-finishpage .checkout .hs-form-booleancheckbox.checkout-aside,
  .is-act-finishpage .checkout div[class*="cms-block-grid"] .checkout-additional .hbspt-form .hs-form-booleancheckbox.checkout-aside,
  .hbspt-form div[class*="cms-block-grid"] .checkout-additional .col-lg-4.hs-form-booleancheckbox,
  div[class*="cms-block-grid"] .checkout-additional .hbspt-form .col-lg-4.hs-form-field,
  div[class*="cms-block-grid"] .checkout-additional .hbspt-form .is-act-cartpage .checkout .hs-form-field.checkout-aside,
  .is-act-cartpage .checkout div[class*="cms-block-grid"] .checkout-additional .hbspt-form .hs-form-field.checkout-aside,
  div[class*="cms-block-grid"] .checkout-additional .hbspt-form .is-act-checkoutregisterpage .checkout .hs-form-field.checkout-aside,
  .is-act-checkoutregisterpage .checkout div[class*="cms-block-grid"] .checkout-additional .hbspt-form .hs-form-field.checkout-aside,
  div[class*="cms-block-grid"] .checkout-additional .hbspt-form .is-act-confirmpage .checkout .hs-form-field.checkout-additional,
  .is-act-confirmpage .checkout div[class*="cms-block-grid"] .checkout-additional .hbspt-form .hs-form-field.checkout-additional,
  div[class*="cms-block-grid"] .checkout-additional .hbspt-form .is-ctl-accountorder .checkout .hs-form-field.checkout-additional,
  .is-ctl-accountorder .checkout div[class*="cms-block-grid"] .checkout-additional .hbspt-form .hs-form-field.checkout-additional,
  div[class*="cms-block-grid"] .checkout-additional .hbspt-form .is-act-confirmpage .checkout .hs-form-field.checkout-aside,
  .is-act-confirmpage .checkout div[class*="cms-block-grid"] .checkout-additional .hbspt-form .hs-form-field.checkout-aside,
  div[class*="cms-block-grid"] .checkout-additional .hbspt-form .is-ctl-accountorder .checkout .hs-form-field.checkout-aside,
  .is-ctl-accountorder .checkout div[class*="cms-block-grid"] .checkout-additional .hbspt-form .hs-form-field.checkout-aside,
  div[class*="cms-block-grid"] .checkout-additional .hbspt-form .is-act-finishpage .checkout .hs-form-field.checkout-additional,
  .is-act-finishpage .checkout div[class*="cms-block-grid"] .checkout-additional .hbspt-form .hs-form-field.checkout-additional,
  div[class*="cms-block-grid"] .checkout-additional .hbspt-form .is-act-finishpage .checkout .hs-form-field.checkout-aside,
  .is-act-finishpage .checkout div[class*="cms-block-grid"] .checkout-additional .hbspt-form .hs-form-field.checkout-aside,
  .hbspt-form div[class*="cms-block-grid"] .checkout-additional .col-lg-4.hs-form-field,
  div[class*="cms-block-grid"] .checkout-additional .is-act-cartpage .checkout .form-group.checkout-aside,
  div[class*="cms-block-grid"] .checkout-additional .is-act-cartpage .checkout .hbspt-form .checkout-aside.hs-form-booleancheckbox,
  .hbspt-form div[class*="cms-block-grid"] .checkout-additional .is-act-cartpage .checkout .checkout-aside.hs-form-booleancheckbox,
  div[class*="cms-block-grid"] .checkout-additional .is-act-cartpage .checkout .hbspt-form .checkout-aside.hs-form-field,
  .hbspt-form div[class*="cms-block-grid"] .checkout-additional .is-act-cartpage .checkout .checkout-aside.hs-form-field,
  .is-act-cartpage .checkout div[class*="cms-block-grid"] .checkout-additional .form-group.checkout-aside,
  div[class*="cms-block-grid"] .checkout-additional .is-act-checkoutregisterpage .checkout .form-group.checkout-aside,
  div[class*="cms-block-grid"] .checkout-additional .is-act-checkoutregisterpage .checkout .hbspt-form .checkout-aside.hs-form-booleancheckbox,
  .hbspt-form div[class*="cms-block-grid"] .checkout-additional .is-act-checkoutregisterpage .checkout .checkout-aside.hs-form-booleancheckbox,
  div[class*="cms-block-grid"] .checkout-additional .is-act-checkoutregisterpage .checkout .hbspt-form .checkout-aside.hs-form-field,
  .hbspt-form div[class*="cms-block-grid"] .checkout-additional .is-act-checkoutregisterpage .checkout .checkout-aside.hs-form-field,
  .is-act-checkoutregisterpage .checkout div[class*="cms-block-grid"] .checkout-additional .form-group.checkout-aside,
  div[class*="cms-block-grid"] .checkout-additional .is-act-confirmpage .checkout .form-group.checkout-additional,
  div[class*="cms-block-grid"] .checkout-additional .is-act-confirmpage .checkout .hbspt-form .checkout-additional.hs-form-booleancheckbox,
  .hbspt-form div[class*="cms-block-grid"] .checkout-additional .is-act-confirmpage .checkout .checkout-additional.hs-form-booleancheckbox,
  div[class*="cms-block-grid"] .checkout-additional .is-act-confirmpage .checkout .hbspt-form .checkout-additional.hs-form-field,
  .hbspt-form div[class*="cms-block-grid"] .checkout-additional .is-act-confirmpage .checkout .checkout-additional.hs-form-field,
  .is-act-confirmpage .checkout div[class*="cms-block-grid"] .checkout-additional .form-group.checkout-additional,
  div[class*="cms-block-grid"] .checkout-additional .is-ctl-accountorder .checkout .form-group.checkout-additional,
  div[class*="cms-block-grid"] .checkout-additional .is-ctl-accountorder .checkout .hbspt-form .checkout-additional.hs-form-booleancheckbox,
  .hbspt-form div[class*="cms-block-grid"] .checkout-additional .is-ctl-accountorder .checkout .checkout-additional.hs-form-booleancheckbox,
  div[class*="cms-block-grid"] .checkout-additional .is-ctl-accountorder .checkout .hbspt-form .checkout-additional.hs-form-field,
  .hbspt-form div[class*="cms-block-grid"] .checkout-additional .is-ctl-accountorder .checkout .checkout-additional.hs-form-field,
  .is-ctl-accountorder .checkout div[class*="cms-block-grid"] .checkout-additional .form-group.checkout-additional,
  div[class*="cms-block-grid"] .checkout-additional .is-act-confirmpage .checkout .form-group.checkout-aside,
  div[class*="cms-block-grid"] .checkout-additional .is-act-confirmpage .checkout .hbspt-form .checkout-aside.hs-form-booleancheckbox,
  .hbspt-form div[class*="cms-block-grid"] .checkout-additional .is-act-confirmpage .checkout .checkout-aside.hs-form-booleancheckbox,
  div[class*="cms-block-grid"] .checkout-additional .is-act-confirmpage .checkout .hbspt-form .checkout-aside.hs-form-field,
  .hbspt-form div[class*="cms-block-grid"] .checkout-additional .is-act-confirmpage .checkout .checkout-aside.hs-form-field,
  .is-act-confirmpage .checkout div[class*="cms-block-grid"] .checkout-additional .form-group.checkout-aside,
  div[class*="cms-block-grid"] .checkout-additional .is-ctl-accountorder .checkout .form-group.checkout-aside,
  div[class*="cms-block-grid"] .checkout-additional .is-ctl-accountorder .checkout .hbspt-form .checkout-aside.hs-form-booleancheckbox,
  .hbspt-form div[class*="cms-block-grid"] .checkout-additional .is-ctl-accountorder .checkout .checkout-aside.hs-form-booleancheckbox,
  div[class*="cms-block-grid"] .checkout-additional .is-ctl-accountorder .checkout .hbspt-form .checkout-aside.hs-form-field,
  .hbspt-form div[class*="cms-block-grid"] .checkout-additional .is-ctl-accountorder .checkout .checkout-aside.hs-form-field,
  .is-ctl-accountorder .checkout div[class*="cms-block-grid"] .checkout-additional .form-group.checkout-aside,
  div[class*="cms-block-grid"] .checkout-additional .is-act-finishpage .checkout .form-group.checkout-additional,
  div[class*="cms-block-grid"] .checkout-additional .is-act-finishpage .checkout .hbspt-form .checkout-additional.hs-form-booleancheckbox,
  .hbspt-form div[class*="cms-block-grid"] .checkout-additional .is-act-finishpage .checkout .checkout-additional.hs-form-booleancheckbox,
  div[class*="cms-block-grid"] .checkout-additional .is-act-finishpage .checkout .hbspt-form .checkout-additional.hs-form-field,
  .hbspt-form div[class*="cms-block-grid"] .checkout-additional .is-act-finishpage .checkout .checkout-additional.hs-form-field,
  .is-act-finishpage .checkout div[class*="cms-block-grid"] .checkout-additional .form-group.checkout-additional,
  div[class*="cms-block-grid"] .checkout-additional .is-act-finishpage .checkout .form-group.checkout-aside,
  div[class*="cms-block-grid"] .checkout-additional .is-act-finishpage .checkout .hbspt-form .checkout-aside.hs-form-booleancheckbox,
  .hbspt-form div[class*="cms-block-grid"] .checkout-additional .is-act-finishpage .checkout .checkout-aside.hs-form-booleancheckbox,
  div[class*="cms-block-grid"] .checkout-additional .is-act-finishpage .checkout .hbspt-form .checkout-aside.hs-form-field,
  .hbspt-form div[class*="cms-block-grid"] .checkout-additional .is-act-finishpage .checkout .checkout-aside.hs-form-field,
  .is-act-finishpage .checkout div[class*="cms-block-grid"] .checkout-additional .form-group.checkout-aside,
  .checkout-additional div[class*="cms-block-grid"] .form-group.col-lg-4,
  div[class*="cms-block-grid"] .product-detail-tabs-content .tab-pane#accessories-tab-pane,
  .product-detail-tabs-content div[class*="cms-block-grid"] .tab-pane#accessories-tab-pane {
    margin-bottom: 1.25rem;
  }
}

.cms-element-product-listing-actions .sorting {
  margin-top: 0;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flex;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-left: 10px;
  width: auto;
}

.cms-element-product-listing-actions .sorting.custom-select,
.cms-element-product-listing-actions .hbspt-form select.sorting.hs-input,
.hbspt-form .cms-element-product-listing-actions select.sorting.hs-input {
  border-color: #bcc1c7;
  border-radius: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  color: #000;
  background: url("/bundles/leuzetheme/assets/icons/arrow-head-down-red.svg") no-repeat calc(100% - 7px) center;
  background-size: 10px;
}

.elio-country-language-switch-item .top-bar-list-item .top-bar-list-label {
  color: #e30613;
}

.elio-country-language-switch-item .item-checked span {
  color: revert;
  font-weight: bold;
}

@media (max-width:1199.98px) {
  .elio-country-language-switch-item .top-bar-list-item {
    padding: 10px;
  }
}

.table-style,
table {
  border: 0;
  height: auto !important;
}

.table-style tr,
table tr {
  border: 0;
  border-bottom: 1px solid grey;
  border-left: 0px;
  border-right: 0px;
}

.table-style tr:first-of-type,
table tr:first-of-type {
  border-bottom: 4px solid grey;
  border-top: 0px;
}

.table-style tr:first-of-type td,
table tr:first-of-type td {
  border-right: 0px;
}

.table-style tr:last-of-type,
table tr:last-of-type {
  border-bottom: 0px;
}

.table-style tr td,
table tr td {
  padding: 5px;
  border: 0;
  border-right: 1px solid grey;
  height: auto !important;
}

.table-style tr td:last-child,
table tr td:last-child {
  border-right: 0px;
}

.table-col-style td:nth-child(even),
.cms-section-default .table-col table td:nth-child(even) {
  background: #ccc;
}

.table-col-style tr:first-of-type td,
.cms-section-default .table-col table tr:first-of-type td {
  background: transparent;
}

.table-row-style tr:nth-child(even),
.cms-section-default .table-row table tr:nth-child(even) {
  background: #ccc;
}

table.no-header tr:first-of-type {
  border-bottom: 1px solid grey;
}

table.no-header tr:first-of-type td {
  border-right: 1px solid grey;
}

table.no-header tr:first-of-type td:last-of-type {
  border-right: 0px;
}

.alert,
.hbspt-form div.submitted-message {
  border-radius: 0;
}

.alert .icon,
.hbspt-form div.submitted-message .icon {
  display: none;
}

.alert.alert-info .alert-content-container,
.hbspt-form div.alert-info.submitted-message .alert-content-container,
.alert.alert-info .hbspt-form div.submitted-message,
.hbspt-form .alert.alert-info div.submitted-message,
.hbspt-form div.alert-info.submitted-message div.submitted-message,
.alert.alert-warning .alert-content-container,
.hbspt-form div.alert-warning.submitted-message .alert-content-container,
.alert.alert-warning .hbspt-form div.submitted-message,
.hbspt-form .alert.alert-warning div.submitted-message,
.hbspt-form div.alert-warning.submitted-message div.submitted-message,
.alert.alert-danger .alert-content-container,
.hbspt-form div.alert-danger.submitted-message .alert-content-container,
.alert.alert-danger .hbspt-form div.submitted-message,
.hbspt-form .alert.alert-danger div.submitted-message,
.hbspt-form div.alert-danger.submitted-message div.submitted-message,
.alert.alert-success .alert-content-container,
.hbspt-form div.alert-success.submitted-message .alert-content-container,
.hbspt-form div.submitted-message .alert-content-container,
.hbspt-form div.alert-success.submitted-message div.submitted-message,
.hbspt-form div.submitted-message,
.hbspt-form div.alert.submitted-message .alert-content-container,
.hbspt-form div.alert.submitted-message div.submitted-message,
.alert.alert-success .hbspt-form div.submitted-message,
.hbspt-form .alert.alert-success div.submitted-message {
  padding: 1.2em 2em;
}

.alert.alert-info .alert-content-container,
.hbspt-form div.alert-info.submitted-message .alert-content-container,
.alert.alert-info .hbspt-form div.submitted-message,
.hbspt-form .alert.alert-info div.submitted-message,
.hbspt-form div.alert-info.submitted-message div.submitted-message,
.alert.alert-warning .alert-content-container,
.hbspt-form div.alert-warning.submitted-message .alert-content-container,
.alert.alert-warning .hbspt-form div.submitted-message,
.hbspt-form .alert.alert-warning div.submitted-message,
.hbspt-form div.alert-warning.submitted-message div.submitted-message,
.alert.alert-danger .alert-content-container,
.hbspt-form div.alert-danger.submitted-message .alert-content-container,
.alert.alert-danger .hbspt-form div.submitted-message,
.hbspt-form .alert.alert-danger div.submitted-message,
.hbspt-form div.alert-danger.submitted-message div.submitted-message {
  color: #111;
  background: #ffe500;
}

.alert.alert-success .alert-content-container,
.hbspt-form div.alert-success.submitted-message .alert-content-container,
.hbspt-form div.submitted-message .alert-content-container,
.hbspt-form div.alert-success.submitted-message div.submitted-message,
.hbspt-form div.submitted-message,
.hbspt-form div.alert.submitted-message .alert-content-container,
.hbspt-form div.alert.submitted-message div.submitted-message,
.alert.alert-success .hbspt-form div.submitted-message,
.hbspt-form .alert.alert-success div.submitted-message {
  color: white;
  background: #00b51a;
}

.is-ctl-wishlist .wl-container {
  margin-bottom: 1rem;
}

.is-ctl-wishlist .asset-icon {
  margin-right: 5px;
}

.is-ctl-wishlist .wishlist-detail-btns.btn-group {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.is-ctl-wishlist .wishlist-detail-btns.btn-group .btn,
.is-ctl-wishlist .wishlist-detail-btns.btn-group .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .watchlist-listing-link,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .is-ctl-wishlist .wishlist-detail-btns.btn-group .watchlist-listing-link,
.is-ctl-wishlist .wishlist-detail-btns.btn-group .hbspt-form input.hs-button,
.hbspt-form .is-ctl-wishlist .wishlist-detail-btns.btn-group input.hs-button {
  margin-bottom: 15px;
  -ms-flex-positive: 0;
  flex-grow: 0;
  white-space: normal;
}

.is-ctl-wishlist .wishlist-detail-btns.btn-group .btn.btn-primary img,
.is-ctl-wishlist .wishlist-detail-btns.btn-group .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .btn-primary.watchlist-listing-link img,
.is-ctl-wishlist .wishlist-detail-btns.btn-group .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .watchlist-listing-link.address-editor-select:not(.collapsed) img,
.is-ctl-wishlist .wishlist-detail-btns.btn-group .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .watchlist-listing-link.address-editor-edit:not(.collapsed) img,
.is-ctl-wishlist .wishlist-detail-btns.btn-group .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .watchlist-listing-link.address-editor-create:not(.collapsed) img,
.is-ctl-wishlist .wishlist-detail-btns.btn-group .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .is-act-search .card-tabs .watchlist-listing-link.btn-success img,
.is-act-search .card-tabs .is-ctl-wishlist .wishlist-detail-btns.btn-group .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .watchlist-listing-link.btn-success img,
.is-ctl-wishlist .wishlist-detail-btns.btn-group .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .hbspt-form input.watchlist-listing-link.hs-button img,
.hbspt-form .is-ctl-wishlist .wishlist-detail-btns.btn-group .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child input.watchlist-listing-link.hs-button img,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .is-ctl-wishlist .wishlist-detail-btns.btn-group .btn-primary.watchlist-listing-link img,
.is-ctl-wishlist .wishlist-detail-btns.btn-group .hbspt-form input.btn-primary.hs-button img,
.is-ctl-wishlist .wishlist-detail-btns.btn-group .hbspt-form input.hs-button.address-editor-select:not(.collapsed) img,
.is-ctl-wishlist .wishlist-detail-btns.btn-group .hbspt-form input.hs-button.address-editor-edit:not(.collapsed) img,
.is-ctl-wishlist .wishlist-detail-btns.btn-group .hbspt-form input.hs-button.address-editor-create:not(.collapsed) img,
.is-ctl-wishlist .wishlist-detail-btns.btn-group .hbspt-form .is-act-search .card-tabs input.hs-button.btn-success img,
.is-act-search .card-tabs .is-ctl-wishlist .wishlist-detail-btns.btn-group .hbspt-form input.hs-button.btn-success img,
.is-ctl-wishlist .wishlist-detail-btns.btn-group .hbspt-form .hbspt-form input.hs-button img,
.hbspt-form .is-ctl-wishlist .wishlist-detail-btns.btn-group .hbspt-form input.hs-button img,
.hbspt-form .is-ctl-wishlist .wishlist-detail-btns.btn-group input.btn-primary.hs-button img,
.is-ctl-wishlist .wishlist-detail-btns.btn-group .btn.address-editor-select:not(.collapsed) img,
.is-ctl-wishlist .wishlist-detail-btns.btn-group .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .address-editor-select.watchlist-listing-link:not(.collapsed) img,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .is-ctl-wishlist .wishlist-detail-btns.btn-group .address-editor-select.watchlist-listing-link:not(.collapsed) img,
.is-ctl-wishlist .wishlist-detail-btns.btn-group .hbspt-form input.address-editor-select.hs-button:not(.collapsed) img,
.hbspt-form .is-ctl-wishlist .wishlist-detail-btns.btn-group input.address-editor-select.hs-button:not(.collapsed) img,
.is-ctl-wishlist .wishlist-detail-btns.btn-group .btn.address-editor-edit:not(.collapsed) img,
.is-ctl-wishlist .wishlist-detail-btns.btn-group .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .address-editor-edit.watchlist-listing-link:not(.collapsed) img,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .is-ctl-wishlist .wishlist-detail-btns.btn-group .address-editor-edit.watchlist-listing-link:not(.collapsed) img,
.is-ctl-wishlist .wishlist-detail-btns.btn-group .hbspt-form input.address-editor-edit.hs-button:not(.collapsed) img,
.hbspt-form .is-ctl-wishlist .wishlist-detail-btns.btn-group input.address-editor-edit.hs-button:not(.collapsed) img,
.is-ctl-wishlist .wishlist-detail-btns.btn-group .btn.address-editor-create:not(.collapsed) img,
.is-ctl-wishlist .wishlist-detail-btns.btn-group .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .address-editor-create.watchlist-listing-link:not(.collapsed) img,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .is-ctl-wishlist .wishlist-detail-btns.btn-group .address-editor-create.watchlist-listing-link:not(.collapsed) img,
.is-ctl-wishlist .wishlist-detail-btns.btn-group .hbspt-form input.address-editor-create.hs-button:not(.collapsed) img,
.hbspt-form .is-ctl-wishlist .wishlist-detail-btns.btn-group input.address-editor-create.hs-button:not(.collapsed) img,
.is-ctl-wishlist .wishlist-detail-btns.btn-group .is-act-search .card-tabs .btn.btn-success img,
.is-ctl-wishlist .wishlist-detail-btns.btn-group .is-act-search .card-tabs .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .btn-success.watchlist-listing-link img,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .is-ctl-wishlist .wishlist-detail-btns.btn-group .is-act-search .card-tabs .btn-success.watchlist-listing-link img,
.is-ctl-wishlist .wishlist-detail-btns.btn-group .is-act-search .card-tabs .hbspt-form input.btn-success.hs-button img,
.hbspt-form .is-ctl-wishlist .wishlist-detail-btns.btn-group .is-act-search .card-tabs input.btn-success.hs-button img,
.is-act-search .card-tabs .is-ctl-wishlist .wishlist-detail-btns.btn-group .btn.btn-success img,
.is-ctl-wishlist .wishlist-detail-btns.btn-group .hbspt-form input.btn.hs-button img,
.is-ctl-wishlist .wishlist-detail-btns.btn-group .hbspt-form .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child input.hs-button.watchlist-listing-link img,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .is-ctl-wishlist .wishlist-detail-btns.btn-group .hbspt-form input.hs-button.watchlist-listing-link img,
.hbspt-form .is-ctl-wishlist .wishlist-detail-btns.btn-group input.btn.hs-button img {
  -webkit-filter: invert(100%) sepia(0%) saturate(14%) hue-rotate(267deg) brightness(106%) contrast(103%);
  filter: invert(100%) sepia(0%) saturate(14%) hue-rotate(267deg) brightness(106%) contrast(103%);
}

.is-ctl-wishlist button.white-space {
  white-space: normal;
}

.is-ctl-wishlist .cart-add-product-container .wishlist-product-add-by-number input {
  border-radius: 0;
}

.is-ctl-wishlist .wl-item-label {
  color: #e30613;
}

.is-ctl-wishlist .wl_item_details_title,
.is-ctl-wishlist .wl_item_details,
.is-ctl-wishlist .wl-item-quantity-title,
.is-ctl-wishlist .wl_item_details .cart-item-ordernumber {
  overflow: hidden;
  text-overflow: ellipsis;
}

.is-ctl-wishlist .wl_item_detail_null {
  margin-bottom: 1rem;
}

.is-ctl-wishlist .wl_item.row .wl-item-price p,
.is-ctl-wishlist .wl_item.account-content .wl-item-price p,
.is-ctl-wishlist .is-act-cartpage .checkout .wl_item.checkout-container .wl-item-price p,
.is-act-cartpage .checkout .is-ctl-wishlist .wl_item.checkout-container .wl-item-price p,
.is-ctl-wishlist .is-act-checkoutregisterpage .checkout .wl_item.checkout-container .wl-item-price p,
.is-act-checkoutregisterpage .checkout .is-ctl-wishlist .wl_item.checkout-container .wl-item-price p,
.is-ctl-wishlist .is-act-confirmpage .checkout .wl_item.checkout-container .wl-item-price p,
.is-act-confirmpage .checkout .is-ctl-wishlist .wl_item.checkout-container .wl-item-price p,
.is-ctl-wishlist .is-ctl-accountorder .checkout .wl_item.checkout-container .wl-item-price p,
.is-ctl-accountorder .checkout .is-ctl-wishlist .wl_item.checkout-container .wl-item-price p,
.is-ctl-wishlist .is-act-finishpage .checkout .wl_item.checkout-container .wl-item-price p,
.is-act-finishpage .checkout .is-ctl-wishlist .wl_item.checkout-container .wl-item-price p,
.is-ctl-wishlist .wl_item.row .wl_item_wrapper p,
.is-ctl-wishlist .wl_item.account-content .wl_item_wrapper p,
.is-ctl-wishlist .is-act-cartpage .checkout .wl_item.checkout-container .wl_item_wrapper p,
.is-act-cartpage .checkout .is-ctl-wishlist .wl_item.checkout-container .wl_item_wrapper p,
.is-ctl-wishlist .is-act-checkoutregisterpage .checkout .wl_item.checkout-container .wl_item_wrapper p,
.is-act-checkoutregisterpage .checkout .is-ctl-wishlist .wl_item.checkout-container .wl_item_wrapper p,
.is-ctl-wishlist .is-act-confirmpage .checkout .wl_item.checkout-container .wl_item_wrapper p,
.is-act-confirmpage .checkout .is-ctl-wishlist .wl_item.checkout-container .wl_item_wrapper p,
.is-ctl-wishlist .is-ctl-accountorder .checkout .wl_item.checkout-container .wl_item_wrapper p,
.is-ctl-accountorder .checkout .is-ctl-wishlist .wl_item.checkout-container .wl_item_wrapper p,
.is-ctl-wishlist .is-act-finishpage .checkout .wl_item.checkout-container .wl_item_wrapper p,
.is-act-finishpage .checkout .is-ctl-wishlist .wl_item.checkout-container .wl_item_wrapper p {
  margin-top: 0px;
}

.wishlist-listing-modal-link.checked-icon {
  width: 15px;
  -webkit-filter: invert(100%) sepia(0%) saturate(14%) hue-rotate(267deg) brightness(106%) contrast(103%);
  filter: invert(100%) sepia(0%) saturate(14%) hue-rotate(267deg) brightness(106%) contrast(103%);
}

.is-ctl-wishlistrequest .account-content-aside:empty ~ .account-content-main,
.is-ctl-wishlist .account-content-aside:empty ~ .account-content-main {
  margin-left: 0px;
}

.wishlist-detail-btns .btn,
.wishlist-detail-btns .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .watchlist-listing-link,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .wishlist-detail-btns .watchlist-listing-link,
.wishlist-detail-btns .hbspt-form input.hs-button,
.hbspt-form .wishlist-detail-btns input.hs-button {
  margin-right: 15px;
  margin-bottom: 15px;
}

.modal-request-offer .close {
  z-index: 9999;
}

.modal-request-offer .custom-select,
.modal-request-offer .hbspt-form select.hs-input,
.hbspt-form .modal-request-offer select.hs-input,
.modal-request-offer .form-control,
.modal-request-offer .hbspt-form input.hs-input[type="text"],
.hbspt-form .modal-request-offer input.hs-input[type="text"],
.modal-request-offer .hbspt-form input.hs-input[type="tel"],
.hbspt-form .modal-request-offer input.hs-input[type="tel"],
.modal-request-offer .hbspt-form input.hs-input[type="email"],
.hbspt-form .modal-request-offer input.hs-input[type="email"],
.modal-request-offer modal-content {
  border-radius: 0;
}

@media only screen and (max-width:641px) {

  .wishlist-detail-btns .btn,
  .wishlist-detail-btns .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .watchlist-listing-link,
  .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .wishlist-detail-btns .watchlist-listing-link,
  .wishlist-detail-btns .hbspt-form input.hs-button,
  .hbspt-form .wishlist-detail-btns input.hs-button {
    margin-bottom: 15px;
  }
}

.container-main {
  padding: 0px;
  min-height: 0px;
}

@media (min-width:1200px) {
  .container-main {
    min-height: 0px;
  }
}

.nextbtn {
  position: absolute;
  bottom: -45px;
}

.expand-js {
  background: #f6f6f6;
}

.expand-js--prev,
.expand-js--next {
  position: absolute;
  top: 49%;
  width: 2.5rem;
  height: 3rem;
  line-height: 1;
  padding-bottom: .33rem;
  background: none;
  text-align: center;
  color: #e30613;
  font-size: 4rem;
  cursor: pointer;
  box-shadow: none;
  -webkit-transition: 275ms background ease-in-out;
  transition: 275ms background ease-in-out;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.expand-js--prev:hover,
.expand-js--next:hover {
  background: none;
}

.expand-pagination .expand-pagination--item {
  padding: 0;
}

.expand-pagination .expand-pagination--item.expand-pagination--item--dots {
  border-radius: 0;
  width: 40px;
  height: 3px;
  margin: 0 .25rem;
  background: #9d9d9d;
}

.expand-pagination .expand-pagination--item.expand-pagination--item--dots.active {
  background: #e30613;
}

@media (min-width:768px) {
  .faesslich-slider-wrapper-outer {
    max-height: 400px;
  }
}

@media (min-width:1025px) {
  .faesslich-slider-wrapper-outer {
    max-height: 450px;
  }
}

.faesslich-slider-wrapper-outer .expand-js--prev {
  left: 3rem;
}

.faesslich-slider-wrapper-outer .expand-js--next {
  right: 3rem;
}

.faesslich-slider-wrapper-outer.-dots-inside .expand-pagination {
  position: absolute;
  right: 3rem;
  z-index: 100;
  margin-top: -3rem;
}

.faesslich-slider-wrapper-outer .faesslich-slider-slide-item {
  margin-bottom: 5rem;
}

.faesslich-slider-wrapper-outer .faesslich-slider-slide-item--overlay {
  background: none;
}

.faesslich-slider-wrapper-outer .faesslich-slider-slide-item--picture {
  bottom: unset;
  right: unset;
  width: 100%;
  position: relative;
  z-index: 0;
  text-align: center;
  margin-left: 20px;
}

.faesslich-slider-wrapper-outer .faesslich-slider-slide-item--picture img {
  object-fit: cover;
  object-position: left;
}

@media (min-width:768px) {
  .faesslich-slider-wrapper-outer .faesslich-slider-slide-item--picture {
    width: 50%;
    position: absolute;
    bottom: 0;
    height: unset;
    max-width: 630px;
  }
}

.faesslich-slider-wrapper-outer .faesslich-slider-slide-item--content {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  -ms-transform: unset;
  -webkit-transform: unset;
  transform: unset;
  margin-bottom: unset;
  padding: 0px 20px 0px 20px;
}

.faesslich-slider-wrapper-outer .faesslich-slider-slide-item--content-inner {
  border-bottom: none;
  background: none;
  margin: 0;
}

@media (min-width:1025px) {
  .faesslich-slider-wrapper-outer .faesslich-slider-slide-item--content-inner {
    padding: 0rem 5rem 0rem 3rem;
  }
}

.faesslich-slider-wrapper-outer .faesslich-slider-slide-item--content-inner .slide-item--upper-headline,
.faesslich-slider-wrapper-outer .faesslich-slider-slide-item--content-inner .slide-item--headline,
.faesslich-slider-wrapper-outer .faesslich-slider-slide-item--content-inner .slide-item--paragraph {
  color: #111;
}

@media (min-width:768px) {
  .faesslich-slider-wrapper-outer .faesslich-slider-slide-item--content {
    -ms-transform: unset;
    -webkit-transform: unset;
    transform: unset;
    padding: 0rem 2rem;
    height: 100%;
    left: 50%;
    max-width: 50%;
    background: #f6f6f6;
  }
}

@media (min-width:1025px) {
  .faesslich-slider-wrapper-outer .faesslich-slider-slide-item--content {
    padding: 4rem 2rem;
  }
}

@media (min-width:768px) {
  .faesslich-slider-wrapper-outer .faesslich-slider-slide-item {
    height: 450px;
    margin-bottom: 0px;
  }
}

@media (min-width:1200px) {
  .cms-section-default .faesslich-slider-wrapper-outer:not(.-is-carousel) .faesslich-slider-slide-item--content {
    min-height: 24rem;
  }
}

.is-act-search .card-tabs .nav-tabs {
  margin-bottom: 20px;
}

.label-search-suggest h1,
.label-search-suggest h2,
.label-search-suggest h3 {
  color: #e30613;
}

.search-breadcrump {
  font-size: .75rem;
}

.search-breadcrump .search-suggest-icon::after {
  content: "";
  background: url("/bundles/storefront/assets/icon/solid/arrow-medium-right.svg");
  margin-left: 5px;
  margin-right: 5px;
  margin-top: -2px;
  display: inline-block;
  width: 15px;
  height: 15px;
  -webkit-filter: invert(20%) sepia(100%) saturate(5861%) hue-rotate(350deg) brightness(86%) contrast(109%);
  filter: invert(20%) sepia(100%) saturate(5861%) hue-rotate(350deg) brightness(86%) contrast(109%);
  vertical-align: middle;
}

.e-search-page .tab-content .elio-content-listing-entry {
  margin-bottom: 15px;
}

.e-search-page .tab-content .elio-content-listing-content .product-name {
  margin-bottom: 0px;
}

.e-search-page .tab-content .elio-content-listing-content .elio-content-listing-teaser-text {
  margin-bottom: 5px;
}

.e-search-page .filter-panel .category-navigation {
  padding-left: 0px;
}

.e-search-page .filter-panel .category-navigation .filter-multi-select-item-label br {
  display: none;
}

@media (min-width:576px) {
  .is-act-search .e-search-page .card-tabs {
    border-bottom: 0px;
  }
}

@media (min-width:768px) {
  .elio-content-listing-content {
    padding-top: 0px;
    padding-bottom: 15px;
  }
}

.cms-element-blog-slider .product-slider-container {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.cms-element-blog-slider .product-slider-container .product-box .card-body .product-image-wrapper {
  padding: 0px;
}

.cms-element-blog-slider .product-slider-container .product-box .card-body .product-info {
  height: 50px;
  color: #111;
}

.cms-element-blog-slider .product-slider-container .product-box .card-body .product-info .blog-date {
  color: grey;
  font-size: .8em;
}

.cms-element-blog-slider .product-slider-container .product-box .card-body .product-info .blog-title {
  height: 40px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  color: #e30613;
  line-height: 1.2;
}

.cms-element-blog-slider .product-slider-container .product-box .card-body .product-info .product-description {
  height: 54px;
  margin-bottom: 50px;
}

.cms-element-blog-slider .product-slider-container .product-box .card-body .product-info .product-description:before {
  content: "";
}

.cms-element-blog-slider a,
.cms-element-blog-slider .card-body {
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}

@media (min-width:768px) {
  .cms-element-blog-slider .product-slider-container {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }

  .cms-element-blog-slider .card-body {
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .cms-element-blog-slider .card-body .product-info .product-description {
    height: 54px;
    margin-bottom: 35px;
  }
}

.is-act-cartpage .checkout {
  margin-top: 70px;
}

.is-ctl-checkout .wishlist-hide-text {
  display: none;
}

.wishlist-hide-text {
  pointer-events: none;
}

.is-act-confirmpage .cart-item-details-container .cart-item-label {
  pointer-events: none;
}

.is-act-confirmpage .checkout-additional .checkout-customer-comment-control textarea.form-control {
  height: 100px;
}

.is-act-confirmpage .checkout-additional .checkout-card {
  margin-bottom: 25px;
}

.confirm-tos {
  margin: 50px 0;
}

.checkout-customer-order-number {
  margin-top: 5px;
  margin-bottom: 50px;
}

.checkout .alert,
.checkout .hbspt-form div.submitted-message,
.hbspt-form .checkout div.submitted-message {
  height: auto;
}

.cart-item-row .cart-item-img-container .cart-item-img {
  border-radius: 0;
  border-color: #f6f6f6;
  min-width: 100%;
  max-height: 120px;
}

.cart-item-quantity-row select.quantity-select {
  border-radius: 0;
}

.cart-item-details-container .cart-item-label {
  color: #e30613;
}

.cart-item-ordernumber,
.cart-item-description {
  font-weight: 700;
}

@media screen and (max-width:600px) {
  .cart-item {
    border-bottom: none;
  }
}

.cart-item-row .cart-item-remove .cart-item-wishlist-heart {
  padding: 2px 0px;
}

.cart-item-row .cart-item-remove .cart-item-wishlist-heart .watchlist-listing-link {
  padding-right: 0px;
}

.cart-item-promotion .cart-item-wishlist-heart {
  display: none;
}

.cart-item-promotion .cart-item-label {
  color: #3cc261;
}

.cart-add-product {
  max-width: 100%;
}

.cart-add-product .input-group label {
  margin-bottom: 0;
  font-weight: 700;
  margin-right: 20px;
}

.cart-add-product .input-group {
  -ms-flex-align: center;
  align-items: center;
}

.cart-add-product #addProductInput {
  max-width: 300px;
  border-radius: 0;
}

.wishlist-select-container,
.cart-add-wishlist-container {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.cart-add-wishlist-container {
  -ms-flex-align: end;
  align-items: flex-end;
}

.cart-add-wishlist-container .wishlist-select {
  border: 0;
  background: none;
}

.cart-add-wishlist-container .wishlist-select-icon,
.cart-add-wishlist-container .watchlist-add-all-icon {
  margin-right: 10px;
}

.cart-add-wishlist-container .wishlist-select,
.cart-add-wishlist-container .watchlist-add-all-cart {
  color: #e30613;
  padding: 0;
  font-weight: 700;
}

.cart-add-wishlist-container .wishlist-select:focus,
.cart-add-wishlist-container .watchlist-add-all-cart:focus {
  box-shadow: none;
}

.cart-item-row .asset-icon {
  width: 20px;
  -webkit-filter: invert(20%) sepia(100%) saturate(5861%) hue-rotate(350deg) brightness(86%) contrast(109%);
  filter: invert(20%) sepia(100%) saturate(5861%) hue-rotate(350deg) brightness(86%) contrast(109%);
}

.is-act-cartpage .checkout .checkout-aside-container {
  position: -webkit-sticky;
  position: sticky;
  top: 60px;
  z-index: 1;
}

.register-login-collapse-toogle img {
  width: 22px;
  height: 22px;
}

.is-act-loginpage .account-register,
.is-act-loginpage .account-recover-password,
.is-act-recoveraccountform .account-register,
.is-act-recoveraccountform .account-recover-password {
  padding-top: 70px;
}

@media (min-width:992px) {

  .is-act-loginpage .login-advantages,
  .is-act-recoveraccountform .login-advantages {
    display: none;
  }
}

.product-detail-tab-navigation,
.is-act-search .card-tabs {
  border-bottom-width: 1px;
}

.product-detail-tab-navigation .nav-tabs .nav-item,
.is-act-search .card-tabs .nav-tabs .nav-item {
  margin-bottom: 0px;
}

.product-detail-tab-navigation.product-cross-selling-tab-navigation,
.is-act-search .product-cross-selling-tab-navigation.card-tabs,
.product-detail-tab-navigation .nav-link,
.is-act-search .card-tabs .nav-link {
  border-bottom: 0px;
}

.product-detail-tab-navigation .nav-link,
.is-act-search .card-tabs .nav-link {
  padding: 6px 10px;
}

.product-detail-tab-navigation .nav-link:hover .icon,
.is-act-search .card-tabs .nav-link:hover .icon {
  color: #e30613;
}

.product-detail-tab-navigation .nav-link.active,
.is-act-search .card-tabs .nav-link.active {
  background: transparent;
  color: #111;
}

@media (min-width:576px) {

  .product-detail-tab-navigation .nav-link.active:hover,
  .is-act-search .card-tabs .nav-link.active:hover {
    background: #ca0511;
  }
}

@media (min-width:576px) {

  .product-detail-tab-navigation,
  .is-act-search .card-tabs {
    border-bottom: 2px solid #c6c6c6;
  }

  .product-detail-tab-navigation .nav-link,
  .is-act-search .card-tabs .nav-link {
    padding: 6px 10px;
  }

  .product-detail-tab-navigation .nav-link:hover,
  .is-act-search .card-tabs .nav-link:hover {
    background: transparent;
    color: #111;
  }

  .product-detail-tab-navigation .nav-link.active,
  .is-act-search .card-tabs .nav-link.active {
    background: #e30613;
    color: white;
  }

  .product-detail-tabs-content .classing-reference-sidebar.row,
  .product-detail-tabs-content .classing-reference-sidebar.account-content,
  .product-detail-tabs-content .is-act-cartpage .checkout .classing-reference-sidebar.checkout-container,
  .is-act-cartpage .checkout .product-detail-tabs-content .classing-reference-sidebar.checkout-container,
  .product-detail-tabs-content .is-act-checkoutregisterpage .checkout .classing-reference-sidebar.checkout-container,
  .is-act-checkoutregisterpage .checkout .product-detail-tabs-content .classing-reference-sidebar.checkout-container,
  .product-detail-tabs-content .is-act-confirmpage .checkout .classing-reference-sidebar.checkout-container,
  .is-act-confirmpage .checkout .product-detail-tabs-content .classing-reference-sidebar.checkout-container,
  .product-detail-tabs-content .is-ctl-accountorder .checkout .classing-reference-sidebar.checkout-container,
  .is-ctl-accountorder .checkout .product-detail-tabs-content .classing-reference-sidebar.checkout-container,
  .product-detail-tabs-content .is-act-finishpage .checkout .classing-reference-sidebar.checkout-container,
  .is-act-finishpage .checkout .product-detail-tabs-content .classing-reference-sidebar.checkout-container {
    padding-top: 40px;
  }
}

.product-detail-name {
  color: #111;
}

.product-detail-ordernumber {
  font-weight: bold;
}

.product-detail-price {
  font-weight: 600;
}

.product-delivery-information {
  font-size: .75rem;
}

.product-detail-quantity-select {
  border-radius: 0;
}

@media (min-width:1025px) {
  .product-detail-form-container .buy-widget-container {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

.product-detail-delivery-information,
.delivery-information,
.product-detail-headline:first-of-type,
.delivery-information p,
.product-detail-form-container,
.accordion .card-header {
  margin-bottom: 0px;
}

.margin-bottom-spacer {
  margin-bottom: 25px;
}

.wishlist-col:not(.prevent-purchase) .btn,
.wishlist-col:not(.prevent-purchase) .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .watchlist-listing-link,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .wishlist-col:not(.prevent-purchase) .watchlist-listing-link,
.wishlist-col:not(.prevent-purchase) .hbspt-form input.hs-button,
.hbspt-form .wishlist-col:not(.prevent-purchase) input.hs-button {
  border: 0;
  background: white;
  color: #e30613;
  font-size: 12px;
  font-weight: 600;
  padding-left: 0;
  padding-right: 0;
  text-align: left;
}

.wishlist-col:not(.prevent-purchase) .btn-marked:not(:disabled):not(.disabled):active,
.wishlist-col:not(.prevent-purchase) .btn-marked:not(:disabled):not(.disabled).active,
.wishlist-col:not(.prevent-purchase) .show > .btn-marked.dropdown-toggle,
.wishlist-col:not(.prevent-purchase) .btn-mark:not(:disabled):not(.disabled):active,
.wishlist-col:not(.prevent-purchase) .btn-mark:not(:disabled):not(.disabled).active,
.wishlist-col:not(.prevent-purchase) .show > .btn-mark.dropdown-toggle {
  background-color: unset;
  border-color: unset;
  color: #e30613;
}

.wishlist-col:not(.prevent-purchase) .btn-marked:not(:disabled):not(.disabled):active:focus,
.wishlist-col:not(.prevent-purchase) .btn-marked:not(:disabled):not(.disabled).active:focus,
.wishlist-col:not(.prevent-purchase) .btn-marked:focus,
.wishlist-col:not(.prevent-purchase) .btn-marked.focus,
.wishlist-col:not(.prevent-purchase) .btn-mark:focus,
.wishlist-col:not(.prevent-purchase) .btn-mark.focus,
.wishlist-col:not(.prevent-purchase) .btn-mark:not(:disabled):not(.disabled):active:focus,
.wishlist-col:not(.prevent-purchase) .btn-mark:not(:disabled):not(.disabled).active:focus,
.wishlist-col:not(.prevent-purchase) .show > .btn-mark.dropdown-toggle:focus {
  box-shadow: none;
}

.wishlist-col .watchlist-listing-link.marked:not(.btn) .asset-icon,
.wishlist-col .wishlist-listing-modal-link.marked:not(.btn) .asset-icon {
  width: 15px;
  -webkit-filter: invert(20%) sepia(100%) saturate(5861%) hue-rotate(350deg) brightness(86%) contrast(109%);
  filter: invert(20%) sepia(100%) saturate(5861%) hue-rotate(350deg) brightness(86%) contrast(109%);
}

.wishlist-col.prevent-purchase .btn,
.wishlist-col.prevent-purchase .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .watchlist-listing-link,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .wishlist-col.prevent-purchase .watchlist-listing-link,
.wishlist-col.prevent-purchase .hbspt-form input.hs-button,
.hbspt-form .wishlist-col.prevent-purchase input.hs-button {
  background-color: #e30613;
  color: white;
  font-size: 12px;
}

.wishlist-col.prevent-purchase .btn:hover,
.wishlist-col.prevent-purchase .product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .watchlist-listing-link:hover,
.product-box .card-body .product-info .product-wishlist.prevent-purchase .col-6:first-child .wishlist-col.prevent-purchase .watchlist-listing-link:hover,
.wishlist-col.prevent-purchase .hbspt-form input.hs-button:hover,
.hbspt-form .wishlist-col.prevent-purchase input.hs-button:hover {
  background-color: #be0510;
}

.asset-icon {
  margin-right: 10px;
}

.gallery-slider-thumbnails-item-inner {
  border-radius: 0px;
}

.selector-icons img {
  margin-bottom: 5px;margin-right: 5px;
}

.accordion .btn-link {
  width: 100%;
  text-align: left;
  font-size: 1.125rem;
}

.accordion .btn-link .icon-color-primary {
  margin-right: 5px;
  color: #e30613;
}

.accordion .btn-link svg {
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  top: 3px;
}

.accordion .btn-link[aria-expanded="true"] svg {
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  top: 0px;
}

.accordion .card .w-25.is-level-0 {
  padding-left: 5px;
}

.accordion .card .is-level-0 {
  padding-left: 0px;
}

.accordion .card .w-25.is-level-1 {
  padding-left: 10px;
}

.accordion .card .is-level-1 {
  padding-left: 5px;
}

.accordion .card .w-25.is-level-2 {
  padding-left: 15px;
}

.accordion .card .is-level-2 {
  padding-left: 10px;
}

.accordion .card .w-25.is-level-3 {
  padding-left: 20px;
}

.accordion .card .is-level-3 {
  padding-left: 15px;
}

.accordion .card .w-25.is-level-4 {
  padding-left: 25px;
}

.accordion .card .is-level-4 {
  padding-left: 20px;
}

.accordion .card .card-header {
  border-bottom: 2px solid #111;
  padding: 0px;
  margin-bottom: 0px;
}

.accordion .card .card-header .btn-link {
  color: #111;
}

.accordion .card .card-body {
  padding-top: 0px;
}

.accordion .card .card-body .table-bordered,
.accordion .card .card-body .table-bordered th,
.accordion .card .card-body .table-bordered td {
  border: none;
}

.accordion .card .card-body .table-bordered .text-bold,
.accordion .card .card-body .table-bordered th .text-bold,
.accordion .card .card-body .table-bordered td .text-bold {
  font-weight: bold;
}

.accordion .card .card-body .table-bordered tr {
  border-bottom: 2px solid #c6c6c6;
}

.gallery-slider-item-container figcaption {
  position: absolute;
  width: 100%;
}

@media (max-width:767.98px) {
  .base-slider .base-slider-dots {
    position: relative;
  }

  .gallery-slider-container {
    padding-bottom: 45px;
  }
}

@media (min-width:768px) {
  .accordion .w-fix-50 {
    width: 50%;
    max-width: 50%;
  }

  .accordion .card .card-header {
    padding: .75rem 1.25rem;
  }

  .accordion .card .w-fix-50.is-level-0 {
    padding-left: 40px;
  }

  .accordion .card .is-level-0 {
    padding-left: 0px;
  }

  .accordion .card .w-fix-50.is-level-1 {
    padding-left: 70px;
  }

  .accordion .card .is-level-1 {
    padding-left: 30px;
  }

  .accordion .card .w-fix-50.is-level-2 {
    padding-left: 100px;
  }

  .accordion .card .is-level-2 {
    padding-left: 60px;
  }

  .accordion .card .w-fix-50.is-level-3 {
    padding-left: 130px;
  }

  .accordion .card .is-level-3 {
    padding-left: 90px;
  }

  .accordion .card .w-fix-50.is-level-4 {
    padding-left: 160px;
  }

  .accordion .card .is-level-4 {
    padding-left: 120px;
  }
}

.is-ctl-product .product-detail {
  margin-top: 1.75rem;
}

.is-ctl-product .product-detail-comparison .comparison-active {
  display: none;
}

.is-ctl-product .product-detail-comparison .product-compare-btn.product-in-comparison .product-detail-compare-title {
  font-weight: normal;
}

.is-ctl-product .product-detail-comparison .product-compare-btn.product-in-comparison .comparison-icon {
  display: none;
}

.is-ctl-product .product-detail-comparison .product-compare-btn.product-in-comparison .comparison-active {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: 16px;
}

.cart-item-img {
  border: none;
  object-fit: contain;
}

.checkout-aside-summary-list .checkout-aside-summary-total,
.checkout-aside-summary-list .summary-net {
  border-top: 2px solid white;
}

.checkout-aside-summary-list .summary-net {
  padding-top: 10px;
  font-weight: bold;
}

.checkout-aside-summary-list .checkout-aside-summary-total {
  font-weight: normal;
}

.cart-table-header {
  display: block;
}

@media (max-width:767.98px) {
  .cart-table-header .cart-header-row div {
    display: none;
  }

  .cart-table-header .cart-header-row div:first-of-type {
    display: block;
  }
}

.order-detail-content .order-item-product-image img {
  min-height: 65px;
}

.order-detail-content .order-item-name .order-item-product-name {
  color: #e30613;
}

.order-detail-content .order-item-price-value,
.order-detail-content .order-item-total-value {
  white-space: nowrap;
}

.netzp-powerpack6-collapse-element .btn-link {
  display: inline-block;
  width: 100%;
  text-align: left;
  font-size: 1.125rem;
  color: #111;
}

.netzp-powerpack6-collapse-element .btn-link .icon-color-primary {
  margin-right: 5px;
  color: #e30613;
}

.netzp-powerpack6-collapse-element .btn-link[aria-expanded="true"] svg {
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  top: 0px;
}

.netzp-powerpack6-collapse-element .btn-link[aria-expanded="false"] svg {
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  top: 3px;
}

.netzp-powerpack6-collapse-element .card .card-header {
  border-bottom: 2px solid #111;
  padding: .75rem 1.25rem;
  background: transparent;
}

.netzp-powerpack6-collapse-element .card .card-header .btn-link {
  color: #111;
}

.netzp-powerpack6-collapse-element .card .card-header .btn-link .netzp-powerpack6-collapse-header {
  font-weight: 600;
}

.netzp-powerpack6-collapse-element .card .card-body {
  padding-top: 0px;
}

.netzp-powerpack6-collapse-element .card .card-body .table-bordered,
.netzp-powerpack6-collapse-element .card .card-body .table-bordered th,
.netzp-powerpack6-collapse-element .card .card-body .table-bordered td {
  border: none;
}

.netzp-powerpack6-collapse-element .card .card-body .table-bordered .text-bold,
.netzp-powerpack6-collapse-element .card .card-body .table-bordered th .text-bold,
.netzp-powerpack6-collapse-element .card .card-body .table-bordered td .text-bold {
  font-weight: bold;
}

.netzp-powerpack6-collapse-element .card .card-body .table-bordered tr {
  border-bottom: 2px solid #c6c6c6;
}

.netzp-powerpack6-tabs-element .nav-tabs {
  border: 0 !important;
  border-bottom: 1px solid #bcc1c7 !important;
}

@media (min-width:576px) {
  .netzp-powerpack6-tabs-element .nav-tabs {
    border-bottom: 0 !important;
  }
}

.netzp-powerpack6-tabs-element .nav-tabs .nav-link.active {
  border-bottom: 0 !important;
}

.netzp-powerpack6-tabs-element .nav-tabs .nav-item {
  width: auto;
}

.netzp-powerpack6-tabs-element .tab-content .container.netzp-powerpack6-tabs-body,
.netzp-powerpack6-tabs-element .tab-content .cms-section .netzp-powerpack6-tabs-body.boxed,
.cms-section .netzp-powerpack6-tabs-element .tab-content .netzp-powerpack6-tabs-body.boxed {
  padding-left: 0;
  padding-right: 0;
}

.cms-block-container {
  padding-left: 0px !important;
  padding-right: 0px !important;
  padding: 3em 0em 3em 0em;
}

.cms-block-container:first-of-type {
  /*padding: 0em 0em 3em 0em;*/
}

.cms-block-container h1,
.cms-block-container h2,
.cms-block-container h3,
.cms-block-container h4,
.cms-block-container h5 {
  margin-bottom: 20px;
}

.cms-block-image-text-gallery .image-text-gallery-card {
  height: 100%;
}

.cms-section.category-info .product-name {
  pointer-events: none;
}

.cms-page .netzp-powerpack6-collapse-body ul,
.cms-page .netzp-powerpack6-tabs-body ul,
.cms-page .cms-element-text ul,
.cms-page .image-text-element ul,
.cms-page .teaser-body ul {
  padding-inline-start: 1em;
  list-style-type: none;
}

.cms-page .netzp-powerpack6-collapse-body ul li,
.cms-page .netzp-powerpack6-tabs-body ul li,
.cms-page .cms-element-text ul li,
.cms-page .image-text-element ul li,
.cms-page .teaser-body ul li {
  color: #111;
}

.cms-page .netzp-powerpack6-collapse-body ul li:before,
.cms-page .netzp-powerpack6-tabs-body ul li:before,
.cms-page .cms-element-text ul li:before,
.cms-page .image-text-element ul li:before,
.cms-page .teaser-body ul li:before {
  content: "■";
  color: #e30613;
  display: inline-block;
  width: 1.2em;
  margin-left: -1.2em;
  font-size: 12px;
  vertical-align: middle;
  margin-top: -4px;
}

.flag-link {
  width: unset;
}

.cms-element-youtube-video::before {
  width: unset;
}

.hbspt-form .inputs-list {
  list-style: none;
  padding: 0;
}

.hbspt-form .inputs-list input[type="radio"],
.hbspt-form .inputs-list input[type="checkbox"] {
  accent-color: #e30613;
  border-width: .25px !important;
  border-color: #3b4151;
  margin-right: 10px;
  margin-left: 10px;
  -ms-transform: scale(1.4);
  -webkit-transform: scale(1.4);
  transform: scale(1.4);
}

.hbspt-form .inputs-list input[type="radio"]:focus,
.hbspt-form .inputs-list input[type="checkbox"]:focus {
  outline: #e30613;
  box-shadow: 0 0 0 .1rem rgba(227, 6, 19, .25);
  border-color: rgba(227, 6, 19, .25) !important;
}

.hbspt-form .hs-dependent-field {
  margin-top: 10px;
}

.hbspt-form .hs-dependent-field input[type="checkbox"] {
  margin-top: 6px;
  margin-left: 2px;
}

.hbspt-form .hs-error-msgs li label a:hover {
  color: red;
  cursor: pointer;
}

.hbspt-form input.hs-input[type="file"]::file-selector-button {
  background-color: #e30613;
  color: #fff;
  border: 1px #b1050f;
  font-family: "HelveticaNeueLTW04-55Roman", sans-serif;
  font-weight: bolder;
  -moz-font-feature-settings: "cv02", "cv03", "cv04";
  -webkit-font-feature-settings: "cv02", "cv03", "cv04";
  font-feature-settings: "cv02", "cv03", "cv04";
  text-rendering: optimizelegibility;
  padding: 15px 40px;
  margin-right: 20px;
  -webkit-transition: .5s;
  transition: .5s;
}

.hbspt-form input.hs-input[type="file"]::file-selector-button:hover {
  background-color: #b1050f;
  border: 1px;
  text-decoration: none;
}

body {
  font-variant-ligatures: no-common-ligatures;
  font-kerning: none;
}

body,
span,
div {
  font-family: "HelveticaNeueLTW04-55Roman", sans-serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "HelveticaNeueLTW04-75Bold", sans-serif !important;
}

html {
  scroll-behavior: smooth;
}