@charset "UTF-8";
.row {
  box-sizing: border-box;
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  flex-wrap: wrap;
}

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

.row.natural-height {
  align-items: flex-start;
}

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

.col {
  box-sizing: border-box;
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%;
  padding: 1rem;
}

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

.first {
  order: -1;
}

.last {
  order: 1;
}

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

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

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

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

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

.col-xs {
  box-sizing: border-box;
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%;
  padding: 1rem;
}

.col-xs-1 {
  box-sizing: border-box;
  flex-basis: 8.3333333333%;
  max-width: 8.3333333333%;
  padding: 1rem;
}

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

.col-xs-2 {
  box-sizing: border-box;
  flex-basis: 16.6666666667%;
  max-width: 16.6666666667%;
  padding: 1rem;
}

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

.col-xs-3 {
  box-sizing: border-box;
  flex-basis: 25%;
  max-width: 25%;
  padding: 1rem;
}

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

.col-xs-4 {
  box-sizing: border-box;
  flex-basis: 33.3333333333%;
  max-width: 33.3333333333%;
  padding: 1rem;
}

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

.col-xs-5 {
  box-sizing: border-box;
  flex-basis: 41.6666666667%;
  max-width: 41.6666666667%;
  padding: 1rem;
}

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

.col-xs-6 {
  box-sizing: border-box;
  flex-basis: 50%;
  max-width: 50%;
  padding: 1rem;
}

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

.col-xs-7 {
  box-sizing: border-box;
  flex-basis: 58.3333333333%;
  max-width: 58.3333333333%;
  padding: 1rem;
}

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

.col-xs-8 {
  box-sizing: border-box;
  flex-basis: 66.6666666667%;
  max-width: 66.6666666667%;
  padding: 1rem;
}

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

.col-xs-9 {
  box-sizing: border-box;
  flex-basis: 75%;
  max-width: 75%;
  padding: 1rem;
}

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

.col-xs-10 {
  box-sizing: border-box;
  flex-basis: 83.3333333333%;
  max-width: 83.3333333333%;
  padding: 1rem;
}

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

.col-xs-11 {
  box-sizing: border-box;
  flex-basis: 91.6666666667%;
  max-width: 91.6666666667%;
  padding: 1rem;
}

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

.col-xs-12 {
  box-sizing: border-box;
  flex-basis: 100%;
  max-width: 100%;
  padding: 1rem;
}

.col-xs-offset-12 {
  margin-left: 100%;
}

.row.start-xs {
  justify-content: flex-start;
}

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

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

.row.top-xs {
  align-items: flex-start;
}

.row.middle-xs {
  align-items: center;
}

.row.bottom-xs {
  align-items: flex-end;
}

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

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

.first-xs {
  order: -1;
}

.last-xs {
  order: 1;
}

@media only screen and (min-width: 41rem) {
  .col-sm {
    box-sizing: border-box;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
    padding: 1rem;
  }
  .col-sm-1 {
    box-sizing: border-box;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    padding: 1rem;
  }
  .col-sm-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-sm-2 {
    box-sizing: border-box;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    padding: 1rem;
  }
  .col-sm-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-sm-3 {
    box-sizing: border-box;
    flex-basis: 25%;
    max-width: 25%;
    padding: 1rem;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-4 {
    box-sizing: border-box;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    padding: 1rem;
  }
  .col-sm-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-sm-5 {
    box-sizing: border-box;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    padding: 1rem;
  }
  .col-sm-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-sm-6 {
    box-sizing: border-box;
    flex-basis: 50%;
    max-width: 50%;
    padding: 1rem;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-7 {
    box-sizing: border-box;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    padding: 1rem;
  }
  .col-sm-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-sm-8 {
    box-sizing: border-box;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    padding: 1rem;
  }
  .col-sm-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-sm-9 {
    box-sizing: border-box;
    flex-basis: 75%;
    max-width: 75%;
    padding: 1rem;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-10 {
    box-sizing: border-box;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    padding: 1rem;
  }
  .col-sm-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-sm-11 {
    box-sizing: border-box;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    padding: 1rem;
  }
  .col-sm-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-sm-12 {
    box-sizing: border-box;
    flex-basis: 100%;
    max-width: 100%;
    padding: 1rem;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .row.start-sm {
    justify-content: flex-start;
  }
  .row.center-sm {
    justify-content: center;
  }
  .row.end-sm {
    justify-content: flex-end;
  }
  .row.top-sm {
    align-items: flex-start;
  }
  .row.middle-sm {
    align-items: center;
  }
  .row.bottom-sm {
    align-items: flex-end;
  }
  .row.around-sm {
    justify-content: space-around;
  }
  .row.between-sm {
    justify-content: space-between;
  }
  .first-sm {
    order: -1;
  }
  .last-sm {
    order: 1;
  }
}
@media only screen and (min-width: 65rem) {
  .col-md {
    box-sizing: border-box;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
    padding: 1rem;
  }
  .col-md-1 {
    box-sizing: border-box;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    padding: 1rem;
  }
  .col-md-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-md-2 {
    box-sizing: border-box;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    padding: 1rem;
  }
  .col-md-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-md-3 {
    box-sizing: border-box;
    flex-basis: 25%;
    max-width: 25%;
    padding: 1rem;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-4 {
    box-sizing: border-box;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    padding: 1rem;
  }
  .col-md-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-md-5 {
    box-sizing: border-box;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    padding: 1rem;
  }
  .col-md-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-md-6 {
    box-sizing: border-box;
    flex-basis: 50%;
    max-width: 50%;
    padding: 1rem;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-7 {
    box-sizing: border-box;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    padding: 1rem;
  }
  .col-md-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-md-8 {
    box-sizing: border-box;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    padding: 1rem;
  }
  .col-md-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-md-9 {
    box-sizing: border-box;
    flex-basis: 75%;
    max-width: 75%;
    padding: 1rem;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-10 {
    box-sizing: border-box;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    padding: 1rem;
  }
  .col-md-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-md-11 {
    box-sizing: border-box;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    padding: 1rem;
  }
  .col-md-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-md-12 {
    box-sizing: border-box;
    flex-basis: 100%;
    max-width: 100%;
    padding: 1rem;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .row.start-md {
    justify-content: flex-start;
  }
  .row.center-md {
    justify-content: center;
  }
  .row.end-md {
    justify-content: flex-end;
  }
  .row.top-md {
    align-items: flex-start;
  }
  .row.middle-md {
    align-items: center;
  }
  .row.bottom-md {
    align-items: flex-end;
  }
  .row.around-md {
    justify-content: space-around;
  }
  .row.between-md {
    justify-content: space-between;
  }
  .first-md {
    order: -1;
  }
  .last-md {
    order: 1;
  }
}
@media only screen and (min-width: 91rem) {
  .col-lg {
    box-sizing: border-box;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
    padding: 1rem;
  }
  .col-lg-1 {
    box-sizing: border-box;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    padding: 1rem;
  }
  .col-lg-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-lg-2 {
    box-sizing: border-box;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    padding: 1rem;
  }
  .col-lg-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-lg-3 {
    box-sizing: border-box;
    flex-basis: 25%;
    max-width: 25%;
    padding: 1rem;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-4 {
    box-sizing: border-box;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    padding: 1rem;
  }
  .col-lg-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-lg-5 {
    box-sizing: border-box;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    padding: 1rem;
  }
  .col-lg-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-lg-6 {
    box-sizing: border-box;
    flex-basis: 50%;
    max-width: 50%;
    padding: 1rem;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-7 {
    box-sizing: border-box;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    padding: 1rem;
  }
  .col-lg-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-lg-8 {
    box-sizing: border-box;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    padding: 1rem;
  }
  .col-lg-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-lg-9 {
    box-sizing: border-box;
    flex-basis: 75%;
    max-width: 75%;
    padding: 1rem;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-10 {
    box-sizing: border-box;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    padding: 1rem;
  }
  .col-lg-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-lg-11 {
    box-sizing: border-box;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    padding: 1rem;
  }
  .col-lg-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-lg-12 {
    box-sizing: border-box;
    flex-basis: 100%;
    max-width: 100%;
    padding: 1rem;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .row.start-lg {
    justify-content: flex-start;
  }
  .row.center-lg {
    justify-content: center;
  }
  .row.end-lg {
    justify-content: flex-end;
  }
  .row.top-lg {
    align-items: flex-start;
  }
  .row.middle-lg {
    align-items: center;
  }
  .row.bottom-lg {
    align-items: flex-end;
  }
  .row.around-lg {
    justify-content: space-around;
  }
  .row.between-lg {
    justify-content: space-between;
  }
  .first-lg {
    order: -1;
  }
  .last-lg {
    order: 1;
  }
}
@media only screen and (min-width: 121rem) {
  .col-xl {
    box-sizing: border-box;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
    padding: 1rem;
  }
  .col-xl-1 {
    box-sizing: border-box;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    padding: 1rem;
  }
  .col-xl-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-xl-2 {
    box-sizing: border-box;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    padding: 1rem;
  }
  .col-xl-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-xl-3 {
    box-sizing: border-box;
    flex-basis: 25%;
    max-width: 25%;
    padding: 1rem;
  }
  .col-xl-offset-3 {
    margin-left: 25%;
  }
  .col-xl-4 {
    box-sizing: border-box;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    padding: 1rem;
  }
  .col-xl-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-xl-5 {
    box-sizing: border-box;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    padding: 1rem;
  }
  .col-xl-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-xl-6 {
    box-sizing: border-box;
    flex-basis: 50%;
    max-width: 50%;
    padding: 1rem;
  }
  .col-xl-offset-6 {
    margin-left: 50%;
  }
  .col-xl-7 {
    box-sizing: border-box;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    padding: 1rem;
  }
  .col-xl-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-xl-8 {
    box-sizing: border-box;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    padding: 1rem;
  }
  .col-xl-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-xl-9 {
    box-sizing: border-box;
    flex-basis: 75%;
    max-width: 75%;
    padding: 1rem;
  }
  .col-xl-offset-9 {
    margin-left: 75%;
  }
  .col-xl-10 {
    box-sizing: border-box;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    padding: 1rem;
  }
  .col-xl-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-xl-11 {
    box-sizing: border-box;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    padding: 1rem;
  }
  .col-xl-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-xl-12 {
    box-sizing: border-box;
    flex-basis: 100%;
    max-width: 100%;
    padding: 1rem;
  }
  .col-xl-offset-12 {
    margin-left: 100%;
  }
  .row.start-xl {
    justify-content: flex-start;
  }
  .row.center-xl {
    justify-content: center;
  }
  .row.end-xl {
    justify-content: flex-end;
  }
  .row.top-xl {
    align-items: flex-start;
  }
  .row.middle-xl {
    align-items: center;
  }
  .row.bottom-xl {
    align-items: flex-end;
  }
  .row.around-xl {
    justify-content: space-around;
  }
  .row.between-xl {
    justify-content: space-between;
  }
  .first-xl {
    order: -1;
  }
  .last-xl {
    order: 1;
  }
}
.col-gutter-lr {
  padding: 0 1rem;
}

.col-no-gutter {
  padding: 0;
}

.show {
  display: block !important;
}

.row.show {
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.hide {
  display: none !important;
}

.show-xs {
  display: block !important;
}

.row.show-xs {
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.hide-xs {
  display: none !important;
}

@media only screen and (max-width: 40rem) {
  .show-xs-only {
    display: block !important;
  }
  .row.show-xs-only {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .hide-xs-only {
    display: none !important;
  }
}
@media only screen and (min-width: 41rem) {
  .show-sm {
    display: block !important;
  }
  .row.show-sm {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .hide-sm {
    display: none !important;
  }
}
@media only screen and (min-width: 41rem) and (max-width: 64rem) {
  .show-sm-only {
    display: block !important;
  }
  .row.show-sm-only {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .hide-sm-only {
    display: none !important;
  }
}
@media only screen and (min-width: 65rem) {
  .show-md {
    display: block !important;
  }
  .row.show-md {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .hide-md {
    display: none !important;
  }
}
@media only screen and (min-width: 65rem) and (max-width: 90rem) {
  .show-md-only {
    display: block !important;
  }
  .row.show-md-only {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .hide-md-only {
    display: none !important;
  }
}
@media only screen and (min-width: 91rem) {
  .show-lg {
    display: block !important;
  }
  .row.show-lg {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .hide-lg {
    display: none !important;
  }
}
@media only screen and (min-width: 91rem) and (max-width: 120rem) {
  .show-lg-only {
    display: block !important;
  }
  .row.show-lg-only {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .hide-lg-only {
    display: none !important;
  }
}
@media only screen and (min-width: 121rem) {
  .show-xl {
    display: block !important;
  }
  .row.show-xl {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .hide-xl {
    display: none !important;
  }
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

body {
  --layer-below-navigation: 10;
  --layer-navigation: 15;
  --layer-above-navigation: 20;
  --layer-above-above-navigation: 25;
  --default-column-gap: 10px;
  --spacing-00: 0px;
  --spacing-01: 4px;
  --spacing-02: 8px;
  --spacing-03: 12px;
  --spacing-04: 16px;
  --spacing-05: 20px;
  --spacing-06: 24px;
  --spacing-07: 32px;
  --spacing-08: 36px;
  --spacing-09: 40px;
  --spacing-10: 44px;
  --spacing-11: 48px;
  --spacing-12: 52px;
  --spacing-13: 56px;
  --spacing-14: 60px;
  --spacing-15: 64px;
  --spacing-16: 80px;
  --transition-duration-default: 250ms;
  --spacing-layout: var(--spacing-03);
  --horizontal-distance: var(--spacing-03);
}
@media (min-width: 767px) {
  body {
    --spacing-layout: var(--spacing-12);
    --horizontal-distance: var(--spacing-12);
  }
}
body {
  --grid-spacer-48: 60px;
  --grid-spacer-64: 80px;
  --grid-spacer-100: 40px;
  --grid-spacer-104: 80px;
  --grid-spacer-144: 60px;
  --grid-spacer-200: 80px;
  --grid-spacer-264: 264px;
  --max-site-width: 1400px;
  --off-canvas-max-width: 500px;
  --border-radius: 2px;
  --product-tile-min-height: 340px;
  font-size: 16px;
  font-weight: 300;
  --font-size-xxxl: 3rem;
  --font-size-xxl: 2rem;
  --font-size-xl: 1.75rem;
  --font-size-l: 1.5rem;
  --font-size-m: 1.25rem;
  --font-size-s: 1rem;
  --font-size-xs: 0.866rem;
  --font-size-xxs: 0.694rem;
  --font-weight-bold: 500;
  --font-weight-regular: 300;
  --font-weight-light: 300;
  --font-family-headline: 'adelle-sans-condensed',
                          'Helvetica Neue', /* macOS/iOS */
                          'Helvetica', /* ältere macOS, Unix */
                          'Arial Narrow', /* Windows */
                          'Arial', /* generelle Fallbacks */
                          sans-serif;
  --font-family-body: 'Lato',
                          'Helvetica Neue', /* macOS/iOS */
                          'Helvetica', /* ältere macOS, Unix */
                          'Arial Narrow', /* Windows */
                          'Arial', /* generelle Fallbacks */
                          sans-serif;
  --default-border-radius: 0;
  --font-weight-body: 300;
  --text-color-on-accent: #ffffff;
  --text-color-on-bright-1: #4F4F4F;
  --text-color-on-bright-2: #888888;
  --text-color-on-bright-3: #060607;
  --text-color-on-dark: #ededed;
  --text-color-on-dark-2: #d9d9d9;
  --headline-color-on-bright-1: #060607;
  --headline-color-on-dark-1: #efefef;
  --color-primary: #060607;
  --secondary-color: #efefef;
  --color-accent: #EC417A;
  --background-color-light: #faf9fa;
  --border-color-light: #f9f9f9;
  --wildcat-magenta-1: #E91E63;
  --success-color: #26A682;
  --success-color-text: #96b348;
  --info-color: #274D73;
  --error-color: #CD3F50;
  --message-color: #ec417a;
  --warn-color: #ffc44b;
  --white: #fff;
  ---black: #000;
  --grey: #888888;
  --grey-1: #fafafa;
  --grey-2: #f5f5f5;
  --grey-3: #eeeeee;
  --grey-4: #e0e0e0;
  --grey-5: #bdbdbd;
  --grey-6: #757575;
  --grey-7: #616161;
  --grey-8: #424242;
  --grey-9: #212121;
  --color-background-dark: rgb(28, 28, 28);
  --color-border: #d1d1d1;
  --e-global-color-primary: var(--color-primary);
  --pwl-sale-popup-bg-gradient-color1: #000000;
  --pwl-sale-popup-bg-gradient-color2: rgb(236, 65, 122);
  --pwl-sale-popup-bg-gradient-color3: rgb(124, 13, 49);
  --pwl-sale-popup-bg-gradient-color4: rgb(0, 0, 0);
  --pwl-sale-popup-discount-background-color: rgb(236, 65, 122);
  --pwl-sale-popup-discount-text-color-on-background: #ffffff;
  --pwl-sale-popup-sale-price-text-color: rgb(236, 65, 122);
}

@keyframes loading {
  to {
    background-position: 160px;
  }
}

@keyframes wave-lines {
  0% {
    background-position: -468px 0;
  }
  100% {
    background-position: 468px 0;
  }
}
@keyframes wave-squares {
  0% {
    background-position: -468px 0;
  }
  100% {
    background-position: 468px 0;
  }
}
\%clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

\%clearfix-before:before {
  content: " ";
  display: block;
  clear: both;
}

@keyframes wildcat-icon-bounce {
  0%, 20%, 53%, 80%, 100% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -12px, 0);
  }
  70% {
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -8px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
* {
  box-sizing: border-box !important;
}

h1,
h1.elementor-headline,
.elementor-widget-container h1 {
  font-family: var(--font-family-headline);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  color: var(--headline-color-on-bright-1);
  font-size: var(--font-size-xxl);
  margin: 0 0 var(--spacing-06) 0;
}

h2,
h2.elementor-headline,
.elementor-widget-container h2 {
  font-family: var(--font-family-headline);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  color: var(--headline-color-on-bright-1);
  font-size: var(--font-size-xl);
  margin: var(--spacing-06) 0 var(--spacing-06) 0;
}

h3,
h3.elementor-headline,
.elementor-widget-container h3 {
  font-family: var(--font-family-headline);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  color: var(--headline-color-on-bright-1);
  font-size: var(--font-size-l);
  margin: var(--spacing-03) 0 var(--spacing-03) 0;
}

h4,
h4.elementor-headline,
.elementor-widget-container h4 {
  font-family: var(--font-family-headline);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  color: var(--text-color-on-bright-1);
  font-size: var(--font-size-m);
  margin: var(--spacing-03) 0 var(--spacing-03) 0;
}

h5,
.reason-why .elementor-widget-icon-box .elementor-icon-box-title,
h5.elementor-headline,
.elementor-widget-container h5 {
  font-family: var(--font-family-headline);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  color: var(--headline-color-on-bright-1);
  font-size: var(--font-size-s);
  margin: 0 0 var(--spacing-03) 0;
}

h6,
.wildcat-product-search .predictive-search-results .results-other h3,
h6.elementor-headline,
.elementor-widget-container h6 {
  font-family: var(--font-family-headline);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  color: var(--headline-color-on-bright-1);
  font-size: var(--font-size-s);
  margin: 0 0 var(--spacing-03) 0;
}

p,
body {
  font-family: var(--font-family-body);
  color: var(--text-color-on-bright-1);
  font-weight: var(--font-weight-body);
  font-size: var(--font-size-s);
  line-height: var(--font-size-xl);
  margin: var(--spacing-03) 0;
}

body {
  margin: 0;
}

a:link,
a:visited {
  color: var(--text-color-on-bright-1);
}

p a:link,
p a:visited {
  color: var(--text-color-on-bright-1);
  text-decoration: underline;
}
p a:hover {
  color: var(--color-accent);
}

.elementor-element.subline p {
  margin-top: 0;
}

*::selection {
  background-color: var(--color-accent);
  color: var(--text-color-on-dark);
}

.primary-icon,
.feather-icon,
.simple-icon {
  width: 30px;
  height: 30px;
  color: #ffffff;
  display: inline-block;
  line-height: 0;
}
.primary-icon svg,
.feather-icon svg,
.simple-icon svg {
  width: 100%;
  height: auto;
}

.simple-icon svg {
  width: 30px;
  height: 30px;
  fill: #ffffff;
}

.elementor-headline-animation-type-slide-down .elementor-headline-dynamic-wrapper {
  overflow: visible !important;
}

.elementor-column-gap-default > .elementor-column > .elementor-element-populated {
  padding: var(--spacing-01);
}

.elementor-section {
  padding: var(--spacing-03) 0;
}
.elementor-section.elementor-section-full_width {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  padding: 0;
}
.elementor-section.elementor-section-full_width .elementor-column-gap-default > .elementor-column > .elementor-element-populated {
  padding: 0;
}

.elementor-element.e-con-full {
  /*

  */
}

[x-cloak] {
  display: none !important;
}

#content-wrap .content-area .elementor > .elementor-element[data-element_type=container]:first-of-type {
  padding: 0;
}
#content-wrap .content-area .elementor > .elementor-element[data-element_type=container].e-con-full {
  position: relative;
  max-width: unset;
  width: 100vw;
  transform: translateX(-50%);
  left: 50%;
  padding-left: 0;
  padding-right: 0;
}
#content-wrap .content-area .elementor .elementor-element[data-element_type=container] .elementor-element[data-element_type=container].e-con-full {
  max-width: var(--container-default-width, 1200px);
  width: 100%;
  transform: none;
  left: auto;
  padding-left: var(--container-padding, 0);
  padding-right: var(--container-padding, 0);
  outline: none;
}

body {
  overflow-x: hidden !important;
  hyphens: auto;
}

fieldset legend {
  font-family: var(--font-family-headline);
}

@media (min-width: 767px) {
  .show-mobile-only {
    display: none;
  }
}

body.woocommerce-is-inactive #masthead .mobile-search-toggle {
  display: none !important;
}

#masthead .navigation-block-shared .menu-list .menu-item .menu-item-text {
  display: block;
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-s);
}
#masthead .navigation-block-shared .menu-list .menu-item .menu-item-button {
  color: var(--secondary-color);
  text-decoration: none;
}
#masthead .navigation-block-shared .menu-list .menu-item .menu-item-button:hover {
  text-decoration: none;
}
#masthead .navigation-block-shared .menu-list .menu-item .menu-item-button:hover .feather-icon, #masthead .navigation-block-shared .menu-list .menu-item .menu-item-button:hover .iconify, #masthead .navigation-block-shared .menu-list .menu-item .menu-item-button:hover .wildcat-icon {
  color: var(--color-accent) !important;
}
#masthead .navigation-block-shared .menu-list {
  list-style-type: none;
  display: flex;
  flex-flow: row nowrap;
  white-space: nowrap;
  margin: 0;
  padding: 0;
}
#masthead .navigation-block-shared .menu-list.categories {
  display: none;
}
@media (min-width: 1024px) {
  #masthead .navigation-block-shared .menu-list.categories {
    display: flex;
  }
}
@media (min-width: 767px) {
  #masthead .navigation-block-shared .menu-list.after-categories {
    display: none;
  }
}
#masthead .navigation-block-shared .menu-list.mini-menu {
  width: 100%;
  justify-content: right;
}
#masthead .navigation-block-shared .menu-list.mini-menu li {
  position: relative;
}
@media (min-width: 1024px) {
  #masthead .navigation-block-shared .menu-list.mini-menu {
    padding-bottom: var(--spacing-03);
  }
}
#masthead .navigation-block-shared .menu-list.mini-menu li a {
  display: block;
}
#masthead .navigation-block-shared .menu-list.mini-menu li.menu-item {
  padding: 0 0 0 15px !important;
}
#masthead .navigation-block-shared .menu-list.mini-menu li:first-child {
  padding-left: 0 !important;
  flex-grow: 1;
}
#masthead .navigation-block-shared .menu-list.mini-menu .mobile-menu-toggle, #masthead .navigation-block-shared .menu-list.mini-menu .mobile-search-toggle {
  display: block;
}
@media (min-width: 1024px) {
  #masthead .navigation-block-shared .menu-list.mini-menu .mobile-menu-toggle, #masthead .navigation-block-shared .menu-list.mini-menu .mobile-search-toggle {
    display: none !important;
  }
}
@media (max-width: 1023px) {
  #masthead .navigation-block-shared .menu-list.mini-menu .class-of-accesibility {
    display: none !important;
  }
}

#masthead .navigation-block-shared .menu-list.mini-menu .mobile-menu-toggle .primary-icon {
  opacity: 1;
  transition: all 0.2s ease-out;
}
#masthead .navigation-block-shared .menu-list.mini-menu .mobile-menu-toggle .primary-icon.icon-menu {
  position: absolute;
}
#masthead .navigation-block-shared .menu-list.mini-menu .mobile-menu-toggle .primary-icon.icon-x {
  opacity: 0;
}

body.mobile-nav-opened #masthead .navigation-block-shared .menu-list.mini-menu .mobile-menu-toggle .primary-icon.icon-x {
  opacity: 1;
}
body.mobile-nav-opened #masthead .navigation-block-shared .menu-list.mini-menu .mobile-menu-toggle .primary-icon.icon-menu {
  opacity: 0;
}

body {
  background-color: var(--color-primary);
}
body #page-wrap {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
}
body #page-wrap .wc-footer {
  margin-top: auto;
}
body #content-wrap {
  max-width: var(--max-site-width);
  margin: 0 auto;
  width: 100%;
}
body #content-wrap .content-area {
  padding: 0 20px;
}
@media (min-width: 1024px) {
  body #content-wrap .content-area {
    padding: 0 var(--spacing-03);
  }
}

@media (min-width: 0px) {
  .related-categories, #masthead #navigation-area .navigation-block-shared {
    padding: 0;
    max-width: var(--max-site-width);
    margin: 0 auto;
  }
}

.masthead-wrap {
  display: flex;
  flex-direction: column;
}
.masthead-wrap #promotional-area {
  max-height: 300px;
  transition: max-height 0.3s ease-out;
  z-index: var(--layer-navigation);
}
@media (max-width: 766px) {
  .masthead-wrap #promotional-area {
    margin-top: 78px;
  }
}

@keyframes mobilenavtosticky {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0%);
    opacity: 1;
  }
}
.woocommerce-is-inactive #masthead #navigation-area .navigation-block-shared {
  grid-template-areas: "a b c";
}
.woocommerce-is-inactive #masthead #navigation-area .navigation-block-shared .search-and-title-area {
  align-items: center;
}
@media (min-width: 1024px) {
  .woocommerce-is-inactive #masthead #navigation-area .navigation-block-shared .search-and-title-area {
    margin-top: auto;
    align-items: center;
  }
}

#masthead {
  position: relative;
  z-index: var(--layer-navigation);
  width: 100%;
  background-color: var(--color-primary);
}
#masthead #navigation-area .navigation-block-shared {
  background-color: var(--color-primary);
  color: var(--headline-color-on-dark-1);
  column-gap: 10px;
  row-gap: 0;
  padding: var(--spacing-03);
  grid-template-areas: "a c c" "b b b";
}
#masthead #navigation-area .navigation-block-shared .search-and-title-area {
  align-items: center;
}
@media (min-width: 1024px) {
  #masthead #navigation-area .navigation-block-shared {
    grid-template-areas: "a b b c" "a b b c" "a d d d" !important;
  }
}
@media (min-width: 1024px) {
  #masthead #navigation-area .navigation-block-shared {
    padding-top: var(--spacing-05);
    padding-bottom: var(--spacing-05);
  }
}
#masthead #navigation-area .navigation-block-shared {
  display: grid;
  width: 100%;
  grid-template-columns: max-content 1fr;
}
#masthead #navigation-area .navigation-block-shared .logo-area {
  grid-area: a;
}
#masthead #navigation-area .navigation-block-shared .search-and-title-area {
  grid-area: b;
  display: flex;
  align-items: end;
}
#masthead #navigation-area .navigation-block-shared .mini-menu-area {
  grid-area: c;
  display: flex;
  align-items: center;
}
@media (min-width: 1024px) {
  #masthead #navigation-area .navigation-block-shared .mini-menu-area {
    align-items: end;
  }
}
#masthead #navigation-area .navigation-block-shared .mini-menu-area {
  justify-content: right;
}
#masthead #navigation-area .navigation-block-shared .primary-menu-area {
  grid-area: d;
}
@media (max-width: 1023px) {
  #masthead #navigation-area .navigation-block-shared .primary-menu-area {
    grid-area: b;
  }
}
@media (min-width: 1024px) {
  #masthead #navigation-area .navigation-block-shared .primary-menu-area {
    display: flex;
    align-items: end;
    min-height: 44px;
  }
}
@media (max-width: 766px) {
  #masthead {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--layer-navigation);
  }
  #masthead.sticky {
    position: fixed;
    transition: all 0.5s ease-out;
    animation-name: mobilenavtosticky;
    animation-duration: 0.2s;
  }
}
#masthead {
  /*
  &.sticky {

    @include breakpoint(mobileonly) {


      transition: all 0.5s ease-out;

      animation-name: mobilenavtosticky;
      animation-duration: 0.2s;

    }

  }
   */
}

#masthead .page-title {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.5rem;
  font-family: var(--font-family-headline);
}
@media (min-width: 1024px) {
  #masthead .page-title {
    font-size: 3rem;
  }
}
#masthead .site-logo {
  line-height: 1px;
}
#masthead .site-logo a {
  text-decoration: none;
}
#masthead .site-logo a img {
  height: 54px;
  width: auto;
  text-decoration: none;
}
@media (min-width: 1024px) {
  #masthead .site-logo a img {
    width: 100px;
    height: auto;
  }
}
#masthead .extra-content {
  text-align: right;
}
#masthead .wildcat-product-search .input-text,
#masthead .wildcat-product-search textarea,
#masthead .wildcat-product-search input[type=number],
#masthead .wildcat-product-search input[type=text],
#masthead .wildcat-product-search input[type=search],
#masthead .wildcat-product-search input[type=email],
#masthead .wildcat-product-search input[type=password],
#masthead .wildcat-product-search select {
  -webkit-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  outline: 0;
  font-family: var(--font-family-body);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1) inset;
  display: inline-block;
  border-bottom: 0;
  font-size: var(--font-size-xs);
  line-height: var(--font-size-s);
  max-width: 100%;
  width: 100%;
  background-color: transparent;
  padding: var(--spacing-03);
  font-weight: var(--font-weight-regular);
}
#masthead .wildcat-product-search .input-text::placeholder,
#masthead .wildcat-product-search textarea::placeholder,
#masthead .wildcat-product-search input[type=number]::placeholder,
#masthead .wildcat-product-search input[type=text]::placeholder,
#masthead .wildcat-product-search input[type=search]::placeholder,
#masthead .wildcat-product-search input[type=email]::placeholder,
#masthead .wildcat-product-search input[type=password]::placeholder,
#masthead .wildcat-product-search select::placeholder {
  font-size: var(--font-size-s);
  font-family: var(--font-family-headline);
  opacity: 1;
  color: var(--grey);
}
#masthead .wildcat-product-search .input-text:disabled,
#masthead .wildcat-product-search textarea:disabled,
#masthead .wildcat-product-search input[type=number]:disabled,
#masthead .wildcat-product-search input[type=text]:disabled,
#masthead .wildcat-product-search input[type=search]:disabled,
#masthead .wildcat-product-search input[type=email]:disabled,
#masthead .wildcat-product-search input[type=password]:disabled,
#masthead .wildcat-product-search select:disabled {
  background-color: transparent;
  opacity: 0.8;
  cursor: not-allowed;
}

.wc-footer {
  background-color: var(--color-primary);
  width: 100%;
}
.wc-footer .privacy-settings-link {
  display: inline-block;
  margin: 0 auto;
  text-decoration: none;
  color: var(--text-color-on-dark);
}
.wc-footer .iso-certificate {
  width: 150px;
  height: auto;
  margin-bottom: var(--spacing-03);
}
.wc-footer {
  color: #ffffff;
}
.wc-footer .avgRatingAggregation {
  margin: var(--spacing-06) 0;
  opacity: 0.7;
  width: 100%;
  font-size: var(--font-size-xs);
  line-height: var(--font-size-xs);
  text-align: center;
  color: var(--text-color-on-dark);
}
.wc-footer .avgRatingAggregation a {
  color: var(--text-color-on-dark);
}
.wc-footer .footer-wrapper {
  max-width: var(--max-site-width);
  margin: 0 auto;
  display: flex;
  flex-flow: row wrap;
}
@media (max-width: 1920px) {
  .wc-footer {
    padding-left: var(--spacing-05);
    padding-right: var(--spacing-05);
  }
}
.wc-footer .footer-section {
  width: 100%;
}
@media (min-width: 767px) {
  .wc-footer .footer-section {
    width: 50%;
    padding-right: var(--spacing-05);
  }
}
@media (min-width: 1024px) {
  .wc-footer .footer-section {
    width: unset;
    flex: 1;
  }
  .wc-footer .footer-section.static-content {
    min-width: 30%;
  }
}

.wc-promo-header {
  padding: 0;
  margin: 0 auto;
}
.wc-promo-header .wildcat-promo-banner {
  margin: 0 auto;
  width: 100%;
  padding: var(--spacing-03);
}
.wc-promo-header .wildcat-promo-banner .text-holder {
  display: flex;
  flex-flow: column;
  column-gap: var(--spacing-03);
  row-gap: 0;
  justify-content: center;
  text-align: center;
}
.wc-promo-header .wildcat-promo-banner .text-holder .primary-text, .wc-promo-header .wildcat-promo-banner .text-holder .secondary-text {
  line-height: 1.5rem;
  align-items: center;
  justify-content: center;
}
.wc-promo-header .wildcat-promo-banner .text-holder .primary-text {
  font-weight: var(--font-weight-bold);
}
.wc-promo-header .wildcat-promo-banner a:link, .wc-promo-header .wildcat-promo-banner a:visited {
  text-decoration: none;
}

.woocommerce .woocommerce-breadcrumb {
  font-size: var(--font-size-xs);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.woocommerce .woocommerce-breadcrumb .primary-icon, .woocommerce .woocommerce-breadcrumb .icon {
  color: var(--text-color-on-bright-1);
  width: 15px;
  height: 15px;
}
.woocommerce .woocommerce-breadcrumb {
  padding: 0;
}
.woocommerce .woocommerce-breadcrumb a:link, .woocommerce .woocommerce-breadcrumb a:visited {
  text-decoration: none;
  transition: color 300ms ease-out;
}
.woocommerce .woocommerce-breadcrumb a:link:hover, .woocommerce .woocommerce-breadcrumb a:visited:hover {
  color: var(--color-accent);
}

.mobile-search {
  display: block;
  background-color: rgba(0, 0, 0, 0.8);
  height: 100vh;
}
.mobile-search button[type=submit] {
  display: none;
}

.wildcat-layouts {
  background-color: var(--color-primary);
  color: var(--text-color-on-dark);
}
.wildcat-layouts .primary-text, .wildcat-layouts .secondary-text {
  color: var(--text-color-on-dark);
}
.wildcat-layouts .primary-headline {
  color: var(--text-color-on-dark);
}
.wildcat-layouts .primary-button {
  color: #ffffff;
}
.wildcat-layouts .primary-button:hover {
  color: var(--color-accent);
}
.wildcat-layouts .the-content h1, .wildcat-layouts .the-content h2, .wildcat-layouts .the-content h3, .wildcat-layouts .the-content p, .wildcat-layouts .the-content ul, .wildcat-layouts .the-content li, .wildcat-layouts .the-text h1, .wildcat-layouts .the-text h2, .wildcat-layouts .the-text h3, .wildcat-layouts .the-text p, .wildcat-layouts .the-text ul, .wildcat-layouts .the-text li {
  color: var(--text-color-on-dark);
}
.wildcat-layouts .the-content h1 .highlight, .wildcat-layouts .the-content h2 .highlight, .wildcat-layouts .the-content h3 .highlight, .wildcat-layouts .the-content p .highlight, .wildcat-layouts .the-content ul .highlight, .wildcat-layouts .the-content li .highlight, .wildcat-layouts .the-text h1 .highlight, .wildcat-layouts .the-text h2 .highlight, .wildcat-layouts .the-text h3 .highlight, .wildcat-layouts .the-text p .highlight, .wildcat-layouts .the-text ul .highlight, .wildcat-layouts .the-text li .highlight {
  color: var(--color-accent);
  font-weight: var(--font-weight-bold);
}
.wildcat-layouts .the-content .the-text a, .wildcat-layouts .the-text .the-text a {
  transition: color 0.2s ease-out;
  color: var(--color-accent);
}
.wildcat-layouts .the-content .the-text a:hover, .wildcat-layouts .the-text .the-text a:hover {
  color: var(--text-color-on-dark);
}
.wildcat-layouts .the-content .the-text ul, .wildcat-layouts .the-content .the-text li, .wildcat-layouts .the-content .the-text ol, .wildcat-layouts .the-text .the-text ul, .wildcat-layouts .the-text .the-text li, .wildcat-layouts .the-text .the-text ol {
  text-align: left;
}
.wildcat-layouts .the-content .primary-headline, .wildcat-layouts .the-text .primary-headline {
  color: var(--color-accent);
  font-weight: 600;
  font-size: var(--font-size-xxl);
}
.wildcat-layouts .the-content .sub-headline, .wildcat-layouts .the-text .sub-headline {
  color: var(--text-color-on-dark);
  display: block;
  font-size: 1rem;
  font-weight: normal;
}
.wildcat-layouts .the-content form label, .wildcat-layouts .the-text form label {
  text-align: left;
  display: block;
  color: var(--text-color-on-dark);
}
.wildcat-layouts .the-content form .woocommerce-input-label, .wildcat-layouts .the-text form .woocommerce-input-label {
  color: var(--text-color-on-bright-3, #333);
}
.wildcat-layouts .the-content form input[type=text], .wildcat-layouts .the-content form input[type=email], .wildcat-layouts .the-text form input[type=text], .wildcat-layouts .the-text form input[type=email] {
  border: 1px solid var(--text-color-on-dark) !important;
}
.wildcat-layouts .the-content form input[type=submit], .wildcat-layouts .the-text form input[type=submit] {
  margin-top: 10px;
  width: 100%;
}
.wildcat-layouts.layout-dark input[type=text], .wildcat-layouts.layout-dark input[type=email] {
  color: #ffffff;
}
.wildcat-layouts.layout-extra-dark {
  background-color: #000;
}
.wildcat-layouts.layout-highlight {
  background-color: var(--color-accent);
}
.wildcat-layouts.layout-highlight .primary-headline {
  color: var(--text-color-on-dark);
}
.wildcat-layouts.layout-highlight .sub-headline {
  color: var(--text-color-on-bright-3);
}
.wildcat-layouts.layout-highlight .the-content .the-text a {
  transition: color 0.2s ease-out;
  background-color: #000000;
}
.wildcat-layouts.layout-highlight .the-content .the-text a:hover {
  color: var(--text-color-on-dark);
}
.wildcat-layouts.layout-highlight .the-content form input[type=text], .wildcat-layouts.layout-highlight .the-content form input[type=email], .wildcat-layouts.layout-highlight .the-text form input[type=text], .wildcat-layouts.layout-highlight .the-text form input[type=email] {
  color: #ffffff;
}
.wildcat-layouts.layout-highlight .the-content form input[type=submit], .wildcat-layouts.layout-highlight .the-text form input[type=submit] {
  background-color: #000000;
}
.wildcat-layouts.layout-highlight .the-content form input[type=submit]:hover, .wildcat-layouts.layout-highlight .the-text form input[type=submit]:hover {
  background-color: #ffffff !important;
  border: 1px solid black;
}
.wildcat-layouts.layout-dimmed {
  background-color: #f9f9f9;
}
.wildcat-layouts.layout-dimmed .sub-headline {
  color: var(--text-color-on-bright);
}
.wildcat-layouts.layout-dimmed .the-content h1, .wildcat-layouts.layout-dimmed .the-content h2, .wildcat-layouts.layout-dimmed .the-content h3, .wildcat-layouts.layout-dimmed .the-content p, .wildcat-layouts.layout-dimmed .the-content ul, .wildcat-layouts.layout-dimmed .the-content li, .wildcat-layouts.layout-dimmed .the-content .primary-text, .wildcat-layouts.layout-dimmed .the-content .secondary-text, .wildcat-layouts.layout-dimmed .the-text h1, .wildcat-layouts.layout-dimmed .the-text h2, .wildcat-layouts.layout-dimmed .the-text h3, .wildcat-layouts.layout-dimmed .the-text p, .wildcat-layouts.layout-dimmed .the-text ul, .wildcat-layouts.layout-dimmed .the-text li, .wildcat-layouts.layout-dimmed .the-text .primary-text, .wildcat-layouts.layout-dimmed .the-text .secondary-text {
  color: var(--text-color-on-bright-3);
}
.wildcat-layouts.layout-dimmed .the-content h1 .coupon-shortcode, .wildcat-layouts.layout-dimmed .the-content h2 .coupon-shortcode, .wildcat-layouts.layout-dimmed .the-content h3 .coupon-shortcode, .wildcat-layouts.layout-dimmed .the-content p .coupon-shortcode, .wildcat-layouts.layout-dimmed .the-content ul .coupon-shortcode, .wildcat-layouts.layout-dimmed .the-content li .coupon-shortcode, .wildcat-layouts.layout-dimmed .the-content .primary-text .coupon-shortcode, .wildcat-layouts.layout-dimmed .the-content .secondary-text .coupon-shortcode, .wildcat-layouts.layout-dimmed .the-text h1 .coupon-shortcode, .wildcat-layouts.layout-dimmed .the-text h2 .coupon-shortcode, .wildcat-layouts.layout-dimmed .the-text h3 .coupon-shortcode, .wildcat-layouts.layout-dimmed .the-text p .coupon-shortcode, .wildcat-layouts.layout-dimmed .the-text ul .coupon-shortcode, .wildcat-layouts.layout-dimmed .the-text li .coupon-shortcode, .wildcat-layouts.layout-dimmed .the-text .primary-text .coupon-shortcode, .wildcat-layouts.layout-dimmed .the-text .secondary-text .coupon-shortcode {
  color: #ffffff;
}
.wildcat-layouts.layout-dimmed .the-content h1 .coupon-shortcode button, .wildcat-layouts.layout-dimmed .the-content h2 .coupon-shortcode button, .wildcat-layouts.layout-dimmed .the-content h3 .coupon-shortcode button, .wildcat-layouts.layout-dimmed .the-content p .coupon-shortcode button, .wildcat-layouts.layout-dimmed .the-content ul .coupon-shortcode button, .wildcat-layouts.layout-dimmed .the-content li .coupon-shortcode button, .wildcat-layouts.layout-dimmed .the-content .primary-text .coupon-shortcode button, .wildcat-layouts.layout-dimmed .the-content .secondary-text .coupon-shortcode button, .wildcat-layouts.layout-dimmed .the-text h1 .coupon-shortcode button, .wildcat-layouts.layout-dimmed .the-text h2 .coupon-shortcode button, .wildcat-layouts.layout-dimmed .the-text h3 .coupon-shortcode button, .wildcat-layouts.layout-dimmed .the-text p .coupon-shortcode button, .wildcat-layouts.layout-dimmed .the-text ul .coupon-shortcode button, .wildcat-layouts.layout-dimmed .the-text li .coupon-shortcode button, .wildcat-layouts.layout-dimmed .the-text .primary-text .coupon-shortcode button, .wildcat-layouts.layout-dimmed .the-text .secondary-text .coupon-shortcode button {
  color: #ffffff;
  background-color: #000000;
}
.wildcat-layouts.layout-dimmed .the-content h1 .coupon-shortcode button:hover, .wildcat-layouts.layout-dimmed .the-content h2 .coupon-shortcode button:hover, .wildcat-layouts.layout-dimmed .the-content h3 .coupon-shortcode button:hover, .wildcat-layouts.layout-dimmed .the-content p .coupon-shortcode button:hover, .wildcat-layouts.layout-dimmed .the-content ul .coupon-shortcode button:hover, .wildcat-layouts.layout-dimmed .the-content li .coupon-shortcode button:hover, .wildcat-layouts.layout-dimmed .the-content .primary-text .coupon-shortcode button:hover, .wildcat-layouts.layout-dimmed .the-content .secondary-text .coupon-shortcode button:hover, .wildcat-layouts.layout-dimmed .the-text h1 .coupon-shortcode button:hover, .wildcat-layouts.layout-dimmed .the-text h2 .coupon-shortcode button:hover, .wildcat-layouts.layout-dimmed .the-text h3 .coupon-shortcode button:hover, .wildcat-layouts.layout-dimmed .the-text p .coupon-shortcode button:hover, .wildcat-layouts.layout-dimmed .the-text ul .coupon-shortcode button:hover, .wildcat-layouts.layout-dimmed .the-text li .coupon-shortcode button:hover, .wildcat-layouts.layout-dimmed .the-text .primary-text .coupon-shortcode button:hover, .wildcat-layouts.layout-dimmed .the-text .secondary-text .coupon-shortcode button:hover {
  color: #000000;
  background-color: #ffffff;
}
.wildcat-layouts.layout-light {
  background-color: #ffffff;
}
.wildcat-layouts.layout-light .sub-headline {
  color: var(--text-color-on-bright);
}
.wildcat-layouts.layout-light .the-content h1, .wildcat-layouts.layout-light .the-content h2, .wildcat-layouts.layout-light .the-content h3, .wildcat-layouts.layout-light .the-content p, .wildcat-layouts.layout-light .the-content ul, .wildcat-layouts.layout-light .the-content li, .wildcat-layouts.layout-light .the-content .primary-text, .wildcat-layouts.layout-light .the-content .secondary-text, .wildcat-layouts.layout-light .the-text h1, .wildcat-layouts.layout-light .the-text h2, .wildcat-layouts.layout-light .the-text h3, .wildcat-layouts.layout-light .the-text p, .wildcat-layouts.layout-light .the-text ul, .wildcat-layouts.layout-light .the-text li, .wildcat-layouts.layout-light .the-text .primary-text, .wildcat-layouts.layout-light .the-text .secondary-text {
  color: var(--text-color-on-bright-3);
}
.wildcat-layouts.layout-light .the-content h1 .coupon-shortcode, .wildcat-layouts.layout-light .the-content h2 .coupon-shortcode, .wildcat-layouts.layout-light .the-content h3 .coupon-shortcode, .wildcat-layouts.layout-light .the-content p .coupon-shortcode, .wildcat-layouts.layout-light .the-content ul .coupon-shortcode, .wildcat-layouts.layout-light .the-content li .coupon-shortcode, .wildcat-layouts.layout-light .the-content .primary-text .coupon-shortcode, .wildcat-layouts.layout-light .the-content .secondary-text .coupon-shortcode, .wildcat-layouts.layout-light .the-text h1 .coupon-shortcode, .wildcat-layouts.layout-light .the-text h2 .coupon-shortcode, .wildcat-layouts.layout-light .the-text h3 .coupon-shortcode, .wildcat-layouts.layout-light .the-text p .coupon-shortcode, .wildcat-layouts.layout-light .the-text ul .coupon-shortcode, .wildcat-layouts.layout-light .the-text li .coupon-shortcode, .wildcat-layouts.layout-light .the-text .primary-text .coupon-shortcode, .wildcat-layouts.layout-light .the-text .secondary-text .coupon-shortcode {
  color: #ffffff;
}
.wildcat-layouts.layout-light .the-content h1 .coupon-shortcode button, .wildcat-layouts.layout-light .the-content h2 .coupon-shortcode button, .wildcat-layouts.layout-light .the-content h3 .coupon-shortcode button, .wildcat-layouts.layout-light .the-content p .coupon-shortcode button, .wildcat-layouts.layout-light .the-content ul .coupon-shortcode button, .wildcat-layouts.layout-light .the-content li .coupon-shortcode button, .wildcat-layouts.layout-light .the-content .primary-text .coupon-shortcode button, .wildcat-layouts.layout-light .the-content .secondary-text .coupon-shortcode button, .wildcat-layouts.layout-light .the-text h1 .coupon-shortcode button, .wildcat-layouts.layout-light .the-text h2 .coupon-shortcode button, .wildcat-layouts.layout-light .the-text h3 .coupon-shortcode button, .wildcat-layouts.layout-light .the-text p .coupon-shortcode button, .wildcat-layouts.layout-light .the-text ul .coupon-shortcode button, .wildcat-layouts.layout-light .the-text li .coupon-shortcode button, .wildcat-layouts.layout-light .the-text .primary-text .coupon-shortcode button, .wildcat-layouts.layout-light .the-text .secondary-text .coupon-shortcode button {
  color: #ffffff;
  background-color: #000000;
}
.wildcat-layouts.layout-light .the-content h1 .coupon-shortcode button:hover, .wildcat-layouts.layout-light .the-content h2 .coupon-shortcode button:hover, .wildcat-layouts.layout-light .the-content h3 .coupon-shortcode button:hover, .wildcat-layouts.layout-light .the-content p .coupon-shortcode button:hover, .wildcat-layouts.layout-light .the-content ul .coupon-shortcode button:hover, .wildcat-layouts.layout-light .the-content li .coupon-shortcode button:hover, .wildcat-layouts.layout-light .the-content .primary-text .coupon-shortcode button:hover, .wildcat-layouts.layout-light .the-content .secondary-text .coupon-shortcode button:hover, .wildcat-layouts.layout-light .the-text h1 .coupon-shortcode button:hover, .wildcat-layouts.layout-light .the-text h2 .coupon-shortcode button:hover, .wildcat-layouts.layout-light .the-text h3 .coupon-shortcode button:hover, .wildcat-layouts.layout-light .the-text p .coupon-shortcode button:hover, .wildcat-layouts.layout-light .the-text ul .coupon-shortcode button:hover, .wildcat-layouts.layout-light .the-text li .coupon-shortcode button:hover, .wildcat-layouts.layout-light .the-text .primary-text .coupon-shortcode button:hover, .wildcat-layouts.layout-light .the-text .secondary-text .coupon-shortcode button:hover {
  color: #000000;
  background-color: #ffffff;
}

body.archive .archive-page-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body.archive .archive-page-navigation button.filter-sort {
  margin-bottom: var(--spacing-06);
  display: flex;
  width: 100%;
  text-align: center;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  width: unset;
}
body.archive .archive-page-navigation button.filter-sort::before {
  content: "\e96a";
  font-family: WCfeather;
  font-size: var(--font-size-m);
  padding-right: 8px;
}
body.archive .woocommerce-breadcrumb {
  margin-top: var(--spacing-03);
}
body.archive .related-categories-headline {
  margin-bottom: 0;
}
body.archive .related-categories-bottom {
  margin-bottom: var(--spacing-10);
}
body.archive .term-description {
  max-height: 300px;
  overflow-y: auto;
  margin-bottom: var(--spacing-10);
}
@media (min-width: 767px) {
  body.archive .term-description {
    max-height: unset;
  }
}
body.archive .term-description h1, body.archive .term-description h2, body.archive .term-description h3, body.archive .term-description h4, body.archive .term-description h5, body.archive .term-description h6 {
  margin: var(--spacing-05) 0 var(--spacing-03) 0;
}
body.archive .term-description h1, body.archive .term-description h2 {
  font-size: var(--font-size-m);
}
body.archive .term-description h3 {
  font-size: var(--font-size-s);
}
body.archive .term-description h4, body.archive .term-description h5, body.archive .term-description h6 {
  font-size: var(--font-size-s);
}
body.archive .term-description p, body.archive .term-description li {
  font-size: var(--font-size-xs);
  line-height: var(--font-size-s);
  padding: 0;
  margin: var(--spacing-03) 0;
}
body.archive .term-description a {
  font-weight: bolder;
}
body.archive .term-description a:hover {
  color: var(--color-accent);
}
body.archive .term-description ul, body.archive .term-description ol {
  padding: 0 var(--spacing-04);
}

.woocommerce ul.products::before {
  display: none;
}

body.single-product .pro-flash-container, .pling-shop-the-look .pro-flash-container {
  margin: var(--spacing-03) 0;
}
body.single-product .woocommerce-breadcrumb, .pling-shop-the-look .woocommerce-breadcrumb {
  margin-bottom: var(--spacing-03);
}
body.single-product .woocommerce-notices-wrapper:has(*), .pling-shop-the-look .woocommerce-notices-wrapper:has(*) {
  padding: var(--spacing-03) 0;
}
body.single-product .buying-box-summary-content, .pling-shop-the-look .buying-box-summary-content {
  margin-top: var(--spacing-10);
}
body.single-product .buying-box-summary-content .woo-variation-product-gallery, .pling-shop-the-look .buying-box-summary-content .woo-variation-product-gallery {
  max-width: 100% !important;
}
body.single-product .woocommerce-product-details__short-description, .pling-shop-the-look .woocommerce-product-details__short-description {
  margin: var(--spacing-03) 0 var(--spacing-03) 0;
}
body.single-product .woocommerce-product-details__short-description p, .pling-shop-the-look .woocommerce-product-details__short-description p {
  padding: 0 !important;
}
body.single-product .product-trust-features, .pling-shop-the-look .product-trust-features {
  margin-bottom: var(--spacing-03);
  margin-top: 0;
}
body.single-product .entry-summary, .pling-shop-the-look .entry-summary {
  width: 100% !important;
  float: none !important;
}
@media (min-width: 1024px) {
  body.single-product .entry-summary, .pling-shop-the-look .entry-summary {
    padding-bottom: 150px;
  }
}
body.single-product .product_meta, .pling-shop-the-look .product_meta {
  margin-top: var(--spacing-03);
}
body.single-product.product-type-variable .size-chart-inner, .pling-shop-the-look.product-type-variable .size-chart-inner {
  margin-top: var(--spacing-02);
  margin-bottom: var(--spacing-02);
}
body.single-product.product-type-simple .size-chart-inner, .pling-shop-the-look.product-type-simple .size-chart-inner {
  margin-top: var(--spacing-02);
  margin-bottom: var(--spacing-02);
}
@media (min-width: 1024px) {
  body.single-product .buying-box-summary-content, .pling-shop-the-look .buying-box-summary-content {
    display: flex;
    gap: var(--spacing-06);
    justify-content: space-between;
    align-items: flex-start; /* Ensure items align properly in flexbox */
  }
  body.single-product .buying-box-summary-content .woo-variation-product-gallery, .pling-shop-the-look .buying-box-summary-content .woo-variation-product-gallery {
    position: sticky;
    top: 0;
    max-width: 60% !important;
  }
  body.single-product .buying-box-summary-content .woo-variation-product-gallery img, .pling-shop-the-look .buying-box-summary-content .woo-variation-product-gallery img {
    max-width: 660px;
  }
  body.single-product .buying-box-summary-content .entry-summary, .pling-shop-the-look .buying-box-summary-content .entry-summary {
    max-width: 500px !important;
    margin-bottom: 0 !important;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1150px) {
  body.single-product .buying-box-summary-content, .pling-shop-the-look .buying-box-summary-content {
    gap: var(--spacing-15);
  }
}
body.single-product .b2b-user-unvalidated, .pling-shop-the-look .b2b-user-unvalidated {
  margin: var(--spacing-03) 0 var(--spacing-05) 0;
}

body.single-product .product-actions, .pling-shop-the-look .product-actions {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: var(--spacing-05) var(--spacing-03);
}
body.single-product .product-actions a:link, body.single-product .product-actions a:visited, body.single-product .product-actions button, .pling-shop-the-look .product-actions a:link, .pling-shop-the-look .product-actions a:visited, .pling-shop-the-look .product-actions button {
  font-family: var(--font-family-body);
  font-size: var(--font-size-xs);
}
body.single-product .product-actions a:link:hover, body.single-product .product-actions a:visited:hover, body.single-product .product-actions button:hover, .pling-shop-the-look .product-actions a:link:hover, .pling-shop-the-look .product-actions a:visited:hover, .pling-shop-the-look .product-actions button:hover {
  color: var(--color-accent);
}
body.single-product .product-page-trusted-widget-sidebar, .pling-shop-the-look .product-page-trusted-widget-sidebar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  column-gap: 15px;
}
body.single-product .product-page-trusted-widget-sidebar .trusted-shop-icon-wrapper, .pling-shop-the-look .product-page-trusted-widget-sidebar .trusted-shop-icon-wrapper {
  height: 54px;
  width: 54px;
}
body.single-product .product-page-trusted-widget-sidebar .trusted-shop-icon-wrapper img, .pling-shop-the-look .product-page-trusted-widget-sidebar .trusted-shop-icon-wrapper img {
  width: 100%;
  height: auto;
}
body.single-product .product-description p, body.single-product .product-description ul, body.single-product .product-description li, body.single-product .product-description ol, body.single-product .product-description h1, body.single-product .product-description h2, body.single-product .product-description h3, body.single-product .product-description h4, body.single-product .product-description h5, body.single-product .product-description h6, body.single-product .woocommerce-product-details__short-description p, body.single-product .woocommerce-product-details__short-description ul, body.single-product .woocommerce-product-details__short-description li, body.single-product .woocommerce-product-details__short-description ol, body.single-product .woocommerce-product-details__short-description h1, body.single-product .woocommerce-product-details__short-description h2, body.single-product .woocommerce-product-details__short-description h3, body.single-product .woocommerce-product-details__short-description h4, body.single-product .woocommerce-product-details__short-description h5, body.single-product .woocommerce-product-details__short-description h6, .pling-shop-the-look .product-description p, .pling-shop-the-look .product-description ul, .pling-shop-the-look .product-description li, .pling-shop-the-look .product-description ol, .pling-shop-the-look .product-description h1, .pling-shop-the-look .product-description h2, .pling-shop-the-look .product-description h3, .pling-shop-the-look .product-description h4, .pling-shop-the-look .product-description h5, .pling-shop-the-look .product-description h6, .pling-shop-the-look .woocommerce-product-details__short-description p, .pling-shop-the-look .woocommerce-product-details__short-description ul, .pling-shop-the-look .woocommerce-product-details__short-description li, .pling-shop-the-look .woocommerce-product-details__short-description ol, .pling-shop-the-look .woocommerce-product-details__short-description h1, .pling-shop-the-look .woocommerce-product-details__short-description h2, .pling-shop-the-look .woocommerce-product-details__short-description h3, .pling-shop-the-look .woocommerce-product-details__short-description h4, .pling-shop-the-look .woocommerce-product-details__short-description h5, .pling-shop-the-look .woocommerce-product-details__short-description h6 {
  font-size: var(--font-size-xs);
  line-height: var(--font-size-s);
}
body.single-product .product-description p, body.single-product .product-description ul, body.single-product .product-description ol, body.single-product .product-description h1, body.single-product .product-description h2, body.single-product .product-description h3, body.single-product .product-description h4, body.single-product .product-description h5, body.single-product .product-description h6, body.single-product .woocommerce-product-details__short-description p, body.single-product .woocommerce-product-details__short-description ul, body.single-product .woocommerce-product-details__short-description ol, body.single-product .woocommerce-product-details__short-description h1, body.single-product .woocommerce-product-details__short-description h2, body.single-product .woocommerce-product-details__short-description h3, body.single-product .woocommerce-product-details__short-description h4, body.single-product .woocommerce-product-details__short-description h5, body.single-product .woocommerce-product-details__short-description h6, .pling-shop-the-look .product-description p, .pling-shop-the-look .product-description ul, .pling-shop-the-look .product-description ol, .pling-shop-the-look .product-description h1, .pling-shop-the-look .product-description h2, .pling-shop-the-look .product-description h3, .pling-shop-the-look .product-description h4, .pling-shop-the-look .product-description h5, .pling-shop-the-look .product-description h6, .pling-shop-the-look .woocommerce-product-details__short-description p, .pling-shop-the-look .woocommerce-product-details__short-description ul, .pling-shop-the-look .woocommerce-product-details__short-description ol, .pling-shop-the-look .woocommerce-product-details__short-description h1, .pling-shop-the-look .woocommerce-product-details__short-description h2, .pling-shop-the-look .woocommerce-product-details__short-description h3, .pling-shop-the-look .woocommerce-product-details__short-description h4, .pling-shop-the-look .woocommerce-product-details__short-description h5, .pling-shop-the-look .woocommerce-product-details__short-description h6 {
  padding: 0 0 var(--spacing-05) 0;
  margin: 0;
}
body.single-product .product-description p:last-child, body.single-product .product-description ul:last-child, body.single-product .product-description ol:last-child, body.single-product .product-description h1:last-child, body.single-product .product-description h2:last-child, body.single-product .product-description h3:last-child, body.single-product .product-description h4:last-child, body.single-product .product-description h5:last-child, body.single-product .product-description h6:last-child, body.single-product .woocommerce-product-details__short-description p:last-child, body.single-product .woocommerce-product-details__short-description ul:last-child, body.single-product .woocommerce-product-details__short-description ol:last-child, body.single-product .woocommerce-product-details__short-description h1:last-child, body.single-product .woocommerce-product-details__short-description h2:last-child, body.single-product .woocommerce-product-details__short-description h3:last-child, body.single-product .woocommerce-product-details__short-description h4:last-child, body.single-product .woocommerce-product-details__short-description h5:last-child, body.single-product .woocommerce-product-details__short-description h6:last-child, .pling-shop-the-look .product-description p:last-child, .pling-shop-the-look .product-description ul:last-child, .pling-shop-the-look .product-description ol:last-child, .pling-shop-the-look .product-description h1:last-child, .pling-shop-the-look .product-description h2:last-child, .pling-shop-the-look .product-description h3:last-child, .pling-shop-the-look .product-description h4:last-child, .pling-shop-the-look .product-description h5:last-child, .pling-shop-the-look .product-description h6:last-child, .pling-shop-the-look .woocommerce-product-details__short-description p:last-child, .pling-shop-the-look .woocommerce-product-details__short-description ul:last-child, .pling-shop-the-look .woocommerce-product-details__short-description ol:last-child, .pling-shop-the-look .woocommerce-product-details__short-description h1:last-child, .pling-shop-the-look .woocommerce-product-details__short-description h2:last-child, .pling-shop-the-look .woocommerce-product-details__short-description h3:last-child, .pling-shop-the-look .woocommerce-product-details__short-description h4:last-child, .pling-shop-the-look .woocommerce-product-details__short-description h5:last-child, .pling-shop-the-look .woocommerce-product-details__short-description h6:last-child {
  padding-bottom: var(--spacing-03);
}
body.single-product .product-data-table p.product-attribute, .pling-shop-the-look .product-data-table p.product-attribute {
  display: flex;
}
body.single-product .product-data-table p.product-attribute .label, .pling-shop-the-look .product-data-table p.product-attribute .label {
  font-weight: bold;
  width: 150px;
}
body.single-product .product-data-table p.product-attribute .value, .pling-shop-the-look .product-data-table p.product-attribute .value {
  width: 80%;
}
body.single-product .product-data-table p.product-attribute, .pling-shop-the-look .product-data-table p.product-attribute {
  margin-bottom: 10px;
}
body.single-product .product-data-table p.product-attribute a:link, body.single-product .product-data-table p.product-attribute a:visited, body.single-product .product-data-table p.product-attribute a:active, .pling-shop-the-look .product-data-table p.product-attribute a:link, .pling-shop-the-look .product-data-table p.product-attribute a:visited, .pling-shop-the-look .product-data-table p.product-attribute a:active {
  text-decoration: none;
}
body.single-product .product-data-table p.product-attribute a:hover, .pling-shop-the-look .product-data-table p.product-attribute a:hover {
  color: var(--color-accent);
}
body.single-product .price.single, .pling-shop-the-look .price.single {
  margin-bottom: var(--spacing-05);
}
body.single-product .variations, .pling-shop-the-look .variations {
  margin-bottom: 0 !important;
}
body.single-product .variations label.attribute-label, .pling-shop-the-look .variations label.attribute-label {
  display: none;
}
body.single-product .woocommerce-variation-add-to-cart,
body.single-product form.cart, .pling-shop-the-look .woocommerce-variation-add-to-cart,
.pling-shop-the-look form.cart {
  margin: 0 0 0 0;
  width: 100%;
  display: flex;
  flex-direction: column;
}
body.single-product .woocommerce-variation-add-to-cart .inner,
body.single-product form.cart .inner, .pling-shop-the-look .woocommerce-variation-add-to-cart .inner,
.pling-shop-the-look form.cart .inner {
  display: flex;
  flex-flow: row nowrap;
  gap: 5px;
  max-width: 400px;
}
@media (min-width: 767px) {
  body.single-product .woocommerce-variation-add-to-cart .inner,
  body.single-product form.cart .inner, .pling-shop-the-look .woocommerce-variation-add-to-cart .inner,
  .pling-shop-the-look form.cart .inner {
    justify-content: flex-start;
  }
}
body.single-product .woocommerce-variation-add-to-cart .inner .quantity.hidden,
body.single-product form.cart .inner .quantity.hidden, .pling-shop-the-look .woocommerce-variation-add-to-cart .inner .quantity.hidden,
.pling-shop-the-look form.cart .inner .quantity.hidden {
  display: none;
}
body.single-product .woocommerce-variation-add-to-cart .inner .quantity input, body.single-product .woocommerce-variation-add-to-cart .inner .quantity .quantity,
body.single-product form.cart .inner .quantity input,
body.single-product form.cart .inner .quantity .quantity, .pling-shop-the-look .woocommerce-variation-add-to-cart .inner .quantity input, .pling-shop-the-look .woocommerce-variation-add-to-cart .inner .quantity .quantity,
.pling-shop-the-look form.cart .inner .quantity input,
.pling-shop-the-look form.cart .inner .quantity .quantity {
  text-align: center;
  max-width: 60px;
}
body.single-product .woocommerce-variation-add-to-cart .inner .quantity input::-webkit-outer-spin-button,
body.single-product .woocommerce-variation-add-to-cart .inner .quantity input::-webkit-inner-spin-button,
body.single-product form.cart .inner .quantity input::-webkit-outer-spin-button,
body.single-product form.cart .inner .quantity input::-webkit-inner-spin-button, .pling-shop-the-look .woocommerce-variation-add-to-cart .inner .quantity input::-webkit-outer-spin-button,
.pling-shop-the-look .woocommerce-variation-add-to-cart .inner .quantity input::-webkit-inner-spin-button,
.pling-shop-the-look form.cart .inner .quantity input::-webkit-outer-spin-button,
.pling-shop-the-look form.cart .inner .quantity input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}
body.single-product .woocommerce-variation-add-to-cart .inner .quantity input[type=number],
body.single-product form.cart .inner .quantity input[type=number], .pling-shop-the-look .woocommerce-variation-add-to-cart .inner .quantity input[type=number],
.pling-shop-the-look form.cart .inner .quantity input[type=number] {
  -moz-appearance: textfield; /* Firefox */
}
body.single-product .woocommerce-variation-add-to-cart .inner .quantity-step-wrapper,
body.single-product form.cart .inner .quantity-step-wrapper, .pling-shop-the-look .woocommerce-variation-add-to-cart .inner .quantity-step-wrapper,
.pling-shop-the-look form.cart .inner .quantity-step-wrapper {
  display: flex;
  flex-wrap: nowrap;
  gap: 5px;
}
@media (min-width: 1024px) {
  body.single-product .woocommerce-variation-add-to-cart .inner .quantity-step-wrapper,
  body.single-product form.cart .inner .quantity-step-wrapper, .pling-shop-the-look .woocommerce-variation-add-to-cart .inner .quantity-step-wrapper,
  .pling-shop-the-look form.cart .inner .quantity-step-wrapper {
    display: flex;
    flex-wrap: nowrap;
    flex: 1 0 100%;
    gap: 5px;
  }
  body.single-product .woocommerce-variation-add-to-cart .inner .quantity-step-wrapper input, body.single-product .woocommerce-variation-add-to-cart .inner .quantity-step-wrapper .quantity,
  body.single-product form.cart .inner .quantity-step-wrapper input,
  body.single-product form.cart .inner .quantity-step-wrapper .quantity, .pling-shop-the-look .woocommerce-variation-add-to-cart .inner .quantity-step-wrapper input, .pling-shop-the-look .woocommerce-variation-add-to-cart .inner .quantity-step-wrapper .quantity,
  .pling-shop-the-look form.cart .inner .quantity-step-wrapper input,
  .pling-shop-the-look form.cart .inner .quantity-step-wrapper .quantity {
    width: 100%;
    max-width: 100%;
  }
  body.single-product .woocommerce-variation-add-to-cart .inner .quantity-step-wrapper button,
  body.single-product form.cart .inner .quantity-step-wrapper button, .pling-shop-the-look .woocommerce-variation-add-to-cart .inner .quantity-step-wrapper button,
  .pling-shop-the-look form.cart .inner .quantity-step-wrapper button {
    margin: 0 !important;
    padding: 17px;
  }
}
body.single-product .woocommerce-variation-add-to-cart .inner .single_add_to_cart_button,
body.single-product form.cart .inner .single_add_to_cart_button, .pling-shop-the-look .woocommerce-variation-add-to-cart .inner .single_add_to_cart_button,
.pling-shop-the-look form.cart .inner .single_add_to_cart_button {
  flex: 1 1 60%;
}
body.single-product .woocommerce-variation-add-to-cart .inner .pling-wishlist-button,
body.single-product form.cart .inner .pling-wishlist-button, .pling-shop-the-look .woocommerce-variation-add-to-cart .inner .pling-wishlist-button,
.pling-shop-the-look form.cart .inner .pling-wishlist-button {
  margin: 0;
}
body.single-product .product.type-product, .pling-shop-the-look .product.type-product {
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 1024px) {
  body.single-product .product.type-product, .pling-shop-the-look .product.type-product {
    flex-flow: column nowrap;
  }
}
body.single-product .product.type-product .summary.entry-summary, .pling-shop-the-look .product.type-product .summary.entry-summary {
  display: flex;
  flex-flow: column nowrap;
  align-items: stretch;
}
body.single-product .product.type-product .summary.entry-summary .collection, .pling-shop-the-look .product.type-product .summary.entry-summary .collection {
  font-size: var(--font-size-sx);
  line-height: var(--font-size-xs);
  color: var(--grey);
  margin-bottom: var(--spacing-02);
  font-family: var(--font-family-headline);
  font-weight: 300;
}
body.single-product .product.type-product .summary.entry-summary .collection a:link, body.single-product .product.type-product .summary.entry-summary .collection a:visited, .pling-shop-the-look .product.type-product .summary.entry-summary .collection a:link, .pling-shop-the-look .product.type-product .summary.entry-summary .collection a:visited {
  text-decoration: none;
  color: var(--grey);
}
body.single-product .product.type-product .summary.entry-summary .collection a:link:hover, body.single-product .product.type-product .summary.entry-summary .collection a:visited:hover, .pling-shop-the-look .product.type-product .summary.entry-summary .collection a:link:hover, .pling-shop-the-look .product.type-product .summary.entry-summary .collection a:visited:hover {
  color: var(--color-accent);
}
body.single-product .product.type-product .summary.entry-summary .product_title, .pling-shop-the-look .product.type-product .summary.entry-summary .product_title {
  margin: var(--spacing-01) 0 0 0;
  display: flex;
  flex-direction: column;
  font-size: var(--font-size-l);
}
@media (min-width: 767px) {
  body.single-product .product.type-product .summary.entry-summary .product_title, .pling-shop-the-look .product.type-product .summary.entry-summary .product_title {
    font-size: var(--font-size-xl);
  }
}
body.single-product .product.type-product .summary.entry-summary .product_title .product-category-in-product-title:after, .pling-shop-the-look .product.type-product .summary.entry-summary .product_title .product-category-in-product-title:after {
  content: ": ";
}
body.single-product .product.type-product .summary.entry-summary .product-not-available-notice, .pling-shop-the-look .product.type-product .summary.entry-summary .product-not-available-notice {
  background-color: var(--grey-1);
  padding: var(--spacing-05);
  margin: var(--spacing-03) 0;
}
body.single-product .product.type-product .summary.entry-summary .product-not-available-notice a:link:hover, body.single-product .product.type-product .summary.entry-summary .product-not-available-notice a:visited:hover, .pling-shop-the-look .product.type-product .summary.entry-summary .product-not-available-notice a:link:hover, .pling-shop-the-look .product.type-product .summary.entry-summary .product-not-available-notice a:visited:hover {
  color: var(--color-accent);
}
body.single-product .product.type-product .summary.entry-summary .sku_wrapper, .pling-shop-the-look .product.type-product .summary.entry-summary .sku_wrapper {
  color: var(--text-color-on-bright-2);
  font-family: var(--font-family-headline);
  font-size: var(--font-size-xs);
  line-height: var(--font-size-xs);
}
body.single-product .product.type-product .summary.entry-summary .sku_wrapper .label, .pling-shop-the-look .product.type-product .summary.entry-summary .sku_wrapper .label {
  display: none;
}
body.single-product .product.type-product .summary.entry-summary .stock, body.single-product .product.type-product .summary.entry-summary p.stock, body.single-product .product.type-product .summary.entry-summary .countdown-placeholder, .pling-shop-the-look .product.type-product .summary.entry-summary .stock, .pling-shop-the-look .product.type-product .summary.entry-summary p.stock, .pling-shop-the-look .product.type-product .summary.entry-summary .countdown-placeholder {
  padding: 0;
  margin: 0;
  display: block;
  font-family: var(--font-family-body);
  font-size: var(--font-size-xs);
  line-height: var(--font-size-xs);
  color: var(--grey);
  margin-top: var(--spacing-03);
  margin-bottom: var(--spacing-03);
}
body.single-product .product.type-product .summary.entry-summary .countdown-placeholder, .pling-shop-the-look .product.type-product .summary.entry-summary .countdown-placeholder {
  margin-top: calc(var(--spacing-03) * -1);
  margin-bottom: var(--spacing-03);
}
body.single-product .product.type-product .summary.entry-summary .pling-waitlist-form, .pling-shop-the-look .product.type-product .summary.entry-summary .pling-waitlist-form {
  border: var(--spacing-03) solid var(--color-accent);
  padding: var(--spacing-03);
  margin-top: -50px;
  position: relative;
  background-color: #ffffff;
}
body.single-product .product.type-product .summary.entry-summary .pling-waitlist-form .join-waitlist-button, .pling-shop-the-look .product.type-product .summary.entry-summary .pling-waitlist-form .join-waitlist-button {
  float: none !important;
}
body.single-product .product.type-product .summary.entry-summary .pling-waitlist-form .pling-waitlist-form-messages, .pling-shop-the-look .product.type-product .summary.entry-summary .pling-waitlist-form .pling-waitlist-form-messages {
  margin-top: var(--spacing-03);
  position: static !important;
}
body.single-product .product.type-product .summary.entry-summary .pling-waitlist-form .pling-waitlist-form-messages .woocommerce-message, body.single-product .product.type-product .summary.entry-summary .pling-waitlist-form .pling-waitlist-form-messages .woocommerce-error, body.single-product .product.type-product .summary.entry-summary .pling-waitlist-form .pling-waitlist-form-messages .woocommerce-info, .pling-shop-the-look .product.type-product .summary.entry-summary .pling-waitlist-form .pling-waitlist-form-messages .woocommerce-message, .pling-shop-the-look .product.type-product .summary.entry-summary .pling-waitlist-form .pling-waitlist-form-messages .woocommerce-error, .pling-shop-the-look .product.type-product .summary.entry-summary .pling-waitlist-form .pling-waitlist-form-messages .woocommerce-info {
  margin-bottom: 0 !important;
}
body.single-product .product.type-product .summary.entry-summary .pling-product-usp-features, .pling-shop-the-look .product.type-product .summary.entry-summary .pling-product-usp-features {
  padding: 30px 0;
}
body.single-product .product.type-product .summary.entry-summary .pling-product-usp-features .pling-usp-feature, .pling-shop-the-look .product.type-product .summary.entry-summary .pling-product-usp-features .pling-usp-feature {
  background: #efefef;
}
body.single-product .product.type-product .summary.entry-summary .pling-product-usp-features .icon, .pling-shop-the-look .product.type-product .summary.entry-summary .pling-product-usp-features .icon {
  color: #000;
}
body.single-product .product.type-product .summary.entry-summary .pling-product-usp-features .pling-usp-feature-name, .pling-shop-the-look .product.type-product .summary.entry-summary .pling-product-usp-features .pling-usp-feature-name {
  font-family: var(--font-family-headline);
  font-weight: 400;
  font-style: italic;
}
body.single-product .product.type-product .summary.entry-summary .price .sale-label-wrapper, .pling-shop-the-look .product.type-product .summary.entry-summary .price .sale-label-wrapper {
  order: 20;
  display: block;
  margin-top: var(--spacing-05);
}
body.single-product .product.type-product .summary.entry-summary .quantity input, .pling-shop-the-look .product.type-product .summary.entry-summary .quantity input {
  background-color: transparent;
  height: 100%;
}
body.single-product .product.type-product .summary.entry-summary .product_meta, .pling-shop-the-look .product.type-product .summary.entry-summary .product_meta {
  font-size: var(--font-size-xs);
  margin: 0;
}
body.single-product .product.type-product .summary.entry-summary .product_meta .posted_in, body.single-product .product.type-product .summary.entry-summary .product_meta .tagged_as, .pling-shop-the-look .product.type-product .summary.entry-summary .product_meta .posted_in, .pling-shop-the-look .product.type-product .summary.entry-summary .product_meta .tagged_as {
  display: none;
}
body.single-product #variation-selector, .pling-shop-the-look #variation-selector {
  margin: 0;
}
body.single-product #variation-selector .secondary-button-outlined, .pling-shop-the-look #variation-selector .secondary-button-outlined {
  border-color: var(--grey-7);
  color: var(--grey-7);
}
body.single-product .single_variation_wrap.first, .pling-shop-the-look .single_variation_wrap.first {
  order: 1;
}
body.single-product .single_variation_wrap.first .single_variation .woocommerce-variation-availability, .pling-shop-the-look .single_variation_wrap.first .single_variation .woocommerce-variation-availability {
  display: none;
}
body.single-product.product-type-variable .pling-product-usp-features, .pling-shop-the-look.product-type-variable .pling-product-usp-features {
  order: 2;
}
body.single-product.product-type-variable .variations, .pling-shop-the-look.product-type-variable .variations {
  order: 3;
}
body.single-product .single_variation_wrap.second, .pling-shop-the-look .single_variation_wrap.second {
  width: 100%;
  order: 4;
}
body.single-product .single_variation_wrap.second .single_variation .woocommerce-variation-description,
body.single-product .single_variation_wrap.second .single_variation .woocommerce-variation-price, .pling-shop-the-look .single_variation_wrap.second .single_variation .woocommerce-variation-description,
.pling-shop-the-look .single_variation_wrap.second .single_variation .woocommerce-variation-price {
  display: none;
}
body.single-product .single_variation_wrap.second .single_variation .woocommerce-variation-availability, .pling-shop-the-look .single_variation_wrap.second .single_variation .woocommerce-variation-availability {
  display: block;
}
body.single-product .variation-reset-link-holder, .pling-shop-the-look .variation-reset-link-holder {
  gap: var(--spacing-02);
  display: none;
}
body.single-product.selected-variation-options .variation-reset-link-holder, body.single-product.variation-selected .variation-reset-link-holder, .pling-shop-the-look.selected-variation-options .variation-reset-link-holder, .pling-shop-the-look.variation-selected .variation-reset-link-holder {
  display: flex;
  padding: 20px 0 15px 0;
}
body.single-product.selected-variation-options .wildcat-tweaks_match-box, body.single-product.variation-selected .wildcat-tweaks_match-box, .pling-shop-the-look.selected-variation-options .wildcat-tweaks_match-box, .pling-shop-the-look.variation-selected .wildcat-tweaks_match-box {
  margin-top: 0;
}
body.single-product.selected-variation-options .summary .reset_variations, body.single-product.variation-selected .summary .reset_variations, .pling-shop-the-look.selected-variation-options .summary .reset_variations, .pling-shop-the-look.variation-selected .summary .reset_variations {
  display: inline-flex !important;
}
body.single-product .b2b-exclusive-box, .pling-shop-the-look .b2b-exclusive-box {
  margin-top: var(--spacing-05);
  padding: var(--spacing-05);
  font-weight: bold;
  background-color: var(--grey-3);
}
body.single-product .volume-price-display, .pling-shop-the-look .volume-price-display {
  margin-bottom: var(--spacing-03);
  font-size: var(--font-size-xs);
  width: 100%;
}
body.single-product .volume-price-display h2, .pling-shop-the-look .volume-price-display h2 {
  display: none;
}
body.single-product .volume-price-display .v-quantity, .pling-shop-the-look .volume-price-display .v-quantity {
  text-align: left;
}
body.single-product .volume-price-display .v-price, .pling-shop-the-look .volume-price-display .v-price {
  text-align: right;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body.single-product .volume-price-display .v-price bdi, .pling-shop-the-look .volume-price-display .v-price bdi {
  font-weight: bold;
  padding-right: var(--spacing-02);
}
body.single-product .volume-price-display .v-price .woocommerce-price-suffix, .pling-shop-the-look .volume-price-display .v-price .woocommerce-price-suffix {
  line-height: var(--font-size-xxs);
}
body.single-product .volume-price-display .volume-price-table, .pling-shop-the-look .volume-price-display .volume-price-table {
  width: 100%;
  margin: 0;
}
body.single-product .volume-price-display .volume-price-table th, body.single-product .volume-price-display .volume-price-table td, .pling-shop-the-look .volume-price-display .volume-price-table th, .pling-shop-the-look .volume-price-display .volume-price-table td {
  vertical-align: top;
}
body.single-product .volume-price-display .price-info, .pling-shop-the-look .volume-price-display .price-info {
  font-size: var(--font-size-xxs);
  line-height: var(--font-size-xxs);
  text-align: right;
}

.woocommerce.single-product .woocommerce-product-gallery, .pling-shop-the-look .woocommerce-product-gallery {
  background: red;
}
.woocommerce.single-product .woocommerce-product-gallery .flex-control-thumbs, .pling-shop-the-look .woocommerce-product-gallery .flex-control-thumbs {
  display: flex;
}
.woocommerce.single-product .woocommerce-product-gallery .flex-control-thumbs li, .pling-shop-the-look .woocommerce-product-gallery .flex-control-thumbs li {
  width: 70px !important;
}
.woocommerce.single-product .woo-variation-product-gallery .woo-variation-gallery-thumbnail-wrapper, .pling-shop-the-look .woo-variation-product-gallery .woo-variation-gallery-thumbnail-wrapper {
  padding: var(--spacing-03) !important;
  margin-top: var(--spacing-10);
}
.woocommerce.single-product .woo-variation-product-gallery .woo-variation-gallery-thumbnail-wrapper .wvg-gallery-thumbnail-image img, .pling-shop-the-look .woo-variation-product-gallery .woo-variation-gallery-thumbnail-wrapper .wvg-gallery-thumbnail-image img {
  outline: 1px solid var(--grey-3);
}
@media (min-width: 1024px) {
  .woocommerce.single-product .woo-variation-product-gallery .woo-variation-gallery-thumbnail-wrapper, .pling-shop-the-look .woo-variation-product-gallery .woo-variation-gallery-thumbnail-wrapper {
    margin-top: 0;
  }
}
.woocommerce.single-product .woo-variation-product-gallery.woo-variation-gallery-enabled-thumbnail-slider .woo-variation-gallery-thumbnail-position-left-bottom .woo-variation-gallery-slider-wrapper .icon, .pling-shop-the-look .woo-variation-product-gallery.woo-variation-gallery-enabled-thumbnail-slider .woo-variation-gallery-thumbnail-position-left-bottom .woo-variation-gallery-slider-wrapper .icon {
  color: #000;
}
.woocommerce.single-product .woo-variation-product-gallery.woo-variation-gallery-enabled-thumbnail-slider .woo-variation-gallery-thumbnail-position-left-bottom .woo-variation-gallery-slider-wrapper .woo-variation-gallery-trigger, .woocommerce.single-product .woo-variation-product-gallery.woo-variation-gallery-enabled-thumbnail-slider .woo-variation-gallery-thumbnail-position-left-bottom .woo-variation-gallery-slider-wrapper .product-3d-view-link, .pling-shop-the-look .woo-variation-product-gallery.woo-variation-gallery-enabled-thumbnail-slider .woo-variation-gallery-thumbnail-position-left-bottom .woo-variation-gallery-slider-wrapper .woo-variation-gallery-trigger, .pling-shop-the-look .woo-variation-product-gallery.woo-variation-gallery-enabled-thumbnail-slider .woo-variation-gallery-thumbnail-position-left-bottom .woo-variation-gallery-slider-wrapper .product-3d-view-link {
  width: 30px;
  height: 30px;
  padding: 5px;
}
@media screen and (min-width: 950px) {
  .woocommerce.single-product .woo-variation-product-gallery.woo-variation-gallery-enabled-thumbnail-slider .woo-variation-gallery-thumbnail-position-left-bottom .woo-variation-gallery-slider-wrapper .woo-variation-gallery-trigger, .woocommerce.single-product .woo-variation-product-gallery.woo-variation-gallery-enabled-thumbnail-slider .woo-variation-gallery-thumbnail-position-left-bottom .woo-variation-gallery-slider-wrapper .product-3d-view-link, .pling-shop-the-look .woo-variation-product-gallery.woo-variation-gallery-enabled-thumbnail-slider .woo-variation-gallery-thumbnail-position-left-bottom .woo-variation-gallery-slider-wrapper .woo-variation-gallery-trigger, .pling-shop-the-look .woo-variation-product-gallery.woo-variation-gallery-enabled-thumbnail-slider .woo-variation-gallery-thumbnail-position-left-bottom .woo-variation-gallery-slider-wrapper .product-3d-view-link {
    width: 45px;
    height: 45px;
    padding: 0;
  }
}

body.single-product.product-type-variable.variation-selected .price.single.variable, .pling-shop-the-look.variation-selected .price.single.variable {
  display: none;
}
body.single-product.product-type-variable.variation-selected .woocommerce-variation-add-to-cart, .pling-shop-the-look.variation-selected .woocommerce-variation-add-to-cart {
  opacity: 1;
}
body.single-product.product-type-variable.variation-selected .woocommerce-product-gallery, .pling-shop-the-look.variation-selected .woocommerce-product-gallery {
  pointer-events: none;
}
body.single-product.product-type-variable.variation-selected .flex-control-thumbs li, .pling-shop-the-look.variation-selected .flex-control-thumbs li {
  display: none;
}
body.single-product.product-type-variable.variation-selected .flex-control-thumbs li:first-child, .pling-shop-the-look.variation-selected .flex-control-thumbs li:first-child {
  display: block;
}

@media screen and (max-width: 900px) {
  body.single-product #quickorder-toggle, .pling-shop-the-look #quickorder-toggle {
    display: none !important;
  }
  body.single-product .pling-quickorder, .pling-shop-the-look .pling-quickorder {
    display: none !important;
  }
}

.woocommerce-form.woocommerce-form-register .form-content #account_type_selector_field input[type=radio] + label::before {
  background-image: url("../assets/icons/registration/b2c-black.png");
}
.woocommerce-form.woocommerce-form-register .form-content #account_type_selector_field input[type=radio] + label[for=account_type_selector_b2b]:before {
  background-image: url("../assets/icons/registration/b2b-black.png");
}
.woocommerce-form.woocommerce-form-register .form-content #account_type_selector_field input[type=radio]:checked + label {
  background-color: var(--color-accent);
  color: #ffffff;
}
.woocommerce-form.woocommerce-form-register .form-content #account_type_selector_field input[type=radio]:checked + label::before {
  background-image: url("../assets/icons/registration/b2c-white.png");
}
.woocommerce-form.woocommerce-form-register .form-content #account_type_selector_field input[type=radio]:checked + label[for=account_type_selector_b2b]:before {
  background-image: url("../assets/icons/registration/b2b-white.png");
}

body.woocommerce-account .content-area {
  padding: 0 !important;
}
@media screen and (max-width: 979px) {
  body.woocommerce-account #promotional-area {
    display: none;
  }
}
@media (max-width: 766px) {
  body.woocommerce-account .woocommerce-MyAccount-content {
    padding-top: 78px;
  }
}

body.woocommerce-cart #content-wrap {
  margin-top: 60px;
}

.woocommerce-order-received .woocommerce-order .thankyou-wrapper {
  display: grid;
  place-items: center;
  place-content: center;
  grid-column: 1;
  grid-row: 1;
}
.woocommerce-order-received .woocommerce-order .thankyou-wrapper .thankyou-animation {
  grid-row: 1/1;
  grid-column: 1/1;
}
.woocommerce-order-received .woocommerce-order .thankyou-wrapper .thankyou-typo {
  grid-row: 1/1;
  grid-column: 1/1;
  max-width: 80%;
  font-size: 3em;
  line-height: 3rem;
}
.woocommerce-order-received .woocommerce-order .thankyou-wrapper .thankyou-typo .customer-name {
  display: block;
  font-size: 0.5em;
  line-height: 0.9em;
}
@media (min-width: 767px) {
  .woocommerce-order-received .woocommerce-order .thankyou-wrapper {
    margin-top: 30px;
    margin-bottom: 65px;
  }
  .woocommerce-order-received .woocommerce-order .thankyou-wrapper .thankyou-typo {
    max-width: unset;
    font-size: 7em;
    line-height: 7rem;
  }
  .woocommerce-order-received .woocommerce-order .thankyou-wrapper .thankyou-typo .customer-name {
    line-height: 0.8em;
  }
}

body.error404 .page-content .image404 {
  width: 100%;
  height: auto;
  margin-bottom: var(--spacing-05);
  max-width: 900px;
}
body.error404 .page-content {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media (min-width: 767px) {
  body.blog #content-wrap {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
@media (max-width: 766px) {
  body.archive .wc-promo-header {
    display: none;
  }
}
body.archive::after {
  content: " ";
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  display: none;
}
body.archive.pling-search-loading::after {
  display: block;
}
body.archive .products {
  padding-bottom: var(--spacing-05);
}
body.archive .products .product:nth-child(1) {
  order: 1;
}
body.archive .products .product:nth-child(2) {
  order: 2;
}
body.archive .products .product:nth-child(3) {
  order: 3;
}
body.archive .products .product:nth-child(4) {
  order: 4;
}
body.archive .products .product:nth-child(5) {
  order: 5;
}
body.archive .products .product:nth-child(6) {
  order: 6;
}
body.archive .products .product:nth-child(7) {
  order: 7;
}
body.archive .products .product:nth-child(8) {
  order: 8;
}
body.archive .products .product:nth-child(9) {
  order: 9;
}
body.archive .products .product:nth-child(10) {
  order: 10;
}
body.archive .products .product:nth-child(11) {
  order: 11;
}
body.archive .products .product:nth-child(12) {
  order: 12;
}
body.archive .products .product:nth-child(13) {
  order: 13;
}
body.archive .products .product:nth-child(14) {
  order: 14;
}
body.archive .products .product:nth-child(15) {
  order: 15;
}
body.archive .products .product:nth-child(16) {
  order: 16;
}
body.archive .products .product:nth-child(17) {
  order: 17;
}
body.archive .products .product:nth-child(18) {
  order: 18;
}
body.archive .products .product:nth-child(19) {
  order: 19;
}
body.archive .products .product:nth-child(20) {
  order: 20;
}
body.archive .products :nth-child(1 of .archive-shop-the-look) {
  order: 5;
}
body.archive .products :nth-last-child(1 of .archive-shop-the-look) {
  order: 13;
}
body.archive .products .archive-shop-the-look {
  grid-column: span 2;
  list-style: none;
  display: flex;
  justify-content: center;
}
body.archive .products .archive-shop-the-look .shop-the-look-item {
  display: flex;
  align-items: center;
  height: 100%;
}
body.archive .products .archive-shop-the-look .shop-the-look-item .shop-the-look-item-container {
  width: 100%;
  height: 100%;
}
body.archive .products .archive-shop-the-look .shop-the-look-item .shop-the-look-item-container .shop-the-look-item-image {
  height: 100%;
}
body.archive .products .archive-shop-the-look .shop-the-look-item .shop-the-look-item-container .shop-the-look-item-image img {
  height: 100%;
  width: 100%;
}
@media (min-width: 767px) {
  body.archive .products :nth-child(1 of .archive-shop-the-look) {
    order: 6;
  }
  body.archive .products :nth-last-child(1 of .archive-shop-the-look) {
    order: 15;
  }
  body.archive .products .archive-shop-the-look {
    grid-column: span 3;
  }
}
@media (min-width: 1024px) {
  body.archive .products :nth-child(1 of .archive-shop-the-look) {
    order: 5;
  }
  body.archive .products :nth-last-child(1 of .archive-shop-the-look) {
    order: 13;
  }
  body.archive .products .archive-shop-the-look .shop-the-look-item .shop-the-look-item-container {
    height: unset;
    width: unset;
  }
  body.archive .products .archive-shop-the-look .shop-the-look-item .shop-the-look-item-container .shop-the-look-item-image img {
    max-height: 500px;
  }
  body.archive .products .archive-shop-the-look {
    grid-column: span 2;
  }
  body.archive .products .archive-shop-the-look .shop-the-look-item {
    max-height: 500px;
  }
}

.archive-page-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-03);
}
@media (max-width: 1023px) {
  .archive-page-wrapper .archive-page-sidebar {
    display: none;
  }
}
@media (min-width: 1024px) {
  .archive-page-wrapper {
    flex-direction: row;
    gap: var(--spacing-10);
  }
  .archive-page-wrapper .archive-page-sidebar {
    min-width: 250px;
  }
  .archive-page-wrapper .archive-page-sidebar ul, .archive-page-wrapper .archive-page-sidebar li {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: var(--font-size-xs);
    text-transform: uppercase;
  }
  .archive-page-wrapper .archive-page-sidebar ul {
    display: flex;
    flex-direction: column;
  }
  .archive-page-wrapper .archive-page-sidebar {
    /* Hide all nested subcategories */
  }
  .archive-page-wrapper .archive-page-sidebar .product-categories .children {
    display: none;
  }
  .archive-page-wrapper .archive-page-sidebar {
    /* Show direct children of active category or its parents */
  }
  .archive-page-wrapper .archive-page-sidebar .product-categories .current-cat > .children,
  .archive-page-wrapper .archive-page-sidebar .product-categories .current-cat-parent > .children {
    display: block;
  }
  .archive-page-wrapper .archive-page-sidebar {
    /* Indent children a bit */
  }
  .archive-page-wrapper .archive-page-sidebar .product-categories .children {
    margin-left: 1rem;
    padding-left: 0.5rem;
  }
  .archive-page-wrapper .archive-page-sidebar .product-categories .children .archive-page-wrapper {
    display: flex;
    gap: var(--spacing-10);
  }
  .archive-page-wrapper .archive-page-sidebar .product-categories .children .archive-page-wrapper .archive-page-sidebar {
    min-width: 250px;
  }
  .archive-page-wrapper .archive-page-sidebar .product-categories .children .archive-page-wrapper .archive-page-sidebar ul, .archive-page-wrapper .archive-page-sidebar .product-categories .children .archive-page-wrapper .archive-page-sidebar li {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: var(--font-size-xs);
    text-transform: uppercase;
  }
  .archive-page-wrapper .archive-page-sidebar .product-categories .children .archive-page-wrapper .archive-page-sidebar ul {
    display: flex;
    flex-direction: column;
  }
  .archive-page-wrapper .archive-page-sidebar .product-categories .children .archive-page-wrapper .archive-page-sidebar {
    /* Hide all nested subcategories */
  }
  .archive-page-wrapper .archive-page-sidebar .product-categories .children .archive-page-wrapper .archive-page-sidebar .product-categories .children {
    display: none;
  }
  .archive-page-wrapper .archive-page-sidebar .product-categories .children .archive-page-wrapper .archive-page-sidebar {
    /* Show direct children of active category or its parents */
  }
  .archive-page-wrapper .archive-page-sidebar .product-categories .children .archive-page-wrapper .archive-page-sidebar .product-categories .current-cat > .children,
  .archive-page-wrapper .archive-page-sidebar .product-categories .children .archive-page-wrapper .archive-page-sidebar .product-categories .current-cat-parent > .children {
    display: block;
  }
  .archive-page-wrapper .archive-page-sidebar .product-categories .children .archive-page-wrapper .archive-page-sidebar {
    /* Indent children a bit */
  }
  .archive-page-wrapper .archive-page-sidebar .product-categories .children .archive-page-wrapper .archive-page-sidebar .product-categories .children {
    margin-left: 1rem;
    padding-left: 0.5rem;
  }
  .archive-page-wrapper .archive-page-sidebar .product-categories .children .archive-page-wrapper .archive-page-sidebar a:link, .archive-page-wrapper .archive-page-sidebar .product-categories .children .archive-page-wrapper .archive-page-sidebar a:visited {
    text-decoration: none;
    background-color: #f9f9f9;
    display: block;
    margin: var(--spacing-01) 0;
    padding: var(--spacing-01) var(--spacing-03);
    transition: all 0.2s ease-in-out;
  }
  .archive-page-wrapper .archive-page-sidebar .product-categories .children .archive-page-wrapper .archive-page-sidebar a:link:hover, .archive-page-wrapper .archive-page-sidebar .product-categories .children .archive-page-wrapper .archive-page-sidebar a:visited:hover {
    color: var(--color-accent) !important;
    font-weight: bold;
    transform: translateX(10px);
  }
  .archive-page-wrapper .archive-page-sidebar .product-categories .children .archive-page-wrapper .archive-page-sidebar {
    /* Reset styling for all items */
  }
  .archive-page-wrapper .archive-page-sidebar .product-categories .children .archive-page-wrapper .archive-page-sidebar .product-categories .cat-item a {
    font-weight: var(--font-weight-normal);
    color: inherit;
  }
  .archive-page-wrapper .archive-page-sidebar .product-categories .children .archive-page-wrapper .archive-page-sidebar {
    /* Highlight only the selected category */
  }
  .archive-page-wrapper .archive-page-sidebar .product-categories .children .archive-page-wrapper .archive-page-sidebar .product-categories .current-cat > a {
    font-weight: var(--font-weight-bold);
    color: var(--color-accent); /* or your accent color */
  }
  .archive-page-wrapper .archive-page-sidebar a:link, .archive-page-wrapper .archive-page-sidebar a:visited {
    text-decoration: none;
    background-color: #f9f9f9;
    display: block;
    margin: var(--spacing-01) 0;
    padding: var(--spacing-01) var(--spacing-03);
    transition: all 0.2s ease-in-out;
  }
  .archive-page-wrapper .archive-page-sidebar a:link:hover, .archive-page-wrapper .archive-page-sidebar a:visited:hover {
    color: var(--color-accent) !important;
    font-weight: bold;
    transform: translateX(10px);
  }
  .archive-page-wrapper .archive-page-sidebar {
    /* Reset styling for all items */
  }
  .archive-page-wrapper .archive-page-sidebar .product-categories .cat-item a {
    font-weight: var(--font-weight-normal);
    color: inherit;
  }
  .archive-page-wrapper .archive-page-sidebar {
    /* Highlight only the selected category */
  }
  .archive-page-wrapper .archive-page-sidebar .product-categories .current-cat > a, .archive-page-wrapper .archive-page-sidebar .product-categories .current-cat-parent > a {
    font-weight: var(--font-weight-bold);
    color: var(--color-accent); /* or your accent color */
  }
}

.reason-why {
  background-color: var(--color-primary);
  padding-top: var(--spacing-08);
  padding-bottom: var(--spacing-10);
  padding-left: var(--spacing-08);
  padding-right: var(--spacing-08);
  margin-right: calc(var(--horizontal-distance) * -1);
  margin-left: calc(var(--horizontal-distance) * -1);
  margin-bottom: var(--spacing-07);
}
@media (min-width: 0px) {
  .reason-why .elementor-widget-icon-box .elementor-icon-box-icon {
    margin-right: var(--spacing-04) !important;
  }
}
.reason-why .elementor-icon-box-wrapper {
  display: flex;
  flex-flow: row nowrap;
  align-items: baseline !important;
  text-align: left !important;
}
.reason-why .elementor-widget-icon-box .elementor-icon-box-title {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.reason-why .elementor-widget-icon-box .elementor-icon {
  font-size: var(--font-size-l);
  align-items: baseline;
}

.hero-post .elementor-container {
  margin-right: calc(var(--horizontal-distance) * -1);
  margin-left: calc(var(--horizontal-distance) * -1);
}
@media (min-width: 767px) {
  .hero-post .elementor-container {
    margin: 0 auto;
    column-gap: var(--spacing-03);
  }
}
.hero-post .elementor-container .elementor-column {
  padding: 0px !important;
}
@media (min-width: 767px) {
  .hero-post .elementor-container .elementor-column.elementor-col-25 {
    width: calc(25% - var(--spacing-03));
  }
}
@media (min-width: 1024px) {
  .hero-post .elementor-container .elementor-column.elementor-col-25 {
    width: 25%;
  }
}
@media (min-width: 767px) {
  .hero-post .elementor-container .elementor-column.elementor-col-50 {
    width: calc(50% - var(--spacing-03));
  }
}
@media (min-width: 1024px) {
  .hero-post .elementor-container .elementor-column.elementor-col-50 {
    width: 50%;
  }
}
@media (min-width: 767px) {
  .hero-post .elementor-container .elementor-column.elementor-col-33 {
    width: calc(33.333% - var(--spacing-03));
  }
}
@media (min-width: 1024px) {
  .hero-post .elementor-container .elementor-column.elementor-col-33 {
    width: 33.33333%;
  }
}
.hero-post .elementor-container .elementor-column .elementor-widget-wrap {
  justify-content: flex-start;
  flex-flow: column nowrap;
  padding: 0px !important;
}
.hero-post .elementor-container .elementor-column .elementor-widget-wrap .elementor-element {
  margin-bottom: var(--spacing-06);
}
.hero-post .elementor-container .elementor-column .elementor-widget-wrap .elementor-element p {
  margin-bottom: 0;
}
.hero-post .elementor-container .elementor-column .elementor-widget-wrap .elementor-element .wp-caption {
  position: relative;
  font-size: var(--font-size-xs);
}
.hero-post .elementor-container .elementor-column .elementor-widget-wrap .elementor-element .wp-caption .widget-image-caption {
  display: inline-block;
  background-color: var(--color-accent);
  color: var(--text-color-on-dark);
  padding: var(--spacing-01);
  text-transform: uppercase;
  font-weight: 400;
  position: absolute;
  right: 0;
  top: var(--spacing-04);
  border-radius: 0;
}
.hero-post .elementor-container .elementor-column .elementor-widget-wrap .elementor-element.elementor-widget-button {
  margin-bottom: 0;
}
.hero-post .elementor-container .elementor-column .elementor-widget-wrap .elementor-element .elementor-widget-container p {
  color: var(--color-primary) !important;
}

.wildcat-container.horizontal-scrolling {
  position: relative;
}
.wildcat-container.horizontal-scrolling .controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wildcat-container.horizontal-scrolling .controls h1, .wildcat-container.horizontal-scrolling .controls h2, .wildcat-container.horizontal-scrolling .controls h3, .wildcat-container.horizontal-scrolling .controls h4 {
  font-size: var(--font-size-m);
  margin: var(--spacing-03) 0;
}
.wildcat-container.horizontal-scrolling {
  width: 100%;
  transform: translateX(-50%);
  left: 50%;
}
.wildcat-container.horizontal-scrolling .horizontal-scrolling-content-wrapper {
  overflow-x: auto;
}
.wildcat-container.horizontal-scrolling .horizontal-scrolling-content-wrapper.auto-scrolling {
  scroll-behavior: smooth;
}
.wildcat-container.horizontal-scrolling .horizontal-scrolling-content-wrapper .scrollable-content {
  position: relative;
  overflow: visible;
  padding: 0;
  transition: transform 200ms ease-out;
}
.wildcat-container.horizontal-scrolling .horizontal-scrolling-content-wrapper::-webkit-scrollbar {
  display: none !important;
}
.wildcat-container.horizontal-scrolling .scroll-control-holder {
  text-align: right;
  line-height: 0;
}
.wildcat-container.horizontal-scrolling .scroll-control {
  position: relative;
  overflow: hidden;
  display: inline-block;
  cursor: pointer;
}
.wildcat-container.horizontal-scrolling .scroll-control .primary-icon {
  color: var(--color-primary);
  width: 25px;
  height: 25px;
  margin-bottom: var(--spacing-03);
}
.wildcat-container.horizontal-scrolling .scroll-control:hover .primary-icon {
  color: var(--color-accent);
}
.wildcat-container.horizontal-scrolling.no-overflow .scroll-control {
  display: none;
}

.wildcat-container.horizontal-scrolling .products.elementor-grid, .wildcat-container.horizontal-scrolling .products {
  display: flex;
  width: 100%;
  flex-flow: row nowrap;
  column-gap: var(--spacing-03) !important;
}
.wildcat-container.horizontal-scrolling ul.products {
  padding-bottom: var(--spacing-07);
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  display: flex !important;
  flex-flow: nowrap;
}
.wildcat-container.horizontal-scrolling ul.products::-webkit-scrollbar {
  max-height: 8px;
}
.wildcat-container.horizontal-scrolling ul.products::-webkit-scrollbar-track {
  background-color: var(--grey-1);
  border-radius: var(--spacing-05);
}
.wildcat-container.horizontal-scrolling ul.products::-webkit-scrollbar-thumb {
  background-color: var(--grey-3);
  border-radius: var(--spacing-05);
}
.wildcat-container.horizontal-scrolling ul.products li.product.type-product, .wildcat-container.horizontal-scrolling ul.products .wildcat-product-tile {
  scroll-snap-align: start;
  position: relative;
  margin: 0;
  float: none;
  order: unset;
  transition: all 0.2s ease-in-out;
  min-width: 250px !important;
  max-width: 250px !important;
  width: 250px !important;
}

body.archive .category-image-holder img {
  width: 100%;
  height: auto;
}

ul.products,
ul.products.elementor-grid {
  column-gap: var(--spacing-03);
  row-gap: var(--spacing-03);
  display: grid;
  padding: 0;
  grid-template-columns: repeat(2, minmax(100px, 1fr));
}
@media (min-width: 767px) {
  ul.products,
  ul.products.elementor-grid {
    row-gap: var(--spacing-06);
    grid-template-columns: repeat(3, minmax(100px, 1fr));
  }
}
@media (min-width: 1024px) {
  ul.products,
  ul.products.elementor-grid {
    grid-template-columns: repeat(4, minmax(100px, 1fr));
  }
}
ul.products,
ul.products.elementor-grid {
  margin-block-start: 0;
  margin-block-end: 0;
}
ul.products::before,
ul.products.elementor-grid::before {
  display: none;
}

.wc-product-search {
  width: 100%;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  transition: all var(--transition-duration-default) ease-out;
}
@media (min-width: 1024px) {
  .wc-product-search {
    max-height: inherit;
    overflow: visible;
    display: block;
    width: 35vw;
    max-width: 450px;
    border-bottom: 1px solid #ffffff;
  }
}
.wc-product-search .woocommerce-product-search {
  position: relative;
  margin-block-end: 0;
  display: flex;
  flex-flow: nowrap;
  align-items: center;
}
.wc-product-search .woocommerce-product-search .primary-icon {
  width: 20px;
  height: 20px;
  display: none;
}
@media (min-width: 1024px) {
  .wc-product-search .woocommerce-product-search .primary-icon {
    display: block;
  }
}
.wc-product-search .search-field {
  appearance: none;
  -webkit-appearance: none;
  font-size: var(--font-size-xs);
  background-color: transparent;
  color: var(--text-color-on-dark);
  font-family: var(--font-family-headline);
  width: 95%;
}
.wc-product-search input[type=search]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}
.wc-product-search input[type=search]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}
.wc-product-search {
  /* clears the 'X' from Chrome */
}
.wc-product-search input[type=search]::-webkit-search-decoration,
.wc-product-search input[type=search]::-webkit-search-cancel-button,
.wc-product-search input[type=search]::-webkit-search-results-button,
.wc-product-search input[type=search]::-webkit-search-results-decoration {
  display: none;
}
.wc-product-search button[type=submit] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: none;
  border: none;
  position: fixed;
  top: 0;
  left: 0;
}
@media (min-width: 1024px) {
  .wc-product-search button[type=submit] {
    display: none;
  }
}

body.mobile-search--open .wc-product-search {
  max-height: 70px;
}

#erp-ajax-login-backdrop {
  width: 100vw;
  height: 100vh;
  background: var(--color-primary);
  opacity: 0.6;
  position: fixed;
  top: 0;
  left: 0;
}

#erp-ajax-login {
  max-width: 95vw;
}
#erp-ajax-login .sign-in-inner {
  padding: var(--spacing-05) var(--spacing-04);
}
@media (min-width: 767px) {
  #erp-ajax-login .sign-in-inner {
    height: 500px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    padding-left: calc(var(--spacing-05) + 20px);
  }
}
#erp-ajax-login .sign-in-inner .user-input {
  display: flex;
  flex-flow: column nowrap;
  row-gap: 12px;
}
#erp-ajax-login .sign-in-inner .user-input .submit_button {
  padding: var(--spacing-02);
}
#erp-ajax-login .sign-in-inner .user-input .login-footer {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
}
#erp-ajax-login .sign-in-inner .user-input .login-footer .lost {
  font-size: var(--font-size-xs);
}
#erp-ajax-login .sign-in-inner .user-input .login-footer .sign-up {
  font-size: var(--font-size-xs);
}

#popup-popup-login .popup-header {
  display: contents;
}
#popup-popup-login .popup-headline {
  display: none;
}
#popup-popup-login .button-close {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 100;
}
@media (max-width: 766px) {
  #popup-popup-login .button-close .primary-icon {
    color: white;
  }
}
@media (min-width: 767px) {
  #popup-popup-login {
    max-width: 1000px;
  }
  #popup-popup-login .info-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
  }
  #popup-popup-login .info-inner .image-container {
    position: relative;
    width: 100%;
    height: 100%;
  }
  #popup-popup-login .info-inner .text-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    height: 100%;
    padding: 20px 0;
  }
  #popup-popup-login .sign-in-inner #login {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media (max-width: 766px) {
  #popup-popup-login .popup-content {
    padding: 0;
  }
}
.global-popup-active #popup-popup-login .info-inner .image-container {
  line-height: 0;
}
.global-popup-active #popup-popup-login .info-inner .image-container, .global-popup-active #popup-popup-login .info-inner .text-container {
  background-size: cover;
  background-position: center;
  background-image: var(--background);
}
.global-popup-active #popup-popup-login .info-inner .text-container {
  width: 100%;
  padding: 20px 10px 10px 10px;
}

dialog.wc-product-inquiry-popup {
  max-width: 400px !important;
}
dialog.wc-product-inquiry-popup .popup-content {
  padding: var(--spacing-03);
}
dialog.wc-product-inquiry-popup form .wpcf7-response-output {
  padding: var(--spacing-01);
  margin: 0 0 var(--spacing-05) 0;
  font-size: var(--font-size-xs);
  text-align: center;
}
dialog.wc-product-inquiry-popup form .wpcf7-spinner {
  display: none !important;
}
dialog.wc-product-inquiry-popup form input[type=submit] {
  margin-top: var(--spacing-03);
  margin-bottom: var(--spacing-03);
  width: 100%;
}
dialog.wc-product-inquiry-popup form input {
  max-width: 100%;
}
dialog.wc-product-inquiry-popup form.submitting input[type=submit] {
  opacity: 0.5;
}

.wildcat-product-search {
  position: static;
  margin-top: 10px;
}
.wildcat-product-search .loading-indicator {
  display: none;
}
.wildcat-product-search .async-search-results {
  max-height: 100%;
  transition: height 0.5s ease-out;
}
@media (min-width: 767px) {
  .wildcat-product-search {
    position: relative;
  }
}
.wildcat-product-search .predictive-search-results {
  background-color: #ffffff;
  z-index: var(--layer-above-navigation);
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  position: absolute;
  width: 100%;
  color: rgb(28, 28, 28);
}
.wildcat-product-search .predictive-search-results .search-term {
  color: #ec417a;
}
@media (min-width: 767px) {
  .wildcat-product-search .predictive-search-results {
    min-width: 800px;
  }
}
.wildcat-product-search .predictive-search-results .search-result-wrapper {
  display: flex;
  flex-flow: column nowrap;
  padding-top: var(--spacing-05);
  padding-bottom: 150px;
}
.wildcat-product-search .predictive-search-results .search-result-wrapper li.show-all-results a:link, .wildcat-product-search .predictive-search-results .search-result-wrapper li.show-all-results a:visited {
  color: var(--color-accent);
}
.wildcat-product-search .predictive-search-results .search-result-wrapper li.show-all-results a:link:hover, .wildcat-product-search .predictive-search-results .search-result-wrapper li.show-all-results a:visited:hover {
  color: var(--color-primary);
}
@media (min-width: 767px) {
  .wildcat-product-search .predictive-search-results .search-result-wrapper {
    flex-flow: row nowrap;
    padding: var(--spacing-04);
  }
}
.wildcat-product-search .predictive-search-results .results-products {
  display: flex;
  flex-flow: row wrap;
  flex: 2;
  column-gap: var(--spacing-04);
  row-gap: var(--spacing-04);
}
.wildcat-product-search .predictive-search-results .results-products .product {
  text-align: center;
  flex-basis: 46%;
  max-width: 200px;
  box-sizing: border-box;
  transition: all ease-in-out 200ms;
}
@media (min-width: 767px) {
  .wildcat-product-search .predictive-search-results .results-products .product {
    flex-basis: 48%;
  }
}
.wildcat-product-search .predictive-search-results .results-products .product:hover {
  transform: scale(1.02);
}
.wildcat-product-search .predictive-search-results .results-products .product a:link,
.wildcat-product-search .predictive-search-results .results-products .product a:visited {
  text-decoration: none;
  display: flex;
  flex-flow: column nowrap;
  row-gap: var(--spacing-03);
}
.wildcat-product-search .predictive-search-results .results-products .product .result-thumbnail img {
  max-width: 70%;
  height: auto;
}
.wildcat-product-search .predictive-search-results .results-products .product .result-meta {
  text-align: center;
  font-size: var(--font-size-xs);
  font-family: var(--font-family-body);
  text-decoration: none;
  line-height: var(--font-size-m);
  text-transform: none;
}
@media (min-width: 767px) {
  .wildcat-product-search .predictive-search-results .results-products .product .result-meta {
    font-size: var(--font-size-s);
  }
}
.wildcat-product-search .predictive-search-results .results-products .product .result-meta .result-title {
  color: var(--text-color-on-bright-1);
  text-decoration: none;
}
.wildcat-product-search .predictive-search-results .results-products .product .result-meta .result-price {
  color: var(--text-color-on-bright-2);
  font-size: var(--font-size-xs);
}
.wildcat-product-search .predictive-search-results .results-other {
  flex: 1;
  text-transform: none;
  padding: 0;
}
@media (min-width: 767px) {
  .wildcat-product-search .predictive-search-results .results-other {
    padding: 8px;
  }
}
.wildcat-product-search .predictive-search-results .results-other h3 {
  line-height: var(--font-size-m);
  margin: var(--spacing-07) 0;
}
@media (min-width: 767px) {
  .wildcat-product-search .predictive-search-results .results-other h3 {
    margin: 0;
  }
}
.wildcat-product-search .predictive-search-results .results-other .category-suggest {
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-flow: column nowrap;
  row-gap: 0;
  font-size: var(--font-size-xs);
}
@media (min-width: 767px) {
  .wildcat-product-search .predictive-search-results .results-other .category-suggest {
    font-size: var(--font-size-s);
  }
}
.wildcat-product-search .predictive-search-results .results-other .category-suggest a:link,
.wildcat-product-search .predictive-search-results .results-other .category-suggest a:visited {
  text-decoration: none;
  display: flex;
  column-gap: 8px;
  color: var(--color-primary);
}
.wildcat-product-search .predictive-search-results .results-other .category-suggest li {
  transition: all ease-in-out 200ms;
}
.wildcat-product-search .predictive-search-results .results-other .category-suggest li:hover {
  transform: translateX(4px);
}
.wildcat-product-search .search-result-container {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 200ms ease-in-out;
  transition-property: opacity;
}
.wildcat-product-search .reset-search {
  background-color: transparent;
  border: 0;
  color: white;
  cursor: pointer;
}
.wildcat-product-search .reset-search::before {
  content: "\ea11";
  font-family: WCfeather;
}

body.searching-products .wildcat-product-search .loading-indicator {
  display: block;
}
body.searching-products .wildcat-product-search .async-results-results {
  max-height: 0;
}

body.search-query-entered .wildcat-product-search .search-result-container {
  max-height: 80vh;
  opacity: 1;
  padding: 16px;
}

@media screen and (max-width: 1015px) {
  .wildcat-product-search {
    position: static;
  }
  .wildcat-product-search .predictive-search-results {
    width: 100vw;
    height: 100vh;
    left: 0;
    max-height: 0;
    overflow: hidden;
  }
  .wildcat-product-search .predictive-search-results .search-result-container {
    background-color: #ffffff;
    height: 90vh;
    overflow-y: scroll;
  }
  .wildcat-product-search .predictive-search-results .results-products {
    background-color: #ffffff;
  }
  body.search-query-entered,
  html.search-query-entered {
    overflow: hidden;
  }
  body.search-query-entered .wildcat-product-search .predictive-search-results {
    max-height: 90vh;
  }
}
.elementor-widget-image a {
  display: block;
}
.elementor-widget-image a img {
  width: 100%;
  height: auto;
  max-width: inherit;
}

.wpcf7-form .wpcf7-submit {
  width: 100%;
}
.wpcf7-form .wpcf7-list-item.first {
  margin-left: 0;
}

@media (max-width: 766px) {
  .woocommerce ul.products li.product .sale-label-wrapper {
    text-align: left;
  }
}
.woocommerce ul.products li.product .sale-label {
  background-color: var(--color-accent);
  background-image: unset;
  color: var(--text-color-on-accent);
  font-size: var(--font-size-xxs);
  line-height: var(--font-size-xxs);
  padding: var(--spacing-01);
  text-align: left;
}
.woocommerce ul.products li.product .reach-compliant-badge {
  position: absolute;
}
.woocommerce ul.products li.product .reach-compliant-badge img {
  width: 50px !important;
  height: auto;
}
@media (min-width: 767px) {
  .woocommerce ul.products li.product .reach-compliant-badge img {
    width: 100px !important;
  }
}

.product.type-product .pro-flash-container {
  display: flex;
}
@media (min-width: 767px) {
  .product.type-product .pro-flash-container {
    justify-content: flex-start;
  }
}
.product.type-product .price.single.simple {
  display: flex;
  flex-direction: column;
}
.product.type-product .price.single.simple .sale-label-wrapper {
  order: -1;
  margin-bottom: var(--spacing-01);
}
.product.type-product .sale-label {
  background-image: unset;
  border-radius: 0;
  padding: var(--spacing-02) var(--spacing-02);
  line-height: var(--font-size-s);
  min-width: unset;
  min-height: unset;
  color: var(--text-color-on-dark);
  font-family: var(--font-family-headline);
  font-size: var(--font-size-s);
  text-transform: uppercase;
  font-weight: var(--font-weight-body);
}
@media (min-width: 767px) {
  .product.type-product .sale-label {
    left: unset;
    right: 0;
  }
}
.product.type-product .sale-label {
  background-color: var(--color-primary);
  margin: 0 !important;
  right: 0;
}

.product.type-product.sale .summary.entry-summary {
  padding-top: 24px;
}

.product.type-product .reach-compliant-badge {
  position: absolute;
  bottom: var(--spacing-05);
  right: var(--spacing-03);
  z-index: var(--layer-below-navigation);
}
.product.type-product .reach-compliant-badge img {
  width: 100px !important;
}
@media (min-width: 1024px) {
  .product.type-product .reach-compliant-badge img {
    width: 180px !important;
  }
}

.woocommerce ul.products .product.wildcat-product-tile,
.woocommerce ul.products .product.wildcat-product-tile.type-product,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile.type-product {
  position: relative;
  margin: 0 !important;
  float: none;
  flex-grow: 1;
  transition: all 0.2s ease-in-out;
  display: flex;
  flex-flow: column nowrap;
  width: 100% !important;
  max-width: 100%;
  border: 1px solid var(--grey-3);
  padding: var(--spacing-02);
}
@media (min-width: 767px) {
  .woocommerce ul.products .product.wildcat-product-tile,
  .woocommerce ul.products .product.wildcat-product-tile.type-product,
  .woocommerce ul.products.elementor-grid .product.wildcat-product-tile,
  .woocommerce ul.products.elementor-grid .product.wildcat-product-tile.type-product {
    padding: var(--spacing-04);
  }
}
.woocommerce ul.products .product.wildcat-product-tile .image-area,
.woocommerce ul.products .product.wildcat-product-tile.type-product .image-area,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile .image-area,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile.type-product .image-area {
  position: relative;
}
.woocommerce ul.products .product.wildcat-product-tile img,
.woocommerce ul.products .product.wildcat-product-tile.type-product img,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile img,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile.type-product img {
  width: 100%;
  height: auto;
}
.woocommerce ul.products .product.wildcat-product-tile a:link, .woocommerce ul.products .product.wildcat-product-tile a:visited,
.woocommerce ul.products .product.wildcat-product-tile.type-product a:link,
.woocommerce ul.products .product.wildcat-product-tile.type-product a:visited,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile a:link,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile a:visited,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile.type-product a:link,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile.type-product a:visited {
  text-decoration: none;
}
.woocommerce ul.products .product.wildcat-product-tile .image-area,
.woocommerce ul.products .product.wildcat-product-tile .color-swatch-thumbnails,
.woocommerce ul.products .product.wildcat-product-tile.type-product .image-area,
.woocommerce ul.products .product.wildcat-product-tile.type-product .color-swatch-thumbnails,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile .image-area,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile .color-swatch-thumbnails,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile.type-product .image-area,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile.type-product .color-swatch-thumbnails {
  margin-bottom: 10px;
}
.woocommerce ul.products .product.wildcat-product-tile .b2b-exclusive-badge,
.woocommerce ul.products .product.wildcat-product-tile.type-product .b2b-exclusive-badge,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile .b2b-exclusive-badge,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile.type-product .b2b-exclusive-badge {
  font-size: var(--font-size-s);
  line-height: var(--font-size-s);
  flex-grow: 1;
}
.woocommerce ul.products .product.wildcat-product-tile .product-sku,
.woocommerce ul.products .product.wildcat-product-tile.type-product .product-sku,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile .product-sku,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile.type-product .product-sku {
  font-family: var(--font-family-headline);
  font-size: var(--font-size-xxs);
  line-height: var(--font-size-xxs);
  font-weight: var(--font-weight-light);
  color: var(--text-color-on-bright-1);
}
@media (min-width: 767px) {
  .woocommerce ul.products .product.wildcat-product-tile .product-sku,
  .woocommerce ul.products .product.wildcat-product-tile.type-product .product-sku,
  .woocommerce ul.products.elementor-grid .product.wildcat-product-tile .product-sku,
  .woocommerce ul.products.elementor-grid .product.wildcat-product-tile.type-product .product-sku {
    display: block;
  }
}
.woocommerce ul.products .product.wildcat-product-tile .woocommerce-LoopProduct-link,
.woocommerce ul.products .product.wildcat-product-tile.type-product .woocommerce-LoopProduct-link,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile .woocommerce-LoopProduct-link,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile.type-product .woocommerce-LoopProduct-link {
  height: 100%;
}
.woocommerce ul.products .product.wildcat-product-tile .woocommerce-LoopProduct-link .woocommerce-loop-product__title,
.woocommerce ul.products .product.wildcat-product-tile.type-product .woocommerce-LoopProduct-link .woocommerce-loop-product__title,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile .woocommerce-LoopProduct-link .woocommerce-loop-product__title,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile.type-product .woocommerce-LoopProduct-link .woocommerce-loop-product__title {
  padding: 0;
  font-family: var(--font-family-headline);
  font-size: var(--font-size-m);
  line-height: var(--font-size-m);
  color: var(--color-primary);
  text-transform: uppercase;
  margin-top: var(--spacing-01);
  margin-bottom: var(--spacing-01);
  font-weight: var(--font-weight-bold);
}
.woocommerce ul.products .product.wildcat-product-tile .woocommerce-LoopProduct-link .collection,
.woocommerce ul.products .product.wildcat-product-tile.type-product .woocommerce-LoopProduct-link .collection,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile .woocommerce-LoopProduct-link .collection,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile.type-product .woocommerce-LoopProduct-link .collection {
  color: var(--text-color-on-bright-1);
  font-family: var(--font-family-headline);
  font-size: var(--font-size-xs) !important;
  line-height: var(--font-size-xs);
  font-weight: var(--font-weight-body);
  min-height: 13px;
}
.woocommerce ul.products .product.wildcat-product-tile .woocommerce-LoopProduct-link .collection.multiple-collections .collection-text,
.woocommerce ul.products .product.wildcat-product-tile.type-product .woocommerce-LoopProduct-link .collection.multiple-collections .collection-text,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile .woocommerce-LoopProduct-link .collection.multiple-collections .collection-text,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile.type-product .woocommerce-LoopProduct-link .collection.multiple-collections .collection-text {
  display: none;
}
.woocommerce ul.products .product.wildcat-product-tile .woocommerce-LoopProduct-link .collection.multiple-collections::after,
.woocommerce ul.products .product.wildcat-product-tile.type-product .woocommerce-LoopProduct-link .collection.multiple-collections::after,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile .woocommerce-LoopProduct-link .collection.multiple-collections::after,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile.type-product .woocommerce-LoopProduct-link .collection.multiple-collections::after {
  content: attr(data-mobile-text);
}
@media (min-width: 767px) {
  .woocommerce ul.products .product.wildcat-product-tile .woocommerce-LoopProduct-link .collection.multiple-collections::after,
  .woocommerce ul.products .product.wildcat-product-tile.type-product .woocommerce-LoopProduct-link .collection.multiple-collections::after,
  .woocommerce ul.products.elementor-grid .product.wildcat-product-tile .woocommerce-LoopProduct-link .collection.multiple-collections::after,
  .woocommerce ul.products.elementor-grid .product.wildcat-product-tile.type-product .woocommerce-LoopProduct-link .collection.multiple-collections::after {
    display: none;
  }
  .woocommerce ul.products .product.wildcat-product-tile .woocommerce-LoopProduct-link .collection.multiple-collections .collection-text,
  .woocommerce ul.products .product.wildcat-product-tile.type-product .woocommerce-LoopProduct-link .collection.multiple-collections .collection-text,
  .woocommerce ul.products.elementor-grid .product.wildcat-product-tile .woocommerce-LoopProduct-link .collection.multiple-collections .collection-text,
  .woocommerce ul.products.elementor-grid .product.wildcat-product-tile.type-product .woocommerce-LoopProduct-link .collection.multiple-collections .collection-text {
    display: block;
  }
}
.woocommerce ul.products .product.wildcat-product-tile .added_to_cart.wc-forward,
.woocommerce ul.products .product.wildcat-product-tile.type-product .added_to_cart.wc-forward,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile .added_to_cart.wc-forward,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile.type-product .added_to_cart.wc-forward {
  display: none;
}
.woocommerce ul.products .product.wildcat-product-tile:hover .woocommerce-loop-product__title,
.woocommerce ul.products .product.wildcat-product-tile.type-product:hover .woocommerce-loop-product__title,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile:hover .woocommerce-loop-product__title,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile.type-product:hover .woocommerce-loop-product__title {
  color: var(--color-accent);
}
.woocommerce ul.products .product.wildcat-product-tile .product-tile-footer,
.woocommerce ul.products .product.wildcat-product-tile.type-product .product-tile-footer,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile .product-tile-footer,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile.type-product .product-tile-footer {
  padding-top: var(--spacing-03);
}
.woocommerce ul.products .product.wildcat-product-tile .product-tile-footer .woocommerce-LoopProduct-link.woocommerce-loop-product__link,
.woocommerce ul.products .product.wildcat-product-tile.type-product .product-tile-footer .woocommerce-LoopProduct-link.woocommerce-loop-product__link,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile .product-tile-footer .woocommerce-LoopProduct-link.woocommerce-loop-product__link,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile.type-product .product-tile-footer .woocommerce-LoopProduct-link.woocommerce-loop-product__link {
  height: auto;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-02);
}
.woocommerce ul.products .product.wildcat-product-tile .product-tile-footer .woocommerce-LoopProduct-link.woocommerce-loop-product__link .onsale,
.woocommerce ul.products .product.wildcat-product-tile.type-product .product-tile-footer .woocommerce-LoopProduct-link.woocommerce-loop-product__link .onsale,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile .product-tile-footer .woocommerce-LoopProduct-link.woocommerce-loop-product__link .onsale,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile.type-product .product-tile-footer .woocommerce-LoopProduct-link.woocommerce-loop-product__link .onsale {
  order: 1;
  align-self: flex-start; /* or center */
  width: auto; /* prevents 100% stretch */
  flex: 0 1 auto;
  text-wrap: nowrap;
}
.woocommerce ul.products .product.wildcat-product-tile .product-tile-footer .woocommerce-LoopProduct-link.woocommerce-loop-product__link .price,
.woocommerce ul.products .product.wildcat-product-tile.type-product .product-tile-footer .woocommerce-LoopProduct-link.woocommerce-loop-product__link .price,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile .product-tile-footer .woocommerce-LoopProduct-link.woocommerce-loop-product__link .price,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile.type-product .product-tile-footer .woocommerce-LoopProduct-link.woocommerce-loop-product__link .price {
  order: 2;
  flex: 1 0 auto;
}
.woocommerce ul.products .product.wildcat-product-tile .price,
.woocommerce ul.products .product.wildcat-product-tile.type-product .price,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile .price,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile.type-product .price {
  display: flex;
  flex-direction: column;
  row-gap: var(--spacing-01);
  font-size: var(--font-size-m);
  line-height: var(--font-size-m);
  font-family: var(--font-family-headline);
  font-weight: 800;
  margin: 0;
  flex-grow: 1;
}
.woocommerce ul.products .product.wildcat-product-tile .price .woocommerce-price-suffix,
.woocommerce ul.products .product.wildcat-product-tile.type-product .price .woocommerce-price-suffix,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile .price .woocommerce-price-suffix,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile.type-product .price .woocommerce-price-suffix {
  display: inline-block;
  line-height: var(--font-size-xxs);
  font-size: var(--font-size-xxs);
}
.woocommerce ul.products .product.wildcat-product-tile .price del,
.woocommerce ul.products .product.wildcat-product-tile.type-product .price del,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile .price del,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile.type-product .price del {
  margin-right: var(--spacing-01);
  display: block;
  font-size: var(--font-size-xs);
  line-height: var(--font-size-xs);
}
.woocommerce ul.products .product.wildcat-product-tile .price ins,
.woocommerce ul.products .product.wildcat-product-tile.type-product .price ins,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile .price ins,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile.type-product .price ins {
  text-decoration: none;
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-s);
  line-height: var(--font-size-s);
  color: var(--color-accent);
}
.woocommerce ul.products .product.wildcat-product-tile .price .price-wrapper:not(.is-on-sale) .from-price-wrapper,
.woocommerce ul.products .product.wildcat-product-tile.type-product .price .price-wrapper:not(.is-on-sale) .from-price-wrapper,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile .price .price-wrapper:not(.is-on-sale) .from-price-wrapper,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile.type-product .price .price-wrapper:not(.is-on-sale) .from-price-wrapper {
  display: block;
  width: 100%;
}
.woocommerce ul.products .product.wildcat-product-tile .price .price-wrapper:not(.is-on-sale):not(:has(.from-price-wrapper)) .amount,
.woocommerce ul.products .product.wildcat-product-tile.type-product .price .price-wrapper:not(.is-on-sale):not(:has(.from-price-wrapper)) .amount,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile .price .price-wrapper:not(.is-on-sale):not(:has(.from-price-wrapper)) .amount,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile.type-product .price .price-wrapper:not(.is-on-sale):not(:has(.from-price-wrapper)) .amount {
  display: block;
  width: 100%;
}
.woocommerce ul.products .product.wildcat-product-tile .product-tile-features .wishlist,
.woocommerce ul.products .product.wildcat-product-tile.type-product .product-tile-features .wishlist,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile .product-tile-features .wishlist,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile.type-product .product-tile-features .wishlist {
  margin: 0 10px 0 auto;
  min-height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.woocommerce ul.products .product.wildcat-product-tile .product-tile-features .wishlist button,
.woocommerce ul.products .product.wildcat-product-tile.type-product .product-tile-features .wishlist button,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile .product-tile-features .wishlist button,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile.type-product .product-tile-features .wishlist button {
  padding: 0;
  margin-top: -3px;
}
.woocommerce ul.products .product.wildcat-product-tile .product-tile-features.top,
.woocommerce ul.products .product.wildcat-product-tile.type-product .product-tile-features.top,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile .product-tile-features.top,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile.type-product .product-tile-features.top {
  margin: 0 calc(-1 * var(--spacing-02)) 0 calc(-1 * var(--spacing-02));
  display: flex;
  justify-content: space-between;
}
.woocommerce ul.products .product.wildcat-product-tile .product-tile-features.top .product-flag,
.woocommerce ul.products .product.wildcat-product-tile.type-product .product-tile-features.top .product-flag,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile .product-tile-features.top .product-flag,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile.type-product .product-tile-features.top .product-flag {
  order: 1;
  font-family: var(--font-family-headline);
  font-weight: lighter;
  font-size: 0.95em;
  height: 0;
  padding: 11px 8px 10px;
  background-color: var(--color-accent);
  color: var(--text-color-on-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}
.woocommerce ul.products .product.wildcat-product-tile .product-tile-features.top .wishlist,
.woocommerce ul.products .product.wildcat-product-tile.type-product .product-tile-features.top .wishlist,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile .product-tile-features.top .wishlist,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile.type-product .product-tile-features.top .wishlist {
  order: 10;
  background: #FFFFFF;
}
@media (min-width: 767px) {
  .woocommerce ul.products .product.wildcat-product-tile .product-tile-features.top,
  .woocommerce ul.products .product.wildcat-product-tile.type-product .product-tile-features.top,
  .woocommerce ul.products.elementor-grid .product.wildcat-product-tile .product-tile-features.top,
  .woocommerce ul.products.elementor-grid .product.wildcat-product-tile.type-product .product-tile-features.top {
    margin: 0 calc(-1 * var(--spacing-04)) 0 calc(-1 * var(--spacing-04));
  }
}
.woocommerce ul.products .product.wildcat-product-tile .product-tile-features.bottom,
.woocommerce ul.products .product.wildcat-product-tile.type-product .product-tile-features.bottom,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile .product-tile-features.bottom,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile.type-product .product-tile-features.bottom {
  display: flex;
  flex-direction: column;
  min-height: 56px;
}
.woocommerce ul.products .product.wildcat-product-tile .product-tile-features.bottom .product-color-swatches .color-swatches,
.woocommerce ul.products .product.wildcat-product-tile.type-product .product-tile-features.bottom .product-color-swatches .color-swatches,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile .product-tile-features.bottom .product-color-swatches .color-swatches,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile.type-product .product-tile-features.bottom .product-color-swatches .color-swatches {
  justify-content: flex-start;
  margin-left: 0;
}
.woocommerce ul.products .product.wildcat-product-tile .product-tile-features.bottom .product-features,
.woocommerce ul.products .product.wildcat-product-tile.type-product .product-tile-features.bottom .product-features,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile .product-tile-features.bottom .product-features,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile.type-product .product-tile-features.bottom .product-features {
  display: flex;
  column-gap: 6px;
}
.woocommerce ul.products .product.wildcat-product-tile .product-tile-features.bottom .product-features .product-feature,
.woocommerce ul.products .product.wildcat-product-tile.type-product .product-tile-features.bottom .product-features .product-feature,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile .product-tile-features.bottom .product-features .product-feature,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile.type-product .product-tile-features.bottom .product-features .product-feature {
  font-family: var(--font-family-headline);
  border: 1px solid #b8b8b8;
  font-style: italic;
  font-size: 0.85em;
  line-height: 0.85em;
  font-weight: 550;
  width: fit-content;
  padding: 4px 6px 3px;
}
.woocommerce ul.products .product.wildcat-product-tile .product-tile-features.bottom .product-features .product-feature.gold,
.woocommerce ul.products .product.wildcat-product-tile.type-product .product-tile-features.bottom .product-features .product-feature.gold,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile .product-tile-features.bottom .product-features .product-feature.gold,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile.type-product .product-tile-features.bottom .product-features .product-feature.gold {
  background-color: #ebcd8c;
}
.woocommerce ul.products .product.wildcat-product-tile .product-tile-features.bottom:not(:has(.product-color-swatches)) .product-features,
.woocommerce ul.products .product.wildcat-product-tile.type-product .product-tile-features.bottom:not(:has(.product-color-swatches)) .product-features,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile .product-tile-features.bottom:not(:has(.product-color-swatches)) .product-features,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile.type-product .product-tile-features.bottom:not(:has(.product-color-swatches)) .product-features {
  margin-top: 36px;
}
.woocommerce ul.products .product.wildcat-product-tile .product-tile-features.bottom:not(:has(.product-features)) .product-color-swatches,
.woocommerce ul.products .product.wildcat-product-tile.type-product .product-tile-features.bottom:not(:has(.product-features)) .product-color-swatches,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile .product-tile-features.bottom:not(:has(.product-features)) .product-color-swatches,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile.type-product .product-tile-features.bottom:not(:has(.product-features)) .product-color-swatches {
  margin-bottom: 20.56px;
}
.woocommerce ul.products .product.wildcat-product-tile a.button::after, .woocommerce ul.products .product.wildcat-product-tile a.button.add_to_cart_button::after,
.woocommerce ul.products .product.wildcat-product-tile.type-product a.button::after,
.woocommerce ul.products .product.wildcat-product-tile.type-product a.button.add_to_cart_button::after,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile a.button::after,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile a.button.add_to_cart_button::after,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile.type-product a.button::after,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile.type-product a.button.add_to_cart_button::after {
  display: none;
}
.woocommerce ul.products .product.wildcat-product-tile a.button, .woocommerce ul.products .product.wildcat-product-tile a.button.add_to_cart_button,
.woocommerce ul.products .product.wildcat-product-tile.type-product a.button,
.woocommerce ul.products .product.wildcat-product-tile.type-product a.button.add_to_cart_button,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile a.button,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile a.button.add_to_cart_button,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile.type-product a.button,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile.type-product a.button.add_to_cart_button {
  width: 42px;
  height: 42px;
  margin: 0 !important;
  padding: 0 !important;
  align-items: center;
  justify-content: center;
  display: flex;
  transition: all 200ms ease-out;
}
.woocommerce ul.products .product.wildcat-product-tile a.button .primary-icon, .woocommerce ul.products .product.wildcat-product-tile a.button.add_to_cart_button .primary-icon,
.woocommerce ul.products .product.wildcat-product-tile.type-product a.button .primary-icon,
.woocommerce ul.products .product.wildcat-product-tile.type-product a.button.add_to_cart_button .primary-icon,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile a.button .primary-icon,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile a.button.add_to_cart_button .primary-icon,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile.type-product a.button .primary-icon,
.woocommerce ul.products.elementor-grid .product.wildcat-product-tile.type-product a.button.add_to_cart_button .primary-icon {
  width: 30px;
  height: 30px;
}

.button.secondary, .secondary-button, .button.secondary-button-outlined, .secondary-button-outlined, .primary-button, .button, a.button, .elementor-button, .wc-forward, .button.alt, input[type=submit] {
  font-family: var(--font-family-headline);
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  cursor: pointer;
  border-radius: 0;
  border-width: 0;
  float: none;
  text-align: center;
  text-transform: uppercase;
  font-size: var(--font-size-xs);
  padding: var(--spacing-02) var(--spacing-06);
}
@media (min-width: 767px) {
  .button.secondary, .secondary-button, .button.secondary-button-outlined, .secondary-button-outlined, .primary-button, .button, a.button, .elementor-button, .wc-forward, .button.alt, input[type=submit] {
    padding: var(--spacing-03) var(--spacing-06);
    font-size: var(--font-size-s);
  }
}
.button.secondary, .secondary-button, .button.secondary-button-outlined, .secondary-button-outlined, .primary-button, .button, a.button, .elementor-button, .wc-forward, .button.alt, input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: all 200ms linear;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.secondary-button .primary-icon, .secondary-button-outlined .primary-icon, .primary-button .primary-icon, .button .primary-icon, .elementor-button .primary-icon, .wc-forward .primary-icon, input[type=submit] .primary-icon, .secondary-button .feather-icon, .secondary-button-outlined .feather-icon, .primary-button .feather-icon, .button .feather-icon, .elementor-button .feather-icon, .wc-forward .feather-icon, input[type=submit] .feather-icon, .secondary-button .icon, .secondary-button-outlined .icon, .primary-button .icon, .button .icon, .elementor-button .icon, .wc-forward .icon, input[type=submit] .icon,
.secondary-button .simple-icon,
.secondary-button-outlined .simple-icon,
.primary-button .simple-icon,
.button .simple-icon,
.elementor-button .simple-icon,
.wc-forward .simple-icon,
input[type=submit] .simple-icon {
  width: 20px;
  height: 20px;
  margin: 0 var(--spacing-03) 0 0;
  color: var(--text-color-on-bright-1);
}
.button-size-s.secondary-button, .button-size-s.secondary-button-outlined, .button-size-s.primary-button, .button-size-s.button, .button-size-s.elementor-button, .button-size-s.wc-forward, input.button-size-s[type=submit] {
  padding: var(--spacing-02) var(--spacing-03);
  font-size: var(--font-size-xs) !important;
  line-height: var(--font-size-s) !important;
}
.button-size-s.secondary-button .primary-icon, .button-size-s.secondary-button-outlined .primary-icon, .button-size-s.primary-button .primary-icon, .button-size-s.button .primary-icon, .button-size-s.elementor-button .primary-icon, .button-size-s.wc-forward .primary-icon, input.button-size-s[type=submit] .primary-icon, .button-size-s.secondary-button .icon, .button-size-s.secondary-button-outlined .icon, .button-size-s.primary-button .icon, .button-size-s.button .icon, .button-size-s.elementor-button .icon, .button-size-s.wc-forward .icon, input.button-size-s[type=submit] .icon {
  width: 15px !important;
  height: 15px !important;
  margin: 0 var(--spacing-02) 0 0;
}
.block.secondary-button, .block.secondary-button-outlined, .block.primary-button, .block.button, .block.elementor-button, .block.wc-forward, input.block[type=submit] {
  width: 100%;
}
.compact.secondary-button, .compact.secondary-button-outlined, .compact.primary-button, .compact.button, .compact.elementor-button, .compact.wc-forward, input.compact[type=submit] {
  padding: var(--spacing-01) var(--spacing-02);
}
.inline.secondary-button, .inline.secondary-button-outlined, .inline.primary-button, .inline.button, .inline.elementor-button, .inline.wc-forward, input.inline[type=submit] {
  display: inline-block;
}
.secondary-button:disabled, .secondary-button-outlined:disabled, .primary-button:disabled, .button:disabled, .elementor-button:disabled, .wc-forward:disabled, input[type=submit]:disabled, .disabled.secondary-button, .disabled.secondary-button-outlined, .disabled.primary-button, .disabled.button, .disabled.elementor-button, .disabled.wc-forward, input.disabled[type=submit] {
  cursor: not-allowed;
  background-color: #cccccc !important;
  border-color: #cccccc !important;
}
.secondary-button:disabled:hover, .secondary-button-outlined:disabled:hover, .primary-button:disabled:hover, .button:disabled:hover, .elementor-button:disabled:hover, .wc-forward:disabled:hover, input[type=submit]:disabled:hover, .disabled.secondary-button:hover, .disabled.secondary-button-outlined:hover, .disabled.primary-button:hover, .disabled.button:hover, .disabled.elementor-button:hover, .disabled.wc-forward:hover, input.disabled[type=submit]:hover {
  background-color: #cccccc !important;
  border-color: #cccccc !important;
  color: #ffffff;
}
.secondary-button:disabled:hover .primary-icon, .secondary-button-outlined:disabled:hover .primary-icon, .primary-button:disabled:hover .primary-icon, .button:disabled:hover .primary-icon, .elementor-button:disabled:hover .primary-icon, .wc-forward:disabled:hover .primary-icon, input[type=submit]:disabled:hover .primary-icon, .secondary-button:disabled:hover .icon, .secondary-button-outlined:disabled:hover .icon, .primary-button:disabled:hover .icon, .button:disabled:hover .icon, .elementor-button:disabled:hover .icon, .wc-forward:disabled:hover .icon, input[type=submit]:disabled:hover .icon, .disabled.secondary-button:hover .primary-icon, .disabled.secondary-button-outlined:hover .primary-icon, .disabled.primary-button:hover .primary-icon, .disabled.button:hover .primary-icon, .disabled.elementor-button:hover .primary-icon, .disabled.wc-forward:hover .primary-icon, input.disabled[type=submit]:hover .primary-icon, .disabled.secondary-button:hover .icon, .disabled.secondary-button-outlined:hover .icon, .disabled.primary-button:hover .icon, .disabled.button:hover .icon, .disabled.elementor-button:hover .icon, .disabled.wc-forward:hover .icon, input.disabled[type=submit]:hover .icon {
  color: #ffffff !important;
}

.primary-button, .button, a.button, .elementor-button, .wc-forward, .button.alt, input[type=submit] {
  background-color: var(--color-accent);
  border: 1px solid var(--color-accent);
  color: var(--text-color-on-dark);
}
.primary-button .primary-icon, .button .primary-icon, .elementor-button .primary-icon, .wc-forward .primary-icon, input[type=submit] .primary-icon, .primary-button .icon, .button .icon, .elementor-button .icon, .wc-forward .icon, input[type=submit] .icon {
  color: var(--text-color-on-dark);
}
.primary-button:hover, .button:hover, .elementor-button:hover, .wc-forward:hover, input[type=submit]:hover, .primary-button:active, .button:active, .elementor-button:active, .wc-forward:active, input[type=submit]:active, .primary-button:focus, .button:focus, .elementor-button:focus, .wc-forward:focus, input[type=submit]:focus {
  background-color: transparent !important;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
  text-decoration: none;
}
.primary-button:hover .primary-icon, .button:hover .primary-icon, .elementor-button:hover .primary-icon, .wc-forward:hover .primary-icon, input[type=submit]:hover .primary-icon, .primary-button:hover .icon, .button:hover .icon, .elementor-button:hover .icon, .wc-forward:hover .icon, input[type=submit]:hover .icon, .primary-button:active .primary-icon, .button:active .primary-icon, .elementor-button:active .primary-icon, .wc-forward:active .primary-icon, input[type=submit]:active .primary-icon, .primary-button:active .icon, .button:active .icon, .elementor-button:active .icon, .wc-forward:active .icon, input[type=submit]:active .icon, .primary-button:focus .primary-icon, .button:focus .primary-icon, .elementor-button:focus .primary-icon, .wc-forward:focus .primary-icon, input[type=submit]:focus .primary-icon, .primary-button:focus .icon, .button:focus .icon, .elementor-button:focus .icon, .wc-forward:focus .icon, input[type=submit]:focus .icon {
  color: var(--color-accent);
}
.inverted.primary-button, .inverted.button, .inverted.elementor-button, .inverted.wc-forward, input.inverted[type=submit] {
  background-color: var(--color-primary);
  color: var(--text-color-on-bright);
  border: 1px solid var(--color-accent);
  text-decoration: none;
}
.inverted.primary-button .primary-icon, .inverted.button .primary-icon, .inverted.elementor-button .primary-icon, .inverted.wc-forward .primary-icon, input.inverted[type=submit] .primary-icon, .inverted.primary-button .icon, .inverted.button .icon, .inverted.elementor-button .icon, .inverted.wc-forward .icon, input.inverted[type=submit] .icon {
  color: var(--color-accent);
}
.inverted.primary-button:hover, .inverted.button:hover, .inverted.elementor-button:hover, .inverted.wc-forward:hover, input.inverted[type=submit]:hover {
  background-color: var(--color-accent);
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
}

.button.secondary, .secondary-button, .button.secondary-button-outlined, .secondary-button-outlined {
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
  color: var(--text-color-on-dark);
}
.button.secondary .primary-icon, .secondary-button .primary-icon, .secondary-button-outlined .primary-icon, .button.secondary .icon, .secondary-button .icon, .secondary-button-outlined .icon {
  color: var(--text-color-on-dark);
}
.button.secondary:visited, .secondary-button:visited, .secondary-button-outlined:visited, .button.secondary:link, .secondary-button:link, .secondary-button-outlined:link {
  color: var(--text-color-on-dark);
}
.button.secondary:hover, .secondary-button:hover, .secondary-button-outlined:hover, .button.secondary:active, .secondary-button:active, .secondary-button-outlined:active, .button.secondary:focus, .secondary-button:focus, .secondary-button-outlined:focus {
  color: var(--color-primary);
  border-color: var(--color-primary);
  background-color: transparent !important;
}
.button.secondary:hover .primary-icon, .secondary-button:hover .primary-icon, .secondary-button-outlined:hover .primary-icon, .button.secondary:hover .icon, .secondary-button:hover .icon, .secondary-button-outlined:hover .icon, .button.secondary:active .primary-icon, .secondary-button:active .primary-icon, .secondary-button-outlined:active .primary-icon, .button.secondary:active .icon, .secondary-button:active .icon, .secondary-button-outlined:active .icon, .button.secondary:focus .primary-icon, .secondary-button:focus .primary-icon, .secondary-button-outlined:focus .primary-icon, .button.secondary:focus .icon, .secondary-button:focus .icon, .secondary-button-outlined:focus .icon {
  color: var(--color-primary);
}

.button.secondary-button-outlined, .secondary-button-outlined {
  background-color: transparent;
  color: var(--color-primary);
}
.secondary-button-outlined .primary-icon, .secondary-button-outlined .icon {
  color: var(--color-primary) !important;
}
.secondary-button-outlined:visited, .secondary-button-outlined:link {
  color: var(--color-primary);
}
.secondary-button-outlined:hover, .secondary-button-outlined:active, .secondary-button-outlined:focus {
  color: var(--color-accent);
  border-color: var(--color-accent);
}
.secondary-button-outlined:hover .primary-icon, .secondary-button-outlined:hover .icon, .secondary-button-outlined:active .primary-icon, .secondary-button-outlined:active .icon, .secondary-button-outlined:focus .primary-icon, .secondary-button-outlined:focus .icon {
  color: var(--color-accent) !important;
}

.icon-button, .button-icon {
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 0;
  display: flex;
  padding: 0;
  margin: 0;
  background: transparent !important;
  border: none !important;
  cursor: pointer;
}
.icon-button .primary-icon, .button-icon .primary-icon, .icon-button .icon, .button-icon .icon {
  color: var(--color-primary);
}
.icon-button:hover, .button-icon:hover, .icon-button:focus, .button-icon:focus, .icon-button:active, .button-icon:active {
  border: 0;
}
.icon-button:hover .primary-icon, .button-icon:hover .primary-icon, .icon-button:hover .icon, .button-icon:hover .icon, .icon-button:focus .primary-icon, .button-icon:focus .primary-icon, .icon-button:focus .icon, .button-icon:focus .icon, .icon-button:active .primary-icon, .button-icon:active .primary-icon, .icon-button:active .icon, .button-icon:active .icon {
  color: var(--color-accent);
}
.bright.icon-button .primary-icon, .bright.button-icon .primary-icon, .bright.icon-button .icon, .bright.button-icon .icon {
  color: var(--text-color-on-dark);
}
.bright.icon-button:hover .primary-icon, .bright.button-icon:hover .primary-icon, .bright.icon-button:hover .icon, .bright.button-icon:hover .icon {
  color: var(--color-accent);
}

#gdpr-consent-notice .footer .save-settings, .link-button {
  text-align: center;
  text-decoration: underline;
  background-color: transparent;
  transition: all ease-in-out 0.2s;
  cursor: pointer;
  text-transform: none;
  padding: 0;
  border: 0;
  font-weight: var(--font-weight-regular);
  color: var(--text-color-on-bright-1) !important;
}
#gdpr-consent-notice .footer .save-settings:hover, .link-button:hover, #gdpr-consent-notice .footer .save-settings:active, .link-button:active, #gdpr-consent-notice .footer .save-settings:focus, .link-button:focus {
  color: var(--color-accent) !important;
}

.related-categories {
  list-style: none;
  display: flex;
  column-gap: var(--spacing-02);
  font-family: var(--font-family-headline);
}
.related-categories .related-category {
  font-size: var(--font-size-s);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0;
}
.related-categories .related-category a:link, .related-categories .related-category a:visited {
  text-decoration: none;
  white-space: nowrap;
  display: block;
}
.related-categories .related-category a:link .primary-icon, .related-categories .related-category a:visited .primary-icon {
  width: 20px;
  height: 20px;
  margin-left: calc(var(--spacing-03) * -1);
  margin-right: var(--spacing-03);
}
.related-categories .related-category {
  transition: all 0.2s ease-out;
}

/*%scrollbar {
  &::-webkit-scrollbar {
    display: initial;
    //max-height: 8px;
    //max-width: 8px;
  }
  &::-webkit-scrollbar-track {
    background-color: var(--grey-1);
    border-radius: var(--spacing-05);
  }

  &::-webkit-scrollbar-thumb {
    background-color: var(--grey-3);
    border-radius: var(--spacing-05);
  }
}

*::-webkit-scrollbar {
  display: initial;
  max-height: 8px;
  max-width: 8px;
}
*::-webkit-scrollbar-track {
  background-color: var(--grey-1);
  border-radius: var(--spacing-05);
}

*::-webkit-scrollbar-thumb {
  background-color: var(--grey-3);
  border-radius: var(--spacing-05);
}*/
body.single-product .attribute-swatch-holder .original, .pling-shop-the-look .attribute-swatch-holder .original {
  display: flex;
  align-content: center;
}
body.single-product .attribute-swatch-holder .original .attribute-label, .pling-shop-the-look .attribute-swatch-holder .original .attribute-label {
  flex: 1 0 auto;
  display: flex;
  align-items: center;
  margin-right: var(--spacing-03);
  height: 50px !important;
}
body.single-product .attribute-swatch-holder .original select, .pling-shop-the-look .attribute-swatch-holder .original select {
  height: 50px;
  font-weight: var(--font-weight-bold) !important;
  font-size: var(--font-size-s) !important;
  line-height: 26px !important;
  background-color: transparent;
  box-shadow: none !important;
  border: none !important;
  padding: 0;
  height: 50px;
  margin: 0 !important;
  -webkit-appearance: none; /* Removes iOS default styling */
  -moz-appearance: none; /* Removes Firefox default styling */
  appearance: none; /* Standard appearance removal */
  outline: none;
  border-image-width: 0 !important;
  pointer-events: none;
  background-image: none !important;
}
body.single-product .attribute-swatch-holder.swatch-type-text button, .pling-shop-the-look .attribute-swatch-holder.swatch-type-text button {
  min-width: 90px;
  text-transform: none !important;
}
body.single-product .attribute-swatch-holder.swatch-type-text .option-select, .pling-shop-the-look .attribute-swatch-holder.swatch-type-text .option-select {
  margin-bottom: var(--spacing-03);
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
body.single-product .attribute-swatch-holder.swatch-type-image, .pling-shop-the-look .attribute-swatch-holder.swatch-type-image {
  margin-bottom: var(--spacing-03);
}
body.single-product .attribute-swatch-holder.swatch-type-image .option-select, .pling-shop-the-look .attribute-swatch-holder.swatch-type-image .option-select {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* Adjust the number of columns as needed */
  gap: var(--spacing-03);
  overflow: visible;
}
@media (min-width: 767px) {
  body.single-product .attribute-swatch-holder.swatch-type-image .option-select, .pling-shop-the-look .attribute-swatch-holder.swatch-type-image .option-select {
    display: flex;
    flex-wrap: wrap;
  }
  body.single-product .attribute-swatch-holder.swatch-type-image .option-select .image-swatch, .pling-shop-the-look .attribute-swatch-holder.swatch-type-image .option-select .image-swatch {
    width: 80px;
  }
}
body.single-product .attribute-swatch-holder .time-to-generate, .pling-shop-the-look .attribute-swatch-holder .time-to-generate {
  display: none;
}
body.single-product .attribute-swatch-holder .user-instruction, .pling-shop-the-look .attribute-swatch-holder .user-instruction {
  height: 50px;
  display: flex;
  align-items: center;
  font-family: var(--font-family-headline);
  font-weight: 300;
  color: var(--text-color-on-bright-2);
}
body.single-product .attribute-swatch-holder .user-instruction strong, .pling-shop-the-look .attribute-swatch-holder .user-instruction strong {
  font-weight: 300;
  color: var(--text-color-on-bright-2);
}
body.single-product .attribute-swatch-holder button, .pling-shop-the-look .attribute-swatch-holder button {
  white-space: nowrap;
}
body.single-product .attribute-swatch-holder button.disabled, .pling-shop-the-look .attribute-swatch-holder button.disabled {
  background: #cccccc;
  color: #333333;
}
body.single-product .attribute-swatch-holder button.text-swatch.selected, .pling-shop-the-look .attribute-swatch-holder button.text-swatch.selected {
  background: var(--color-accent) !important;
  border-color: var(--color-accent) !important;
  color: var(--text-color-on-dark) !important;
}
body.single-product .attribute-swatch-holder button.image-swatch, .pling-shop-the-look .attribute-swatch-holder button.image-swatch {
  aspect-ratio: 1/1;
  width: 100%;
  overflow: hidden;
  text-indent: -99999px;
  appearance: none;
  border: 1px solid #cccccc;
  background-size: 60% auto;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #ffffff;
  border-radius: 90%;
  transition: all 0.2s ease-in-out;
  position: relative;
}
body.single-product .attribute-swatch-holder button.image-swatch.selected, .pling-shop-the-look .attribute-swatch-holder button.image-swatch.selected {
  border: 3px solid var(--color-accent);
  background-color: #ffffff;
}
body.single-product .attribute-swatch-holder button.image-swatch.disabled, .pling-shop-the-look .attribute-swatch-holder button.image-swatch.disabled {
  filter: grayscale(0.5);
  opacity: 0.5;
  background-color: transparent !important;
}
body.single-product .attribute-swatch-holder button.image-swatch.disabled::after, .pling-shop-the-look .attribute-swatch-holder button.image-swatch.disabled::after {
  content: "✕";
  width: 100%;
  height: 100%;
  text-indent: 0;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  opacity: 0.5;
}
body.single-product .imbaa-erp-attribute-swatches .original, .pling-shop-the-look .imbaa-erp-attribute-swatches .original {
  display: none;
}
body.single-product .imbaa-erp-attribute-swatches.type-image.selected .original, .pling-shop-the-look .imbaa-erp-attribute-swatches.type-image.selected .original {
  display: flex;
}
body.single-product .imbaa-erp-attribute-swatches.type-image.selected .user-instruction, .pling-shop-the-look .imbaa-erp-attribute-swatches.type-image.selected .user-instruction {
  display: none;
}

/* ----------------------------------- //
  //      CSS Hacks Mixins for Sass
  // ----------------------------------- //
	  How to use:
	  @include [Mixin_Name]( 'selector', (property: value) )
	  Example:
	  @include only_ie9( '.my_element', (color: red) )
	  @include only_ff28_above( '.my_element', (
		  background-color: green,
		  display: flex,
		  margin: 2em,
	  ))
	  Tips:
		- Use firefox mixins before IE mixins. Sometimes Firefox wants to precess the IE css but it can't and skips it's own CSS!
  // ----------------------------------- //
	  List of Mixins:
	  only_ff
	  only_ff2
	  only_ff2_above
	  only_ff3_above
	  only_ff6_above
	  only_ff16_above
	  only_ff21_above
	  only_ff24_above
	  only_ff25_above
	  only_ff26_above
	  only_ff27_above
	  only_ff28_above
	  only_ff30_above
	  only_webkit
	  only_chrome
	  only_safari
	  only_safari9
	  only_ios
	  only_safari_no_ios
	  only_opera9_safari2
	  only_opera
	  only_opera11
	  only_edge
	  only_ie6
	  only_ie7
	  only_ie7_below
	  only_ie8
	  only_ie8_below
	  only_ie9
	  only_ie9_below
	  only_ie10_above
	  only_ie11
	  only_ie11_above
	  no_ie6
	  only_ie9_saf4_above
	  no_ie_safari6
  // ----------------------------------- */
/* ----------------------------------- //
  //          Firefox CSS Hacks
  // ----------------------------------- */
/*--- Only Firefox ---*/
/*--- Only Firefox 1.5 and Firefox 2 ---*/
/*--- Only Firefox ≥ 2 ---*/
/*--- Only Firefox ≥ 3 ---*/
/*--- Only Firefox ≥ 6 ---*/
/*--- Only Firefox ≥ 16 ---*/
/*--- Only Firefox ≥ 21 ---*/
/*--- Only Firefox ≥ 24 ---*/
/*--- Only Firefox ≥ 25 ---*/
/*--- Only Firefox ≥ 26 ---*/
/*--- Only Firefox ≥ 27 ---*/
/*--- Only Firefox ≥ 28 ---*/
/*--- Only Firefox ≥ 30 ---*/
/* ----------------------------------- //
//          Webkit CSS Hacks
// ----------------------------------- */
/*--- Only Webkit (Chrome, Safari, Opera ≥ 14) ---*/
/*--- Only Chrome 28+, Opera ≥ 14 ---*/
/*--- Only Safari ≥ 6.1 ---*/
/*--- Only Safari ≥ 9 ---*/
/*--- Only iOS Safari ≥ 9 ---*/
/*--- Only Safari ≥ 9 (Non iOS) ---*/
/*--- Only Opera ≤ 9.27, Safari ≤ 2 ---*/
/* ----------------------------------- //
//           Opera CSS Hacks
// ----------------------------------- */
/*--- Only Opera ≥ 9.5 ---*/
/*--- Only Opera ≤ 11 ---*/
/* ----------------------------------- //
//     Edge CSS Hacks
// ----------------------------------- */
/* ----------------------------------- //
//     Internet Explorer CSS Hacks
// ----------------------------------- */
/*--- Only IE ≤ 6 ---*/
/*--- Only IE7 ---*/
/*--- Only IE ≤ 7 ---*/
/*--- Only IE8 ---*/
/*--- Only IE ≤ 8 ---*/
/*--- Only IE9 ---*/
/*--- Only IE ≤ 9 ---*/
/*--- Only IE10 ---*/
/*--- Only IE ≥ 11 ---*/
/*--- Anything but IE6 ---*/
/*--- Only IE ≥ 9, safari4, android ≥ 2.3 ---*/
/* ----------------------------------- //
//           Other CSS Hacks
// ----------------------------------- */
/*--- Everything but IE and Safari ≤ 6 ---*/
.off-canvas-sidebar.left {
  left: 0px;
  transform: translateX(-110%);
}
.off-canvas-sidebar.right {
  right: 0px;
  transform: translateX(110%);
}
.off-canvas-sidebar.active {
  transform: translateX(0%);
}
.off-canvas-sidebar {
  top: 0;
  z-index: var(--layer-above-above-navigation);
  background-color: #ffffff;
  position: fixed;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  max-width: var(--off-canvas-max-width);
  transition: transform var(--transition-duration-default) linear;
}
.off-canvas-sidebar .off-canvas-header, .off-canvas-sidebar .off-canvas-footer {
  background-color: #ffffff;
  font-family: var(--font-family-headline);
  padding: var(--spacing-03);
  display: flex;
  align-items: center;
}
.off-canvas-sidebar .off-canvas-header .primary-icon, .off-canvas-sidebar .off-canvas-footer .primary-icon {
  color: var(--color-primary);
  width: 25px;
  height: 25px;
}
.off-canvas-sidebar .off-canvas-header {
  border-bottom: 1px solid var(--grey-3);
  font-size: var(--font-size-m);
  line-height: var(--font-size-m);
  text-transform: uppercase;
}
.off-canvas-sidebar .off-canvas-header .primary-icon {
  color: var(--color-primary);
  margin-right: var(--spacing-03);
}
.off-canvas-sidebar .off-canvas-header .off-canvas-headline {
  flex-grow: 1;
}
.off-canvas-sidebar .off-canvas-header .off-canvas-button {
  color: var(--color-primary);
  margin-right: 0;
}
.off-canvas-sidebar .off-canvas-header .off-canvas-button .primary-icon {
  margin: 0;
}
.off-canvas-sidebar .off-canvas-header .off-canvas-button:hover .primary-icon {
  color: var(--color-accent);
}
.off-canvas-sidebar .off-canvas-footer {
  font-family: var(--font-family-body);
}
.off-canvas-sidebar .off-canvas-footer button {
  border: 0;
  padding: 0;
  text-transform: uppercase;
  background-color: transparent;
  display: flex;
  align-items: center;
  font-size: var(--font-size-s);
}
.off-canvas-sidebar .off-canvas-button {
  cursor: pointer;
  line-height: 1;
  padding: 0;
  background: transparent;
  border: 0;
  color: var(--color-primary);
}
.off-canvas-sidebar {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.off-canvas-sidebar .off-canvas-header, .off-canvas-sidebar .off-canvas-footer {
  flex-shrink: 0;
}
.off-canvas-sidebar .off-canvas-content {
  flex-grow: 1;
  overflow-y: auto;
}
.off-canvas-sidebar .off-canvas-content .cart {
  padding: 0 var(--spacing-03);
}

.global-backdrop {
  top: 0;
  left: 0;
  position: fixed;
  height: 100%;
  width: 100%;
  background: rgba(28, 28, 28, 0.4);
  z-index: 11;
  opacity: 0;
  display: none;
  transition: all 300ms ease-out;
}
.global-backdrop.above-menu {
  z-index: var(--layer-above-navigation);
}
.global-backdrop.visible {
  display: block;
  opacity: 1;
}

body.fade-out #the-global-backdrop {
  display: block;
  opacity: 1;
}

body.no-overflow,
html.no-overflow {
  overflow: hidden;
}

.global-popup {
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--layer-above-above-navigation);
  opacity: 0;
  transition: all 200ms linear;
  transform: scale(0);
}
.global-popup.visible {
  opacity: 1;
  transform: scale(1);
}
@media (min-width: 767px) {
  .global-popup {
    top: 50%;
    left: 50%;
    width: 100%;
    max-width: var(--max-site-width);
    max-height: 100vh;
    height: auto;
    transform: translate(0, -50%) scale(0);
  }
  .global-popup.visible {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
.global-popup .global-popup-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: var(--spacing-05);
}
.global-popup .global-popup-header .global-popup-title {
  flex-grow: 1;
  margin: 0;
  padding: 0;
}
.global-popup .global-popup-body {
  padding: 0 var(--spacing-05);
}

.woocommerce-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: max-content;
  margin: var(--spacing-10) auto;
  width: auto;
}
.woocommerce-pagination .pagination-info {
  padding: 0 var(--spacing-03);
}
.woocommerce-pagination a {
  display: flex;
  line-height: 0;
}
.woocommerce-pagination a .primary-icon {
  color: #000000;
}

/*Header Cart Counter*/
.header-cart-count {
  width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  font-size: 10px;
  border-radius: 100%;
  position: absolute;
  z-index: 5;
  top: -5px;
  right: -5px;
  color: #ffffff;
  background-color: var(--color-accent);
  visibility: hidden;
  transition: all 0.3s ease;
}
.header-cart-count.has-contents {
  visibility: visible;
}
.header-cart-count.bounce {
  animation: bounce 1.5s ease;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-15px);
  }
  60% {
    transform: translateY(-10px);
  }
}
.menu-item.class-of-wishlist svg {
  fill: transparent;
}
.menu-item.class-of-wishlist:hover svg {
  stroke: var(--color-accent);
}
.menu-item.class-of-wishlist #pling-woocommerce-wishlist_wishlist-count {
  width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  font-size: 10px !important;
  border-radius: 100%;
  z-index: 5;
  top: -5px !important;
  right: -5px !important;
  color: #ffffff;
  background-color: var(--color-accent);
  visibility: hidden;
  transition: all 0.3s ease;
}
.menu-item.class-of-wishlist #pling-woocommerce-wishlist_wishlist-count.bounce {
  animation: bounce 1.5s ease;
}
.menu-item.class-of-wishlist #pling-woocommerce-wishlist_wishlist-count.has-contents {
  visibility: visible;
}

.wildcat-login-nag {
  background-color: var(--grey-3);
  padding: var(--spacing-16) var(--spacing-07);
  margin: var(--spacing-06) 0;
  text-align: center;
}
.wildcat-login-nag a:link, .wildcat-login-nag a:visited {
  text-decoration: underline;
}
.wildcat-login-nag a:hover {
  color: var(--color-accent);
}

/* Category Nav im Content*/
.elementor .elementor-nav-menu {
  margin: var(--spacing-05) 0;
}
.elementor .elementor-nav-menu .menu-item {
  background-color: #ffffff;
  border: 1px solid var(--color-primary);
  margin: 5px;
  display: inline-block;
}
.elementor .elementor-nav-menu .menu-item a:hover {
  background-color: var(--color-primary);
  color: #fff;
}

.quickorder-table-holder {
  position: relative;
}
.quickorder-table-holder .quickorder-colatterals {
  justify-content: center !important;
  position: absolute;
  top: 0;
  right: 0;
}
.quickorder-table-holder .quickorder-table-wrapper {
  max-height: 80vh;
  min-height: 400px;
  overflow: auto;
  border: 1px solid #ccc;
}
.quickorder-table-holder table {
  border-collapse: collapse;
}
.quickorder-table-holder table th {
  font-size: var(--font-size-xs);
  text-align: left;
  font-family: var(--font-family-body);
  font-weight: var(--font-weight-bold);
  padding: var(--spacing-03) var(--spacing-05) var(--spacing-03) var(--spacing-03);
  white-space: nowrap;
  background-color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1;
}
.quickorder-table-holder table td {
  font-size: var(--font-size-xs);
  font-family: var(--font-family-body);
  vertical-align: middle;
  padding: 0 var(--spacing-05) 0 var(--spacing-03);
  border-collapse: collapse;
  border-bottom: 1px solid #cccccc;
}
.quickorder-table-holder table tr:last-child td {
  border-bottom: 0;
}
.quickorder-table-holder table .stock {
  padding: 0;
  margin: 0;
}
.quickorder-table-holder table input {
  appearance: none;
  --webkit-appearance: none;
  box-shadow: none !important;
  text-align: left;
}

.menu-item-button.global-quickorder {
  display: none !important;
}
@media (min-width: 1024px) {
  .menu-item-button.global-quickorder {
    display: block !important;
  }
}

#global-quickorder {
  bottom: 0;
  top: unset;
  transform: translate(-50%, 0);
  max-width: 100% !important;
}
#global-quickorder .global-quickorder-form {
  width: 100%;
  margin: 0;
  padding: 0;
}
#global-quickorder .global-quickorder-form .quickorder-form-content {
  display: flex;
  flex-direction: row;
}
#global-quickorder .global-quickorder-form .quickorder-form-content input {
  width: auto !important;
}
#global-quickorder .global-quickorder-form .quickorder-form-content .product-image {
  width: 60px;
  height: 60px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
#global-quickorder .global-quickorder-form .quickorder-form-content input[name=sku] {
  flex-grow: 2;
}
#global-quickorder .global-quickorder-form .quickorder-form-content input[name=product] {
  flex-grow: 2;
  padding-left: var(--spacing-03);
  border-radius: 0;
  border: 1px solid var(--grey-3);
  background-color: #ffffff;
}
#global-quickorder .global-quickorder-form .quickorder-form-content input[name=quantity] {
  flex-shrink: 5;
}
#global-quickorder .global-quickorder-form .quickorder-form-content button.submit {
  display: flex;
  align-items: center;
}
#global-quickorder .global-quickorder-form .quickorder-form-content button.submit .primary-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  color: #ffffff !important;
}
#global-quickorder .global-quickorder-form .quickorder-form-content button.submit::hover .primary-icon {
  color: var(--color-accent) !important;
}
#global-quickorder .global-quickorder-form .quickorder-form-content button.submit:disabled {
  opacity: 0.5;
  cursor: not-allowed !important;
}
#global-quickorder .quickorder-form-message {
  margin-top: 10px;
  transition: all 200ms linear;
}
#global-quickorder .quickorder-form-message .woocommerce-message, #global-quickorder .quickorder-form-message .woocommerce-error {
  margin: 10px 0;
  border: 1px solid var(--grey-3);
}

.global-quickorder-wrapper {
  display: none;
}

@media (min-width: 1024px) {
  .global-quickorder-wrapper {
    display: block;
  }
}
table:not(.variations) {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--color-border);
}
table:not(.variations) th, table:not(.variations) td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  font-weight: normal;
  -moz-hyphens: auto;
  -o-hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  word-break: break-word;
  min-width: 100px;
}
table:not(.variations) tr:nth-child(even) {
  background-color: #f9f9f9;
}
table:not(.variations) th {
  background-color: var(--color-darker-background2);
  color: var(--text-color-on-bright);
}
table:not(.variations) tr:hover td, table:not(.variations) tr:hover th {
  background-color: #ddd;
}

.geolocation-suggestion-notice {
  display: block;
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  z-index: var(--layer-navigation);
  background-color: #ffffff;
  border-top: 2px solid var(--color-accent);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}
.geolocation-suggestion-notice .geolocation-suggestion-notice-inner {
  max-width: var(--max-site-width);
  margin: 0 auto;
}
.geolocation-suggestion-notice .geolocation-suggestion-notice-inner .close {
  height: auto;
  margin-top: var(--spacing-03);
}
@media (min-width: 1024px) {
  .geolocation-suggestion-notice .geolocation-suggestion-notice-inner .close {
    display: block;
    position: absolute;
    margin: 0;
    top: var(--spacing-05);
    right: var(--spacing-05);
  }
}

.wc-footer .footer-menu-headline {
  color: #ffffff !important;
  font-family: var(--font-family-headline);
  font-size: var(--font-size-m);
  line-height: var(--font-size-m);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  margin: 0;
}
.wc-footer .footer-menu-headline .primary-icon {
  margin-right: var(--spacing-03);
  flex-shrink: 0;
}
.wc-footer .footer-seo-heading {
  margin: 0;
  padding: 0;
  font: inherit;
  color: inherit;
}
.wc-footer .footer-menu-container {
  padding: var(--spacing-04) 0 var(--spacing-04) 0;
  margin-bottom: var(--spacing-05);
}
.wc-footer .footer-menu-container .footer-menu-headline {
  margin: var(--spacing-05) 0;
}
.wc-footer .footer-menu,
.wc-footer .footer-menu ul:not(.international-menu) {
  list-style: none;
  display: flex;
  flex-flow: column nowrap;
  row-gap: var(--spacing-04);
  padding: 0;
  margin: 0;
}
.wc-footer .footer-menu .international-menu,
.wc-footer ul.international-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 767px) {
  .wc-footer .footer-menu .international-menu,
  .wc-footer ul.international-menu {
    display: flex;
    flex-flow: row wrap;
    row-gap: var(--spacing-03);
    column-gap: var(--spacing-03);
    justify-content: center;
  }
}
.wc-footer .icon-wrapper {
  display: flex;
  flex-flow: row wrap;
  column-gap: var(--spacing-03);
  row-gap: var(--spacing-03);
}
.wc-footer .icon-wrapper .vendor-icon {
  background-color: #333333;
  width: 50px;
  height: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}
.wc-footer .icon-wrapper .vendor-icon svg {
  height: 20px;
  width: auto !important;
  fill: var(--text-color-on-dark);
  opacity: 0.8;
}
.wc-footer .icon-wrapper .vendor-icon svg:hover {
  opacity: 1;
}
.wc-footer .icon-wrapper .vendor-icon.icon-love svg {
  fill: var(--color-accent);
}
.wc-footer .direct-links .menu-item-button {
  display: none;
}
.wc-footer .menu-item {
  display: flex;
  align-items: flex-start;
  flex-flow: column;
}
.wc-footer .menu-item .simple-icon, .wc-footer .menu-item .simple-icon svg {
  width: 20px;
  height: 20px;
}
.wc-footer .menu-item .menu-item-content {
  display: flex;
  flex-flow: row nowrap;
  column-gap: var(--spacing-03);
  align-items: center;
}
.wc-footer .menu-item a:link,
.wc-footer .menu-item a:visited {
  text-decoration: none;
  transition: all 300ms ease-in-out;
  color: var(--text-color-on-dark);
  font-weight: 400;
  text-transform: uppercase;
  text-underline-offset: 2px;
  font-size: var(--font-size-s);
  line-height: var(--font-size-s);
}
.wc-footer .menu-item a:link:hover,
.wc-footer .menu-item a:visited:hover {
  color: var(--color-accent) !important;
}
.wc-footer .menu-item a[href*="#"] {
  pointer-events: none;
  cursor: default;
}
.wc-footer .menu-item .menu-item-text {
  color: var(--text-color-on-dark);
  font-weight: 400;
  text-transform: uppercase;
  text-underline-offset: 2px;
  font-size: var(--font-size-s);
  line-height: var(--font-size-m);
  display: flex;
  flex-flow: column nowrap;
}
.wc-footer .menu-item .menu-item-text--subtext {
  color: var(--text-color-on-dark-2);
  font-size: var(--font-size-xs);
  letter-spacing: 0.5px;
  text-decoration: none !important;
  line-height: var(--font-size-m);
  padding-left: 32px;
}
.wc-footer .sub-menu {
  width: 100%;
  display: block;
  margin-top: 3px;
  padding: var(--spacing-03) 0 0 0;
}
.wc-footer .sub-menu .menu-item {
  padding: 5px 0;
}
.wc-footer .sub-menu .menu-item a:link, .wc-footer .sub-menu .menu-item a:visited {
  font-size: var(--font-size-xs);
}
@media (max-width: 766px) {
  .wc-footer .footer-menu-container.toggleable {
    border-top: 1px solid #ffffff;
    margin-bottom: 0;
  }
  .wc-footer .footer-menu-container.toggleable .footer-menu-headline {
    margin: 0;
    cursor: pointer;
  }
  .wc-footer .footer-menu-container.toggleable .footer-menu-headline .icon-minus {
    display: none;
  }
  .wc-footer .footer-menu-container.toggleable .footer-menu-headline.active .icon-plus {
    display: none;
  }
  .wc-footer .footer-menu-container.toggleable .footer-menu-headline.active .icon-minus {
    display: block;
  }
  .wc-footer .footer-menu-container.toggleable .footer-menu {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin: 0 0 0 var(--spacing-10);
    padding: 0;
    transition: all 300ms ease-out;
  }
  .wc-footer .footer-menu-container.toggleable .footer-menu.active {
    max-height: inherit;
    opacity: 1;
    padding: var(--spacing-04) 0 var(--spacing-04) 0;
    display: flex;
    flex-flow: column nowrap;
    row-gap: var(--spacing-05);
  }
  .wc-footer .footer-menu-container.toggleable .footer-menu.active ul:not(.international-menu) {
    display: flex;
    flex-flow: column nowrap;
    row-gap: var(--spacing-05);
  }
}
@media (min-width: 767px) {
  .wc-footer .footer-menu-container.toggleable .primary-icon {
    display: none;
  }
}

.wc-footer {
  background-image: url(../assets/footer-mood.png);
  background-size: 50% auto;
  background-repeat: no-repeat;
  background-position: top right;
}
.wc-footer .footer-disclaimer {
  width: 100%;
  font-size: var(--font-size-xs);
  color: var(--text-color-on-dark);
  padding: var(--spacing-06) 0;
  text-align: center;
}
.wc-footer .footer-disclaimer .footer-trust-elements {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-06);
  margin: 0;
  padding: 0;
  list-style: none;
}
.wc-footer .footer-disclaimer .footer-trust-elements .trusted-shop-icon-wrapper {
  height: 69px;
  width: 69px;
}
.wc-footer .footer-disclaimer .footer-trust-elements .trusted-shop-icon-wrapper .trusted-shop-icon {
  height: 69px;
  width: 69px;
}
.wc-footer .footer-disclaimer .footer-trust-elements .trusted-shop-icon-wrapper {
  margin-bottom: var(--spacing-03);
}
.wc-footer .footer-icons {
  height: 40px;
  margin: 0 0 10px 0;
  width: 100%;
  text-align: center;
}
.wc-footer .footer-icons .primary-icon {
  fill: #ffffff;
  width: 40px;
  height: 40px;
}
.wc-footer .footer-icons .icon-heart {
  fill: var(--color-accent);
}
.wc-footer .footer-seo {
  column-gap: var(--spacing-03);
}
@media (min-width: 767px) {
  .wc-footer .footer-seo {
    columns: 1;
  }
}
@media (min-width: 1024px) {
  .wc-footer .footer-seo {
    columns: 4;
  }
}
.wc-footer .footer-seo h1, .wc-footer .footer-seo h2, .wc-footer .footer-seo h3, .wc-footer .footer-seo h4, .wc-footer .footer-seo h5, .wc-footer .footer-seo p {
  font-size: 14px;
  line-height: 16px;
  padding: 0;
  margin: 0 0 14px 0;
  color: #ffffff;
}
.wc-footer .footer-seo a:link, .wc-footer .footer-seo a:visited {
  color: var(--color-accent);
  text-decoration: none;
}
.wc-footer .wildcat-international {
  width: 100%;
}
@media (min-width: 767px) {
  .wc-footer .wildcat-international .footer-menu-headline {
    display: none;
  }
}
@media (min-width: 767px) {
  .wc-footer .wildcat-international .international-menu {
    display: flex;
    gap: var(--spacing-03);
  }
}
.wc-footer .wildcat-international .international-menu {
  padding: 0;
  margin: 0;
  justify-content: center;
}
.wc-footer .wildcat-international .international-menu li {
  list-style: none;
  padding: var(--spacing-03) 0;
  text-align: center;
}
body.no-overflow #trustbadge-container-98e3dadd90eb493088abdc5597a70810, body.mobile-search--open #trustbadge-container-98e3dadd90eb493088abdc5597a70810, body.no-scroll #trustbadge-container-98e3dadd90eb493088abdc5597a70810 {
  opacity: 0;
  display: none;
}

#gdpr-consent-notice .footer {
  text-align: center;
}
#gdpr-consent-notice .footer a:link, #gdpr-consent-notice .footer a:visited {
  display: inline-block !important;
}
#gdpr-consent-notice .footer .allow:visited,
#gdpr-consent-notice .footer .allow:link {
  padding: var(--spacing-02) !important;
  margin-bottom: var(--spacing-02);
}
#gdpr-consent-notice .footer .save-settings {
  text-decoration: none;
}
#gdpr-consent-notice .consent-content p {
  font-size: 14px !important;
}
#gdpr-consent-notice .consent-settings {
  column-gap: var(--spacing-05);
}
#gdpr-consent-notice .consent-settings label {
  font-weight: normal !important;
}
#gdpr-consent-notice .consent-settings input[type=checkbox] + label {
  font-family: var(--font-family-headline);
  line-height: 13px;
  font-size: 13px;
  text-transform: uppercase;
  padding-left: 0px !important;
}
#gdpr-consent-notice .consent-settings input[type=checkbox] + label::before {
  width: 8px;
  height: 8px;
  border-width: 1px;
  font-size: 8px !important;
  position: static !important;
}
#gdpr-consent-notice .consent-settings input[type=checkbox]:checked + label::before {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
  font-size: 12px;
}
#gdpr-consent-notice .consent-settings input[type=checkbox]:disabled + label {
  opacity: 0.5;
  color: var(--text-color-on-bright-1);
}

#gdpr-consent-notice.advanced-style .footer .allow:visited,
#gdpr-consent-notice.advanced-style .footer .allow:link {
  display: block;
  width: 100%;
  margin: 0;
  max-width: 100%;
}

/*== start of code for tooltips ==*/
.tool {
  cursor: help;
  position: relative;
  text-align: center;
  /*== common styles for both parts of tool tip ==*/
}
.tool::before, .tool::after {
  left: 50%;
  opacity: 0;
  position: absolute;
  z-index: -100;
}
.tool:hover::before, .tool:focus::before, .tool:hover::after, .tool:focus::after {
  opacity: 1;
  transform: scale(1) translateY(0);
  z-index: 100;
}
.tool {
  /*== pointer tip ==*/
}
.tool::before {
  border-style: solid;
  border-width: 1em 0.75em 0 0.75em;
  border-color: #3E474F transparent transparent transparent;
  bottom: 100%;
  content: "";
  margin-left: -0.5em;
  transition: all 0.65s cubic-bezier(0.84, -0.18, 0.31, 1.26), opacity 0.65s 0.5s;
  transform: scale(0.6) translateY(-90%);
}
.tool:hover::before, .tool:focus::before {
  transition: all 0.65s cubic-bezier(0.84, -0.18, 0.31, 1.26) 0.2s;
}
.tool {
  /*== speech bubble ==*/
}
.tool::after {
  background: #3E474F;
  border-radius: 0.25em;
  bottom: 130%;
  color: #EDEFF0;
  content: attr(data-tip);
  margin-left: -8.75em;
  font-size: 1em;
  line-height: 1.2em;
  padding: 0.8em;
  transition: all 0.65s cubic-bezier(0.84, -0.18, 0.31, 1.26) 0.2s;
  transform: scale(0.6) translateY(50%);
  min-width: 10em;
}
.tool:hover::after, .tool:focus::after {
  transition: all 0.65s cubic-bezier(0.84, -0.18, 0.31, 1.26);
}

.horizontal-scrolling-content-wrapper .tool {
  cursor: default;
}
.horizontal-scrolling-content-wrapper .tool:before, .horizontal-scrolling-content-wrapper .tool:after {
  display: none;
}

.hero-header {
  background: var(--color-primary);
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgb(28, 28, 28) 100%);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100vw;
  aspect-ratio: 1/1;
}
@media (min-width: 900px) {
  .hero-header {
    aspect-ratio: unset;
    height: 34vw;
  }
}
.hero-header .image-layer {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero-header .image-layer .image-layer-image, .hero-header .image-layer .image-layer-video {
  width: 100vw;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.hero-header .image-layer .image-layer-video {
  z-index: 2;
}
.hero-header .image-layer .image-layer-video video {
  width: 100%;
}
.hero-header .image-layer .image-layer-video video.hero-video-desktop {
  display: none;
}
@media (min-width: 900px) {
  .hero-header .image-layer .image-layer-video video.hero-video-desktop {
    display: block;
  }
}
.hero-header .image-layer .image-layer-video video.hero-video-mobile {
  display: block;
}
@media (min-width: 900px) {
  .hero-header .image-layer .image-layer-video video.hero-video-mobile {
    display: none;
  }
}
.hero-header .image-layer .image-layer-image {
  transition: all 0.3s ease-out, width 0.5s ease-in-out, left 0.5s ease-in-out;
  background-size: cover;
  background-position: center center;
  background-image: var(--background_mobile);
}
@media (min-width: 900px) {
  .hero-header .image-layer .image-layer-image {
    background-image: var(--background_desktop);
  }
}
.hero-header:hover .image-layer .image-layer-image {
  width: 101vw;
}
.hero-header .header-content-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
.hero-header .header-content-container .header-content {
  max-width: var(--max-site-width);
  margin: 0 auto;
}
.hero-header .header-content-container .header-content .hero-header-title {
  background: var(--color-accent);
  width: 95%;
  margin: 0 auto;
  text-align: center;
  padding: var(--spacing-02) var(--spacing-03);
  transform: translateY(50%);
}
@media (min-width: 1024px) {
  .hero-header .header-content-container .header-content .hero-header-title {
    padding: var(--spacing-05);
    max-width: 600px;
    transform: translateY(50%);
    text-align: left;
    margin: 0;
  }
}

body.blurry .hero-header .image-layer-image {
  filter: blur(4px);
  scale: 1.1;
}

.hero-header h1, .hero-header h2, .hero-header h3, .hero-header h4, .hero-header h5 {
  color: #ffffff;
  margin: 0;
}
.hero-header .hero-header-subline {
  color: #ffffff;
}
.hero-header .entry-title {
  font-size: var(--font-size-s);
}
.hero-header .hero-header-subline {
  font-size: var(--font-size-xs);
}
@media (min-width: 767px) {
  .hero-header .entry-title {
    font-size: var(--font-size-xl);
  }
  .hero-header .hero-header-subline {
    font-size: var(--font-size-m);
    margin-top: var(--spacing-03);
  }
}

.hero-header + .content-area {
  padding-top: 65px !important;
}
@media screen and (min-width: 1370px) {
  .hero-header + .content-area {
    padding-top: 75px !important;
  }
}
@media (min-width: 1800px) {
  .hero-header + .content-area {
    padding-top: 100px !important;
  }
}

.simple-header {
  width: 100%;
  text-align: center;
  min-height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.simple-header .simple-header-headline {
  margin: 0;
}
.simple-header .simple-header-subline {
  font-size: var(--font-size-m);
}

#pqt-tracking {
  max-width: var(--max-site-width);
  margin: 0 auto;
}
@media (min-width: 767px) {
  #pqt-tracking {
    padding: 50px 0;
  }
}
#pqt-tracking .pqt-site-wrapper .pqt-wrapper {
  display: flex;
  flex-wrap: wrap;
}
#pqt-tracking .pqt-site-wrapper .pqt-header {
  flex: 1 0 100%;
  padding: var(--spacing-05);
  padding-bottom: 0;
}
#pqt-tracking .pqt-site-wrapper .pqt-header .pqt-main-title {
  margin: 0;
  text-align: center;
}
#pqt-tracking .pqt-site-wrapper .pqt-select {
  flex: 1 0 100%;
  padding: var(--spacing-05);
}
@media (min-width: 1024px) {
  #pqt-tracking .pqt-site-wrapper .pqt-select {
    padding-left: 0;
    padding-right: 0;
  }
}
#pqt-tracking .pqt-site-wrapper .pqt-sidebar {
  background-color: #f9f9f9;
  padding: 20px;
  flex: 1 0 100%;
}
#pqt-tracking .pqt-site-wrapper .pqt-sidebar .pqt-block-title {
  text-align: center;
  font-family: var(--font-family-headline);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-m);
  text-transform: uppercase;
}
@media (min-width: 1024px) {
  #pqt-tracking .pqt-site-wrapper .pqt-sidebar {
    flex: 0 1 50%;
  }
}
#pqt-tracking .pqt-site-wrapper .pqt-main {
  flex: 0 0 100%;
  padding: var(--spacing-05);
  padding-top: 50px;
}
@media (min-width: 1024px) {
  #pqt-tracking .pqt-site-wrapper .pqt-main {
    flex: 0 1 50%;
    padding-left: 50px;
    padding-top: 100px;
  }
}
#pqt-tracking .pqt-site-wrapper .pqt-day .pqt-day-digit {
  color: #ffffff !important;
}
#pqt-tracking .pqt-site-wrapper .pqt-delivery-date.pqt-block {
  border: none !important;
}
#pqt-tracking .pqt-site-wrapper .pqt-sidebar-footer-widget {
  width: 100% !important;
}
#pqt-tracking .pqt-site-wrapper .pqt-sidebar-footer-widget .pqt-block-title, #pqt-tracking .pqt-site-wrapper .pqt-sidebar-footer-widget .pqt-parcial-service-icon {
  text-align: center !important;
}
#pqt-tracking .pqt-site-wrapper .pqt-sidebar-footer-widget .pqt-block-title img, #pqt-tracking .pqt-site-wrapper .pqt-sidebar-footer-widget .pqt-parcial-service-icon img {
  display: inline-block;
  padding: 0;
  margin: var(--spacing-03) 0 0 0;
}
#pqt-tracking .pqt-site-wrapper .pqt-sidebar-footer-widget:first-child, #pqt-tracking .pqt-site-wrapper .pqt-sidebar-footer-widget:nth-child(2) {
  display: none;
}
#pqt-tracking .pqt-select, #pqt-tracking .pqt-sidebar, #pqt-tracking .pqt-main {
  float: none !important;
}

.payment-methods-table .icon img {
  width: auto !important;
  height: 30px !important;
}

.wildcat-product-tile button.pling-wishlist-button {
  border: none;
  padding: 5px;
  width: 24px;
  height: 24px;
  fill: var(--color-accent);
  background-color: transparent;
}
.wildcat-product-tile button.pling-wishlist-button:hover {
  fill: var(--color-accent);
  scale: 1.2;
}
.wildcat-product-tile button.pling-wishlist-button.in-wishlist {
  fill: var(--color-accent);
}

form.cart .pling-wishlist-button {
  margin-left: var(--spacing-01);
  padding: 5px 10px;
  color: #ffffff;
  flex: 0;
}
form.cart .pling-wishlist-button svg {
  fill: var(--text-color-on-dark);
}
form.cart .pling-wishlist-button:hover svg {
  fill: var(--color-accent);
}

.wishlist-items .wishlist-item .wishlist-img {
  padding: 50px var(--spacing-05);
}
.wishlist-items .wishlist-item .pling_wishlist-menu-wishlist-item-add-to-cart {
  background: var(--color-accent) !important;
}
.wishlist-items .wishlist-item .pling_wishlist-menu-wishlist-item-add-to-cart:hover {
  background-color: var(--color-primary) !important;
}
.wishlist-items .wishlist-item .pling_wishlist-menu-wishlist-item-delete {
  background: var(--grey-7) !important;
  opacity: 0.5;
}
.wishlist-items .wishlist-item .pling_wishlist-menu-wishlist-item-delete:hover {
  opacity: 1;
}
.wishlist-items .wishlist-item .product-price {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: var(--font-size-s);
}
.wishlist-items .wishlist-item .product-price del {
  font-size: var(--font-size-xxs);
}
.wishlist-items .wishlist-item .product-price bdi {
  text-decoration: none;
}
.wishlist-items .wishlist-item .product-price ins {
  text-decoration: none;
}
.wishlist-items .wishlist-item .product-attributes {
  display: grid;
  grid-template-columns: max-content 1fr;
  row-gap: var(--spacing-01);
  column-gap: var(--spacing-01);
  align-items: start;
  line-height: var(--font-size-s);
  padding-bottom: var(--spacing-03) !important;
}
.wishlist-items .wishlist-item .product-attributes dt {
  font-weight: bold;
  grid-column: 1;
}
.wishlist-items .wishlist-item .product-attributes dt::after {
  content: ":";
}
.wishlist-items .wishlist-item .product-attributes dd {
  margin: 0; /* remove default indentation */
  grid-column: 2;
  text-align: right;
}
.wishlist-items .wishlist-item .wishlist-details-header {
  display: flex;
  flex-direction: column;
  padding-bottom: 30px;
}
.wishlist-items .wishlist-item .wishlist-details-header .product-title {
  font-size: var(--font-size-s);
  line-height: var(--font-size-m);
  margin: 0;
}
.wishlist-items .wishlist-item .wishlist-details-header .product-sku {
  font-size: var(--font-size-xxs);
  line-height: var(--font-size-xxs);
}

.pling-shipments_address-validation-result {
  border-color: transparent;
  padding: 0;
}
.pling-shipments_address-validation-result .address-validation-title {
  font-size: var(--font-size-m);
  margin: 0;
}
.pling-shipments_address-validation-result .address-title {
  font-size: var(--font-size-s);
}
.pling-shipments_address-validation-result .button {
  background-color: var(--color-accent) !important;
  color: var(--text-color-on-accent) !important;
  font-weight: var(--font-weight-normal) !important;
  text-transform: uppercase;
  font-size: var(--font-size-xs) !important;
}
.pling-shipments_address-validation-result .button:hover {
  background-color: var(--color-primary) !important;
}
.pling-shipments_address-validation-result .woocommerce-error {
  margin: var(--spacing-05) 0 !important;
}

body.pling-mega-menu-mobile .pling-mega-menu {
  margin-top: 78px !important;
  height: calc(100vh - 78px) !important;
  overflow: hidden;
  z-index: -1;
}
body.pling-mega-menu-mobile .pling-mega-menu .mobile-extra-menu-container {
  background-color: var(--color-primary);
}
body.pling-mega-menu-mobile .pling-mega-menu .secondary-menu .menu-item-link {
  background-color: var(--color-primary);
  color: #fff;
}
body.pling-mega-menu-mobile .pling-mega-menu .menu-item-level-0 .menu-item-link-level-0 {
  text-transform: uppercase;
}
body.pling-mega-menu-mobile .pling-mega-menu .mobile-back {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 10px;
  background-color: var(--color-primary);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
body.pling-mega-menu-mobile .pling-mega-menu .mobile-back svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: currentColor;
}
body.pling-mega-menu-mobile .pling-mega-menu .mobile-back:hover {
  color: var(--color-accent);
}
body.pling-mega-menu-mobile .sub-menu-wrapper {
  overflow: hidden;
}
body.pling-mega-menu-mobile .secondary-menu .secondary-menu-item:hover .menu-item-link {
  color: var(--color-accent);
}
body.pling-mega-menu-mobile .secondary-menu .menu-item-link {
  background-color: var(--color-primary);
  color: #fff;
  justify-content: start !important;
  column-gap: 20px;
}
body.pling-mega-menu-mobile .mobile-extra-menu-container {
  background-color: var(--color-primary);
}

body.pling-mega-menu-desktop .sub-menu-wrapper {
  border-top: 20px solid #000;
}
body.pling-mega-menu-desktop .pling-mega-menu {
  font-family: var(--font-family-headline);
}
body.pling-mega-menu-desktop .pling-mega-menu .menu-item-level-0 a:link,
body.pling-mega-menu-desktop .pling-mega-menu .menu-item-level-0 a:visited {
  color: #fff;
  text-transform: uppercase;
}
body.pling-mega-menu-desktop .pling-mega-menu .menu-item-level-1 a:link,
body.pling-mega-menu-desktop .pling-mega-menu .menu-item-level-1 a:visited {
  color: #333;
  text-transform: none;
}

body.pling-mega-menu-mobile .pling-mega-menu .menu-item.headline, body.pling-mega-menu-desktop .pling-mega-menu .menu-item.headline {
  font-family: var(--font-family-headline);
  text-transform: uppercase;
  font-weight: var(--font-weight-bold);
  color: var(--headline-color-on-bright-1);
}
body.pling-mega-menu-mobile .sub-menu-wrapper .best-you-can-get .cat-name, body.pling-mega-menu-mobile .sub-menu-wrapper .hide-label .cat-name, body.pling-mega-menu-desktop .sub-menu-wrapper .best-you-can-get .cat-name, body.pling-mega-menu-desktop .sub-menu-wrapper .hide-label .cat-name {
  display: none !important;
}
body.pling-mega-menu-mobile .sub-menu-wrapper .menu-item-link .cat-name, body.pling-mega-menu-desktop .sub-menu-wrapper .menu-item-link .cat-name {
  font-family: var(--font-family-body);
}
body.pling-mega-menu-mobile .menu-item.class-of-sale .menu-item-link-level-0 .cat-name, body.pling-mega-menu-desktop .menu-item.class-of-sale .menu-item-link-level-0 .cat-name {
  color: var(--color-accent);
}
@media (min-width: 1024px) {
  body.pling-mega-menu-mobile .menu-item.class-of-sale:hover .menu-item-link-level-0 .cat-name, body.pling-mega-menu-desktop .menu-item.class-of-sale:hover .menu-item-link-level-0 .cat-name {
    color: var(--text-color-on-dark);
  }
}

body.mobile-nav-opened #trustbadge-container-98e3dadd90eb493088abdc5597a70810, body.mobile-search--open #trustbadge-container-98e3dadd90eb493088abdc5597a70810 {
  display: none !important;
}

.pmm-mega-menu-overlay {
  z-index: 14;
}

.wildcat-piercing-lexicon-single__related-title, .wildcat-piercing-lexicon-single__back-button, .wildcat-piercing-lexicon__category-count {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-xxs);
}

.wildcat-piercing-lexicon__card {
  background-color: var(--color-background-dark);
  color: var(--white);
  border-radius: var(--border-radius);
  transition: background-color var(--transition-duration-default) ease;
}
.wildcat-piercing-lexicon__card:hover {
  background-color: var(--grey-9);
}
.wildcat-piercing-lexicon__card-media {
  background-color: var(--grey-9);
  border-top: 3px solid var(--color-accent);
}
.wildcat-piercing-lexicon__card-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.wildcat-piercing-lexicon__category-title {
  font-weight: var(--font-weight-bold);
  color: var(--white) !important;
}
.wildcat-piercing-lexicon__category-count {
  color: var(--color-accent);
}
.wildcat-piercing-lexicon__entry-list-item + .wildcat-piercing-lexicon__entry-list-item {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.wildcat-piercing-lexicon__entry-link {
  color: var(--white) !important;
  font-size: var(--font-size-s);
  line-height: 1.3;
  transition: color var(--transition-duration-default) ease;
}
.wildcat-piercing-lexicon__entry-link-arrow {
  color: var(--grey-5);
  transition: transform var(--transition-duration-default) ease, color var(--transition-duration-default) ease;
}
.wildcat-piercing-lexicon__entry-link:hover {
  color: var(--color-accent) !important;
}
.wildcat-piercing-lexicon__entry-link:hover .wildcat-piercing-lexicon__entry-link-arrow {
  color: var(--color-accent);
  transform: translateX(4px);
}

.wildcat-piercing-lexicon-single {
  color: var(--text-color-on-bright-1);
  padding: var(--spacing-06) var(--spacing-06) var(--spacing-08);
  max-width: var(--max-site-width);
  margin: 0 auto;
}
.wildcat-piercing-lexicon-single__back-button {
  color: var(--color-accent);
  margin-bottom: var(--spacing-03);
}
.wildcat-piercing-lexicon-single__back-button:hover {
  color: var(--text-color-on-bright-1);
}
.wildcat-piercing-lexicon-single__title {
  text-transform: uppercase;
  font-weight: var(--font-weight-bold);
  color: var(--headline-color-on-bright-1);
}
.wildcat-piercing-lexicon-single__body {
  margin-top: var(--spacing-03);
  gap: var(--spacing-06);
  border-top: 3px solid var(--color-accent);
}
@media (max-width: 766px) {
  .wildcat-piercing-lexicon-single__body {
    gap: var(--spacing-01);
  }
}
.wildcat-piercing-lexicon-single__content {
  font-size: var(--font-size-m);
  line-height: 1.7;
}
.wildcat-piercing-lexicon-single__content a {
  color: var(--color-accent);
  text-decoration: none;
}
.wildcat-piercing-lexicon-single__content a:hover {
  text-decoration: underline;
}
.wildcat-piercing-lexicon-single__related {
  padding-top: var(--spacing-04);
  border-top: 1px solid var(--color-border);
}
.wildcat-piercing-lexicon-single__related-title {
  color: var(--color-accent);
}
.wildcat-piercing-lexicon-single__related-link {
  color: var(--text-color-on-bright-1);
  font-size: var(--font-size-s);
  line-height: 1.3;
  transition: color var(--transition-duration-default) ease;
}
.wildcat-piercing-lexicon-single__related-link-arrow {
  color: var(--grey-5);
  transition: color var(--transition-duration-default) ease, transform var(--transition-duration-default) ease;
}
.wildcat-piercing-lexicon-single__related-link:hover {
  color: var(--color-accent);
}
.wildcat-piercing-lexicon-single__related-link:hover .wildcat-piercing-lexicon-single__related-link-arrow {
  color: var(--color-accent);
}

.woocommerce-notices-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-02);
}

.woocommerce-message:before, .woocommerce-message:after, .woocommerce-info:before, .woocommerce-info:after, .woocommerce-error:before, .woocommerce-error:after {
  display: none;
}
.woocommerce-message, .woocommerce-info, .woocommerce-error {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-width);
  outline: none;
  font-size: var(--font-size-xs);
  line-height: var(--font-size-xs);
  border-left: 4px solid var(--message-color);
  padding: var(--spacing-03);
}
@media (min-width: 767px) {
  .woocommerce-message, .woocommerce-info, .woocommerce-error {
    flex-flow: row nowrap;
  }
}
.woocommerce-message .message-inner, .woocommerce-info .message-inner, .woocommerce-error .message-inner {
  padding: 10px;
}
.woocommerce-message .message-inner ul, .woocommerce-message .message-inner li, .woocommerce-info .message-inner ul, .woocommerce-info .message-inner li, .woocommerce-error .message-inner ul, .woocommerce-error .message-inner li {
  list-style: none;
  margin: 0;
}
.woocommerce-message .button, .woocommerce-message .button.wc-forward, .woocommerce-info .button, .woocommerce-info .button.wc-forward, .woocommerce-error .button, .woocommerce-error .button.wc-forward {
  font-size: var(--font-size-xs);
  padding: var(--spacing-01);
  min-width: 100px;
  margin-top: var(--spacing-03);
}
@media (min-width: 767px) {
  .woocommerce-message .button, .woocommerce-message .button.wc-forward, .woocommerce-info .button, .woocommerce-info .button.wc-forward, .woocommerce-error .button, .woocommerce-error .button.wc-forward {
    margin-top: 0;
  }
}

dialog.pling-global-popup .woocommerce-error, dialog.pling-global-popup .woocommerce-message {
  margin: var(--spacing-05);
  border: 0;
}
dialog.pling-global-popup .woocommerce-error .inner, dialog.pling-global-popup .woocommerce-error li, dialog.pling-global-popup .woocommerce-message .inner, dialog.pling-global-popup .woocommerce-message li {
  display: block;
  text-align: center;
  width: 100%;
}
dialog.pling-global-popup .woocommerce-error, dialog.pling-global-popup .woocommerce-message {
  text-align: center;
  display: block;
  font-size: var(--font-size-m);
}

.pling-customs-message {
  font-size: var(--font-size-s);
  line-height: var(--font-size-s);
}
.pling-customs-message .form-row {
  margin-top: var(--spacing-03) !important;
}

table.shop_table.cart {
  border: 0;
  border-radius: 0 !important;
}
table.shop_table.cart td, table.shop_table.cart tr, table.shop_table.cart th {
  border: none !important;
  background-color: #ffffff;
  padding: 0;
}

.woocommerce table.shop_table {
  border-radius: 0;
}

#add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment {
  border-radius: 0;
}

.pmm-icons {
  text-align: center;
  padding: var(--spacing-03);
}
.pmm-icons .vendor-icon {
  width: 50px;
  opacity: 0.5;
}
.pmm-icons .pmm-h {
  font-size: var(--font-size-xs);
  line-height: var(--font-size-xs);
  margin-bottom: var(--spacing-03);
  text-transform: uppercase;
  display: block;
}
.pmm-icons .pmm-icon-holder {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-03);
}

.price {
  margin-block-end: 0;
  margin-block-start: 0;
  font-family: var(--font-family-headline), serif;
  font-size: var(--font-size-m);
  font-weight: 600;
}
.price .price-wrapper.is-on-sale {
  display: flex;
  flex-direction: column;
}
.price .price-wrapper.is-on-sale .amount {
  color: var(--color-accent);
}
.price del {
  font-size: var(--font-size-xs);
  display: block;
  float: none !important;
}
.price ins {
  text-decoration: none;
}
.price .tax-note {
  font-family: var(--font-family-body);
}
.price .woocommerce-price-suffix {
  display: block;
  color: var(--text-color-on-bright-2);
  font-size: var(--font-size-xxs);
  line-height: var(--font-size-xxs);
  font-weight: 200;
  line-height: var(--font-size-xs);
}
.price .woocommerce-price-suffix .discount-percent {
  color: var(--color-accent);
  font-weight: 600;
}

.shipping-pickup-point #pakettikauppacustom_pickup_point_field, .shipping-custom-pickup-point #pakettikauppacustom_pickup_point_field {
  padding: 0 !important;
}
.shipping-pickup-point .btn, .shipping-pickup-point #pakettikauppacustom_pickup_point_btn, .shipping-custom-pickup-point .btn, .shipping-custom-pickup-point #pakettikauppacustom_pickup_point_btn {
  display: block;
  width: 100%;
  background-color: var(--color-accent);
}
.shipping-pickup-point p, .shipping-custom-pickup-point p {
  font-size: var(--font-size-s);
  line-height: var(--font-size-s);
}
.shipping-pickup-point th, .shipping-custom-pickup-point th {
  display: none !important;
}
.shipping-pickup-point td span, .shipping-custom-pickup-point td span {
  font-size: var(--font-size-xs) !important;
  line-height: var(--font-size-xs) !important;
  margin: 10px 0 !important;
  display: block !important;
}
.shipping-pickup-point input[type=radio] + label, .shipping-custom-pickup-point input[type=radio] + label {
  white-space: pre-wrap;
}
.shipping-pickup-point input[type=radio] + label::before, .shipping-custom-pickup-point input[type=radio] + label::before {
  top: 0 !important;
  transform: none !important;
}

.css-tabs input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.css-tabs p {
  margin: 0;
  padding: 0;
  font-size: var(--font-size-xs);
  line-height: var(--font-size-s);
}
.css-tabs .primary-icon {
  color: var(--text-color-on-bright-1);
}
.css-tabs .tab {
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid var(--grey-4);
}
.css-tabs .tab .status-indicator {
  position: relative;
  width: 20px;
  height: 20px;
}
.css-tabs .tab .status-indicator .primary-icon {
  position: absolute;
  width: 20px;
  height: 20px;
}
.css-tabs .tab .feather-minus {
  display: block;
}
.css-tabs .tab-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-transform: uppercase !important;
  padding: var(--spacing-03) 0 !important;
  margin: 0 !important;
}
.css-tabs .tab-label::before {
  display: none;
}
.css-tabs .tab-content {
  max-height: 0;
  padding: 0 1em;
  color: var(--text-color-on-bright-1);
  background: white;
  transition: all 0.35s;
  overflow: hidden;
  opacity: 0;
}
.css-tabs .tab-close {
  display: flex;
  justify-content: flex-end;
  padding: 1em;
  font-size: 0.75em;
  background: #2c3e50;
  cursor: pointer;
}
.css-tabs .tab-close:hover {
  background: rgb(25.9032258065, 36.5, 47.0967741935);
}
.css-tabs input:checked + .tab-label .status-indicator .feather-plus {
  display: none;
}
.css-tabs input:checked + .tab-label .status-indicator .feather-minus {
  display: block;
}
.css-tabs input:checked ~ .tab-content {
  max-height: 100vh;
  overflow-y: auto;
  padding: 0 0 var(--spacing-03) 0;
  opacity: 1;
}

.coupon-shortcode.size-default.inline button, .coupon-shortcode.size-default.block button, .coupon-shortcode.size-default.stacked button, .coupon-shortcode.size-small.inline button, .coupon-shortcode.size-small.block button, .coupon-shortcode.size-small.stacked button, .coupon-shortcode.size-large.inline button, .coupon-shortcode.size-large.block button, .coupon-shortcode.size-large.stacked button {
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
  background-color: var(--color-accent);
}
.coupon-shortcode.size-default.inline button:hover, .coupon-shortcode.size-default.block button:hover, .coupon-shortcode.size-default.stacked button:hover, .coupon-shortcode.size-small.inline button:hover, .coupon-shortcode.size-small.block button:hover, .coupon-shortcode.size-small.stacked button:hover, .coupon-shortcode.size-large.inline button:hover, .coupon-shortcode.size-large.block button:hover, .coupon-shortcode.size-large.stacked button:hover {
  color: #ffffff;
  background-color: #000000;
}
.coupon-shortcode.size-default.inline button:hover .primary-icon, .coupon-shortcode.size-default.block button:hover .primary-icon, .coupon-shortcode.size-default.stacked button:hover .primary-icon, .coupon-shortcode.size-small.inline button:hover .primary-icon, .coupon-shortcode.size-small.block button:hover .primary-icon, .coupon-shortcode.size-small.stacked button:hover .primary-icon, .coupon-shortcode.size-large.inline button:hover .primary-icon, .coupon-shortcode.size-large.block button:hover .primary-icon, .coupon-shortcode.size-large.stacked button:hover .primary-icon {
  color: #ffffff;
}

.wc-promo-header .coupon-shortcode.size-default .coupon-shortcode-coupon-code, .wc-promo-header .coupon-shortcode.size-small .coupon-shortcode-coupon-code, .wc-promo-header .coupon-shortcode.size-large .coupon-shortcode-coupon-code {
  background-color: var(--color-primary) !important;
  color: var(--text-color-on-primary) !important;
  border: 1px dashed #ffffff;
}
.wc-promo-header .coupon-shortcode.size-small {
  margin-bottom: -4px !important;
}
.wc-promo-header .coupon-shortcode.size-small .primary-icon {
  width: 10px;
  height: 10px;
}
.wc-promo-header .coupon-shortcode.size-default {
  margin-bottom: -0.5rem;
}
.wc-promo-header .coupon-shortcode.size-default .coupon-shortcode-coupon-code, .wc-promo-header .coupon-shortcode.size-default button {
  font-size: var(--font-size-xxs);
  line-height: 1.5rem;
}
.wc-promo-header .coupon-shortcode.size-default .primary-icon {
  width: var(--font-size-xxs);
  height: var(--font-size-xxs);
  color: #333333;
}
.wc-promo-header .coupon-shortcode button.coupon-code-button {
  background-color: #ffffff;
  color: #333333;
}
.wc-promo-header .coupon-shortcode button.coupon-code-button .primary-icon {
  color: #333333;
}

.amelia-app-booking #amelia-booking-wrap #am-step-booking .am-select-date .am-appointment-times,
.amelia-app-booking #amelia-booking-wrap .am-step-booking-catalog .am-select-date .am-appointment-times {
  max-height: 150px !important;
}

.feature-bar-holder {
  background-color: var(--color-accent);
  position: relative;
  display: flex;
  justify-content: center;
}
.feature-bar-holder .feature-bar-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.feature-bar-holder .feature-bar {
  position: relative;
  width: 100%;
}
.feature-bar-holder .feature {
  color: var(--text-color-on-accent);
  text-align: center;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  display: flex;
  transition: all 0.3s ease-in;
  padding: var(--spacing-03);
  text-transform: uppercase;
  position: absolute;
  width: 100%;
  opacity: 0;
  top: 50%;
  transform: translateY(-50%);
}
.feature-bar-holder .feature.active {
  opacity: 1;
}
@media (min-width: 1024px) {
  .feature-bar-holder .feature {
    display: flex;
    position: static;
    width: auto;
    opacity: 1;
  }
}
.feature-bar-holder .feature span {
  display: block;
  font-size: var(--font-size-xs);
  line-height: var(--font-size-xs);
  font-family: var(--font-family-headline);
  letter-spacing: 0.15rem;
}
.feature-bar-holder .feature span:first-child {
  margin-bottom: var(--spacing-01);
  font-weight: 700;
}
.feature-bar-holder .row {
  display: block;
  justify-content: center;
  gap: var(--spacing-01);
  min-height: 60px;
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: var(--max-site-width);
}
@media (min-width: 1024px) {
  .feature-bar-holder .row {
    justify-content: space-around;
    display: flex;
  }
  .feature-bar-holder .row .feature {
    transform: scale(0);
  }
  .feature-bar-holder .row.active .feature {
    transform: scale(1);
  }
}

.element-visibility-badge {
  font-size: 12px;
  background-color: #000000;
  color: #ffffff;
  padding: 0 10px 0 5px;
  border-radius: 5px 5px 0 0;
  display: inline-block;
}

.simulated-time-banner {
  position: fixed;
  bottom: 30px;
  right: 0;
  background-color: var(--color-accent);
  color: var(--text-color-on-accent);
  padding: var(--spacing-03);
}

.ppm-payment-method-box {
  color: var(--grey);
  padding: var(--spacing-02) var(--spacing-03) !important;
}
.ppm-payment-method-box .payment-method-box-text {
  font-size: var(--font-size-xs) !important;
  line-height: var(--font-size-xs);
}

.pwi-influencer-box .influencer-box-text {
  font-size: var(--font-size-xs);
  line-height: var(--font-size-xs);
}

.quick-buy-box {
  width: 100vw;
  color: #ffffff;
  z-index: 500;
  position: absolute;
  bottom: 5vw;
  display: flex;
  justify-content: center;
}
@media (min-width: 767px) {
  .quick-buy-box {
    bottom: var(--spacing-05);
  }
}
.quick-buy-box .inner {
  background: #ffffff;
  width: 90vw;
  max-width: 900px;
  padding: var(--spacing-03);
}
.quick-buy-box .product-info, .quick-buy-box .product-title {
  color: #000000;
}
.quick-buy-box .product-title {
  font-size: var(--font-size-m);
}
.quick-buy-box .product-price {
  flex-direction: row !important;
  align-items: center;
  gap: var(--spacing-01);
  font-weight: 600;
}
.quick-buy-box .product-price del {
  font-size: var(--font-size-xxs);
  line-height: var(--font-size-xxs);
  order: 2;
  font-weight: var(--font-weight-regular);
}
.quick-buy-box .product-price ins {
  text-decoration: none;
  order: 1;
}
.quick-buy-box .product-price .woocommerce-price-suffix {
  display: none;
}
.quick-buy-box .variation-selector {
  color: #000000;
  font-size: var(--font-size-xs);
}

dialog.pling-global-popup .popup-header h2 {
  font-weight: 600;
}
dialog.pling-global-popup .message-inner {
  padding: var(--spacing-05);
  font-size: var(--font-size-m);
}
dialog.pling-global-popup .message-inner .highlighted-text {
  color: var(--color-accent);
}
dialog.pling-global-popup .button-close:hover .primary-icon {
  color: var(--color-accent) !important;
}
dialog.pling-global-popup.dark .button-close .primary-icon {
  color: #ffffff;
}
dialog.pling-global-popup.url-coupon-popup .coupon-conditions {
  display: block;
  margin-top: var(--spacing-03);
}
dialog.pling-global-popup.url-coupon-popup .message-inner .call-to-action {
  display: block;
  margin-inline: auto;
}
@media (min-width: 1024px) {
  dialog.pling-global-popup.size-chart {
    max-width: 1000px;
  }
}
dialog.pling-global-popup.size-chart .popup-content img {
  width: 100%;
}

body.woocommerce-cart #pling-checkout .pling-checkout-single-cart-item .product-thumbnail img {
  border: none !important;
}
body.woocommerce-cart #pling-checkout .pling-checkout-single-cart-item .product-information-block {
  margin-bottom: var(--spacing-05);
}
body.woocommerce-cart #pling-checkout .pling-checkout-single-cart-item {
  padding: 10px 0 10px 0;
}
body.woocommerce-cart #pling-checkout .pling-checkout-single-cart-item .product-quantity {
  gap: 0;
}
body.woocommerce-cart #pling-checkout .pling-checkout-single-cart-item .product-quantity button, body.woocommerce-cart #pling-checkout .pling-checkout-single-cart-item .product-quantity input {
  padding: 0;
}
body.woocommerce-cart #pling-checkout .pling-checkout-single-cart-item .product-quantity input {
  height: 30px;
}
body.woocommerce-cart #pling-checkout .pling-checkout-single-cart-item .product-quantity button {
  padding: 0 var(--spacing-03);
}
body.woocommerce-cart #pling-checkout .pling-checkout-single-cart-item .product-quantity:not(:has(.quantity)) {
  display: none;
}
body.woocommerce-cart #pling-checkout .actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-03);
  padding-top: 30px;
}
body.woocommerce-cart #pling-checkout .actions .async-coupon {
  flex: 1 0 100%;
}
body.woocommerce-cart #pling-checkout .actions .update-cart-button, body.woocommerce-cart #pling-checkout .actions .button.empty-cart {
  margin: 0;
  flex: 1 1 50%;
}

body.woocommerce-checkout .button.button-icon .icon {
  color: #000 !important;
}
body.woocommerce-checkout .button.button-icon:hover .icon {
  color: var(--color-accent) !important;
}

.pling-wishlist-sale-products-wrapper {
  color: #fff;
}
.pling-wishlist-sale-products-wrapper .sale-wishlist-product-card {
  background: #1a1a1a;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}
.pling-wishlist-sale-products-wrapper .sale-wishlist-product-card .product-card-inner {
  border: 1px solid #333;
}
.pling-wishlist-sale-products-wrapper .sale-wishlist-product-card .media-container {
  background: #000;
}
.pling-wishlist-sale-products-wrapper .sale-wishlist-product-card .media-container .discount-amount {
  background: #e53935;
  color: #fff;
}
.pling-wishlist-sale-products-wrapper .sale-wishlist-product-card .description-block .product-name {
  color: #fff;
}
.pling-wishlist-sale-products-wrapper .sale-wishlist-product-card .description-block .learn-more-button {
  background: #ff4081;
  color: white;
}
.pling-wishlist-sale-products-wrapper .sale-wishlist-product-card .description-block .learn-more-button:hover {
  background-color: #d90064;
  box-shadow: 0 0 8px #f50057;
}
.pling-wishlist-sale-products-wrapper .price-info ins .amount bdi {
  color: var(--color-accent, red);
}
.pling-wishlist-sale-products-wrapper .slick-arrow {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid #000;
  color: #000;
}
.pling-wishlist-sale-products-wrapper .slick-arrow svg {
  stroke: black;
}
.pling-wishlist-sale-products-wrapper .slick-arrow:hover {
  background: rgba(0, 0, 0, 0.2);
  border-color: rgba(0, 0, 0, 0.3);
}
.pling-wishlist-sale-products-wrapper .slick-dots li button {
  background: #666;
}
.pling-wishlist-sale-products-wrapper .slick-dots li.slick-active button,
.pling-wishlist-sale-products-wrapper .slick-dots li button:hover {
  background: #ff4081;
}

body .product .cart .inner .button.quantity-stepper {
  width: unset;
}
@media (max-width: 766px) {
  body .product .cart .inner .button.quantity-stepper {
    padding: 0 18px;
  }
}
body .product .cart .inner .button.quantity-stepper.more {
  margin-right: var(--spacing-01);
}
body .product .cart .inner .quantity input {
  min-width: 100px;
}

@media (max-width: 766px) {
  body.woocommerce-cart .woocommerce-cart-form .product-data-footer .quantity-block {
    max-width: 185px;
    height: 30px;
  }
  body.woocommerce-cart .woocommerce-cart-form .product-data-footer .quantity-block .product-quantity {
    gap: 0;
  }
  body.woocommerce-cart .woocommerce-cart-form .product-data-footer .quantity-block .quantity-stepper {
    width: 30px;
    height: 30px;
    padding: 0;
  }
  body.woocommerce-cart .woocommerce-cart-form .product-data-footer .quantity-block input {
    height: 30px;
  }
}

body.woocommerce-page.single-product .trust-features {
  margin: var(--spacing-01) 0;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  row-gap: var(--spacing-03);
  padding: var(--spacing-03);
}
body.woocommerce-page.single-product .trust-features .single-feature {
  display: flex;
  align-items: center;
  column-gap: var(--spacing-05);
}
body.woocommerce-page.single-product .trust-features .single-feature .feature-content {
  font-size: var(--font-size-xs);
  line-height: var(--font-size-xs);
}
body.woocommerce-page.single-product .trust-features .single-feature .feature-content .feature-title {
  font-weight: var(--font-weight-bold);
  margin-bottom: 5px;
}
body.woocommerce-page.single-product .trust-features .single-feature .feature-icon {
  margin: 0;
  line-height: 0;
  padding: 0;
}
body.woocommerce-page.single-product .trust-features .single-feature .feature-icon img {
  width: 40px;
}
@media (min-width: 767px) {
  body.woocommerce-page.single-product .trust-features .single-feature .feature-icon img {
    width: 50px;
  }
}
body.woocommerce-page.single-product .product-trust-features {
  list-style: none;
  padding: 0;
}
body.woocommerce-page.single-product .product-trust-features .product-usp-feature {
  position: relative;
  margin-bottom: var(--spacing-01, 8px);
}
body.woocommerce-page.single-product .product-trust-features .product-usp-feature .product-usp-label {
  display: flex;
  align-items: center;
  font-size: var(--font-size-xs);
  line-height: var(--font-size-s);
  margin: 0;
  transition: color 0.2s ease;
}
body.woocommerce-page.single-product .product-trust-features .product-usp-feature .product-usp-label svg {
  color: limegreen;
  margin-right: var(--spacing-01, 3px);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
body.woocommerce-page.single-product .product-trust-features .product-usp-feature .product-usp-label:hover svg {
  transform: scale(1.05);
}
body.woocommerce-page.single-product .product-trust-features .product-usp-feature .product-usp-description {
  position: absolute;
  bottom: 100%;
  left: 50%;
  z-index: 9999;
  min-width: 200px;
  max-width: 300px;
  padding: 12px 16px;
  margin-bottom: 8px;
  background: var(--color-accent, #333);
  color: #fff;
  font-size: var(--font-size-s);
  line-height: 1.4;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}
body.woocommerce-page.single-product .product-trust-features .product-usp-feature .product-usp-description::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--color-accent, #333);
}
body.woocommerce-page.single-product .product-trust-features .product-usp-feature:hover .product-usp-description {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
@media (min-width: 767px) {
  body.woocommerce-page.single-product .product-trust-features .product-usp-feature .product-usp-label {
    font-size: var(--font-size-s);
    line-height: var(--font-size-m);
  }
  body.woocommerce-page.single-product .product-trust-features .product-usp-feature .product-usp-description {
    font-size: var(--font-size-s);
    line-height: 1.5;
  }
}

.elementor-widget-wildcat_media_block {
  margin: 0 !important;
}

.wildcat-promo-block {
  margin: 0;
}
.wildcat-promo-block .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  column-gap: var(--spacing-05);
  width: 100%;
  max-width: var(--max-site-width);
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .wildcat-promo-block.has-media .inner {
    flex-direction: row;
  }
  .wildcat-promo-block.has-media .inner .the-media, .wildcat-promo-block.has-media .inner .the-content {
    width: 50%;
    padding: var(--spacing-05);
  }
}
.wildcat-promo-block .the-media img {
  width: 100%;
  height: auto;
}
.wildcat-promo-block .the-content {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.wildcat-promo-block .the-content .the-content-inner {
  width: 100%;
  max-width: 90%;
  padding: var(--spacing-05);
  display: flex;
  flex-direction: column;
}
.wildcat-promo-block .the-content .cta {
  margin: var(--spacing-03) 0 !important;
  display: inline-block;
  padding: var(--spacing-02) var(--spacing-03);
}
.wildcat-promo-block.text-left .the-content {
  justify-content: left;
  text-align: left;
}
.wildcat-promo-block.text-right .the-content {
  justify-content: right;
  text-align: right;
}

.wildcat-promo-block .the-media {
  order: 1;
}
.wildcat-promo-block .the-content {
  order: 2;
}
@media (min-width: 1024px) {
  .wildcat-promo-block.media-right .the-media {
    order: 2;
  }
  .wildcat-promo-block.media-right .the-content {
    order: 1;
  }
  .wildcat-promo-block.media-left .the-media {
    order: 1;
  }
  .wildcat-promo-block.media-left .the-content {
    order: 2;
  }
}
.wildcat-promo-block.media-top .inner {
  flex-direction: column;
}
.wildcat-promo-block.media-top .inner .the-media {
  width: 100%;
}
.wildcat-promo-block.media-top .inner .the-content {
  width: 100%;
}
.wildcat-promo-block.media-top .the-content .the-text {
  order: 2;
}
.wildcat-promo-block.media-top .the-content .cta {
  order: 1;
}

@media (min-width: 767px) {
  .elementor-container .elementor-col-33 .wildcat-promo-block {
    padding: var(--spacing-02);
  }
  .elementor-container .elementor-col-33 .wildcat-promo-block .the-media {
    padding: 0;
  }
}

.wildcat-hero-slide-widget {
  cursor: grab;
}
.wildcat-hero-slide-widget .hero-slider-row {
  display: flex;
  flex-flow: row wrap;
}
.wildcat-hero-slide-widget .single-slide {
  flex-shrink: 1;
  flex-basis: 25%;
}
.wildcat-hero-slide-widget .single-slide .the-media {
  overflow: hidden;
}
.wildcat-hero-slide-widget .single-slide {
  transition: all 0.3s ease-out;
}
.wildcat-hero-slide-widget .single-slide img, .wildcat-hero-slide-widget .single-slide video {
  width: 100%;
  aspect-ratio: 1/1;
}
.wildcat-hero-slide-widget .single-slide .slide-title {
  line-height: 1.25;
  font-family: var(--font-family-headline);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  color: var(--headline-color-on-bright-1);
  font-size: var(--font-size-xs);
  margin: var(--spacing-03) 0 0 0;
}
@media (min-width: 767px) {
  .wildcat-hero-slide-widget .single-slide .slide-title {
    font-size: var(--font-size-s);
  }
}

@media (min-width: 767px) {
  body:not(.elementor-editor-active) .wildcat-hero-slide-widget .single-slide:hover {
    scale: 0.95;
  }
}

.wildcat-hero-slide-widget {
  display: flex;
  flex-flow: column;
  row-gap: var(--spacing-03);
}
.wildcat-hero-slide-widget .hero-slider-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-03);
}
@media (min-width: 767px) {
  .wildcat-hero-slide-widget .hero-slider-row {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .wildcat-hero-slide-widget .hero-slider-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.wildcat-container.horizontal-scrolling .wildcat-hero-slide-widget .hero-slider-row {
  flex-flow: row nowrap;
  grid-template: unset !important;
  display: flex !important;
  flex-flow: row nowrap;
}
@media (min-width: 767px) {
  .wildcat-container.horizontal-scrolling .wildcat-hero-slide-widget .hero-slider-row {
    width: var(--max-site-width);
  }
}
.wildcat-container.horizontal-scrolling .wildcat-hero-slide-widget .single-slide {
  min-width: 180px;
  flex-shrink: 0;
  flex-basis: 25%;
}

.wildcat-banner-widget {
  display: flex;
  flex-direction: column;
  text-align: center;
  min-height: 100px;
  width: 100vw;
  position: relative;
  left: calc(-50vw + 50%);
  line-height: 0;
}
.wildcat-banner-widget a, .wildcat-banner-widget .hero-banner-media {
  width: 100%;
}
.wildcat-banner-widget img {
  margin: 0 auto;
  display: inline-block;
  transition: all 0.2s ease-out;
  width: 100%;
  height: auto;
}
.wildcat-banner-widget .hero-banner-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding: var(--spacing-05);
  background-color: var(--background-color);
}
.wildcat-banner-widget .hero-banner-content .headline {
  font-style: italic;
  font-size: var(--font-size-xl);
  line-height: 32px;
  padding: 10px 0;
  margin: 0;
}
.wildcat-banner-widget .hero-banner-content .text {
  font-size: var(--font-size-s);
  line-height: var(--font-size-l);
}
@media (min-width: 0px) {
  .wildcat-banner-widget .banner-holder-mobile {
    display: block;
  }
  .wildcat-banner-widget .banner-holder-mobile img {
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .wildcat-banner-widget {
    flex-direction: row;
  }
  .wildcat-banner-widget .hero-banner-content {
    width: 40%;
  }
  .wildcat-banner-widget .banner-holder-mobile {
    display: none;
  }
  .wildcat-banner-widget .banner-holder-desktop {
    display: block;
  }
  .wildcat-banner-widget {
    width: 100%;
    left: unset;
  }
}
@media (min-width: 1024px) {
  .wildcat-banner-widget .hero-banner-content {
    text-align: left;
  }
}
@media (min-width: 1800px) {
  .wildcat-banner-widget .hero-banner-content {
    width: 42%;
    padding: 0 100px 0 50px;
  }
}
@media (min-width: 767px) {
  .wildcat-banner-widget.has-link imt:hover {
    transform: scale(1.02);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 10px;
  }
}

.wildcat-cta-button-widget {
  display: flex;
  align-items: center;
  justify-content: center;
}
.wildcat-cta-button-widget .cta {
  display: inline-block !important;
  min-width: 250px;
}
.wildcat-cta-button-widget .cta.block {
  width: 100%;
}
.wildcat-cta-button-widget .cta.primary-button {
  color: var(--text-color-on-dark);
}
.wildcat-cta-button-widget .cta.primary-button:hover {
  color: var(--color-accent);
}

.wildcat-news-block {
  margin-top: var(--spacing-03);
  margin-bottom: var(--spacing-03);
}
.wildcat-news-block .no-posts-found {
  text-align: center;
  background-color: #f9f9f9;
  display: block;
  width: 100%;
  padding: var(--spacing-05);
}

.wildcat-news-block.display-simple-list .single-post .the-media, .wildcat-news-block.display-simple-list .single-post .the-content-excerpt {
  display: none;
}
@media (min-width: 767px) {
  .wildcat-news-block.display-simple-list .single-post {
    display: flex;
    flex-flow: row wrap;
  }
  .wildcat-news-block.display-simple-list .single-post .the-date {
    width: 20%;
  }
  .wildcat-news-block.display-simple-list .single-post .the-content {
    width: 80%;
  }
}
.wildcat-news-block.display-simple-list .single-post {
  border-bottom: 1px solid var(--color-primary);
  padding: var(--spacing-03) 0;
}
.wildcat-news-block.display-simple-list .single-post:last-child {
  border-bottom: 0px;
}
.wildcat-news-block.display-simple-list .single-post .the-date {
  padding-right: var(--spacing-03);
}
.wildcat-news-block.display-simple-list .single-post .the-content-title {
  padding-right: var(--spacing-03);
}

.wildcat-news-block.display-hero-block .single-post {
  background-color: #f9f9f9;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.wildcat-news-block.display-hero-block .single-post .the-date {
  position: absolute;
  background-color: var(--color-primary);
  color: var(--text-color-on-dark);
  padding: var(--spacing-01) var(--spacing-05) var(--spacing-01) var(--spacing-05);
  left: 50%;
  transform: translateX(-50%);
  font-size: var(--font-size-xs);
  text-transform: uppercase;
}
.wildcat-news-block.display-hero-block .single-post .the-media {
  padding: var(--spacing-03);
}
.wildcat-news-block.display-hero-block .single-post .the-media img {
  display: block;
  width: 100%;
  height: auto;
}
.wildcat-news-block.display-hero-block .single-post .the-content {
  padding: var(--spacing-05);
}
.wildcat-news-block.display-hero-block .single-post .the-content h2 {
  margin-top: 0;
}
.wildcat-news-block.display-hero-block .single-post .the-content .cta {
  display: inline-block;
  margin-top: var(--spacing-03);
}
.wildcat-news-block.display-hero-block .single-post .the-footer {
  padding: var(--spacing-05);
  margin-top: auto;
}

.wildcat-news-block.display-hero-block .single-post {
  width: 100%;
}
@media (min-width: 1024px) {
  .wildcat-news-block.display-hero-block {
    display: flex;
    flex-direction: row;
    column-gap: var(--default-column-gap);
  }
  .wildcat-news-block.display-hero-block .single-post {
    width: 33.3333333333%;
  }
}

.wildcat-flipclock {
  margin: 0 auto;
  text-align: center;
  padding: 10px 0;
}
.wildcat-flipclock .the-clock {
  display: inline-block;
  width: auto;
  zoom: 0.5; /* Scale to 50% size */
}
.wildcat-flipclock .the-clock .flip-clock-label {
  display: none;
}
@media (min-width: 767px) {
  .wildcat-flipclock .the-clock {
    zoom: 1;
  }
}
.wildcat-flipclock .primary-headline {
  margin: 0;
  padding: var(--spacing-05) var(--spacing-03) var(--spacing-03) var(--spacing-03);
}

.ar-content-widget model-viewer {
  width: 100%;
  height: 500px;
}

.wildcat-menu-block {
  margin-bottom: var(--spacing-03);
}

body.cookie-notice-active {
  overflow: hidden;
}
body.country-modal-active ._t53mel, body.cookie-notice-active ._t53mel {
  display: none !important;
}

body.cookie-notice-active #imbaa-erp-site-suggestion {
  display: none !important;
}

.debug-tiles-overlay {
  font-size: 10px;
  background-color: #000;
  color: #ffffff;
  line-height: 12px;
  z-index: 100;
  width: auto;
  position: absolute;
  padding: 10px;
}

/*# sourceMappingURL=app.css.map */
