/** Shopify CDN: Minification failed

Line 3120:0 Unexpected "}"

**/
/* TABLE OF CONTENTS

1. GLOBAL SETTINGS
  1.1 COLOR SETTINGS
    1.1.1 COLOR GROUPS
    1.1.2 STATES
    1.1.3 IMAGES / ASPECT RATIO
  1.2 FONT AND TEXT SETTINGS
    1.2.1 FONT FAMILY MARKUP
    1.2.2 TEXT SETTINGS
    1.2.3 RTE SETTINGS
  1.3 COMPONENTS
   1.3.1 LOADERS
   1.3.2 PSWP FIX
   1.3.3 NO SCRIPT RULES
   1.3.4 ELEMENT POSITIONING AND VISIBILITY
   1.3.5 DROPDOWN
   1.3.6 REVOLUTION SELECTBOX
   1.3.7 LABELS
   1.3.8 BUTTONS
   1.3.9 TOOLTIP
   1.3.10 PRICE & INPUTS
  1.4 SPACINGS
  1.5 ACCESSIBILITY
*/

/*
=====================================
          1. GLOBAL SETTINGS
=====================================
*/

.itemLoader {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  opacity: 0;
  pointer-events: none;
  left: 0;
  top: 0;
  transition: opacity 0.25s ease-in-out;
  -moz-transition: opacity 0.25s ease-in-out;
  -webkit-transition: opacity 0.25s ease-in-out;
}
.searchHoverState{
  transition: all 0.2s ease-in-out;
  background-color: transparent;
  cursor: pointer;
}


.searchHoverState:hover{
  background-color: var(--secondary_accent);
}
.itemLoader svg {
  -webkit-animation: spin 2s linear infinite;
  /* Safari */
  animation: spin 2s linear infinite;
  width: 20px;
  height: 20px;
}

.itemLoader svg path {
  stroke: var(--loader_color);
}

.itemLoader.is-visible {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.25s ease-in-out;
  -moz-transition: opacity 0.25s ease-in-out;
  -webkit-transition: opacity 0.25s ease-in-out;
}

.sectionMax_width {
  max-width: var(--section_max_width);
  margin: auto;
}
.hidden{
  display: none;
}
/* GLOBAL */
*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  height: 100%;
  scroll-behavior: smooth;
}

svg {
  pointer-events: none;
  align-items: center;
}

body {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  grid-template-columns: 100%;
  min-height: 100%;
  margin: 0;
  font-size: 0.875rem;
  letter-spacing: 0;
  scroll-behavior: smooth;
  line-height: 1.3;
  font-family: var(--type_paragraf_font);
  font-weight: var(--type_paragraf_weight);
  -webkit-font-smoothing: antialiased;
  text-size-adjust: none;
}

.standardSection {
  padding: 64px 16px;
}

/* NEEDED FOR FIRST RENDER */

.swiperButton[disabled] {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

/* NEEDED FOR FIRST RENDER END */

/*
======= 1.1 COLOR SETTINGS START ========
*/

/* 1.1.2 STATES */


.AlertError {
  color: var(--alert_error);
}

.AlertError svg path {
  fill: var(--alert_error);
}

.AlertSuccess {
  color: var(--alert_success);
}

.AlertSuccess svg path {
  fill: var(--alert_success);
}

/* 1.1.3 IMAGES / ASPECT RATIO */

@supports not (aspect-ratio: auto) {
  .AspectRatio--withFallback {
    position: relative;
    margin-left: auto;
    margin-right: auto;
  }

  .AspectRatio--withFallback > img {
    max-height: 100%;
    max-width: 100%;
    object-fit: cover;
  }
  .AspectRatio--withFallback::before {
    content: "";
    display: block;
    padding-bottom: calc(100% / (var(--aspect-ratio)));
  }

  .AspectRatio--withFallback > img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  .VideoRatio--withFallback {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

  .VideoRatio--withFallback::before {
    content: "";
    display: block;
    padding-bottom: calc(100% / (var(--video-ratio-mobile)));
  }
}

.VideoRatio {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  aspect-ratio: var(--video-ratio-mobile);
}

.VideoRatio--Full {
  height: 100%;
}

.VideoRatio--Full video-component,
.VideoRatio--Full .video-js,
.VideoRatio--Full .videoWrapper,
.VideoRatio--Full .videoHolder {
  height: 100% !important;
  padding-top: unset !important;
}

.AspectRatio {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  aspect-ratio: var(--aspect-ratio);
}

.AspectRatio > img {
  max-height: 100%;
  max-width: 100%;
  object-fit: cover;
}

.AspectRatio--portrait > img,
.AspectRatio--square > img {
  object-fit: cover !important;
  object-position: center;
  -o-object-fit: cover !important;
  -o-object-position: center;
}

.AspectRatio > img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.Image--contrast::after {
  content: "";
  display: block;
  top: 0;
  left: 0;
  background: radial-gradient(
    118.8% 118.8% at 50% 50%,
    rgba(0, 0, 0, 0.32) 0%,
    rgba(196, 196, 196, 0) 100%,
    rgba(0, 0, 0, 0) 100%
  );
  width: 100%;
  height: 100%;
  position: absolute;
  pointer-events: none;
}

.Image--FadeIn {
  opacity: 0;
  -webkit-filter: blur(5px);
  filter: blur(5px);
  transition: filter 300ms 100ms, -webkit-filter 300ms 100ms;
}

.Image--ScaleIn {
  animation: ScaleOut 0.8s ease forwards;
  -webkit-animation: ScaleOut 0.8s ease forwards;
}

@keyframes ScaleIn {
  from {
    transform: scale(96%);
    opacity: 0;
  }

  to {
    transform: scale(100%);
    opacity: 1;
  }
}

@keyframes ScaleOut {
  from {
    transform: scale(104%);
    opacity: 0;
  }

  to {
    transform: scale(100%);
    opacity: 1;
  }
}

.ImageSize--Small {
  height: 375px;
}

.ImageSize--Default {
  height: 500px;
}

.ImageSize--Large {
  height: 790px;
}

.PlaceholderBackground {
  width: 100%;
  height: 100%;
  background: white;
}

.PlaceholderProductCard {
  position: absolute;
  width: 100%;
  height: 100%;
  background: white;
}

.placeholder-svg {
  width: 100%;
  height: 100%;
}

.PlaceholderImage {
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
}

.placeholderSvg {
  fill: var(--background_color);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0px;
  left: 0px;
}

.animatedContent {
  opacity: 0;
}

.ImageHolder_Image,
.ImageHolder--Wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

/*
======= 1.2 FONT AND TEXT SETTINGS START ========
*/

/* 1.2.1 FONT FAMILY MARKUP */

* {
  line-height: 130%;
  font-family: var(--type_paragraf_font);
  font-weight: var(--weight_paragraf_font);
  font-size: 0.875rem;
  letter-spacing: 0;
}

.u-h1,
.rte h1,
.u-h1.rte p,
.u-h1 p,
#insta-feed h1,
.rte.u-h1 em {
  font-size: 2.625rem;
  font-family: var(--type_header_font);
  font-weight: var(--weight_header_font);
  line-height: 120%;
  letter-spacing: -0.02em;
  word-spacing: 2px;
}

.rte.u-h2 a,
.rte.u-h2 em,
.rte.u-h2 strong,
.u-h2,
.rte h2,
.rte.u-h2 > p,
#insta-feed h2,
.rte.u-h2 em {
  font-size: 2rem;
  font-family: var(--type_header_font);
  font-weight: var(--weight_header_font);
  line-height: 120%;
  letter-spacing: -0.02em;
  word-spacing: 2px;
}

.rte.u-h2 strong {
  font-weight: 600;
}

.u-h3,
.rte h3,
.rte.u-h3 p,
#insta-feed h3,
.rte.u-h3 em {
  font-size: 2rem;
  font-family: var(--type_header_font);
  font-weight: var(--weight_header_font);
  line-height: 120%;
  letter-spacing: -0.02em;
  word-spacing: 2px;
}

.appikon-bis-inline-form-wrapper .appikon-bis-inline-form-title h3,
.u-h4,
.rte h4,
.rte.u-h4 strong,
.rte.u-h4 i,
.rte.u-h4 li,
.rte.u-h4 p,
.rte.u-h4 a,
.rte.u-h4 span,
#insta-feed h4,
.rte.u-h4 em {
  font-size: 1.5rem;
  font-family: var(--type_header_font);
  font-weight: var(--weight_header_font);
  line-height: 130%;
  letter-spacing: -0.02em;
  word-spacing: 2px;
}

.u-h5,
.rte h5,
.rte.u-h5 p,
.rte.u-h5 span,
#insta-feed h5,
.rte.u-h5 em {
  font-size: 1rem;
  font-family: var(--type_header_font);
  font-weight: var(--weight_header_font);
  line-height: 130%;
  letter-spacing: -0.02em;
  word-spacing: 2px;
}

.rte p {
  min-height: 0.625rem;
  font-family: var(--type_paragraf_font);
  font-weight: var(--weight_paragraf_font);
  line-height: 130%;
  letter-spacing: 0em;
}

.rte.u-p1 p,
.u-p1,
.u-p1 a,
.u-p1 span,
.u-p1 > a,
.rte.u-p1 em {
  font-size: 1.5rem;
  font-family: var(--type_paragraf_font);
  font-weight: var(--weight_paragraf_font);
  line-height: 130%;
  letter-spacing: 0em;
}

.appikon-bis-inline-form-wrapper .appikon-bis-inline-form-description,
.rte.u-p2 span,
.rte.u-p2 p,
.u-p2,
.input#appikon-bis-inline-form-email.u-p2,
.rte.u-p2 a,
.rte.u-p2 > a,
.rte.u-p2 em {
  font-size: 1rem;
  font-family: var(--type_paragraf_font);
  font-weight: var(--weight_paragraf_font);
  line-height: 130%;
  letter-spacing: 0em;
}

.appikon-bis-inline-form-wrapper .appikon-bis-inline-form-description {
  line-height: 130% !important;
}

.Drawer--PageContent.rte table td,
.rte.u-p3 time,
.u-p3 textarea,
.rte.u-p3 li,
.rte.u-p3 p,
.u-p3,
.u-p3 a,
a.u-p3,
.rte.u-p3 em,
.u-p3 span,
.u-p3 {
  font-size: 0.75rem;
  font-family: var(--type_paragraf_font);
  font-weight: var(--weight_paragraf_font);
  line-height: 130%;
  letter-spacing: 0em;
}

.rte.u-p4 p,
.u-p4 li,
.rte.u-p4 li,
.u-p4,
.u-p4 p,
.u-p4.DropdownContent__Button,
.search-bar .u-p4 .hoverLinks,
.rte.u-p4 a,
.rte.u-p4 em,
.u-p4 span,
.rte.u-p4 time {
  font-size: 0.625rem;
  font-family: var(--type_paragraf_font);
  font-weight: var(--weight_paragraf_font);
  line-height: 130%;
  letter-spacing: 0em;
}

.u-s1,
.rte.u-s1 p,
.rte.u-p1 strong {
  font-size: 1.5rem;
  font-family: var(--type_paragraf_bold_font);
  font-weight: var(--weight_paragraf_bold_font);
  line-height: 130%;
  letter-spacing: 0em;
}

.QuantitySelector input[type="text"],
#sizeGuideDrawer h1,
#sizeGuideDrawer h2,
#sizeGuideDrawer h3,
.RevolutionSelectbox--Item:not([selected="selected"]):hover .RevolutionSelectbox--ItemText,
.Drawer--PageContent.rte h4,
.Drawer--PageButton[aria-expanded="true"],
.customerAccount--toggleTab[aria-expanded="true"].u-p2,
.accountDrawer--Tab[aria-expanded="true"].u-p2,
.u-s2,
.rte.u-s2 p,
.u-s2 p,
.rte.u-s2 a,
.rte.u-p2 strong {
  font-size: 1rem;
  font-family: var(--type_paragraf_bold_font);
  font-weight: var(--weight_paragraf_bold_font);
  line-height: 130%;
  letter-spacing: 0em;
}
.rte.u-p3 strong {
  font-size: 0.75rem;
  font-family: var(--type_paragraf_bold_font);
  font-weight: var(--weight_paragraf_bold_font);
  line-height: 130%;
  letter-spacing: 0em;
}

.Drawer--PageContent.rte table th,
.Drawer--PageContent.rte table strong,
.u-s3,
.u-s3 span,
.u-s3 select,
.rte.u-s3 p,
.u-s3 p {
  font-size: 0.75rem;
  font-family: var(--type_paragraf_bold_font);
  font-weight: var(--weight_paragraf_bold_font);
  line-height: 130%;
  letter-spacing: 0em;
}

.rte.u-p4 strong {
  font-size: 0.625rem;
  font-family: var(--type_paragraf_bold_font);
  font-weight: var(--weight_paragraf_bold_font);
  line-height: 130%;
  letter-spacing: 0em;
}

.u-s4,
.rte.u-s4 span,
.rte.u-s4 p,
.rte.u-s4 strong {
  font-size: 0.625rem;
  font-family: var(--type_paragraf_bold_font);
  font-weight: var(--weight_paragraf_bold_font);
  line-height: 130%;
  letter-spacing: 0em;
}

.rte.u-s4 strong {
  font-size: 0.625rem;
  font-family: var(--type_paragraf_bold_font);
  line-height: 130%;
  letter-spacing: 0em;
}

.shopify-payment-button__button,
.u-pb1 {
  font-size: 0.875rem;
  font-family: var(--type_button_font);
  font-weight: var(--weight_button_font);
  line-height: 130%;
  letter-spacing: 0em;
}

.u-pb2 {
  font-size: 0.75rem;
  font-family: var(--type_button_font);
  font-weight: var(--weight_button_font);
  line-height: 130%;
  letter-spacing: 0em;
}

/* TEXT SETTINGS */

.textLeft {
  text-align: left;
  justify-content: flex-start;
}

.textCenter {
  text-align: center;
}

.textRight {
  text-align: right;
  justify-content: flex-end;
}

.textCapitalize {
  text-transform: capitalize;
}

input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="phone"],

input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"],
select,
textarea {
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  font-size: 1rem;
  /* Browsers that don't understand the following max() will use this */
  font-size: max(1rem, 16px);
  /* Lucky for us, Safari iOS understands max() */
}
input[type="search"]{
  font-size: 2rem;
  /* Browsers that don't understand the following max() will use this */
  font-size: max(2rem, 32px);
  /* Lucky for us, Safari iOS understands max() */
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

input[type="number"] {
  -moz-appearance: textfield;
}

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

li {
  list-style-type: none;
}

li:first-child {
  padding-top: 0px !important;
  margin-top: 0px !important;
}

li:last-child {
  padding-bottom: 0px !important;
  margin-bottom: 0px !important;
}

a {
  text-decoration: none;
}

.lh-m {
  line-height: 1.5;
}

button {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: none;
  padding: 0;
  display: block;
  cursor: pointer;
}

path {
  align-self: center;
}

dl {
  display: flex;
}

/* 1.2.3 RTE SETTINGS */
.rte li {
  margin-block-start: 0.5rem;
  margin-block-end: 0.5rem;
  margin-inline-start: 0.5rem;
  margin-inline-end: 0.5rem;
}

.rte img {
  max-width: 100%;
}

.rte blockquote {
  border-left: 10px solid var(--secondary_text);
  margin: 1.5em 10px;
  padding: 0.5em 10px;
}

.rte ul li {
  list-style-type: disc;
}

.rte ol li {
  list-style-type: number;
}

.rte ul,
.rte ol {
  margin-block-start: 2rem;
  margin-block-end: 2rem;
  margin-inline-start: 2rem;
  margin-inline-end: 2rem;
}

p {
  word-break: break-word;
}

.rte a {
  text-decoration: underline;
  color: var(--primary_text);
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
li,
ul,
dd,
dt,
dl {
  margin-block-start: 0em;
  margin-block-end: 0em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 0px;
}

.rte h1,
.rte h2,
.rte h3,
.rte h4,
.rte h5,
.rte h6 {
  margin-block-start: 0.75em;
  margin-block-end: 0.75em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 0px;
}

b,
strong {
  font-weight: bold;
}

/*
======= FONT AND TEXT SETTINGS END ========
*/

/*
======= 1.3 COMPONENTS START ========
*/

/* 1.3.1 LOADERS */
#loader-element {
  position: fixed;
  z-index: 1000;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity .25s ease-in-out;
}

#loader-element lottie-player {
  width: 286px;
  height: 102px;
}

@media screen and (min-width: 768px) {
  #loader-element lottie-player {
    width: 606px;
    height: 190px;
  }
}

/* 1.3.1 For iOS devices */
@supports (-webkit-hyphens:none) {
  @media screen and (min-width: 768px) {
    #loader-element lottie-player {
      width: 300px;
      height: 150px;
    }
  }
}

#loader-element.hide {
  opacity: 0;
  pointer-events: none;
}

.sizeGuideOverlay,
.notifyMeOverlay,
.pageOverlay,
.cart_drawer-overlay,
.localizationOverlay {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 20;
  background-color: var(--loader_color);
  opacity: 0;
  transition: all 0.6s ease-in-out;
  visibility: hidden;
}

.cart_drawer-overlay{
  z-index: 23;
}

.notifyMeOverlay {
  pointer-events: none;
  display: block;
}

.sectionOverlay {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: -1;
  background-color: var(--loader_color);
  opacity: 0;
  transition: all 0.6s ease-in-out;
  visibility: hidden;
}

.cart_drawer-overlay.is-visible,
.sizeGuideOverlay.is-visible,
.notifyMeOverlay.is-visible,
.sectionOverlay.is-visible,
.localizationOverlay.is-visible,
.pageOverlay.is-visible {
  opacity: 0.7;
  transition: all 0.6s ease-in-out;
  visibility: visible;
  pointer-events: initial;
}



.pageLoader {
  height: 4px;
  background-color: var(--loader_color);
  width: 0%;
  position: fixed;
  top: 0px;
  display: block;
  z-index: 10;
  -webkit-transition: width 0.5s ease-in-out;
  -moz-transition: width 0.5s ease-in-out;
  -o-transition: width 0.5s ease-in-out;
  transition: width 0.5s ease-in-out;
}

.spinningLoader {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  opacity: 0;
  display: none;
  left: 0;
  top: 0;
}

.spinningLoader.is-visible {
  opacity: 1;
  display: flex;
}

.spinningLoader svg {
  -webkit-animation: spin 2s linear infinite;
  /* Safari */
  animation: spin 2s linear infinite;
  width: 20px;
  height: 20px;
}

.spinningLoader svg path {
  stroke: var(--loader_color);
  fill: transparent !important;
}

/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }

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

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

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

.js .pageTransition {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 999;
  background: var(--pageTransitionColor);
  opacity: 1;
  visibility: visible;
  pointer-events: none;
}

/* 1.3.2 PSWP FIX */

/*IOS 15 fix for pswp */
html.pswp-open-in-ios,
html.pswp-open-in-ios body {
  height: var(--window-inner-height);
  overflow: hidden;
  box-sizing: border-box;
}

/* Hide page content via CSS when PhotoSwipe opens */
.pswp-open-in-ios body > * {
  display: none;
}

.pswp-open-in-ios body .pswp.pswp--open {
  display: block;
}

/* 1.3.3 NO SCRIPT RULES */
.js .no-js,
.no-js .noJSHide {
  display: none !important;
}

.no-js .noJSshow {
  opacity: 1 !important;
}

.no-js .swiper-slide {
  width: 20%;
}

.no-js .ProductSliderCell {
  width: 100%;
}

.no-js .cardWrapper {
  width: 100%;
}

.no-js .Banner__Slideshow--fullscreen .Banner__Cell {
  width: 100%;
}

.no-js .swiper-wrapper {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.animationsDisabled .animatedContent,
.no-js .animatedContent,
.no-js .animatedContent {
  opacity: 1;
}

.no-js .AspectRatio > img {
  display: none !important;
}

.AspectRatio > img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* 1.3.4 ELEMENT POSITIONING AND VISIBILITY */

@media screen and (max-width: 767px) {
  .not_mobile {
    display: none !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .not_pocket {
    display: none !important;
  }
}

@media (min-width: 1025px) and (max-width: 1440px) {
  .not_laptop {
    display: none;
  }
}

@media screen and (min-width: 1025px) {
  .not_desktop {
    display: none !important;
  }
}

.FlexFill {
  flex: 1 0 0;
}

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

.SetRight {
  margin: 0px -4px;
  justify-content: flex-end;
}

.SelfAlign {
  align-items: center;
  display: flex;
  word-break: break-word;
  justify-content: center;
}

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

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

/* 1.3.5 DROPDOWN */

.Dropdown {
  width: 100%;
}

.Dropdown--Content[aria-hidden="false"] {
  height: auto;
  display: blocK;
  visibility: visible;
  transition: height 0.3s ease-in-out;
}

.DropDown--Toggle {
  line-height: 100%;
  cursor: pointer;
}





.Dropdown--Content {
  display: block;
  height: 0;
  visibility: hidden;
  transition: height 0.3s ease-in-out;
  overflow: hidden;
}

.Dropdown--Button {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  width: 100%;
  padding: 16px 0px;
  cursor: pointer;
  align-items: center;
}

.Dropdown--Plus {
  position: relative;
  width: 14px;
  height: 14px;
}

.Dropdown--Plus::before,
.Dropdown--Plus::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  background-color: var(--primary_text);
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.Dropdown--Plus::before {
  width: 14px;
  height: 1px;
  opacity: 1;
}

.Dropdown--Plus::after {
  width: 1px;
  height: 14px;
}

.Dropdown--Button[aria-expanded="true"] .Dropdown--Plus::before,
.Dropdown--Button[aria-expanded="true"] .Dropdown--Plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
  background-color: var(--primary_text);
}

.Dropdown--Button[aria-expanded="true"] .Dropdown--Plus::before {
  opacity: 0;
}

/* 1.3.6 REVOLUTION SELECTBOX */

.RevolutionSelectbox {
  position: relative;
}

.RevolutionSelectbox--Content {
  background-color: var(--background_color);
  color: var(--primary_text);
}

.RevolutionSelectbox--Button svg {
  width: 16px;
  height: 16px;
  pointer-events: none;
}

.RevolutionSelectbox--Button svg path {
  fill: var(--primary_text);
}

.RevolutionSelectbox--Item {
  padding: 8px 16px 8px 16px;
  color: var(--primary_text);
  cursor: pointer;
  transition: 0.3s ease-in-out;
  position: relative;
}

.RevolutionSelectbox--Placeholder {
  opacity: 0;
  visibility: hidden;
}

.RevolutionSelectbox--ItemText {
  position: absolute;
  left: 16px;
  top: 15px;
  width: calc(100% - 32px);
}

.RevolutionSelectbox--Selectors .RevolutionSelectbox--Item {
  padding: 15px 16px;
}

.PopoverContent .RevolutionSelectbox--Item {
  padding: 16px;
}

.RevolutionSelectbox--Item[selected="selected"] {
  background-color: var(--primary_accent);
  cursor: default;
  transition: 0.3s ease-in-out;
}


.RevolutionSelectbox--Button {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.RevolutionSelectbox--Button[aria-expanded="true"] {
  z-index: 3;
  position: relative;
}

.RevolutionSelectbox--Button[aria-expanded="true"] svg {
  transform: rotate(180deg);
  transition: transform 0.3s ease-in;
}

.RevolutionSelectbox--Button[aria-expanded="false"] svg {
  transform: rotate(0deg);
  transition: transform 0.3s ease-in;
}

.Dropdown--Button[aria-expanded="true"] svg{
  transform: rotate(180deg);
  transition: transform 0.2s ease-in-out;
}
.Dropdown--Button[aria-expanded="false"] svg{
  transition: transform 0.2s ease-in-out;
}

.Drawer--Closer {
  display: flex;
  position: relative;
}

.Drawer--Closer svg {
  width: 20px;
  height: 20px;
}

.Drawer--Closer path {
  fill: var(--primary_text);
}

.RevolutionSelectbox--Selectors .RevolutionSelectbox--Content {
  max-height: 241px;
  overflow: auto;
  position: absolute;
  left: 0px;
  z-index: 2;
  top: 32px;
  text-transform: capitalize;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  width: max-content;
  max-width: 200px;
}

.RevolutionSelectbox--Selectors .RevolutionSelectbox--Content.PopoverContent {
  position: fixed;
  width: 100%;
  overflow: hidden;
  max-width: 100%;
  left: 0;
  max-height: 300px;
  bottom: 0;
  top: unset;
  background: var(--background_color);
  z-index: 21;
  box-shadow: 0px 4px 16px 4px rgba(74, 74, 74, 0.1);
}

.RevolutionSelectbox--Header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid var(--primary_grey);
}

.RevolutionSelectbox--CloseHeader {
  padding: 16px;
  position: absolute;
  z-index: 1;
  display: flex;
  right: 0px;
  top: 0px;
}

.RevolutionSelectbox--CloseHeader svg,
.RevolutionSelectbox--CurrencyDropdown svg {
  width: 16px;
  height: 16px;
}

.RevolutionSelectbox--Selectors
  .RevolutionSelectbox--Content.PopoverContent
  path {
  fill: var(--primary_text);
}

.PopoverContent .RevolutionSelectbox--InnerContent {
  overflow: auto;
  height: calc(100% - 18px);
}

.PopoverContent .RevolutionSelectbox--Item {
  text-align: left;
  width: 100%;
  border-bottom: 1px solid var(--primary_grey);
}

.RevolutionSelectbox--animation[aria-hidden="true"] {
  opacity: 0;
  display: none;
  animation: slideOut 0.3s ease-in forwards;
  -webkit-animation: slideOut 0.3s ease-in forwards;
}

.RevolutionSelectbox--animation[aria-hidden="false"] {
  animation: slideIn 0.3s ease-in forwards;
  -webkit-animation: slideIn 0.3s ease-in forwards;
}

.RevolutionSelectbox--Content.PopoverContent {
  transition: transform 0.3s ease-in-out;
  transform: translateY(100%);
}

.RevolutionSelectbox--Content.PopoverContent[aria-hidden="false"] {
  transform: translateY(0%);
}

/* 1.3.7 LABELS */

.Label--OnSale {
  color: var(--label_onSale_text);
  background-color: var(--label_onSale_Bg);
}

.Label--SoldOut {
  color: var(--label_soldOut_text);
  background-color: var(--label_soldOut_Bg);
}

.Label--Custom {
  color: var(--label_custom_text);
  background-color: var(--label_custom_Bg);
}

.Svg--sale {
  margin-right: 8px;
}

/* 1.3.8 BUTTONS */
.underline {
  position: relative;
}

.underline::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: -1px;
  background: currentColor;
  transform: scale(1, 1);
  transform-origin: left center;
  transition: transform 0.2s ease-in-out;

}

.accent {
  display: block;
  background: transparent;
  backdrop-filter: blur(6px);
  color: var(--primary_text);
  margin: 8px 0;
}

.Button {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  justify-content: center;
}

.Button[disabled] {
  pointer-events: none;
}

.Button--Tertiary {
  position: relative;
  border: none;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  padding: 0px;
  justify-content: center;
  align-items: center;
  width: fit-content;
  display: flex;
  transition: all 0.2s ease-in-out;
  background-color: unset;
  color: var(--btn_tertiary_txt);
  border-color: unset;
}

.Button--Normal.Button--Tertiary{
  padding: 0px;
}

.Button--Tertiary span {
  position: relative;
  transition: all 0.2s ease-in-out;
}

.Button--Tertiary span::after {
  content: "";
  background: currentColor;
  box-sizing: border-box;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0px;
  left: 0;
}

.Button--Tertiary .ButtonTextContainer {

  width: fit-content;
}

.Button--Tertiary:hover span {
  color: var(--btn_tertiary_txt);
}
.Button--Tertiary .ButtonText svg path {
  fill: var(--btn_tertiary_txt);
}
.Button--Tertiary:disabled {
  opacity: 0.2;
}
.Button--PrimaryOnLight:hover,
.Button--PrimaryOnLight:active,
.Button--PrimaryOnDark:hover,
.Button--PrimaryOnDark:active,
.Button--Secondary:hover,
.Button--Secondary:active,
.Button--Tertiary:hover,
.Button--Tertiary:active {
  background-color: var(--btn_hover_bg);
}

.Button--PrimaryOnLight,
.Button--PrimaryOnDark,
.Button--Secondary {
  position: relative;
  border: 1px solid;
  box-sizing: border-box;
  overflow: hidden;
  z-index: 1;
}
.Button--Tertiary {
  overflow: hidden;
}
.Button--PrimaryOnLight {
  background-color: var(--btn_primary_on_light_bg);
  color: var(--btn_primary_on_light_txt);
  border-color: var(--btn_primary_on_light_border);
}
.Button--PrimaryOnLight .ButtonText svg path {
  fill: var(--btn_primary_on_light_txt);
}

.Button--PrimaryOnDark {
  background-color: var(--btn_primary_on_dark_bg);
  color: var(--btn_primary_on_dark_txt);
  border-color: var(--btn_primary_on_dark_border);
}

.Button--PrimaryOnDark .ButtonText svg path {
  fill: var(--btn_primary_on_dark_txt);
}

.Button--Secondary {
  background-color: var(--btn_secondary_bg);
  color: var(--btn_secondary_txt);
  border-color: var(--btn_secondary_border);
}
.Button--Secondary .ButtonText svg path {
  fill: var(--btn_secondary_txt);
}

.Button--PrimaryOnLight[disabled] {
  background-color: var(--secondary_grey);
  border: 1px solid var(--secondary_grey);
  pointer-events: none;
}

.Button--PrimaryOnDark[disabled] {
  background-color: var(--secondary_grey);
  border: 1px solid var(--secondary_grey);
  pointer-events: none;
}
.Button--PrimaryOnLight[disabled] .ButtonText,
.Button--PrimaryOnDark[disabled] .ButtonText {
  color: var(--body_color);
}
.Button--PrimaryOnDark[disabled] .ButtonText path,
.Button--Secondary[disabled] .ButtonText path {
  fill: var(--body_color);
}
.Button--Secondary[disabled] {
  color: var(--secondary_grey);
  border: 1px solid var(--secondary_grey);
}

.ButtonTextContainer {
  display: flex;
  height: fit-content;
  width: 100%;
  justify-content: center;
  overflow: hidden;
  position: relative;
  text-align: center;
}

.ButtonText {
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  height: 100%;
}
.ButtonText svg {
  vertical-align: middle;
}
.ProductPage--ATC .ButtonText.ButtonTextStart,
.Button--PrimaryOnLight .ButtonText.ButtonTextStart,
.Button--PrimaryOnDark .ButtonText.ButtonTextStart,
.Button--Secondary .ButtonText.ButtonTextStart,
.Button--Tertiary .ButtonText.ButtonTextStart {
  transition: transform 0.25s ease-in-out;
  transform: translateY(0px);
}

.ProductPage--ATC:hover .ButtonText.ButtonTextStart,
.Button--PrimaryOnLight:hover .ButtonText.ButtonTextStart,
.Button--PrimaryOnDark:hover .ButtonText.ButtonTextStart,
.Button--Secondary:hover .ButtonText.ButtonTextStart,
.Button--Tertiary:hover .ButtonText.ButtonTextStart {
  transform: translateY(-105%);
  transition: transform 0.25s ease-in-out;
}
.Button--PrimaryOnLight:hover .ButtonText {
  color: var(--primary_text);
}
.Button--PrimaryOnLight:hover .ButtonText path {
  fill: var(--primary_text);
}
.Button--PrimaryOnLight:hover .noAnim .ButtonText,
.Button--PrimaryOnDark:hover .noAnim .ButtonText,
.Button--Secondary:hover .noAnim .ButtonText,
.Button--Tertiary:hover .noAnim .ButtonText {
  transform: none;
}

.ProductPage--ATC .ButtonText.ButtonTextBelow,
.Button--PrimaryOnLight .ButtonText.ButtonTextBelow,
.Button--PrimaryOnDark .ButtonText.ButtonTextBelow,
.Button--Secondary .ButtonText.ButtonTextBelow,
.Button--Tertiary .ButtonText.ButtonTextBelow {
  width: 100%;
  position: absolute;
  left: 0;
  transform: translateY(100%);
  transition: transform 0.25s ease-in-out;
  white-space: nowrap;
}

.ProductPage--ATC:hover .ButtonText.ButtonTextBelow,
.Button--PrimaryOnLight:hover .ButtonText.ButtonTextBelow,
.Button--PrimaryOnDark:hover .ButtonText.ButtonTextBelow,
.Button--Secondary:hover .ButtonText.ButtonTextBelow,
.Button--Tertiary:hover .ButtonText.ButtonTextBelow {
  transform: translateY(0px);
  transition: transform 0.25s ease-in-out;
}

.Button--Normal span {
  height: fit-content;
  text-align: center;
}

.Button--Normal {
  padding: 10.9px 48px;
}

.Button--Small {
  padding: 10px 20px;
}

/* 1.3.9 TOOLTIP */

[data-tooltip]:before {
  position: absolute;
  content: attr(data-tooltip);
  bottom: calc(100% + 6px);
  left: 50%;
  padding: 0px 8px;
  white-space: nowrap;
  background-color: var(--primary_text);
  color: var(--background_color);
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.2s ease-in-out, opacity 0.2s ease-in-out;
  z-index: 1;
  transform: translate(-50%);
  font-size: 14px;
  font-family: var(--type_paragraf_font);
  font-weight: var(--weight_paragraf_font);
}

[data-tooltip] {
  position: relative;
}

[data-tooltip]:hover:before {
  opacity: 1;
  visibility: visible;
}

/* 1.3.10 PRICE AND INPUTS  */

.priceRegular {
  display: flex;
  align-items: center;
}

.price--hasUnit {
  display: block;
}

.atcPrice {
  margin-left: 8px;
}

.input-container {
  background-color: var(--background_color);
  width: 100%;
  position: relative;
  text-align: center;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 32px 16px;
}

.input-placeholder {
  border: none;
  color: var(--secondary_text);
  background-color: var(--secondary_grey);
  width: 100%;
  padding: 8px 16px;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.input-placeholder::placeholder {
  color: var(--placeholder_color);
}

/* 1.3.11 DRAWERS */

.Drawer--wrapper {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  transition: transform .75s cubic-bezier(0, 1, 0.3, 1);
  z-index: 21;
  display: none;
}

.Drawer--Left[aria-expanded="false"] {
  transform: translateX(-100%);
  left: 0;
  transition: transform .75s cubic-bezier(0, 1, 0.3, 1);
}

.Drawer--Right[aria-expanded="false"] {
  right: 0;
  transform: translateX(100%);
  transition: transform .75s cubic-bezier(0, 1, 0.5, 1);
}

.Drawer--Bottom[aria-expanded="false"] {
  right: 0;
  transform: translateY(100%);
}

.Drawer--Left[aria-expanded="true"] {
  left: 0;
  transform: translateX(0%);
  transition: transform .75s cubic-bezier(0, 1, 0.5, 1);
}

.Drawer--Right[aria-expanded="true"] {
  right: 0;
  transform: translateX(0%);
  transition: transform .75s cubic-bezier(0, 1, 0.3, 1);
}
  
.Drawer--Bottom[aria-expanded="true"] {
  right: 0;
  transform: translateY(0);
}

.Drawer--Close {
  padding: 11px;
  right: -16px;
  position: absolute;
}

.Drawer--Close svg {
  pointer-events: none;
}

/*
======= COMPONENTS END ========
*/
/*
======= 1.4 SPACINGS START ========
*/

.mx-xxs {
  margin-left: 0px;
  margin-right: 0px;
}

.mx-xs {
  margin-left: 0.125rem;
  margin-right: 0.125rem;
}

.mx-s {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.mx-m {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.mx-sl {
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}

.mx-l {
  margin-left: 1rem;
  margin-right: 1rem;
}

.mt-sxl {
  margin-top: 1.5rem;
}

.mb-sxl {
  margin-bottom: 1.5rem;
}

.mx-xl {
  margin-left: 2rem;
  margin-right: 2rem;
}

.mx-sxl {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.mx-sxxl {
  margin-left: 2.5rem;
  margin-right: 2.5rem;
}

.mx-mxxl {
  margin-left: 3rem;
  margin-right: 3rem;
}

.mx-xxl {
  margin-left: 4rem;
  margin-right: 4rem;
}

.mx-3xl {
  margin-left: 5rem;
  margin-right: 5rem;
}

.mx-4xl {
  margin-left: 6rem;
  margin-right: 6rem;
}

.mt-xxs {
  margin-top: 0px;
}

.mr-xxs {
  margin-right: 0px;
}

.mb-xxs {
  margin-bottom: 0px;
}

.ml-xxs {
  margin-left: 0px;
}

.mt-xs {
  margin-top: 0.125rem;
}

.mr-xs {
  margin-right: 0.125rem;
}

.mb-xs {
  margin-bottom: 0.125rem;
}

.ml-xs {
  margin-left: 0.125rem;
}

.mt-s {
  margin-top: 0.25rem;
}

.mr-s {
  margin-right: 0.25rem;
}

.mb-s {
  margin-bottom: 0.25rem;
}

.ml-s {
  margin-left: 0.25rem;
}

.mt-m {
  margin-top: 0.5rem;
}

.mr-m {
  margin-right: 0.5rem;
}

.mb-m {
  margin-bottom: 0.5rem;
}

.ml-m {
  margin-left: 0.5rem;
}

.mt-sl {
  margin-top: 0.75rem;
}

.mr-sl {
  margin-right: 0.75rem;
}

.mb-sl {
  margin-bottom: 0.75rem;
}

.ml-sl {
  margin-left: 0.75rem;
}

.mt-l {
  margin-top: 1rem;
}

.mr-l {
  margin-right: 1rem;
}

.mb-l {
  margin-bottom: 1rem;
}

.ml-l {
  margin-left: 1rem;
}

.mt-sxl {
  margin-top: 1.5rem;
}

.mr-sxl {
  margin-right: 1.5rem;
}

.mb-sxl {
  margin-bottom: 1.5rem;
}

.ml-sxl {
  margin-left: 1.5rem;
}

.mt-xl {
  margin-top: 2rem;
}

.mr-xl {
  margin-right: 2rem;
}

.mb-xl {
  margin-bottom: 2rem;
}

.ml-xl {
  margin-left: 2rem;
}

.mt-sxxl {
  margin-top: 2.5rem;
}

.mr-sxxl {
  margin-right: 2.5rem;
}

.mb-sxxl {
  margin-bottom: 2.5rem;
}

.ml-sxxl {
  margin-left: 2.5rem;
}

.mt-mxxl {
  margin-top: 3rem;
}

.mr-mxxl {
  margin-right: 3rem;
}

.mb-mxxl {
  margin-bottom: 3rem;
}

.ml-mxxl {
  margin-left: 3rem;
}

.mt-xxl {
  margin-top: 4rem;
}

.mr-xxl {
  margin-right: 4rem;
}

.mb-xxl {
  margin-bottom: 4rem;
}

.ml-xxl {
  margin-left: 4rem;
}

.mt-3xl {
  margin-top: 5rem;
}

.mr-3xl {
  margin-right: 5rem;
}

.mb-3xl {
  margin-bottom: 5rem;
}

.ml-3xl {
  margin-left: 5rem;
}

.mt-4xl {
  margin-top: 6rem;
}

.mr-4xl {
  margin-right: 6rem;
}

.mb-4xl {
  margin-bottom: 6rem;
}

.ml-4xl {
  margin-left: 6rem;
}

.mx-xxs {
  margin-left: 0px;
  margin-right: 0px;
}

.mx-xs {
  margin-left: 0.125rem;
  margin-right: 0.125rem;
}

.mx-s {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.mx-m {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.mx-sl {
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}

.mx-l {
  margin-left: 1rem;
  margin-right: 1rem;
}

.mt-sxl {
  margin-top: 1.5rem;
}

.mb-sxl {
  margin-bottom: 1.5rem;
}

.mx-xl {
  margin-left: 2rem;
  margin-right: 2rem;
}

.mx-sxl {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.mx-sxxl {
  margin-left: 2.5rem;
  margin-right: 2.5rem;
}

.mx-mxxl {
  margin-left: 3rem;
  margin-right: 3rem;
}

.mx-xxl {
  margin-left: 4rem;
  margin-right: 4rem;
}

.mx-3xl {
  margin-left: 5rem;
  margin-right: 5rem;
}

.mx-4xl {
  margin-left: 6rem;
  margin-right: 6rem;
}

.mb-null {
  margin-bottom: 0;
}

.pt-xxs {
  padding-top: 0px;
}

.pr-xxs {
  padding-right: 0px;
}

.pb-xxs {
  padding-bottom: 0px;
}

.pl-xxs {
  padding-left: 0px;
}

.pt-xs {
  padding-top: 0.125rem;
}

.pr-xs {
  padding-right: 0.125rem;
}

.pb-xs {
  padding-bottom: 0.125rem;
}

.pl-xs {
  padding-left: 0.125rem;
}

.pt-s {
  padding-top: 0.25rem;
}

.pr-s {
  padding-right: 0.25rem;
}

.pb-s {
  padding-bottom: 0.25rem;
}

.pl-s {
  padding-left: 0.25rem;
}

.pt-m {
  padding-top: 0.5rem;
}

.pr-m {
  padding-right: 0.5rem;
}

.pb-m {
  padding-bottom: 0.5rem;
}

.pl-m {
  padding-left: 0.5rem;
}

.pt-sm {
  padding-top: 0.75rem;
}

.pr-sm {
  padding-right: 0.75rem;
}

.pb-sm {
  padding-bottom: 0.75rem;
}

.pl-sm {
  padding-left: 0.75rem;
}

.pt-l {
  padding-top: 1rem;
}

.pr-l {
  padding-right: 1rem;
}

.pb-l {
  padding-bottom: 1rem;
}

.pl-l {
  padding-left: 1rem;
}

.pt-sxl {
  padding-top: 1.5rem;
}

.pr-sxl {
  padding-right: 1.5rem;
}

.pb-sxl {
  padding-bottom: 1.5rem;
}

.pl-sxl {
  padding-left: 1.5rem;
}

.pt-xl {
  padding-top: 2rem;
}

.pr-xl {
  padding-right: 2rem;
}

.pb-xl {
  padding-bottom: 2rem;
}

.pl-xl {
  padding-left: 2rem;
}

.pt-sxxl {
  padding-top: 2.5rem;
}

.pr-sxxl {
  padding-right: 2.5rem;
}

.pb-sxxl {
  padding-bottom: 2.5rem;
}

.pl-sxxl {
  padding-left: 2.5rem;
}

.pt-mxxl {
  padding-top: 3rem;
}

.pr-mxxl {
  padding-right: 3rem;
}

.pb-mxxl {
  padding-bottom: 3rem;
}

.pl-mxxl {
  padding-left: 3rem;
}

.pt-xxl {
  padding-top: 4rem;
}

.pr-xxl {
  padding-right: 4rem;
}

.pb-xxl {
  padding-bottom: 4rem;
}

.pl-xxl {
  padding-left: 4rem;
}

.pt-3xl {
  padding-top: 5rem;
}

.pr-3xl {
  padding-right: 5rem;
}

.pb-3xl {
  padding-bottom: 5rem;
}

.pl-3xl {
  padding-left: 5rem;
}

.pt-4xl {
  padding-top: 6rem;
}

.pr-4xl {
  padding-right: 6rem;
}

.pb-4xl {
  padding-bottom: 6rem;
}

.pl-4xl {
  padding-left: 6rem;
}

/*
======= SPACINGS END ========
*/

/* 
======= 1.5 ACCESSIBILITY ========
*/
.scrollLock {
  touch-action: none;
  overflow: hidden;
}

:focus {
  outline-color: var(--loader_color);
  outline-offset: 1px;
  outline-width: 1px;
}

input:focus + label {
  outline: 1px solid var(--loader_color);
}

body:not(.user-is-tabbing) :focus {
  outline: none;
}

.skipToContent {
  padding: 12px;
  margin: 0 auto;
  transform: translate(10%, -100%);
  position: absolute;
  transition: transform 0.3s ease;
  background: white;
  z-index: 99;
}

.skipToContent:focus {
  transform: translate(10%, 0%);
}

/*
======= ACCESSIBILITY END  ========
*/

/*
=====================================
        2. ANNOUNCEMENT BAR
=====================================
*/


#shopify-section-section-announcement_bar{
  z-index: 7;
}

.announcementBar,
.usps-bar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  padding: 8px 16px;
  position: relative;
  z-index: 2;
  box-sizing: content-box;
  overflow: hidden;
}

.announcementBar--AnimWrapper {
  display: flex;
  width: 100%;
  height: fit-content;
}

.announcementBar--DuplicateWrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.announcementBar--Block {
  display: flex;
  align-self: center;
}

.announcementBar--BlockItem {
  display: flex;
  align-items: center;
}

.announcementBar--BlockIcon {
  display: flex;
  align-self: center;
  max-width: 24px;
  min-width: 18px;
}

.announcementBar--BlockIcon img {
  object-fit: contain;
  width: 100%;
  height: 16px;
}

.announcementBar--Border {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.component-countDown {
  min-width: 55px;
  position: relative;
  display: inline-flex;
  justify-content: center;
}

/*
=====================================
        ANNOUNCEMENT BAR END
=====================================
*/

/*
=====================================
          3. HEADER
=====================================
*/

.header {
  width: 100%;
  padding: 10px 16px;
  align-items: center;

  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: space-between;
}

.header--Sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  z-index: 6;
  height: fit-content;
}

.header--Wrapper {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}


.header--LinkList {
  display: flex;
  list-style-type: none;
  align-items: center;
}

.header--Links {
  align-items: center;
  display: flex;
  justify-content: right;
  height: inherit;
}

li.header--Links {
  cursor: pointer;
}

.header--Links a {
  display: flex;
}

.header--LogoWrapper img {
  object-fit: contain;
}

.header--LogoWrapper a {
  display: flex;
}



.CartCount {
  margin-left: 4px;
}

/*
=====================================
          HEADER END
=====================================
*/


product-recommendations .swiper:has(:not(.recomm-loaded)) .swiper-slide-featured {
  width: 50vw;
}



@media screen and (min-width: 768px) {
  product-recommendations .swiper:has(:not(.recomm-loaded)) .swiper-slide-featured {
    width: 33vw;
  }
  /*
=====================================
          1. GLOBAL SETTINGS
=====================================
*/

  .flex {
    display: flex;
    align-items: center;
  }

  /*
======= 1.3 COMPONENTS START ========
*/

  /* 1.3.7 Popup */

  .Popup {
    width: 100%;
    max-width: 579px;
    height: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 32px;
    bottom: unset;
  }

  /*
=====================================
        2. ANNOUNCEMENT BAR
=====================================
*/

  .announcementBar,
  .usps-bar {
    padding: 8px 16px;
  }

  /*
=====================================
        ANNOUNCEMENT BAR END
=====================================
*/
}
.hoverLinks {
  position: relative;
  width: fit-content;
}


.headerLinks--innerWrapper[aria-expanded="true"] .mainLinks::before,
.hoverLinks::before {
  content: "";
  position: absolute;
  width: 0px;
  height: 1px;
  left: 0;
  bottom: 1px;
  background: var(--primary_text);
  transition: width 0.5s ease-in-out;
}

@media screen and (min-width: 1025px) {


  
  .headerLinks--innerWrapper[aria-expanded="true"] .mainLinks:before,
  .hoverLinks:hover::before {
    width: 100%;
  }
  
  product-recommendations .swiper:has(:not(.recomm-loaded)) .swiper-slide-featured {
    width: 25vw;
  }

  input[type="search"]{
    font-size: 2.625rem;
    /* Browsers that don't understand the following max() will use this */
    font-size: max(2.625rem, 42px);
    /* Lucky for us, Safari iOS understands max() */
  }
  .Button--Normal {
    padding: 13.9px 40px;
  }
  /* fonts desktop */



    .u-h1,
    .rte.u-h1 p,
    .rte h1,
    .u-h1 p,
    .rte.u-h1 em {
      font-size: 4.5rem;
    }

    .rte.u-h2 a,
    .rte.u-h2 em,
    .rte.u-h2 strong,
    .u-h2,
    .rte.u-h2 p,
    .rte h2,
    #insta-feed h2,
    .rte.u-h2 em {
      font-size: 3.375rem;
    }
  
    .u-h3,
    .rte h3,
    .u-h3 p,
    .rte.u-h3 em {
      font-size: 2.625rem;
    }
  
    .u-h4,
    .rte h4,
    .u-h4 p,
    .rte.u-h4 em {
      font-size: 1.5rem;
    }
    .u-h5,
    .rte h5,
    .u-h5 p,
    .rte.u-h5 em {
      font-size: 1rem;
    }



  body {
    font-size: 1rem;
  }

  .standardSection {
    padding: 128px 64px;
  }

  /*
=====================================
          1. GLOBAL SETTINGS
=====================================
*/

  /* 1.1.3 IMAGES / ASPECT RATIO */

  .zoomImg {
    overflow: hidden;
  }

  .zoomImg img {
    transition: transform 0.8s ease-in-out;
  }

  .zoomImg:hover img {
    transform: scale(1.15);
    transition: transform 0.8s ease-in-out;
  }

  .ImageSize--Small {
    max-height: 300px;
  }

  .ImageSize--Default {
    max-height: 400px;
  }

  .ImageSize--Large {
    height: 500px;
  }

  /*
======= 1.3 COMPONENTS START ========
*/
  /* 1.3.11 DRAWERS */

  .Drawer--wrapper {
    width: 30%;
  }

  /*
=====================================
        2. ANNOUNCEMENT BAR
=====================================
*/

  .announcementBar,
  .usps-bar {
    padding: 8px 32px;
  }

  .announcementBar--BlockIcon img {
    height: 20px;
  }

  /*
=====================================
    ANNOUNCEMENT BAR END
=====================================
*/
  /*
=====================================
        3. HEADER
=====================================
*/


.header {
  padding: 20px 32px 18px 32px;
  z-index: 7;
}

.header--LinkList {
  margin: 0px -8px;
  align-self: stretch;
}

.header--MenuItems {
  flex: 1;
  height: 100%;
  row-gap: 8px;
}

.desktopMenu--Dropdown {
  position: absolute;
  height: fit-content;
  background: var(--secondary_accent);
  color: var(--primary_text);
  width: 100%;
  left: 0;
  top: calc(var(--header-height-fixed) - 1px);
  z-index: -1;
  padding: 0;
  display: none;
  overflow: auto;
  justify-content: space-between;
  align-items: flex-start;

  cursor: default;
  visibility: hidden;
  opacity: 0;
  max-height: calc(100vh - var(--announcement-height-fixed) - var(--header-height-fixed));
}

.desktopMenu--Dropdown a {
  color: var(--primary_text) !important;
  height: fit-content;
}


.headerLinks--innerWrapper[aria-expanded="true"] .desktopMenu--Dropdown {
  animation: slideInMenu 0.6s ease-in-out forwards;
  -webkit-animation: slideInMenu 0.6s ease-in-out forwards;
  box-shadow: 0px 4px 10px rgb(0 0 0 / 10%);
  opacity: 1;
  visibility: visible;
  display: flex;
}

.headerLinks--innerWrapper[aria-expanded="false"] .desktopMenu--Dropdown {
  animation: slideOutMenu 0.6s ease-in-out forwards;
  -webkit-animation: slideOutMenu 0.6s ease-in-out forwards;
  box-shadow: 0px 4px 10px rgb(0 0 0 / 10%);
  opacity: 1;
  visibility: visible;
  display: flex;
}


@keyframes slideInMenu {
  0% {

    opacity: 0;
    display: none;
    visibility: hidden;
    clip-path: inset(0% 0 100% 0); /* Hides everything below the very top */
  }
  1% {
    opacity: 1;
    display: block;
    visibility: visible;
    clip-path: inset(0% 0 100% 0); /* Hides everything below the very top */
  }

  100% {
    clip-path: inset(0% 0 0% 0); /* Reveals the entire element */
    opacity: 1;
    display: block;
    visibility: visible;
  }
}

@keyframes slideOutMenu {
  0% {
    opacity: 1;
    display: block;
    visibility: visible;
    clip-path: inset(0% 0 0% 0); /* Hides everything below the very top */
  }
  99% {
    opacity: 1;
    display: block;
    visibility: visible;
    clip-path: inset(0% 0 100% 0); /* Hides everything below the very top */
  }
  100% {
    clip-path: inset(0% 0 100% 0); /* Hides everything below the very top */
    opacity: 0;
    display: none;
    visibility: hidden;
  }
}


@keyframes slideIn {
  from {
    transform: translateY(-2%);
    opacity: 0;
  }
  to {
    transform: translateY(0%);
    opacity: 1;
  }
}

  @keyframes slideOut {
    from {
      transform: translateY(0%);
      opacity: 1;
    }

    to {
      transform: translateY(-2%);
      opacity: 0;
    }
  }

  @keyframes opacityIn {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  @keyframes opacityOut {
    from {
      opacity: 1;
    }

    to {
      opacity: 0;
    }
  }

  


#header .desktopMenu--LinkHolder {
  padding: 24px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}


  .desktopMenu--LinkHolder {
    padding: 32px;
    width: 74.139%;
  }


/* MEGA MENU IMAGES*/
.mainMenu--MultipleItems_Content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mainMenu--MultipleItems {
  display: flex;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
  min-width: 219px;
}


  .mainMenu--Overlapping {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* MEGA MENU IMAGES*/


  .mainMenu--Image {
    width: 100%;
  }

  .mainMenu--ImagesWrapper {
    flex: 1;
    width: 100%;
    display: block !important;
  }


  .MegaMenu[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
  }


.megaMenuLinks {
  width: 100%;
  word-break: break-all;
  display: flex;
  flex-direction: column;
  gap: 24px;
}


  .MegaMenu--spacingEvenly .MegaMenu__Inner {
    justify-content: space-around;
    justify-content: space-evenly;
  }

  .MegaMenu--spacingCenter .MegaMenu__Inner {
    justify-content: center;
  }


  @supports (display: grid) {
    .MegaMenu--grid .MegaMenu__Inner {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
  }

  .MegaMenu__Item {
    margin: 16px 20px;
    flex-shrink: 1;
  }

  .MegaMenu__Item--fit {
    flex-shrink: 0;
  }

  .MegaMenu__Title {
    display: block;
    margin-bottom: 20px;
  }

  .MegaMenu__Push {
    display: inline-block;
    text-align: center;
    vertical-align: top;
    width: 100%;
    flex: 1;
    overflow: hidden;
    position: relative;
    z-index: 3;
    height: 50%;
  }

  .MegaMenu__Push--shrink {
    width: 50%;
  }

  .MegaMenu__Push--shrink:first-child {
    padding-right: 15px;
  }

  .MegaMenu__Push--shrink:last-child {
    padding-left: 15px;
  }

  .MegaMenu__PushImageWrapper {
    margin: 8px auto 20px auto;
    max-width: 100%;
    overflow: hidden;
  }


.desktopMenu--Columns {
  break-inside: avoid-column;
  column-gap: 16px;
  display: flex;
  column-count: 3;
  break-inside: avoid-column;
  flex-wrap: wrap;
  row-gap: 32px;
}

.desktopMenu--ImageWrapper {
  display: flex;
  flex-direction: row;
  height: auto;
  width: 100%;
  align-self: stretch;
  gap: 16px;
}

.mainMenu--ImagesOuterWrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}


    .MegaMenu__Push:hover img {
      transform: scale(1.2);
    }
  }




  .CartCount {
    margin-left: 0px;
  }


  /*
=====================================
        HEADER END
=====================================
*/
}

@media screen and (min-width: 1440px) {

  product-recommendations .swiper:has(:not(.recomm-loaded)) .swiper-slide-featured {
    width: 20vw;
  }
  /*
=====================================
          1. GLOBAL SETTINGS
=====================================
*/

  /* 1.1.3 IMAGES / ASPECT RATIO */

  .ImageSize--Small {
    max-height: 450px;
  }

  .ImageSize--Default {
    max-height: 600px;
  }

  .ImageSize--Large {
    height: 750px;
  }

  /*
=====================================
  2. ANNOUNCEMENT BAR
=====================================
*/

  .announcementBar,
  .usps-bar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 8px 32px;
  }

  /*
=====================================
ANNOUNCEMENT BAR END
=====================================
*/

  /*
=====================================
      3. HEADER
=====================================
*/


#header .desktopMenu--LinkHolder {
  padding: 24px;
}

.header {
  padding: 20px 64px 18px 64px;
}


  /*
=====================================
           HEADER END
=====================================
*/
}

@media screen and (min-width: 1920px) {
  .standardSection {
    padding: 128px;
  }

  /*
=====================================
          1. GLOBAL SETTINGS
=====================================
*/

  /* 1.1.3 IMAGES / ASPECT RATIO */

  .ImageSize--Small {
    max-height: 600px;
  }

  .ImageSize--Default {
    max-height: 800px;
  }

  .ImageSize--Large {
    height: 1000px;
  }

  /*
=====================================
        2. ANNOUNCEMENT BAR
=====================================
*/

  .announcementBar--BlockIcon img {
    height: 24px;
  }

  .announcementBar,
  .usps-bar {
    padding: 8px 64px;
  }

  /*
=====================================
      ANNOUNCEMENT BAR END
=====================================
*/
}

/* SHOPIFY OVERRIDES */

.shopify-challenge__container .shopify-challenge__button {
  width: 60%;
  border: none !important;
  border: 1px solid var(--btn_primary_on_light_border);
  box-sizing: border-box;
  background-color: var(--btn_primary_on_light_bg);
  color: var(--btn_primary_on_light_txt);
  cursor: pointer;
  padding: 12px 40px;
  font-size: 1rem;
  font-family: var(--type_paragraf_font);
  font-weight: var(--weight_paragraf_font);
  margin-top: 24px;
}

.shopify-challenge__container {
  padding: 64px 0px;
  font-size: 1.125rem;
  font-family: var(--type_paragraf_font);
  font-weight: var(--weight_paragraf_font);
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: auto;
  min-height: calc(
    100vh - var(--header-height-fixed, 0) - var(--footer-height, 0) -
      var(--announcement-height-fixed, 0)
  );
}

.shopify-challenge__message {
  margin-bottom: 16px;
}

.shopify-payment-button__button {
  border-radius: 0;
  min-height: 48px;
  text-transform: uppercase;
}



#rc_link_container {
  display: none;
}

/* SHOPIFY OVERRIDES END */
