/** Shopify CDN: Minification failed

Line 4251:5 Expected identifier but found "header__menu-item("
Line 4254:1 Expected "}" to go with "{"

**/
/* Derived from base colors (theme settings) */

:root {
  --color-foreground: var(--color-base-text);
  --color-background: var(--color-base-background);
  --color-heading: var(--color-base-heading);
}

/* Primary button */

:root {
  --color-button-background: var(--color-base-accent);
  --color-button-border: var(--color-base-accent);
  --color-button-text: var(--color-base-solid-button-labels);
}

/* Secondary button */

.button--secondary {
  --color-button-background: var(--color-background);
  --color-button-border: var(--color-base-outline-button-labels);
  --color-button-text: var(--color-base-outline-button-labels);
}

/* Tertiary button */

.button--tertiary {
  --color-button-background: var(--color-background);
  --color-button-border: var(--color-border);
  --color-button-text: var(--color-base-outline-button-labels);
}

/* Links */

:root {
  --color-link: var(--color-base-outline-button-labels);
}

/* Badges */

:root {
  --color-badge-background: rgba(var(--color-background), 0.75);
  --color-badge-foreground: rgb(var(--color-foreground));
  --color-badge-border: rgb(var(--color-border));
}

/* Duration */

:root {
  --duration-short: 100ms;
  --duration-default: 250ms;
  --duration-long: 500ms;
  --duration-animate: 1000ms;
  --image-position: center center;
}

/* base */

.no-js:not(html) {
  display: none !important;
}

html.no-js .no-js:not(html) {
  display: block !important;
}

.no-js-inline {
  display: none !important;
}

html.no-js .no-js-inline {
  display: inline-block !important;
}

html.no-js .no-js-hidden {
  display: none !important;
}

html {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.page-width {
  /* max-width: var(--page-width); */
  max-width: 100%;
  margin: 0 auto;
  padding: 0 5%;
}

.page-width-desktop {
  padding: 0;
  margin: 0 auto;
}

@media screen and (min-width: 750px) {
  .page-width {
    padding: 0 5rem;
  }

  .page-width--narrow {
    padding: 0 9rem;
  }

  .page-width-desktop {
    padding: 0;
  }
}

@media screen and (min-width: 990px) {
  .page-width--inner {
    padding: 0 15rem;
  }

  .page-width--narrow {
    max-width: 72.6rem;
    padding: 0;
  }

  .page-width-desktop {
    max-width: var(--page-width);
    padding: 0 5rem;
  }
}

.page-width--full-width {
  max-width: 100%;
  padding: 0;
}

.section + .section {
  margin-top: var(--spacing-sections-mobile);
}

@media screen and (min-width: 750px) {
  .section + .section {
    margin-top: var(--spacing-sections-desktop);
  }
}

.element-margin {
  margin-top: 5rem;
}

.element-margin-small {
  margin-top: 3rem;
}

@media screen and (min-width: 750px) {
  .element-margin {
    margin-top: calc(5rem + var(--page-width-margin));
  }
}

[data-page-rendering] .shopify-section + .shopify-section {
  content-visibility: auto;
}

.shopify-design-mode[data-page-rendering] .shopify-section + .shopify-section,
.no-js [data-page-rendering] .shopify-section + .shopify-section {
  content-visibility: visible;
}

body {
  color: rgb(var(--color-foreground));
  background-color: rgb(var(--color-background));
  overflow-x: hidden;
}

.background-secondary {
  border-top: 0.1rem solid rgb(var(--color-border));
  padding: 4rem 0 5rem;
}

@media screen and (min-width: 750px) {
  .background-secondary {
    padding: 6rem 0 5rem;
  }
}

.grid-auto-flow {
  display: grid;
  grid-auto-flow: column;
}

.page-margin,
.shopify-challenge__container {
  margin: 7rem auto;
}

.rte-width {
  max-width: 82rem;
  margin: 0 auto 2rem;
}

.list-unstyled {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hidden {
  display: none !important;
}

.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  width: 0.1rem;
  height: 0.1rem;
  margin: -0.1rem;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  word-wrap: normal !important;
}

.visually-hidden--inline {
  margin: 0;
  height: 1em;
}

.overflow-hidden {
  overflow: hidden;
}

.skip-to-content-link:focus {
  z-index: 9999;
  position: inherit;
  width: auto;
  height: auto;
  clip: auto;
}

.full-width-link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}

h1,
h2,
h3,
h4,
h5,
.h0,
.h1,
.h2,
.h3,
.h4,
.h5 {
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  letter-spacing: calc(var(--font-heading-scale) * 0.06rem);
  color: rgb(var(--color-heading));
  line-height: calc(1 + 0.3 / max(1, var(--font-heading-scale)));
  font-weight: 400;
}

.badge--onsale {
    background: none !important;
    border: none !important;
    padding: 0 !important;
}

.h0 {
  font-size: calc(var(--font-heading-scale) * 3.6rem);
}

@media only screen and (min-width: 750px) {
  .h0 {
    font-size: calc(var(--font-heading-scale) * 6rem);
  }
}

h1,
.h1 {
  font-size: calc(var(--font-heading-scale) * 3rem);
}

@media only screen and (min-width: 750px) {
  h1,
  .h1 {
    font-size: calc(var(--font-heading-scale) * 4rem);
  }
}

h2,
.h2 {
  font-size: calc(var(--font-heading-scale) * 2rem);
}

@media only screen and (min-width: 750px) {
  h2,
  .h2 {
    font-size: calc(var(--font-heading-scale) * 2.8rem);
  }
}

h3,
.h3 {
  font-size: calc(var(--font-heading-scale) * 1.7rem);
}

@media only screen and (min-width: 750px) {
  h3,
  .h3 {
    font-size: calc(var(--font-heading-scale) * 2rem);
  }
}

h4,
.h4 {
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-size: calc(var(--font-heading-scale) * 1.5rem);
}

@media only screen and (min-width: 750px) {
  h4,
  .h4 {
    font-size: calc(var(--font-heading-scale) * 1.6rem);
  }
}

h5,
.h5 {
  font-size: calc(var(--font-heading-scale) * 1.2rem);
}

@media only screen and (min-width: 750px) {
  h5,
  .h5 {
    font-size: calc(var(--font-heading-scale) * 1.3rem);
  }
}

h6,
.h6 {
  color: rgba(var(--color-foreground), 0.75);
  margin-block-start: 1.67em;
  margin-block-end: 1.67em;
}

[data-heading-capitalize] h1,
[data-heading-capitalize] h2,
[data-heading-capitalize] h3,
[data-heading-capitalize] .h0,
[data-heading-capitalize] .h1,
[data-heading-capitalize] .h2,
[data-heading-capitalize] .h3,
[data-heading-capitalize] .card-information__text,
[data-heading-capitalize] .bundle-products .product-title {
  text-transform: uppercase;
}

[data-heading-capitalize] .article-card__title,
[data-heading-capitalize] .article-template__navigation .h3 {
  font-size: calc(var(--font-heading-scale) * 1.7rem - 0.2rem);
  letter-spacing: 0.2em;
}

[data-heading-capitalize] .card-information__text.h4,
[data-heading-capitalize] .bundle-products .product-title {
  font-size: calc(var(--font-heading-scale) * 1.5rem - 0.2rem);
  letter-spacing: 0.2em;
}

@media only screen and (min-width: 750px) {
  [data-heading-capitalize] .article-card__title,
  [data-heading-capitalize] .article-template__navigation .h3 {
    font-size: calc(var(--font-heading-scale) * 2rem - 0.2rem);
  }

  [data-heading-capitalize] .card-information__text.h4,
  [data-heading-capitalize] .bundle-products .product-title {
    font-size: calc(var(--font-heading-scale) * 1.6rem - 0.2rem);
  }
}

blockquote {
  font-style: italic;
  color: rgba(var(--color-foreground), 0.75);
  border-inline-start: 0.2rem solid rgb(var(--color-border));
  padding-inline-start: 1rem;
}

@media screen and (min-width: 750px) {
  blockquote {
    padding-inline-start: 1.5rem;
  }
}

.caption {
  font-size: 1rem;
  letter-spacing: 0.07rem;
  line-height: calc(1 + 0.7 / var(--font-body-scale));
}

@media screen and (min-width: 750px) {
  .caption {
    font-size: 1.2rem;
  }
}

.typeset0,
.typeset,
.typeset2,
.typeset3 {
  line-height: calc(1 + 0.4 / var(--font-body-scale));
  color: rgb(var(--color-foreground));
}

.typeset0 {
  font-size: 1.3rem;
}

@media screen and (min-width: 750px) {
  .typeset0 {
    font-size: 1.4rem;
  }
}

.typeset {
  font-size: 1.5rem;
}

@media screen and (min-width: 750px) {
  .typeset {
    font-size: 1.6rem;
  }
}

.typeset2 {
  font-size: 1.8rem;
}

@media screen and (min-width: 750px) {
  .typeset2 {
    font-size: 2rem;
  }
}

.typeset3 {
  font-size: 2rem;
}

@media screen and (min-width: 750px) {
  .typeset3 {
    font-size: 2.4rem;
  }
}

.typeset .link,
.typeset2 .link,
.typeset3 .link {
  font-size: inherit;
}

.caption-with-letter-spacing {
  font-size: 1rem;
  letter-spacing: 0.13rem;
  line-height: calc(1 + 0.2 / var(--font-body-scale));
  text-transform: uppercase;
  color: rgba(var(--color-foreground), 0.75);
}

.caption-with-letter-spacing .link {
  font-size: inherit;
  color: inherit;
}

.caption-large,
.customer .field input,
.customer select,
.field__input,
.form__label,
.select__select {
  font-size: 1.3rem;
  line-height: calc(1 + 0.5 / var(--font-body-scale));
  letter-spacing: 0.04rem;
}

.color-foreground {
  color: rgb(var(--color-foreground));
}

table:not([class]) {
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 1.4rem;
  border-style: hidden;
  box-shadow: 0 0 0 0.1rem rgb(var(--color-border));
  /* draws the table border  */
}

table:not([class]) td,
table:not([class]) th {
   padding: 1em;
  border: 0.1rem solid rgb(var(--color-border));
  text-align: center;
}

table:not([class]) th {
  width: 25%;
height: 40px;
background: #fa9e00;
text-align: center;
  font-family: var(--font-heading-family);
font-style: var(--font-heading-style);
letter-spacing: calc(var(--font-heading-scale) * 0.06rem);
color: rgb(var(--color-heading));
line-height: calc(1 + 0.3 / max(1, var(--font-heading-scale)));
font-weight: 800;
}

.hidden {
  display: none !important;
}

@media screen and (max-width: 749px) {
  .small-hide {
    display: none !important;
  }
}

@media screen and (min-width: 750px) and (max-width: 989px) {
  .medium-hide {
    display: none !important;
  }
}

@media screen and (min-width: 990px) {
  .large-up-hide {
    display: none !important;
  }
}

.center {
  text-align: center;
}

.left {
  text-align: start;
}

.right {
  text-align: end;
}

@media screen and (max-width: 749px) {
  .mobile-center {
    text-align: center;
  }
  
  .mobile-left {
    text-align: start;
  }
  
  .mobile-right {
    text-align: end;
  }
}

.uppercase {
  text-transform: uppercase;
}

.light {
  opacity: 0.7;
}

a:empty,
ul:empty,
dl:empty,
div:empty,
section:empty,
article:empty,
p:empty,
h1:empty,
h2:empty,
h3:empty,
h4:empty,
h5:empty,
h6:empty {
  display: none;
}

.link {
  font-family: inherit;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0;
  position: relative;
  border: none;
  box-shadow: none;
  text-decoration: none;
  color: rgb(var(--color-link));
  background-color: transparent;
  background-image: linear-gradient(to top, rgb(var(--color-border)) 0px, rgb(var(--color-border)) 0px), linear-gradient(to top, transparent 0px, transparent 0px);
  background-repeat: no-repeat;
  background-position: right bottom, right bottom;
  background-size: 0% 0.1rem, 100% 0.1rem;
  transition-property: background-size;
  transition-timing-function: ease;
  transition-duration: var(--duration-default);
}

@media screen and (hover: hover) {
  .link:hover {
    background-position: left bottom, left bottom;
    background-size: 100% 0.1rem, 100% 0.1rem;
  }
}

.link--text {
  color: rgb(var(--color-foreground));
}

.link--underline {
  background-image: linear-gradient(to top, rgb(var(--color-link)) 0px, rgb(var(--color-link)) 0px), linear-gradient(to top, rgb(var(--color-border)) 0px, rgb(var(--color-border)) 0px);
}

.link-with-icon {
  background-image: none;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  white-space: nowrap;
}

.link-with-icon .label {
  position: relative;
  background-color: transparent;
  background-image: linear-gradient(to top, rgb(var(--color-link)) 0px, rgb(var(--color-link)) 0px), linear-gradient(to top, rgb(var(--color-border)) 0px, rgb(var(--color-border)) 0px);
  background-repeat: no-repeat;
  background-position: right bottom, right bottom;
  background-size: 0% 0.1rem, 100% 0.1rem;
  transition: background-size var(--duration-default) ease;
}

@media screen and (hover: hover) {
  .link-with-icon:hover .label {
    background-position: left bottom, left bottom;
    background-size: 100% 0.1rem, 100% 0.1rem;
  }
}

.link-with-icon .icon {
  width: 1.8rem;
  height: 1.8rem;
  margin-inline-end: 1rem;
}

.circle-divider::after {
  content: '\2022';
  font-weight: 400;
  margin: 0 1.3rem 0 1.5rem;
}

.circle-divider:last-of-type::after {
  content: none;
}

.dash-divider::after {
  content: '\2014';
  font-weight: 400;
  margin: 0 1rem 0 1.2rem;
}

.dash-divider:last-of-type::after {
  content: none;
}

hr {
  border: none;
  height: 0.1rem;
  background-color: rgb(var(--color-border));
  display: block;
  margin: 5rem 0;
}

@media screen and (min-width: 750px) {
  hr {
    margin: 7rem 0;
  }
}

.full-unstyled-link {
  text-decoration: none;
  color: currentColor;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.placeholder {
  background-color: rgba(var(--color-base-text), 0.04);
  color: rgba(var(--color-base-text), 0.55);
  fill: rgba(var(--color-base-text), 0.55);
}

details > * {
  box-sizing: border-box;
}

.break {
  word-break: break-word;
}

.visibility-hidden {
  visibility: hidden;
}

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

/* arrow animation */
@media screen and (hover: hover) {
  .animate-arrow .icon-arrow path {
    transform: translateX(-0.25rem);
    transition: transform var(--duration-default) ease;
  }

  .animate-arrow:hover .icon-arrow path {
    transform: translateX(-0.05rem);
  }
}

/* base-details-summary */
summary {
  cursor: pointer;
  list-style: none;
  position: relative;
}

summary .icon-caret {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  margin-top: -0.3rem;
  height: 0.6rem;
  transition: transform var(--duration-default) ease;
}

summary::-webkit-details-marker {
  display: none;
}

.disclosure-has-popup {
  position: relative;
}

.disclosure-has-popup[open] > summary::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2;
  display: block;
  cursor: default;
  background: none;
}

.disclosure-has-popup > summary::before {
  content: none;
}

.disclosure-has-popup[open] > summary + * {
  z-index: 101;
}

/* base-focus */
/*
  Focus ring - default (with offset)
*/

*:focus {
  outline: 0;
  box-shadow: none;
}

*:focus-visible {
  outline: 0.2rem solid rgb(var(--color-keyboard-focus));
  outline-offset: 0.3rem;
  box-shadow: 0 0 0 0.3rem rgb(var(--color-background)),
    0 0 0.5rem 0.4rem rgba(var(--color-keyboard-focus), 0.5);
}

/* Fallback - for browsers that don't support :focus-visible, a fallback is set for :focus */
.focused,
.no-js *:focus {
  outline: 0.2rem solid rgb(var(--color-keyboard-focus));
  outline-offset: 0.3rem;
  box-shadow: 0 0 0 0.3rem rgb(var(--color-background)),
    0 0 0.5rem 0.4rem rgba(var(--color-keyboard-focus), 0.5);
}

/* Negate the fallback side-effect for browsers that support :focus-visible */
.no-js *:focus:not(:focus-visible) {
  outline: 0;
  box-shadow: none;
}

/*
  Focus ring - inset
*/

.focus-inset:focus-visible {
  outline: 0.2rem solid rgb(var(--color-keyboard-focus));
  outline-offset: -0.2rem;
  box-shadow: 0 0 0.2rem 0 rgba(var(--color-keyboard-focus), 0.5);
}

.focused.focus-inset,
.no-js .focus-inset:focus {
  outline: 0.2rem solid rgb(var(--color-keyboard-focus));
  outline-offset: -0.2rem;
  box-shadow: 0 0 0.2rem 0 rgba(var(--color-keyboard-focus), 0.5);
}

.no-js .focus-inset:focus:not(:focus-visible) {
  outline: 0;
  box-shadow: none;
}

/*
  Focus ring - none
*/

/* Dangerous for a11y - Use with care */
.focus-none {
  box-shadow: none !important;
  outline: 0 !important;
}

.focus-offset:focus-visible {
  outline: 0.2rem solid rgb(var(--color-keyboard-focus));
  outline-offset: 1rem;
  box-shadow: 0 0 0 1rem rgb(var(--color-background)),
    0 0 0.2rem 1.2rem rgba(var(--color-keyboard-focus), 0.5);
}

.focus-offset.focused,
.no-js .focus-offset:focus {
  outline: 0.2rem solid rgb(var(--color-keyboard-focus));
  outline-offset: 1rem;
  box-shadow: 0 0 0 1rem rgb(var(--color-background)),
    0 0 0.2rem 1.2rem rgba(var(--color-keyboard-focus), 0.5);
}

.no-js .focus-offset:focus:not(:focus-visible) {
  outline: 0;
  box-shadow: none;
}

/* component-title */
.title-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.title-wrapper.center {
  justify-content: center;
}

.title-wrapper.right {
  justify-content: flex-end;
}

.title-wrapper .title {
  margin: 0;
}

.title {
  margin: 3rem 0 2rem;
}

.title--primary {
  margin: 4rem 0;
}

@media screen and (min-width: 990px) {
  .title {
    margin: 5rem 0 3rem;
  }

  .title--primary {
    margin: 2rem 0;
  }

  .title-wrapper {
    margin-bottom: 3rem;
    align-items: center;
  }
}

.title-wrapper .link {
  font-size: 1.6rem;
  margin-top: 0;
  flex-shrink: 0;
}

.title-wrapper .link-with-icon {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-family: var(--font-heading-family);
  font-size: calc(var(--font-heading-scale) * 1.3rem);
  letter-spacing: 0.3rem;
  font-weight: 600;
}

.title-wrapper.right .link-with-icon .icon {
  width: 1.5rem;
}

.title-wrapper--no-margin {
  margin-bottom: 0;
}

.title-wrapper--no-heading {
  display: none;
}

@media screen and (max-width: 989px) {
  .title-wrapper--mobile-link {
    display: flex;
  }
}

[data-heading-center] .title-wrapper:not(.title-wrapper--no-heading) {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

[data-heading-center] .page-title {
  text-align: center;
}

.title .link {
  font-size: inherit;
  line-height: normal;
}

.subtitle {
  font-size: 1.6rem;
  line-height: calc(1 + 0.6 / var(--font-body-scale));
  letter-spacing: 0.05rem;
  color: rgba(var(--color-foreground), 0.7);
}

@media screen and (min-width: 750px) {
  .subtitle {
    font-size: 1.8rem;
    line-height: calc(1 + 0.8 / var(--font-body-scale));
  }
}

/* component-grid */
.grid {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  margin-inline-start: -1rem;
  padding: 0;
  list-style: none;
}

@media screen and (min-width: 480px) {
  .grid {
    margin-inline-start: -2rem;
  }
}

@media screen and (min-width: 750px) {
  .grid {
    margin-inline-start: -3rem;
  }
}

.grid__item {
  padding-inline-start: 1rem;
  padding-bottom: 0.5rem;
  width: 25%;
  max-width: 50%;
  flex-grow: 1;
  flex-shrink: 0;
}

@media screen and (min-width: 480px) {
  .grid__item {
    padding-inline-start: 2rem;
  }
}

@media screen and (min-width: 750px) {
  .grid__item {
    padding-inline-start: 3rem;
    padding-bottom: 1rem;
    width: 25%;
    max-width: 50%;
  }

  .grid__item--one-third {
    max-width: 33.33%;
  }

  .grid__item--two-third {
    max-width: 66.67%;
  }

  .grid__item--one-quarter {
    max-width: 25%;
  }

  .grid__item--three-quarter {
    max-width: 75%;
  }
}

.grid--gapless {
  margin-inline-start: 0;
  margin-bottom: 0;
}

.grid--gapless .grid__item {
  padding-inline-start: 0;
  padding-bottom: 0;
}

@media screen and (max-width: 749px) {
  .grid__item.slider__slide--full-width {
    width: 100%;
    max-width: none;
  }
}

@media screen and (min-width: 750px) and (max-width: 989px) {
  .grid--1-col-tablet .grid__item {
    max-width: 100%;
  }

  .grid--one-third-max.grid--2-col-tablet .grid__item {
    max-width: 50%;
  }

  .grid--one-third-max.grid--3-col-tablet .grid__item {
    max-width: 33.33%;
  }
}

@media screen and (min-width: 990px) {
  .grid--one-third-max.grid--3-col-desktop .grid__item {
    max-width: 33.33%;
  }
}

.grid--1-col .grid__item {
  max-width: 100%;
  width: 100%;
}

.grid--3-col .grid__item {
  width: 33.33%;
}

@media screen and (min-width: 750px) {
  .grid--3-col .grid__item {
    width: 33.33%;
  }
}

.grid--2-col .grid__item {
  width: 50%;
  max-width: 100%;
}

@media screen and (min-width: 750px) {
  .grid--2-col .grid__item {
    width: 50%;
    max-width: 50%;
  }

  .grid--4-col-tablet .grid__item {
    width: 25%;
  }

  .grid--3-col-tablet .grid__item {
    width: 33.33%;
  }

  .grid--2-col-tablet .grid__item {
    width: 50%;
  }

  .grid--1-col-tablet .grid__item {
    width: 100%;
  }
}

@media screen and (min-width: 990px) {
  .grid--4-col-desktop .grid__item {
    width: 25%;
  }

  .grid--3-col-desktop .grid__item {
    width: 33.33%;
  }

  .grid--2-col-desktop .grid__item {
    width: 50%;
  }
}

@media screen and (max-width: 480px) {
  .grid--1-col-mobile .grid__item {
    max-width: 100%;
    width: 100%;
  }
}

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

.grid__item--full-width {
  flex: 0 0 100%;
  max-width: 100%;
}

.grid--no-gutters {
  margin-inline-start: 0;
}

.grid--no-gutters .grid__item {
  padding-inline-start: 0;
  padding-bottom: 0;
}

/* component-media */

.media-wrapper {
  display: block;
  position: relative;
  overflow: hidden;
  background-color: rgb(var(--color-placeholder));
}

lazy-image {
  display: block;
}

[data-lazy-image] .media-wrapper.loading,
.media-wrapper[loading] {
  position: relative;
}

[data-lazy-image] .media-wrapper.loading::before,
[data-lazy-image] .media-wrapper.loading::after,
.media-wrapper[loading]::before,
.media-wrapper[loading]::after {
  content: '';
  position: absolute;
  width: 5rem;
  height: 0.2rem;
  left: 50%;
  top: 50%;
  margin-top: -0.1rem;
  margin-left: -2.5rem;
  z-index: 1;
  opacity: 0;
  background-color: rgb(var(--color-base-background));
}

[data-lazy-image] .media-wrapper.loading::before,
.media-wrapper[loading]::before {
  opacity: 1;
  background-color: rgb(var(--color-base-text));
}

[data-lazy-image] .media-wrapper.loading::after,
.media-wrapper[loading]::after {
  animation: preloading 2.5s infinite ease;
}

[data-lazy-image] .media-wrapper.loading lazy-image > img,
.media-wrapper[loading] lazy-image > img {
  opacity: 0;
}

.media-wrapper--large[loading]::before,
.media-wrapper--large[loading]::after {
  width: 8rem;
  height: 0.3rem;
  margin-left: -4rem;
  margin-top: -0.15rem;
}

[data-lazy-image] .media-wrapper--small.loading::before,
[data-lazy-image] .media-wrapper--small.loading::after {
  width: 3rem;
  margin-left: -1.5rem;
}

[data-lazy-image] .media-wrapper--small.loading::after {
  animation: preloading 1.5s infinite ease;
}

.media {
  display: block;
  position: relative;
  overflow: hidden;
}

.media--transparent {
  background-color: transparent;
}

.media > *:not(.zoom, .deferred-media__poster-button),
.media model-viewer {
  display: block;
  max-width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.media > img {
  backface-visibility: hidden;
  object-fit: cover;
  object-position: var(--image-position);
  transition: opacity var(--duration-long) ease;
}

.media--image-contain > img {
  object-fit: contain;
}

.media--square {
  padding-bottom: 100%;
}

.media--portrait {
  padding-bottom: 125%;
}

.media--landscape {
  padding-bottom: 66.6%;
}

.media--cropped {
  padding-bottom: 56%;
}

.media--wide {
  padding-bottom: 56.25%;
}

.media--circle {
  padding-bottom: 100%;
  border-radius: 50%;
}

.media.media--hover-effect > img + img {
  opacity: 0;
}

@media screen and (min-width: 990px) {
  .media--cropped {
    padding-bottom: 63%;
  }
}

.media .image-fit {
  position: relative;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
	object-position: var(--image-position);
}

.media--image-contain .image-fit {
	object-fit: contain;
}

.media--adapt {
	position: relative;
	height: 0;
	padding-bottom: var(--image-ratio-percent);
}

.media--adapt .image-fit {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0
}

.media--450px {
	height: 292.5px
}

.media--550px {
	height: 357.5px
}

.media--650px {
	height: 422.5px
}

.media--750px {
	height: 487.5px
}

.media--100vh {
	height: 100vh
}

@media screen and (min-width: 750px) {
	.media--450px {
		height: 450px
	}

	.media--550px {
		height: 550px
	}

	.media--650px {
		height: 650px
	}

	.media--750px {
		height: 750px
	}
}

@media screen and (max-width: 749px) {
	.media-mobile--250px {
		height: 250px
	}

	.media-mobile--300px {
		height: 300px
	}

	.media-mobile--400px {
		height: 400px
	}

	.media-mobile--500px {
		height: 500px
	}

	.media-mobile--100vh {
		height: 90vh
	}

  .media-mobile--square {
    padding-bottom: 100%;
  }
  
  .media-mobile--portrait {
    padding-bottom: 125%;
  }
  
  .media-mobile--landscape {
    padding-bottom: 66.6%;
  }

  .media-mobile--adapt {
    position: relative;
    height: 0;
    padding-bottom: var(--image-ratio-percent);
  }

  .media-mobile--adapt .image-fit {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0
  }
}

deferred-media {
  display: block;
}

/* component-button */
/* Button - default */

.button,
.shopify-challenge__button {
  position: relative;
  z-index: 1;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  font-family: inherit;
  padding: 1rem 3rem;
  padding-top: calc(1rem + var(--font-button-baseline));
  text-decoration: none;
  border-radius: var(--button-radius);
  border: var(--button-border-width) solid rgb(var(--color-button-border));
  color: rgb(var(--color-button-text));
  background-color: rgb(var(--color-button-background));
  font-family: var(--font-button-family);
  min-width: 24rem;
  max-width: 100%;
  min-height: 4.6rem;
  text-transform: uppercase;
  font-weight: 600;
  transition-property: color, box-shadow;
  transition-duration: var(--duration-long);
  transition-timing-function: ease;
  -webkit-appearance: none;
  appearance: none;
  overflow: hidden;
  box-shadow: var(--button-shadow-horizontal-offset) var(--button-shadow-vertical-offset) rgba(var(--color-shadow), var(--shadow-opacity));
}

.shopify-challenge__button {
  border: var(--button-border-width) solid rgb(var(--color-button-border));
}

@media screen and (min-width: 750px) {
  .button,
  .shopify-challenge__button {
    min-height: 5rem;
  }
}

.button[disabled],
.button[aria-disabled="true"] {
  pointer-events: none;
}

.button,
.button-label,
.shopify-challenge__button {
  font-size: var(--font-button-size);
  letter-spacing: 0.3rem;
  line-height: calc(1 + 0.2 / var(--font-body-scale));
}

.button--tertiary {
  font-size: calc(var(--font-button-size) - 1px);
  padding: 0.8rem 1.5rem;
  padding-top: calc(0.8rem + var(--font-button-baseline));
  min-width: 9rem;
  min-height: 4rem;
  line-height: calc(1 + 0.8 / var(--font-body-scale));
  border: none;
  box-shadow: inset 0 0 0 0.1rem rgb(var(--color-button-border));
  transition: box-shadow var(--duration-default) ease;
}

.button--large {
  font-size: calc(var(--font-button-size) + 2px);
}

.button--small {
  font-size: calc(var(--font-button-size) - 2px);
  padding: 0.6rem 2rem;
  padding-top: calc(0.6rem + var(--font-button-baseline));
  min-height: 4rem;
  min-width: 18rem;
}

.shopify-challenge__container .shopify-challenge__button {
  min-width: 16rem;
  margin-top: 3rem;
}

/* Button - hover */

@media screen and (hover: hover) {
  .button::after {
    content: '';
    z-index: -1;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 120%;
    height: 100%;
    background-color: rgb(var(--color-button-text));
    backface-visibility: hidden;
    will-change: transform;
    transform: rotate3d(0, 0, 1, 10deg) translate3d(-1.2em, 110%, 0);
    transform-origin: 0% 100%;
    transition: transform var(--duration-long) ease;
  }

  .button--tertiary::after {
    content: none;
  }

  .button:hover {
    color: rgb(var(--color-button-background));
    box-shadow: none;
  }

  .button:hover::after {
    transform: rotate3d(0, 0, 1, 0deg) translate3d(0, 0, 0);
  }

  .button--tertiary:hover {
    color: rgb(var(--color-button-text));
    box-shadow: inset 0 0 0 0.2rem rgb(var(--color-button-border));
  }
}

/* Button - other */

.button:disabled,
.button[aria-disabled='true'],
.button.disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.button--full-width {
  display: flex;
  width: 100%;
}

.button.loading {
  color: transparent;
}

.button.loading::after {
  content: '';
  display: block;
  animation: loading var(--duration-long) infinite linear;
  border: 0.2rem solid transparent;
  border-inline-start: 0.2rem solid rgb(var(--color-button-text));
  border-radius: 100%;
  height: 2.4rem;
  width: 2.4rem;
  z-index: -1;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -1.2rem;
  margin-left: -1.5rem;
  right: auto;
  bottom: auto;
  background-color: transparent;
  transform: none;
  transform-origin: unset;
}

.button--small.loading:before {
  width: 2rem;
  height: 2rem;
}

@keyframes loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.button--link {
  font-size: 1.1rem;
  padding: 0;
  padding-bottom: 0.6rem;
  box-shadow: none;
  min-height: auto;
  min-width: auto;
  color: rgb(var(--color-link));
  display: inline-block;
  text-decoration: none;
  transition-duration: var(--duration-long);
  transition-property: color, background-size;
  background-color: transparent;
  background-image: linear-gradient(to top, rgb(var(--color-border)) 0, rgb(var(--color-border)) 0), linear-gradient(to top, transparent 0, transparent 0);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 0.2rem, 100% 0.2rem;
}

.button--link::after {
  content: none;
}

@media screen and (hover: hover) {
  .button--link:not([disabled]):hover {
    background-position: right bottom;
    background-size: 0 0.2rem, 100% 0.2rem;
  }
}

.button--cta {
  min-height: 4.5rem;
  background: none;
  box-shadow: none;
  min-width: auto;
  max-width: 100%;
  padding: 0;
  border: none;
  justify-content: space-between;
  text-transform: none;
  font-weight: normal;
  color: rgb(var(--color-link));
}

.button--cta.button--small {
  min-height: 4rem;
}

.button--cta.button--small .label {
  font-size: 1.4rem;
}

@media screen and (min-width: 750px) {
  .button--cta {
    min-width: 22.5rem;
  }
}

@media screen and (hover: hover) {
  .button--cta:hover {
    color: rgb(var(--color-link));
  }
}

.button--cta::before,
.button--cta::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 0.1rem;
  bottom: 0;
  right: 0;
  top: auto;
  left: auto;
  transform: none;
  border: none;
  background-color: currentColor;
  transition: transform var(--duration-default) ease;
}

.button--cta::before {
  transform: scaleX(0);
  transform-origin: left;
  transition-delay: 0s;
}

.button--cta:after {
  transform-origin: right;
  transition-delay: 0.25s;
}

@media screen and (hover: hover) {
  .button--cta:hover::before {
    transform: scaleX(1);
    transition-delay: 0.25s;
  }

  .button--cta:hover::after {
    transform: scaleX(0);
    transition-delay: 0s;
  }
}

.button--cta .label {
  padding-inline-end: 2rem;
  font-size: 1.6rem;
  line-height: calc(1 + 0.8 / var(--font-body-scale));
  letter-spacing: 0.04rem;
  text-align: start;
  display: inline-block;
  vertical-align: top;
  overflow: hidden;
  transition: transform var(--duration-default) ease;
}

@media screen and (hover: hover) {
  .button--cta:hover .label {
    transform: translateX(0.5rem);
  }
}

.button--cta .icon {
  fill: currentColor;
  width: 1.5rem;
  height: 1.5rem;
}

.button--arrow {
  box-shadow: none;
  min-height: auto;
  min-width: auto;
}

/* component-form */
.field__input,
.select__select,
.customer .field input,
.customer select {
  font-family: inherit;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  color: rgb(var(--color-foreground));
  width: 100%;
  box-shadow: inset 0 0 0 0.1rem rgb(var(--color-border));
  height: 4.2rem;
  box-sizing: border-box;
  transition: box-shadow var(--duration-default) ease;
}

@media screen and (min-width: 750px) {
  .field__input,
  .select__select,
  .customer .field input,
  .customer select {
    min-height: 4.5rem;
  }
}

.select__select {
  font-size: 1.2rem;
  color: rgba(var(--color-foreground), 0.75);
}

@media screen and (hover: hover) {
  .field__input:hover,
  .select__select:hover,
  .customer .field input:hover,
  .customer select:hover,
  .localization-form__select:hover {
    box-shadow: inset 0 0 0 0.2rem rgb(var(--color-border));
  }
}

.field__input.invalid,
.select__select.invalid,
.customer .field input.invalid,
.customer select.invalid {
  box-shadow: inset 0 0 0 0.1rem var(--color-critical);
}

@media screen and (hover: hover) {
  .field__input.invalid:hover,
  .select__select.invalid:hover,
  .customer .field input.invalid:hover,
  .customer select.invalid:hover,
  .localization-form__select.invalid:hover {
    box-shadow: inset 0 0 0 0.2rem var(--color-critical);
  }
}

.field__input:focus-visible,
.select__select:focus-visible,
.customer .field input:focus-visible,
.customer select:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 0.2rem rgb(var(--color-keyboard-focus));
}

.text-area,
.select {
  display: inline-block;
  position: relative;
  width: 100%;
}

/* Select */

.select .icon-caret,
.customer select + svg {
  height: 0.6rem;
  pointer-events: none;
  position: absolute;
  top: calc(50% - 0.35rem);
  right: 1.5rem;
}

.select__select,
.customer select {
  cursor: pointer;
  padding: 0;
  padding-inline-start: 1.5rem;
  padding-inline-end: 4rem;;
}

/* Field */

.field {
  position: relative;
  width: 100%;
  display: flex;
}

.customer .field {
  display: block;
}

.field--with-error {
  flex-wrap: wrap;
}

.field__input,
.customer .field input {
  flex-grow: 1;
  text-align: start;
  padding: 1.5rem;
}

.field__input::-webkit-search-cancel-button,
.customer .field input::-webkit-search-cancel-button {
  display: none;
}

.field__input::placeholder,
.customer .field input::placeholder {
  color: rgb(var(--color-foreground));
  opacity: 0.7;
  transition: opacity var(--duration-default) ease;
}

.field__input:focus::placeholder,
.customer .field input:focus::placeholder {
  opacity: 0.4;
}

.field__input:-webkit-autofill,
.customer .field input:-webkit-autofill {
  background-clip: text;
  -webkit-background-clip: text;
}

.field__input::-webkit-search-decoration,
.customer .field input::-webkit-search-decoration {
  -webkit-appearance: none;
}

.field__button {
  align-items: center;
  background-color: transparent;
  border: 0;
  color: currentColor;
  cursor: pointer;
  display: flex;
  height: 4.4rem;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 4.4rem;
}

@media screen and (hover: hover) {
  .field__button:hover {
    color: currentColor;
  }
}

.field__button::before {
  content: none;
}

.field__button > .icon {
  height: 2.5rem;
  width: 2.5rem;
}

/* Text area */

.text-area {
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: var(--font-body-weight);
  padding: 1.2rem;
  min-height: 10rem;
  resize: none;
}

.text-area--resize-vertical {
  resize: vertical;
}

input[type='checkbox'] {
  display: inline-block;
  width: auto;
  margin-inline-end: 0.5rem;
}

/* Form global */

.form__label {
  display: block;
  margin-bottom: 0.6rem;
}

.form__message {
  font-family: var(--font-body-family);
  align-items: center;
  display: grid;
  grid-template-columns: auto 1fr;
  font-size: 1.4rem;
  line-height: 1;
  margin-top: 1rem;
  margin-bottom: 0;
  font-weight: 400;
  color: var(--color-success);
}

.form__message.errors {
  color: var(--color-critical);
}

.form__message.errors .rte a {
  color: inherit;
}

.form__message.errors + .errors {
  margin-top: 1rem;
}

.form__message.errors + .errors ul {
  margin-top: 0;
}

.customer .field .form__message {
  font-size: 1.4rem;
  text-align: start;
}

.form__message .icon,
.customer .form__message .icon {
  align-self: flex-start;
  height: 1.6rem;
  width: 1.6rem;
  margin-inline-end: 0.5rem;
}

.customer .field .form__message .icon {
  align-self: start;
}

.form-status {
  margin: 0;
  font-size: 1.6rem;
}

.form-status .icon {
  width: 1.8rem;
  height: 1.8rem;
}

.form-status-list {
  padding: 0;
  margin: 2rem 0 4rem;
}

.form-status-list li {
  list-style-position: inside;
}

.form-status-list .link::first-letter {
  text-transform: capitalize;
}

/* component-quantity */
.quantity {
  position: relative;
  width: 12rem;
  display: flex;
  align-items: center;
}

.form__label + .quantity {
  width: 14rem;
  box-shadow: 0 0 0 0.1rem rgb(var(--color-border));
}

.no-js .quantity {
  height: 4rem;
  width: 10rem;
  box-shadow: 0 0 0 0.1rem rgb(var(--color-border));
}

.quantity__input {
  font-family: inherit;
  color: currentColor;
  font-size: 1.4rem;
  font-weight: 500;
  opacity: 0.85;
  text-align: center;
  background-color: transparent;
  border: 0;
  padding: 0 0.5rem;
  height: 3.6rem;
  width: 100%;
  flex-grow: 1;
  -webkit-appearance: none;
  appearance: none;
}

.form__label + .quantity .quantity__input {
  height: 4.5rem;
}

.quantity__button {
  padding: 0;
  position: relative;
  flex: 0 0 3.6rem;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 1.8rem;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(var(--color-foreground));
  background-color: rgba(var(--color-foreground), 0.08);
  transition: color var(--duration-default) ease;
}

.form__label + .quantity .quantity__button {
  flex: 0 0 2.6rem;
  width: 2.6rem;
  height: 2.6rem;
}

.form__label + .quantity .quantity__button:first-child {
  margin-inline-start: 1rem;
}

.form__label + .quantity .quantity__button:last-child {
  margin-inline-end: 1rem;
}

.quantity__button::after {
  content: '';
  width: 100%;
  height: 100%;
  pointer-events: none;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  border-radius: 50%;
  transform: scale(0);
  background-color: rgb(var(--color-foreground));
  transition: transform var(--duration-default) ease;
}

@media screen and (hover: hover) {
  .quantity__button:hover {
    color: rgb(var(--color-background));
  }
  
  .quantity__button:hover::after {
    transform: scale(1);
  }
}

.quantity__button .icon {
  flex: 0 0 1rem;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  position: relative;
  z-index: 2;
}

.quantity__input:-webkit-autofill,
.quantity__input:-webkit-autofill:hover,
.quantity__input:-webkit-autofill:active {
  box-shadow: 0 0 0 10rem rgb(var(--color-background)) inset !important;
  -webkit-box-shadow: 0 0 0 10rem rgb(var(--color-background)) inset !important;
}

.quantity__input::-webkit-outer-spin-button,
.quantity__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.quantity__input[type='number'] {
  -moz-appearance: textfield;
}

/* component-modal */
.modal__toggle {
  list-style-type: none;
}

.no-js details[open] .modal__toggle {
  position: absolute;
  z-index: 101;
  height: 3.4rem;
  width: 4.4rem;
  right: 5%;
}

@media screen and (min-width: 750px) {
  .no-js details[open] .modal__toggle {
    height: 4.4rem;
    right: calc(100% / 2 - 30rem);
  }
}

.modal__toggle-close {
  display: none;
}

.no-js details[open] .modal__toggle span {
  width: 2.4rem;
  height: 2.4rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: rgb(var(--color-background));
}

.no-js details[open] .modal__toggle .icon-close {
  display: flex;
  width: 1.2rem;
  height: 1.2rem;
}

.modal__toggle-open {
  display: flex;
}

.no-js details[open] .modal__toggle-open {
  display: none;
}

.no-js .modal__close-button {
  visibility: hidden;
}

.modal__close-button {
  padding: 1.2rem;
  height: 4.4rem;
  width: 4.4rem;
  border: none;
  background-color: transparent;
  cursor: pointer;
  position: relative;
  color: rgb(var(--color-link));
}

.modal__close-button .icon {
  width: 2rem;
  height: 2rem;
  transition: transform var(--duration-default) ease;
}

@media screen and (hover: hover) {
  .modal__close-button:hover .icon {
    transform: scale(0.8) rotate(90deg);
  }
}

.modal__content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(var(--color-background));
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.no-js details[open] .modal__content {
  overflow: visible;
}

.no-js details[open] .modal-overlay {
  display: block;
}

.no-js details[open] .modal-overlay::after {
  content: '';
  position: absolute;
  background-color: rgba(var(--color-overlay), 0.5);
  top: 100%;
  left: 0;
  right: 0;
  height: 100vh;
}

/* component-cart-count-bubble */
.cart-count-bubble:empty {
  display: none;
}

.cart-count-bubble {
  position: absolute;
  background-color: rgb(var(--color-header-foreground));
  color: rgb(var(--color-header-background));
  font-family: var(--font-button-family);
  height: 1.4rem;
  width: 1.4rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
  top: 0;
  right: 0.8rem;
  line-height: 1;
  transition-property: opacity, transform, color, background-color;
  transition-duration: var(--duration-default);
  transition-timing-function: ease;
}

.cart-count-bubble span {
  padding-top: calc(var(--font-button-baseline) * 2 / 3);
}

@media screen and (min-width: 750px) {
  .cart-count-bubble {
    top: 0.6rem;
  }
}

/* section-header */
#shopify-section-header.animate {
  transition: transform var(--duration-default) ease;
}

/* Main Header Layout */
.header-wrapper {
  display: block;
  position: relative;
  z-index: 20;
  transition: box-shadow var(--duration-default) ease;
}

.header-wrapper--border-bottom {
  box-shadow: 0 0.1rem 0 rgba(var(--color-header-border), 0.3);
}

.header {
  display: grid;
  grid-template-areas: 'left-icon heading icons';
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

@media screen and (min-width: 990px) {
  .header--has-menu:not(.header--middle-left, .header--off-canvas, .header--center-split) {
    padding-bottom: 0;
  }

  .header--top-left {
    grid-template-areas:
      'heading icons'
      'navigation navigation';
    grid-template-columns: 1fr auto;
  }

  .header--middle-left {
    grid-template-areas: 'heading navigation icons';
    grid-template-columns: auto 1fr auto;
    column-gap: 2rem;
  }

  .header--top-center {
    grid-template-areas:
      'left-icon heading icons'
      'navigation navigation navigation';
  }

  .header--center-split {
    grid-template-areas: 'left-icon navigation heading navigation-split icons';
    grid-template-columns: auto 1fr auto 1fr auto;
    column-gap: 2rem;
  }

  .header--center-split .header__heading {
    margin: 0 1rem;
  }

  .header--off-canvas {
    grid-template-areas: 'left-icon heading icons';
    grid-template-columns: 1fr auto 1fr;
    column-gap: 2rem;
  }

  .header--off-canvas header-drawer {
    display: block;
  }

  .header--off-canvas .header__inline-menu {
    display: none;
  }

  .header--off-canvas .header__heading,
  .header--off-canvas .header__heading-link {
    grid-area: heading;
    justify-self: center;
  }

  .header--middle-left .header__inline-menu {
    min-width: 45rem;
  }

  .header:not(.header--middle-left, .header--center-split) .header__inline-menu {
    margin-top: 1.05rem;
  }
}

.header-wrapper > .header::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(var(--color-header-background));
  transition: transform var(--duration-default) ease;
}

.header *[tabindex='-1']:focus {
  outline: none;
}

.header__heading {
  margin: 0;
  line-height: 0;
}

.header > .header__heading-link {
  line-height: 0;
}

.header__heading,
.header__heading-link {
  grid-area: heading;
  justify-self: center;
}

.header__heading-link {
  display: block;
  position: relative;
  word-break: break-word;
  text-decoration: none;
}

.header__heading-link::before,
.header__heading-link::after {
  content: none;
}

.header__heading-link .h2 {
  line-height: 1;
  color: rgb(var(--color-header-foreground));
  transition: color var(--duration-default) ease;
}

@media screen and (hover: hover) {
  .header__heading-link:hover .h2 {
    color: rgb(var(--color-header-foreground), 0.7);
  }
}

.header__heading-logo {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: var(--image-logo-height);
  transition: opacity var(--duration-default) ease;
}

.header__heading-logo.inverse {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 990px) {
  .header__heading,
  .header__heading-link {
    justify-self: start;
  }

  .header--top-center .header__heading-link,
  .header--top-center .header__heading,
  .header--center-split .header__heading-link,
  .header--center-split .header__heading {
    justify-self: center;
  }
}

/* Header icons */
.header__icons {
  display: flex;
  grid-area: icons;
  justify-self: end;
  margin-inline-end: -1.2rem;
}

@media screen and (min-width: 990px) {
  .header--middle-left .header__icons {
    margin-inline-start: 8rem;
  }
}

.header__icon:not(.header__icon--summary),
.header__icon span:not(.cart-count-bubble) {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__icon span:not(.cart-count-bubble) {
  height: 100%;
}

.header__icon {
  color: rgb(var(--color-header-foreground));
  height: 3.4rem;
  width: 4.4rem;
  transition: color var(--duration-default) ease;
}

@media screen and (hover: hover) {
  .header__icon:hover {
    color: rgba(var(--color-header-foreground), 0.7);
  }
}

@media screen and (min-width: 750px) {
  .header__icon {
    height: 4.4rem;
  }
}

.header__icon::after {
  content: none;
}

.header__icon .icon {
  stroke-width: var(--icon-weight);
  height: 2rem;
  width: 2rem;
  fill: none;
  overflow: visible;
  vertical-align: middle;
  transition: transform var(--duration-default) ease;
}

@media screen and (hover: hover) {
  .header__icon:hover .icon {
    transform: scale(1.07);
  }

  .header__icon:hover .icon-close {
    transform: scale(0.8) rotate(90deg);
  }
}

.header__icon--cart {
  position: relative;
}

.no-js .cart-drawer-container {
  display: none;
}

@media screen and (max-width: 989px) {
  menu-drawer~.header__icons .header__icon--account {
    display: none;
  }
}

/* Search */
menu-drawer + .header__search {
  display: none;
}

.header > .header__search {
  grid-area: left-icon;
  justify-self: start;
}

.header--top-center:not(.header--has-menu) > .header__search,
.header--center-split:not(.header--has-menu) > .header__search {
  display: block;
}

.header:not(.header--has-menu) * > .header__search {
  display: none;
}

.header__search {
  display: inline-flex;
  line-height: 0;
}

.header--top-center > .header__search,
.header--center-split > .header__search {
  display: none;
}

.header--top-center * > .header__search,
.header--center-split * > .header__search {
  display: inline-flex;
}

@media screen and (min-width: 990px) {
  .header:not(.header--top-center, .header--center-split) * > .header__search,
  .header--top-center > .header__search,
  .header--center-split > .header__search {
    display: inline-flex;
  }

  .header:not(.header--top-center, .header--center-split) > .header__search,
  .header--top-center * > .header__search,
  .header--center-split * > .header__search {
    display: none;
  }
}

.details-modal {
  overflow: hidden;
  height: 0;
}

/* Header cart drawer */
summary .header__icon--summary::after {
  content: '';
  position: absolute;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  transform: scale(0);
  background-color: rgba(var(--color-header-foreground), 0.08);
  transition: transform var(--duration-default) ease;
}

details[open].menu-opening > summary .header__icon--summary::after {
  transform: scale(1);
}

.header__icon--cart .icon {
  display: block;
  position: absolute;
  opacity: 1;
  transform: scale(1);
  transition-property: opacity, transform;
}

details[open] > summary .cart-count-bubble {
  opacity: 0;
  transform: scale(0.8);
}

details[open].menu-opening > summary .header__icon--cart {
  color: rgb(var(--color-header-foreground));
  transition: color var(--duration-default) ease;
}

.js details[open]:not(.menu-opening) > summary .icon-cart {
  visibility: visible;
  opacity: 1;
  transform: scale(1.07);
}

/* Header menu drawer */
.header__icon--menu .icon {
  display: block;
  position: absolute;
  opacity: 1;
  transform: scale(1);
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: var(--duration-default);
  stroke-width: calc(calc(var(--icon-weight) * 2) - 0.2px);
}

.header__icon--menu .icon-close {
  height: 1.4rem;
  width: 1.4rem;
  stroke-width: calc(var(--icon-weight) - 0.1px);
}

details:not([open]) > .header__icon--menu .icon-close,
details[open] > .header__icon--menu .icon-hamburger {
  visibility: hidden;
  opacity: 0;
  transform: scale(0.8);
}

details[open].menu-opening > .header__icon--menu span {
  color: rgb(var(--color-header-foreground));
  transition: color var(--duration-default) ease;
}

.js details[open]:not(.menu-opening) > .header__icon--menu .icon-close {
  visibility: hidden;
}

.js details[open]:not(.menu-opening) > .header__icon--menu .icon-hamburger {
  visibility: visible;
  opacity: 1;
  transform: scale(1.07);
}

/* Header menu */
.header__inline-menu {
  margin-inline-start: -1.2rem;
  grid-area: navigation;
  display: none;
}

.header__inline-menu-split {
  grid-area: navigation-split;
}

.header--top-center .header__inline-menu,
.header--top-center .header__heading-link,
.header--center-split .header__inline-menu,
.header--center-split .header__heading-link {
  margin-inline-start: 0;
}

@media screen and (min-width: 990px) {
  .header__inline-menu {
    display: block;
  }

  .header--top-center .header__inline-menu {
    justify-self: center;
  }

  .header--top-center .header__inline-menu > .list-menu--inline {
    justify-content: center;
  }

  .header--center-split .header__inline-menu:not(.header__inline-menu-split) {
    text-align: end;
  }

  .header--center-split .header__inline-menu .list-menu {
    justify-content: center;
  }

  .header--middle-left .header__inline-menu {
    margin-inline-start: 0;
    text-align: end;
  }
}

.header__menu {
  padding: 0 1rem;
}

.header__menu-item {
  font-family: var(--font-navigation-family);
  font-size: var(--font-navigation-size);
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  padding: 1.2rem 1.5rem;
  color: rgb(var(--color-link));
  transition: color var(--duration-default) ease;
}

.header__menu-item--top {
  --color-link: var(--color-header-foreground);
}

@media screen and (hover: hover) {
  .header__menu-item:hover {
    color: rgba(var(--color-link), 0.7);
  }
}

.header__menu-item .label {
  background-color: transparent;
  background-image: linear-gradient(to top, rgb(var(--color-border)) 0px, rgb(var(--color-border)) 0px), linear-gradient(to top, transparent 0px, transparent 0px);
  background-repeat: no-repeat;
  background-position: right bottom, right bottom;
  background-size: 0% 0.1rem, 100% 0.1rem;
  transition-property: background-size;
  transition-timing-function: ease;
  transition-duration: var(--duration-default);
}

.header__menu-item--top .label {
  --color-border: var(--color-header-border);
}

@media screen and (hover: hover) {
  details[open].menu-opening > .header__menu-item .label,
  .no-js details[open] > .header__menu-item .label,
  .header__menu-item:hover .label {
    background-position: left bottom, left bottom;
    background-size: 100% 0.1rem, 100% 0.1rem;
  }
}

.header__active-menu-item .label,
.list-menu__item--active .label {
  background-position: left bottom, left bottom;
  background-size: 100% 0.1rem, 100% 0.1rem;
}

.header__menu-item .icon-caret {
  position: static;
  height: .6rem;
  width: auto;
  display: none;
  transition: transform var(--duration-default) ease;
}

.header__submenu .icon-caret {
  margin-inline-start: 1.2rem;
  margin-top: 0.3rem;
  display: block;
}

.header__submenu details[open] > summary .icon-caret {
  transform: scaleY(-1);
}

@keyframes animateMenuOpen {
  0% {
    height: 0;
  }

  100% {
    height: 27rem;
  }
}

@keyframes animateOverlayOpen {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* Sections */
.section--divider {
  border-top: 0.1rem solid rgb(var(--color-border));
}

.spacing-section {
  display: block;
  min-height: var(--spacing-section-mobile);
}

@media screen and (min-width: 750px) {
  .spacing-section {
    min-height: var(--spacing-section-desktop);
  }
}

.transition-body {
  position: relative;
}

.transition-body::after {
  content: '';
  display: block;
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: url(cross.svg),url(cross.png),zoom-out;
  pointer-events: none;
  transition: opacity var(--duration-long) ease;
  background-color: rgba(var(--color-overlay), 0.5);
}

#MainContent,
#shopify-section-footer {
  transition: transform var(--duration-long) ease;
}

.badge {
  max-width: max-content;
  border: 0.1rem solid transparent;
  display: inline-block;
  font-size: 1.1rem;
  text-transform: uppercase;
  line-height: 1;
  padding: 0.8rem 1.6rem;
  text-align: center;
  word-break: break-word;
  max-width: max-content;
  background-color: var(--color-badge-background);
  border-color: var(--color-badge-border);
  color: var(--color-badge-foreground);
  font-family: var(--font-button-family);
  padding-top: calc(0.8rem + var(--font-button-baseline));
  border-radius: var(--button-radius);
}

.badge:empty {
  display: none;
}

.badge--onsale {
  color: var(--color-sale-price);
  border-color: currentColor;
}

.badge--countdown {
  padding-inline-start: 2rem;
}

.badge--countdown svg {
  fill: currentColor;
  height: 1rem;
  position: absolute;
  margin-inline-start: -1rem;
}

.icon-plus-alt {
  position: relative;
}

.icon-plus-alt::before,
.icon-plus-alt::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: currentColor;
}

.icon-plus-alt::before {
  width: 100%;
  height: 0.1rem;
}

.icon-plus-alt::after {
  width: 0.1rem;
  height: 100%;
}

@media screen and (forced-colors: active) {
  .icon {
    color: CanvasText;
    fill: CanvasText !important;
  }
}

quick-view-drawer {
  display: none;
}

/* Animate */

use-animate {
  display: block;
}

[data-animate-image] use-animate {
  transition-duration: var(--duration-long);
  transition-timing-function: ease;
}

[data-animate-image] use-animate[data-animate^=fade] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-animate-image] use-animate[data-animate^=fade][animate],
.no-js [data-animate-image] use-animate[data-animate^=fade] {
  opacity: 1;
  transform: translateZ(0);
}

[data-animate-image] use-animate[data-animate=fade-up] {
  transform: translate3d(0, 5rem, 0);
}

[data-animate-image] use-animate[data-animate^=zoom-fade] .image-animate {
  opacity: 0;
}
[data-animate-image] use-animate[data-animate=zoom-fade][animate]:not(.loading) .image-animate {
  animation: zoom-fade var(--duration-animate) ease forwards;
}
[data-animate-image] use-animate[data-animate=zoom-fade-small][animate]:not(.loading) .image-animate {
  animation: zoom-fade-small var(--duration-animate) ease forwards;
}
.no-js [data-animate-image] use-animate .image-animate {
  opacity: 1;
}

@keyframes zoom-fade {
  0% {
    opacity: 0;
    transform: scale(1.2);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes zoom-fade-small {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes appear-down {
  0% {
    opacity: 0;
    transform: translateY(-1rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes appear-up {
  0% {
    opacity: 0;
    transform: translateY(1rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
}

@keyframes fade-in {
  0% {
    opacity: 0
  }
  to {
    opacity: 1
  }
}

@keyframes fade-out {
  0% {
    opacity: 1
  }
  to {
    opacity: 0
  }
}

@keyframes preloading {
  0% {
    transform-origin: 0% 50%;
    transform: scaleX(0);
    opacity: 0;
  }
  40% {
    transform-origin: 0% 50%;
    transform: scaleX(1);
    opacity: 1;
  }
  41% {
    transform-origin: 100% 50%;
    transform: scaleX(1);
    opacity: 1;
  }
  to {
    transform-origin: 100% 50%;
    transform: scaleX(0);
    opacity: 1;
  }
}

.modal-scrollbar-measure {
  display: block;
  position: absolute;
  top: -100rem;
  width: 5rem;
  height: 5rem;
  overflow: scroll;
}

.breadcrumb {
  line-height: calc(1 + 0.4 / var(--font-body-scale));
}

.breadcrumb--divider {
  border-bottom: 0.1rem solid rgb(var(--color-border));
  padding-bottom: 0.6rem;
}

.breadcrumb .link {
  font-size: inherit;
}

.shopify-policy__container {
  margin-bottom: 5rem;
}

@media screen and (min-width: 750px) {
  .shopify-policy__container {
    margin-bottom: 7rem;
  }
}

/* Flickity v3.0.0 */

.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus {
  outline: none;
}

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
  touch-action: pan-y;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.flickity-rtl .flickity-slider {
  left: unset;
  right: 0;
}

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: grabbing;
}

.flickity-cell {
  position: absolute;
  left: 0;
}

.flickity-rtl .flickity-cell {
  left: unset;
  right: 0;
}

.flickity-button {
  position: absolute;
  background-color: rgb(var(--color-background));
  border: none;
  color: rgb(var(--color-foreground));
}

.flickity-button:hover {
  cursor: pointer;
}

.flickity-button:focus {
  outline: none;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous { left: 10px; }
.flickity-prev-next-button.next { right: 10px; }
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

.flickity-page-dots {
  position: absolute;
  z-index: 2;
  bottom: 100%;
  padding: 0 1rem;
  background-color: rgb(var(--color-background));
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 0;
  animation: fade-in var(--duration-default) ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flickity-rtl .flickity-page-dots { direction: rtl; }

.flickity-page-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: none;
  width: 3rem;
  height: 4rem;
  opacity: 0.4;
  cursor: pointer;
  transition: transform var(--duration-default) ease;
  font-size: 0;
}

.flickity-page-dot.is-selected {
  opacity: 1;
}

.flickity-page-dot::after {
  content: '';
  display: block;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background-color: rgb(var(--color-foreground));
  transition: transform var(--duration-default) ease;
}

.flickity-page-dot.is-selected::after {
  transform: scale(1.5);
}

/*-----------------------VALUTAZIONE SCARPA--------------------------*/
/*Nascondi sezione mobile*/
div#mobile-chart {
    display: none;
}
/*Mostra sezione mobile*/
@media only screen and (max-width: 1024px) {
div#mobile-chart {
    display: block;
}
div#desktop-chart {
    display: none !important;
}
}

.voti_hos_svg_wrapper {
  position: relative;
}

.voti_hos_svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: -10px;
}

.voti_hos_svg_mr {
  display: block;
  text-align: center;
  font-size: 80px;
  line-height: 1;
  margin-bottom: 5px;
  font-weight: 500;
}

.voti_hos_svg_mr_text {
  display: block;
  line-height: 1;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}

/**
 * 1. The `reverse` animation direction plays the animation backwards
 *    which makes it start at the stroke offset 100 which means displaying
 *    no stroke at all and animating it to the value defined in the SVG
 *    via the inline `stroke-dashoffset` attribute.
 * 2. Rotate by -90 degree to make the starting point of the
 *    stroke the top of the circle.
 * 3. Using CSS transforms on SVG elements is not supported by Internet Explorer
 *    and Edge, use the transform attribute directly on the SVG element as a
 * .  workaround (https://markus.oberlehner.net/blog/pure-css-animated-svg-circle-chart/#part-4-internet-explorer-strikes-back).
 */
.circle-chart__circle {
  animation: circle-chart-fill 2.5s reverse; /* 1 */
  transform: rotate(-90deg); /* 2, 3 */
  transform-origin: center !important; /* 4 */
}

/**
 * 1. Rotate by -90 degree to make the starting point of the
 *    stroke the top of the circle.
 * 2. Scaling mirrors the circle to make the stroke move right
 *    to mark a positive chart value.
 * 3. Using CSS transforms on SVG elements is not supported by Internet Explorer
 *    and Edge, use the transform attribute directly on the SVG element as a
 * .  workaround (https://markus.oberlehner.net/blog/pure-css-animated-svg-circle-chart/#part-4-internet-explorer-strikes-back).
 */
.circle-chart__circle--negative {
  transform: rotate(-90deg) scale(1, -1); /* 1, 2, 3 */
}

.circle-chart__info {
  animation: circle-chart-appear 0s forwards;
  opacity: 0;
  transform: translateY(0.3em);
}

@keyframes circle-chart-fill {
  to {
    stroke-dasharray: 0 100;
  }
}

@keyframes circle-chart-appear {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/** bars */

.wrapper-bars {
  width: 100%;
  font-family: "Roboto", sans-serif;
  margin: 0 auto;
}
.skill {
  margin-bottom: 10px;
  position: relative;
  /*overflow-x:hidden;*/
  margin-right: 35px;
}
.skill > p {
  font-size: 14px;
  font-weight: 700;
  color: #1a1716;
  margin: 0;
  position: absolute;
  top: 50%;
  z-index: 99;
  color: #fff;
  transform: translateY(-50%);
  margin-left: 10px;
  text-transform: initial;
}
.skill:before {
  width: 100%;
  height: 28px;
  content: "";
  display: block;
  position: absolute;
  background: #efefef;
  bottom: 0;
}
.skill-bar {
  width: 100%;
  height: 28px;
  background: #e67b26;
  display: block;
  position: relative;
}

/* SKILL 1 */
.skill1 {
  width: 95%;
}
.skill-bar span {
  position: absolute;
  border-top: none;
  top: 50%;
  padding: 3px 0;
  font-weight: 600;
  transform: translateY(-50%);
  font-size: 13px;
  color: #fff;
  line-height: 1;
  margin-right: 6px;
  right: 0;
}
.skill-bar {
  position: relative;
}

.skill-count1 {
  right: -35px;
  position: absolute;
  margin-right: 5px;
  color: #000;
  font-weight: 500;
  top: 50%;
  transform: translateY(-50%);
}
/* SKILL 2 */
.skill2 {
  width: 85%;
}

.skill2 .skill-count2 {
  right: -35px;
}
/* SKILL 3 */
.skill3 {
  width: 75%;
}
.skill3 .skill-count3 {
  right: -35px;
}

/* SKILL 4 */
.skill4 {
  width: 65%;
}

.skill4 .skill-count4 {
  right: -35px;
}

/* SKILL 5 */
.skill5 {
  width: 80%;
}

.skill5 .skill-count5 {
  right: -35px;
}

/* SKILL 6 */
.skill6 {
  width: 90%;
}

.skill6 .skill-count6 {
  right: -35px;
}

.skill .animated {
  animation-duration: 0s;
}

.grafici-prod {
  display: flex;
  align-items: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

.grafici-prod .grafici-dx {
  width: 100%;
  margin-left: 30px;
  flex: 1;
}

@media (max-width: 769px) {
  .grafici-prod .grafici-sx {
    display: table;
    margin: auto;
  }
  .grafici-prod .grafici-dx {
    width: 100%;
    margin-top: 20px;
    margin-left: 0;
    flex: none;
  }
}

.circle-chart {
  overflow: visible !important;
}

/** bars */

.wrapper-bars{
    width: 100%;
    font-family: 'Roboto', sans-serif;
    margin:0 auto;
}
.skill {
    margin-bottom: 10px;
    position: relative;
    /*overflow-x:hidden;*/
    margin-right: 35px;
}
.skill > p {
    font-size: 14px;
    font-weight: 700;
    color: #1a1716;
    margin: 0;
    position: absolute;
    top: 50%;
    z-index: 99;
    color: #fff;
    transform: translateY(-50%);
    margin-left: 10px;
    text-transform: initial;
}
.skill:before{
    width: 100%;
    height: 28px;
    content: "";
    display: block;
    position: absolute;
    background: #efefef;
    bottom: 0;
}
.skill-bar {
    width: 100%;
    height: 28px;
    background: #e67b26;
    display: block;
    position: relative;
}

/* SKILL 1 */
.skill1{
    width: 95%;

}
.skill-bar span{
    position: absolute;
    border-top: none;
    top: 50%;
    padding: 3px 0;
    font-weight: 600;
    transform: translateY(-50%);
    font-size: 13px;
    color: #fff;
    line-height: 1;
    margin-right: 6px;
    right: 0;
}
.skill-bar {
    position: relative;

}

.skill-count1 {
    right: -35px;
    position: absolute;
    margin-right: 5px;
    color: #000;
    font-weight: 500;
    top: 50%;
    transform: translateY(-50%);
}
/* SKILL 2 */
.skill2{
    width: 85%;
}

.skill2 .skill-count2 {
    right: -35px;
}
/* SKILL 3 */
.skill3{
    width: 75%;
}
.skill3 .skill-count3 {
    right: -35px;
}

/* SKILL 4 */
.skill4{
    width: 65%
}

.skill4 .skill-count4 {
    right: -35px;
}

/* SKILL 5 */
.skill5{
    width: 80%;
}

.skill5 .skill-count5 {
    right: -35px;
}

/* SKILL 6 */
.skill6{
    width: 90%
}

.skill6 .skill-count6 {
    right: -35px;
}

.skill .animated {
    animation-duration: 0s;
}

.grafici-prod{
    display: flex;
    
    margin-top: 30px;
    flex-wrap: wrap;
}

.grafici-prod .grafici-dx{
    width: 100%;
    margin-left: 30px;
    flex: 1;
}

@media(max-width: 768px){
    .grafici-prod .grafici-sx{
        display: table;
        margin: auto;
    }
    .grafici-prod .grafici-dx{
        width: 100%;
        margin-top: 20px;
        margin-left: 0;
        flex: none;
    }
}

.circle-chart{
    overflow: visible !important;
}

/*---------FINE VALUTAZIONE SCARPA------------*/


#select-beauty-overlay{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.65);
    z-index: 999;
    display: none;
}

.product-last-items{
    display: none;
}

#main-product-wrapper > div.row.product-info-row > div.col-md-5.col-product-info > div.product_header_container.clearfix > div.product-manufacturer.product-manufacturer-next.float-right{
    display: none;
}

#main-product-wrapper > div.row.product-info-row > div.col-md-5.col-product-info > div.product_header_container.clearfix > div.product-prices > div > div.product-reference{
    display: none;
}

@media (max-width: 768px){
    #mobile-header > div.container > div > div > a > img{
        width: 60%;
    }
    #mobile-header .mobile-main-bar{
        padding-top: 0.85714rem;
        padding-bottom: 0.85714rem;
    }
}

#mobile-header-sticky > div > div > div{
    background: white;
}

.skill-count1{
    font-size: 17px;
    font-weight: bold;
}

.product-information > div > p{
    font-size: 17px;
    font-weight: bold;
}

.cbp-hrmenu-tab > a > span{
    line-height: 35px!important;
    /*border-bottom: 1px solid;*/
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    overflow: hidden;
}
.cbp-hrmenu-tab > a > span:before {
     content: "";
     position: absolute;
     z-index: -1;
     left: 0;
     right: 100%;
     bottom: 0;
     background: #ed8107;
     height: 4px;
     -webkit-transition-property: right;
     transition-property: right;
     -webkit-transition-duration: 0.3s;
     transition-duration: 0.3s;
     -webkit-transition-timing-function: ease-out;
     transition-timing-function: ease-out;
 }
.cbp-hrmenu-tab > a > span:hover:before {
     right: 0;
 }

#product .product-prices {
  display: flex;
  align-items: center;
  justify-content: space-between;
}


#select-beauty-overlay{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.65);
    z-index: 999;
    display: none;
}

.product-last-items{
    display: none;
}

#main-product-wrapper > div.row.product-info-row > div.col-md-5.col-product-info > div.product_header_container.clearfix > div.product-manufacturer.product-manufacturer-next.float-right{
    display: none;
}

#main-product-wrapper > div.row.product-info-row > div.col-md-5.col-product-info > div.product_header_container.clearfix > div.product-prices > div > div.product-reference{
    display: none;
}

@media (max-width: 768px){
    #mobile-header > div.container > div > div > a > img{
        width: 60%;
    }
    #mobile-header .mobile-main-bar{
        padding-top: 0.85714rem;
        padding-bottom: 0.85714rem;
    }
}

#mobile-header-sticky > div > div > div{
    background: white;
}

.skill-count1{
    font-size: 17px;
    font-weight: bold;
}

.product-information > div > p{
    font-size: 17px;
    font-weight: bold;
}

.cbp-hrmenu-tab > a > span{
    line-height: 35px!important;
    /*border-bottom: 1px solid;*/
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    overflow: hidden;
}
.cbp-hrmenu-tab > a > span:before {
     content: "";
     position: absolute;
     z-index: -1;
     left: 0;
     right: 100%;
     bottom: 0;
     background: #ed8107;
     height: 4px;
     -webkit-transition-property: right;
     transition-property: right;
     -webkit-transition-duration: 0.3s;
     transition-duration: 0.3s;
     -webkit-transition-timing-function: ease-out;
     transition-timing-function: ease-out;
 }
.cbp-hrmenu-tab > a > span:hover:before {
     right: 0;
 }

.product-price{
    color: black;
}

.select-beauty ul{
    background-color: #e6e6e6!important;
}

.product-variants>.product-variants-item ul li:hover{
    background:#ccc;
}
#add-to-cart-or-refresh > div.product-variants > div > div > div > ul > li > a:hover{
    color:#000;
}

#main-product-wrapper > div.row.product-info-row > div.col-md-5.col-product-info > div.product_header_container.clearfix > h1{
    font-size: 35px;
}

#main-product-wrapper > div.row.product-info-row > div.col-md-5.col-product-info > div.product_header_container.clearfix > div.product-prices > div > div:nth-child(3) > div > span > span{
    font-size: 25px;
}

/*#footer .ps-emailsubscription-block .newsletter-input-group .btn-subscribe{
    color: white;
}*/

#facets_search_wrapper{
    display: none;
}

@media (max-width: 768px){
    .product-miniature{
        outline: solid 1px rgba(161, 161, 161, 0.25);
        background: #fff;
    }
    
    #js-product-list > div.products.row.products-grid > div > article > div.thumbnail-container > a > div{
        display: none;
    }
}

#iqitmegamenu-mobile{
    text-transform: uppercase;
}

.add-to-cart{
    height: 4.6rem;
}

.btn-primary:hover, .btn-primary.disabled:hover, .btn-primary:disabled:hover, .btn-primary:focus, .btn-primary.disabled:focus, .btn-primary:disabled:focus, .btn-primary :active, .btn-primary.disabled :active, .btn-primary:disabled :active{
    border: 2px solid #ed8107;
}

.ap5-pack-product .ap5-pack-product-icon-plus:before{
    color: #ed8107!important;
    content: "\f067";
    font-family: "FontAwesome";
    font-size: 25px;
    position: absolute;
    top: 150px;
    left: -26px;
}

#ap5-pack-product-tab-list > li{
    margin: auto;
}

.tab-pane > div > div > p:nth-child(1){
    display: none;
}

.tab-pane > div > div > hr{
    display: none;
}

#product .custom-select2 select{display: none;}
#product .custom-select2:after{opacity: 0;}
#product .custom-select-hos:after{opacity: 1;}



.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
}
.lds-ellipsis div {
    position: absolute;
    top: 27px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #e67b26;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
    left: 6px;
    animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
    left: 6px;
    animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
    left: 26px;
    animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
    left: 45px;
    animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}
@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(19px, 0);
    }
}


#js-delivery > button{
    background-color: #ed8107;
}

#js-delivery > button:hover{
    background-color: white;
    color: #ed8107;
}

.material-icons{
    font-size: 16px;
}

@media (max-width: 1660px) and (min-width: 1495px){
    .cbp-horizontal .cbp-tab-title{
        font-size: 15px;
    }
}

@media (max-width: 1494px) and (min-width: 1440px){
    .cbp-horizontal .cbp-tab-title{
        font-size: 15px;
    }
}

@media (max-width: 1439px) and (min-width: 1330px){
    .cbp-horizontal .cbp-tab-title{
        font-size: 13px;
    }
}

@media (max-width: 1329px) and (min-width: 1102px){
    #desktop-header-container > div > div.col.col-header-left.col-header-menu{
        padding-right: 0px;
        padding-left: 2px;
    }

    .cbp-horizontal .cbp-tab-title{
        font-size: 12px;
    }

    .cbp-horizontal > ul > li > a, .cbp-horizontal > ul > li > a:not([href]):not([tabindex]), .cbp-horizontal > ul > li > .cbp-main-link{
        padding-right: 5px;
        padding-left: 5px;
    }
}

@media (max-width: 1101px) and (min-width: 1047px){
    #desktop-header-container > div > div.col.col-header-left.col-header-menu{
        padding-right: 0px;
        padding-left: 2px;
    }

    .cbp-horizontal .cbp-tab-title{
        font-size: 11px;
    }

    .cbp-horizontal > ul > li > a, .cbp-horizontal > ul > li > a:not([href]):not([tabindex]), .cbp-horizontal > ul > li > .cbp-main-link{
        padding-right: 5px;
        padding-left: 5px;
    }

}

@media (max-width: 1046px) and (min-width: 992px){
    #desktop-header-container > div > div.col.col-header-left.col-header-menu{
        padding-right: 0px;
        padding-left: 2px;
    }

    .cbp-horizontal .cbp-tab-title{
        font-size: 10px;
    }

    .cbp-horizontal > ul > li > a, .cbp-horizontal > ul > li > a:not([href]):not([tabindex]), .cbp-horizontal > ul > li > .cbp-main-link{
        padding-right: 5px;
        padding-left: 5px;
    }

}

.voti_hos_svg_wrapper {
  position: relative;
}


.tl-select {
  color: #fff !important;
}

.tl-select::after {
  border-color: #fff !important;

}

.search-modal {
  z-index: 99999 !important;

}

@media only screen and (max-width: 768px) {
 .tl-switcher-container.desktop {
display: none !important;
}
  .tl-select {
  color: #000 !important;
}
.tl-options {
 
  top: auto !important;
  bottom: 100% !important;
}
  
}

/* 
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) {
  
   .tl-switcher-container.mobile {
display: none !important;
}

  .circle-chart {

  transform: translateX(96%);
}

  .grafici-prod .grafici-dx {
 
  margin-top: 30px !important;
  margin-left: 0px !important;
}

/* 
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  
  .tl-switcher-container.mobile {
display: none !important;
}
  
}

.product-popup-modal__button {
  font-size: 1.3rem !important;
  line-height: calc(1 + .8 / var(--font-body-scale));
  font-weight: 100;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}


.modal-popup.product-sizes .tabs > .tabs-header > li, .modal-popup.product-fitting .tabs > .tabs-header > li {
  display: inline-block;
  vertical-align: top;
}

.modal-popup.product-sizes .action-close:before,
.modal-popup.product-fitting .action-close:before {
 color:#333
}
.modal-popup.product-sizes h4,
.modal-popup.product-fitting h4 {
 font-size:18px;
 font-family:'TradeGothicLT';
 text-align:center;
 margin-bottom:1rem;
 text-transform:uppercase
}
.modal-popup.product-sizes .tabs>.tabs-header,
.modal-popup.product-fitting .tabs>.tabs-header {
 margin:0;
 padding:0;
 list-style:none none;
 border-bottom:1px solid #f60;
}
.modal-popup.product-sizes .tabs>.tabs-header>li,
.modal-popup.product-fitting .tabs>.tabs-header>li {
 display:inline-block;
 vertical-align:top
}
.modal-popup.product-sizes .tabs>.tabs-header a,
.modal-popup.product-fitting .tabs>.tabs-header a {
 display:inline-block;
 padding:1rem;
 background-color:#eee;
 font-family:'TradeGothicLT';
 font-weight:bold;
 margin:1rem 0 -1px 0
}
.modal-popup.product-sizes .tabs>.tabs-header a.active,
.modal-popup.product-fitting .tabs>.tabs-header a.active {
 background-color:#f60;
 color:#fff
}
.modal-popup.product-sizes table,
.modal-popup.product-fitting table {
 margin-top:10px
}
.modal-popup.product-sizes table tr,
.modal-popup.product-fitting table tr {
 border-bottom:1px solid #cbcbcb
}
.modal-popup.product-sizes table tr td:first-child,
.modal-popup.product-fitting table tr td:first-child {
 background-color:#eee
}
.modal-popup.product-sizes table th,
.modal-popup.product-fitting table th,
.modal-popup.product-sizes table td,
.modal-popup.product-fitting table td {
 text-align:center
}
.modal-popup.product-sizes table.col-2 th,
.modal-popup.product-fitting table.col-2 th,
.modal-popup.product-sizes table.col-2 td,
.modal-popup.product-fitting table.col-2 td {
 width:50%
}
.modal-popup.product-sizes table.col-3 th,
.modal-popup.product-fitting table.col-3 th,
.modal-popup.product-sizes table.col-3 td,
.modal-popup.product-fitting table.col-3 td {
 width:33.333333%
}
.modal-popup.product-sizes table.col-4 th,
.modal-popup.product-fitting table.col-4 th,
.modal-popup.product-sizes table.col-4 td,
.modal-popup.product-fitting table.col-4 td {
 width:25%
}
.modal-popup.product-sizes table.col-5 th,
.modal-popup.product-fitting table.col-5 th,
.modal-popup.product-sizes table.col-5 td,
.modal-popup.product-fitting table.col-5 td {
 width:20%
}
.modal-popup.product-sizes table.col-6 th,
.modal-popup.product-fitting table.col-6 th,
.modal-popup.product-sizes table.col-6 td,
.modal-popup.product-fitting table.col-6 td {
 width:16.666666%
}
.modal-popup.product-sizes .size-contents,
.modal-popup.product-fitting .size-contents {
 margin-bottom:3rem
}


table:not([class]) td, table:not([class]) th {
  padding: 1em;
  border: 0.1rem solid rgb(var(--color-border));
  .thsizeguide { width: 25%;
  height: 40px;
  border: 1px solid #FFF;
  background: #fa9e00 !important;
  text-align: center;
}

  table:not([class]) td, table:not([class]) th {
  padding: 1em;
  border: 0.1rem solid rgb(var(--color-border));
  .thsizeguide { width: 25%;
  height: 40px;
  border: 1px solid #FFF;
  background: #fa9e00;
  text-align: center;
}

 .collection-hero__title h2 {display: none !important}

               .hc-sale-tag {
 z-index:2;
 position:absolute;
 top:-35px !important;
 left:8px;
 display:inline-block;
 background:#fb485e;
 color:#ffffff;
 height:46px;
 width:46px;
 border-radius:23px;
 text-align:center;
 vertical-align:middle;
 font-weight:700;
 line-height:46px;
 -webkit-transform:rotate(-30deg);
 transform:rotate(-30deg)
}

    .badge--onsale {

  margin-left: 170px !important;
}


    .header__menu-item(6) > a > span {
    font-weight: bold;
      color: #ff0000 !important;
}