/*!************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/resolve-url-loader/index.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/common/styles/index.scss ***!
  \************************************************************************************************************************************************************************************************************/
.RoundButton {
  position: relative;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background: var(--button-text-color);
  color: var(--button-background);
  cursor: pointer;
  text-align: center;
  z-index: 50;
  box-shadow: 0 2px 10px rgba(54, 54, 54, 0.15);
  vertical-align: middle;
  line-height: 0;
  transform: scale(1.001); /* Avoid rounding error during animation in Chrome */
  transition: background 0.15s ease-in-out, opacity 0.15s ease-in-out, transform 0.2s ease-in-out, color 0.2s ease-in-out;
  overflow: hidden;
  background: #fff;
}

.RoundButton.is-active {
  background: var(--button-background);
  color: var(--button-text-color);
  outline: none;
}

.RoundButton svg {
  height: 15px;
  width: 15px;
  fill: #000;
}

.RoundButton--small {
  width: 35px;
  height: 35px;
}

.RoundButton--small svg {
  height: 14px;
  width: 14px;
}

.RoundButton--medium {
  width: 50px;
  height: 50px;
}

.RoundButton--medium svg {
  height: 18px;
  width: 18px;
}

.RoundButton--large {
  width: 55px;
  height: 55px;
}

.RoundButton--large svg {
  height: 15px;
  width: 15px;
}

.RoundButton--flat {
  box-shadow: 0 1px 5px rgba(54, 54, 54, 0.15);
  color: rgba(var(--button-background-rgb), 0.5);
}

/* We allow those buttons to have secondary state. The secondary state is displayed (for instance during loading time) when
   the class "RoundButton--withSecondaryState" is added */
.RoundButton__PrimaryState,
.RoundButton__SecondaryState {
  display: block;
  transition: transform 0.4s cubic-bezier(0.75, 0, 0.125, 1), opacity 0.4s cubic-bezier(0.75, 0, 0.125, 1);
}

.RoundButton__SecondaryState {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  text-align: center;
  opacity: 0;
  transform: translate(-50%, 100%);
}

.RoundButton--secondaryState .RoundButton__PrimaryState {
  opacity: 0;
  transform: translateY(-100%);
}

.RoundButton--secondaryState .RoundButton__SecondaryState {
  opacity: 1;
  transform: translate(-50%, -50%);
}

@media (-moz-touch-enabled: 0), (hover: hover) {
  .RoundButton:hover {
    transform: scale(1.1);
  }
  .RoundButton--small:hover {
    transform: scale(1.15);
  }
  .RoundButton:not([aria-expanded=true]):hover {
    color: var(--button-background);
  }
  .RoundButton[data-animate-left]:hover svg {
    -webkit-animation: buttonFromRightToLeft 0.5s ease-in-out forwards;
    animation: buttonFromRightToLeft 0.5s ease-in-out forwards;
  }
  .RoundButton[data-animate-right]:hover svg {
    -webkit-animation: buttonFromLeftToRight 0.5s ease-in-out forwards;
    animation: buttonFromLeftToRight 0.5s ease-in-out forwards;
  }
  .RoundButton[data-animate-bottom]:hover svg {
    -webkit-animation: buttonFromTopToBottom 0.5s ease-in-out forwards;
    animation: buttonFromTopToBottom 0.5s ease-in-out forwards;
  }
}
/* Animation states */
@-webkit-keyframes buttonFromLeftToRight {
  0% {
    transform: translateX(0%);
  }
  25% {
    opacity: 0;
    transform: translateX(100%);
  }
  50% {
    opacity: 0;
    transform: translateX(-100%);
  }
  75% {
    opacity: 1;
    transform: translateX(0%);
  }
}
@keyframes buttonFromLeftToRight {
  0% {
    transform: translateX(0%);
  }
  25% {
    opacity: 0;
    transform: translateX(100%);
  }
  50% {
    opacity: 0;
    transform: translateX(-100%);
  }
  75% {
    opacity: 1;
    transform: translateX(0%);
  }
}
@-webkit-keyframes buttonFromRightToLeft {
  0% {
    transform: translateX(0%);
  }
  25% {
    opacity: 0;
    transform: translateX(-100%);
  }
  50% {
    opacity: 0;
    transform: translateX(100%);
  }
  75% {
    opacity: 1;
    transform: translateX(0%);
  }
}
@keyframes buttonFromRightToLeft {
  0% {
    transform: translateX(0%);
  }
  25% {
    opacity: 0;
    transform: translateX(-100%);
  }
  50% {
    opacity: 0;
    transform: translateX(100%);
  }
  75% {
    opacity: 1;
    transform: translateX(0%);
  }
}
@-webkit-keyframes buttonFromTopToBottom {
  0% {
    transform: translateY(0%);
  }
  25% {
    opacity: 0;
    transform: translateY(100%);
  }
  50% {
    opacity: 0;
    transform: translateY(-100%);
  }
  75% {
    opacity: 1;
    transform: translateY(0%);
  }
}
@keyframes buttonFromTopToBottom {
  0% {
    transform: translateY(0%);
  }
  25% {
    opacity: 0;
    transform: translateY(100%);
  }
  50% {
    opacity: 0;
    transform: translateY(-100%);
  }
  75% {
    opacity: 1;
    transform: translateY(0%);
  }
}
button {
  border: none;
  background: transparent;
  font-size: inherit;
  cursor: pointer;
}
button:focus {
  outline: none;
}

.Button {
  font-size: 1.2rem;
  padding: 1rem 8rem;
  text-transform: uppercase;
  cursor: pointer;
  font-family: "GalanoGrotesqueRegular", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 2;
}

.Button[disabled] {
  cursor: not-allowed;
}

.Button-primary {
  color: var(--white) !important;
  background: var(--black);
  border: 1px solid var(--black);
}

.Button-primary:hover {
  background: var(--dark-silver);
  border-color: var(--dark-silver);
}

.Button.Button-primary-outline.Button-disabled,
.Button.Button-primary.Button-disabled {
  cursor: not-allowed;
  background: var(--silver);
  color: var(--white) !important;
  border-color: var(--silver);
}

.Button.Button-secondary.Button-disabled {
  cursor: not-allowed;
  background: var(--white);
  color: var(--silver) !important;
  border: 1px solid var(--silver);
}

.Button.Button-tertiary.Button-disabled {
  cursor: not-allowed;
  color: var(--silver) !important;
}

.Button-primary-outline {
  color: var(--black) !important;
  background: transparent;
  border: 1px solid var(--black);
}

.Button-primary-outline:hover {
  color: var(--white) !important;
  background: var(--black);
}

.Button-primary-outline:focus {
  border: 1px solid transparent;
  outline: 2px solid var(--blue);
}

.Button-primary-outline.Button-inverted {
  color: var(--white) !important;
  background: transparent;
  border: 1px solid var(--white);
}

.Button-primary-outline.Button-inverted:hover {
  background: var(--black);
  border-color: var(--black) !important;
}

.Button-primary-outline.Button-inverted:focus {
  border: none;
  outline: 2px solid var(--blue);
}

.Button-secondary {
  padding: 1rem 6rem;
  color: var(--black) !important;
  background: transparent;
  border: 1px solid var(--black);
}

.Button-secondary.Button-inverted {
  color: var(--white) !important;
  border: 1px solid var(--white);
}

.Button-secondary.Button-inverted:hover {
  border: 1px solid var(--black);
}

.Button-secondary:hover {
  color: var(--white) !important;
  background: var(--black);
}

.Button-secondary:focus {
  border: none;
  outline: 2px solid var(--blue);
}

.Button--full {
  width: 100%;
}

.Button--stretched {
  padding-left: 40px;
  padding-right: 40px;
}

.Button-tertiary {
  border: none;
  color: var(--black);
  font-size: 1.4rem;
  text-decoration: underline !important;
  text-underline-offset: 4px;
  padding: 0;
}

.Button-tertiary:hover {
  color: var(--dark-silver) !important;
}

.Button-tertiary.Button-inverted:hover {
  color: var(--silver) !important;
}

.Button-tertiary:focus {
  border: none;
  outline: 2px solid var(--blue);
}

.Button-tertiary.Button-inverted {
  color: #fff !important;
}

@media screen and (max-width: 1139px) {
  .Button {
    padding: 1rem 3rem;
  }
  .Button-secondary {
    padding: 0.4rem 4rem;
  }
  .Button-tertiary {
    padding: 0;
  }
}
.Button--small {
  font-size: calc(var(--base-text-font-size) - (var(--default-text-font-size) - 10px));
  padding: 12px 24px;
}

.Button__SeparatorDot {
  display: inline-block;
  margin: 0 18px;
  content: "";
  height: 3px;
  width: 3px;
  border-radius: 100%;
  background: currentColor;
}

/* We allow those buttons to have secondary state. The secondary state is displayed (for instance during loading time) when
 the class "Button--secondaryState" is added */
.Button__PrimaryState,
.Button__SecondaryState {
  display: block;
  transition: transform 0.4s cubic-bezier(0.75, 0, 0.125, 1), opacity 0.4s cubic-bezier(0.75, 0, 0.125, 1);
}

.Button__SecondaryState {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  text-align: center;
  opacity: 0;
  transform: translate(-50%, 100%);
}

.Button--secondaryState .Button__PrimaryState {
  opacity: 0;
  transform: translateY(-100%);
}

.Button--secondaryState .Button__SecondaryState {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.Button.Button__background {
  background: rgba(0, 0, 0, 0.2);
}

.Button--dark {
  color: #fff !important;
  border-color: #000;
  background: #000;
}

.Button--dark:hover {
  border-color: rgba(0, 0, 0, 0.75) !important;
  background: rgba(0, 0, 0, 0.75) !important;
}

.Button--primary::before {
  background-color: var(--button-background);
}

.Button--primary.Button--primary-inverted {
  color: #000 !important;
  border-color: #fff !important;
  background-color: #fff !important;
  transition: all 0.15s;
}

.Button--primary.Button--primary-inverted:hover {
  background-color: rgba(255, 255, 255, 0.85) !important;
  border-color: rgba(255, 255, 255, 0.85) !important;
}

.Button--outlined {
  border: 1px solid;
}

.Heading {
  font-family: var(--heading-font-big, "FelixTitlingRegular");
  font-weight: var(--heading-font-weight, 500);
  font-style: var(--heading-font-style, normal);
  color: var(--heading-color, #000);
  transition: color 0.2s ease-in-out;
}
.Heading--1 {
  font-size: 2.6rem;
}
.Heading--3 {
  font-size: 1.7rem;
}
.Heading--upc {
  text-transform: uppercase;
}

.search--empty {
  text-align: center;
}

.container {
  margin: 0 auto;
  padding: 0 2.5rem;
  width: 100%;
}

img:not([src]):not([srcset]) {
  visibility: hidden;
}

@media only screen and (min-width: 1400px) {
  [data-hide-xl=true] {
    display: none !important;
  }
}

@media only screen and (max-width: 1399px) {
  [data-hide-up-xl=true] {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  [data-hide-mid=true] {
    display: none !important;
  }
}

a:link {
  text-decoration: none;
}

.spinner {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -40%);
  transition: opacity 0.2s ease;
  z-index: 2;
}
@media only screen and (max-width: 1008px) {
  .spinner {
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
.spinner__circle {
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 3.5px solid rgba(0, 0, 0, 0.125);
  border-radius: 50%;
  border-top-color: rgba(78, 78, 78, 0.75);
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}
.searchbar {
  --gutter-horizontal: 5rem;
  --gutter-vertical: 3rem;
  --offset-height: 4rem;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 999999;
  background: #fff;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease-in;
  padding: 0 var(--padding-mobile, 2rem);
  height: 100vh;
  overflow-y: auto;
}
@media screen and (min-width: 990px) {
  .searchbar {
    padding: 0 var(--padding-desktop, 4rem);
    height: auto;
  }
}
.searchbar--hasContent {
  height: 85vh;
  transform: none !important;
}
@media screen and (min-width: 1485px) {
  .searchbar--hasContent {
    height: min(85vh, 63rem);
  }
}
@media screen and (min-width: 1790px) {
  .searchbar--hasContent {
    height: min(85vh, 70rem);
  }
}
@media screen and (min-width: 2150px) {
  .searchbar--hasContent {
    height: min(85vh, 75rem);
  }
}
@media screen and (max-width: 768px) {
  .searchbar {
    --gutter-horizontal: 2rem;
    --gutter-vertical: 1rem;
    --offset-height: 0;
  }
}
.searchbar__form {
  width: 100%;
  height: 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 990px) {
  .searchbar__form {
    width: 85%;
  }
}
.searchbar__form svg {
  width: 2rem;
  height: 2rem;
}
.searchbar__wrapper {
  flex-grow: 1;
  display: flex;
  gap: 4rem;
  align-items: center;
}
.searchbar__error {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 12px;
  background: var(--error);
  color: #fff;
  margin-bottom: 3px;
  padding: 0 3px;
  display: none;
}
.searchbar__error.active {
  display: block;
}
.searchbar__backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 999998;
  display: none;
}
.searchbar__input {
  width: 100%;
  height: auto;
  border: none;
  outline: none;
  border-radius: 0 !important;
  font-size: 16px;
  text-transform: uppercase;
  font-family: var(--body-text);
  font-weight: 500;
  border-bottom: 1px solid #000;
}
.searchbar__input:focus, .searchbar__input:focus-visible, .searchbar__input:focus-within {
  outline: none;
  box-shadow: none;
}
.searchbar__input::placeholder {
  text-transform: uppercase;
  color: #6e6e6e;
  font-family: inherit;
  font-weight: inherit;
}
.searchbar .search_btn {
  display: flex !important;
  align-items: center;
}
@media screen and (max-width: 770px) {
  .searchbar .search_btn {
    display: none !important;
  }
}
.searchbar__results-head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 1rem;
  margin-bottom: 3rem;
  font-family: "Roboto";
  text-transform: uppercase;
  font-size: 1.1rem;
  font-weight: 500;
  color: #6e6e6e;
}
.searchbar__loader {
  min-height: 15rem;
  height: 30vh;
  max-height: 30rem;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.searchbar__results-body {
  display: flex;
  justify-content: space-between;
  flex-direction: column-reverse;
  gap: 2rem;
}
@media screen and (min-width: 990px) {
  .searchbar__results-body {
    flex-direction: row;
  }
}
.searchbar__results-body .predictive--products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1rem 0.5rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
@media screen and (min-width: 990px) {
  .searchbar__results-body .predictive--products {
    max-height: 450px;
    overflow-y: auto;
  }
}
@media screen and (min-width: 1450px) {
  .searchbar__results-body .predictive--products {
    max-height: unset;
  }
}
@media only screen and (max-width: 1008px) {
  .searchbar__results-body .predictive--products {
    grid-template-columns: repeat(2, minmax(min-content, 1fr)) !important;
  }
}
@media screen and (max-width: 485px) {
  .searchbar__results-body .predictive--products {
    grid-template-columns: minmax(min-content, 1fr) !important;
  }
}
.searchbar__results-body .predictive--queries:empty {
  display: none;
}
@media screen and (min-width: 990px) {
  .searchbar__results-body .predictive-search--queries {
    max-height: 450px;
    overflow-y: auto;
  }
}
@media screen and (min-width: 1450px) {
  .searchbar__results-body .predictive-search--queries {
    max-height: unset;
  }
}
.searchbar__results-body .predictive-search--queries ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.searchbar__results-body .predictive-search--queries li:active, .searchbar__results-body .predictive-search--queries li:hover {
  color: var(--dark-silver);
}
.searchbar__results-body .predictive-search--queries li a {
  color: inherit;
}
.searchbar__results-body .searchbar.searchbar--active {
  border-top: 1px solid #000;
}
.searchbar__results-body .suggested-qury__item-heading mark {
  background: transparent;
  font-weight: 700;
  color: inherit;
}
.searchbar__searchbar__btn-view-all {
  color: #6e6e6e;
}
.searchbar__icon-search, .searchbar__btn-close {
  position: absolute;
  top: 0;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
}
.searchbar__icon-search {
  left: 0;
  line-height: normal;
}
.searchbar__btn-close {
  right: 0;
}
.searchbar--active {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}
@media screen and (max-width: 768px) {
  .searchbar--active {
    height: 100vh;
    padding-bottom: calc(var(--header-height) + var(--announcement-banner-height));
  }
}
.searchbar--active + .searchbar__backdrop {
  display: block;
}

body .searchbar.searchbar--active {
  border-top: 1px solid #000;
}

.searchbar__btn-view-all {
  display: inline-block;
}

.searchar__results-footer {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

.searchar__results-footer .no-results,
.searchar__results-footer.empty .searchbar__btn-view-all {
  display: none;
}

.searchar__results-footer .searchbar__btn-view-all,
.searchar__results-footer.empty .no-results {
  display: initial;
}

@media screen and (max-width: 750px) {
  .searchbar__results .product-item__footer {
    min-height: 6rem;
  }
}
@media screen and (max-width: 400px) {
  .searchbar__btn-view-all.Button {
    max-width: 100%;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: center;
    text-align: center;
  }
}
@media screen and (min-width: 1025px) {
  .searchbar .product-item__footer {
    min-height: 9rem;
  }
}
@media screen and (max-width: 980px) {
  .searchbar--hasContent {
    height: 100vh;
  }
  .searchar__results-footer {
    margin-bottom: 10rem;
  }
}
.search_btn {
  text-underline-offset: 3px;
}
.search_btn:hover {
  text-decoration: underline;
}
.search_btn:active {
  color: var(--dark-silver);
}

.search_btn--close {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 770px) {
  .search_btn--close {
    display: none;
  }
}

.search-empty {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  margin: 5rem 0;
}
.search-empty > * {
  margin: 0;
}

.placeholder-loader {
  max-width: 100%;
  width: 100%;
  height: 100%;
  background-color: #eee;
}
.placeholder-loader__content {
  animation-duration: 1.25s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: placeHolderShimmer;
  animation-timing-function: linear;
  background: darkgray;
  background-size: 800px 104px;
  height: 100%;
  position: relative;
}
.placeholder-loader--product {
  position: relative;
  padding-bottom: 135%;
}
.placeholder-loader--product .placeholder-loader__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

@keyframes placeHolderShimmer {
  0% {
    background-color: rgb(200, 200, 200);
  }
  100% {
    background-color: rgb(238, 238, 238);
  }
}
.Link {
  transition: color 0.2s ease-in-out, opacity 0.2s ease-in-out;
}

.Link--primary:hover,
.Link--primary.is-active {
  color: var(--text-color);
}

.Link--secondary:hover,
.Link--secondary.is-active {
  color: var(--text-color-light);
}

.Link--underline {
  position: relative;
  display: inline-block;
}

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

.Link--underline:not(.Link--underlineReverse):not(.active):hover {
  color: var(--dark-silver);
}

.Link--underlineShort::before {
  width: 100%;
}

.Link--underlineShort::before {
  width: calc(100% - 0.2em);
}

.Link--underlineReverse:not(.active):before {
  width: 0;
}

.Link--underlineReverse:not(.active):hover::before {
  width: 100%;
}

.Link--underlineNative {
  text-decoration: underline;
  text-underline-position: under;
}

.product-item {
  font-family: var(--heading-font-family);
  display: flex;
  flex-direction: column;
  margin-bottom: 1px;
  position: relative;
}
.product-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.product-item--group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2.65%;
  grid-column: 1/-1;
}
.product-item--group[data-layout=with_image] {
  gap: 0 2px;
}
.product-item--group-row {
  grid-row-start: var(--desktopRow);
}
@media screen and (max-width: 1008px) {
  .product-item--group-row {
    grid-row-start: var(--mobileRow);
  }
}
.product-item__backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9995;
  visibility: hidden;
}
.product-item__backdrop-upper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(var(--header-height) + var(--announcement-banner-height) + var(--plp-subnav-height) + var(--filters-bar-height));
  z-index: 9995;
  visibility: hidden;
}
.product-item__backdrop-upper.active {
  visibility: visible;
}
.product-item__toolbar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  z-index: 11;
}
.product-item__backdrop.active ~ .product-item__toolbar {
  z-index: 999;
}
.product-item__label {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  z-index: 3;
  color: #444;
}
.product-item__icon {
  width: 12px;
  height: 12px;
  margin-right: 7px;
}
.product-item__icon--pause {
  width: 14px;
  height: 14px;
  display: none;
}
.product-item.playing .product-item__icon--pause {
  display: inline-block !important;
}
.product-item.playing .product-item__icon--play {
  display: none;
}
.product-item__option {
  color: #323232;
  font-weight: 500;
  font-family: Roboto;
  letter-spacing: 0px;
  text-transform: uppercase;
  font-size: 0.75rem;
  padding: 6px 12px;
  transition: background-color 0.2s ease-in;
  display: flex;
  align-items: center;
  cursor: pointer;
}
@media screen and (min-width: 1009px) {
  .product-item__option {
    font-size: 1rem;
    padding: 12px;
    padding-left: 18px;
  }
}
.product-item__option__icon {
  display: inline-block;
  height: 1em;
  width: 1em;
  fill: currentColor;
  vertical-align: middle;
  stroke-width: 1px;
  background: 0 0;
  pointer-events: none;
  margin-left: 5px;
}
.product-item__option:disabled {
  opacity: 0.5;
}
.product-item--group .product-item--group {
  gap: 0 2px;
  grid-column: 2/-1;
}
@media screen and (min-width: 1009px) {
  .product-item[data-featured-position=right] .product-item--featured {
    grid-column: 2/-1;
    margin-bottom: 14.2rem;
  }
}
@media screen and (max-width: 1008px) {
  .product-item[data-featured-position-mobile=bottom] .product-item--featured {
    grid-row: 2/-1;
  }
}
@media screen and (min-width: 1009px) {
  .product-item[data-featured-position=right] .product-item--group {
    grid-column: 1/2;
    grid-row: 1/2 !important;
  }
}
@media screen and (max-width: 1008px) {
  .product-item[data-featured-position-mobile=bottom] .product-item--group {
    grid-row: 1 !important;
  }
}
.product-item--featured {
  overflow: hidden;
  position: relative;
  margin-bottom: 14.2rem;
}
.product-item__body {
  width: 100%;
  position: relative;
  overflow: hidden;
  flex-grow: 1;
}
.product-item__body .labels-wrapper {
  display: none;
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  z-index: 1;
}
@media screen and (min-width: 1140px) {
  .product-item__body .labels-wrapper {
    display: block;
  }
}
.product-item__body .wishlist-engine {
  visibility: hidden;
  top: 1rem !important;
  left: 1rem !important;
}
.product-item__body:hover .btn-add-to-cart-visible,
.product-item__body:hover .wishlist-engine {
  visibility: visible;
}
.product-item__body .product-item__link {
  background: var(--card-background, #e3e3e3);
  height: 100%;
  padding-bottom: 135%;
}
.product-item__tag {
  position: absolute;
  margin: 4px 0;
  padding: 2px 6px;
  font-size: 1.2rem;
  background: #fff;
  z-index: 10;
  top: 7.5px;
  right: 1rem;
  font-family: inherit;
  font-weight: 500;
}
.product-item__media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: cover;
  object-position: center;
  transition: all 0.2s ease;
}
.product-item__media:not(:nth-child(2n)) {
  animation: fadeIn 0.75s ease;
  animation-fill-mode: backwards;
}
.product-item__media--image:first-child:not(:only-child) + .product-item__media--image:nth-child(2) {
  opacity: 0;
  z-index: 2;
}
@media screen and (min-width: 1125px) {
  .product-item__media--image:first-child:not(:only-child) + .product-item__media--image:nth-child(2):hover {
    opacity: 1;
  }
}
.product-item__media--video {
  width: 108%;
  left: -5%;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
  pointer-events: none;
  user-select: auto;
  -webkit-user-select: auto;
  touch-action: manipulation;
}
.product-item.playing .product-item__body:not(.active) .product-item__media--video {
  opacity: 1 !important;
  z-index: 1;
}
.product-item__footer {
  margin-top: 0.5rem;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
  margin-bottom: 0;
  padding: 0 1rem;
  min-height: 12rem;
}
@media screen and (min-width: 1025px) {
  .product-item__footer {
    min-height: 12rem;
  }
}
.product-item__footer span.sold-out {
  display: none;
  color: var(--error);
  text-align: start;
}
.product-item__footer .labels-wrapper {
  margin-block: 0.5rem 1.5rem;
}
@media screen and (min-width: 1140px) {
  .product-item__footer .labels-wrapper {
    display: none;
  }
}
@media screen and (min-width: 1140px) {
  .product-item__footer .labels-wrapper:has(.product-color-link) {
    display: flex;
  }
}
.product-item__footer .product-item__link {
  display: inline-block;
  width: 100%;
}
.product-item__footer[data-available=false] span.sold-out {
  display: block;
}
.product-item__price-group {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.product-item__final-sale {
  color: red;
  font-size: 1.2rem;
  margin-left: 0.8rem;
}
.product-item__link {
  width: 100%;
  display: block !important;
  position: relative;
  text-align: center;
  overflow: hidden;
}
.product-item__dropdown {
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% + 1px);
  opacity: 0;
  visibility: hidden;
  z-index: 11;
  transition: all 0.15s ease;
  box-shadow: 0 -2px 10px rgba(54, 54, 54, 0.2);
  overflow: unset;
  flex-wrap: wrap;
  background: var(--white) !important;
}
.product-item__dropdown::-webkit-scrollbar {
  height: 5px;
  width: 15px;
}
.product-item__dropdown::-webkit-scrollbar-thumb {
  background: #777;
}
.product-item__dropdown::-webkit-scrollbar-button {
  display: none;
}
.product-item__dropdown__item {
  text-align: center;
  text-transform: uppercase;
  padding: 8px 9px;
  color: #323232;
  font-weight: 500;
  font-size: 0.85rem;
  font-family: var(--body-font);
  background: var(--white);
  flex: 1 1 0px;
  cursor: pointer;
  display: inline-block;
}
@media screen and (min-width: 1009px) {
  .product-item__dropdown__item {
    font-size: 1.25rem !important;
    padding: 12px;
  }
}
.product-item__dropdown__item.disabled {
  text-decoration: line-through;
  color: #9b9b9b;
  cursor: not-allowed;
}
.product-item__dropdown__item:hover {
  background: #f0f0f0;
}
.product-item__option.active + .product-item__dropdown {
  opacity: 1;
  visibility: visible;
}
.product-item__link:hover .product-item__image:last-child {
  opacity: 1;
}
.product-item__toolbar-wrapper {
  position: absolute;
  top: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  height: max-content;
  width: calc(100% + 1px - 4rem);
}
.product-item[data-available=false] .product-item__toolbar-wrapper {
  display: none;
}
.product-item__cart-btn {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  color: transparent;
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
  transition: color 0.3s ease;
  align-items: flex-end;
  font-size: 1.2rem;
  max-width: 90%;
  padding: 1rem;
  margin: -1rem;
}
.product-item__cart-btn svg {
  width: 1.4rem;
  height: 1.4rem;
  margin-bottom: 1rem;
  fill: #000;
}
@media screen and (min-width: 1140px) {
  .product-item__cart-btn svg {
    opacity: 0;
  }
}
@media screen and (min-width: 1140px) {
  .product-item__cart-btn[data-acsb-focused=true] svg {
    opacity: 1;
  }
}
.product-item__cart-btn .expanded {
  width: max-content;
  max-width: 100%;
}
.product-item__cart-btn .expanded + .short {
  display: none;
}
.product-item__cart-btn .short {
  transform: translateX(0.5rem);
}
.product-item__cart-btn.active {
  color: #323232;
}
.product-item--layout_2 .product-item__label {
  top: 1.5rem;
  left: 3rem;
  right: initial;
  padding: 0;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .product-item--layout_2 .product-item__label {
    top: 1rem;
    left: 1rem;
    font-size: 1.2rem;
  }
}
.product-item__btn-toolbar-toggle {
  position: absolute;
  right: 0;
  bottom: 0.85rem;
  z-index: 11;
  display: flex;
  margin-right: -0.95rem;
  opacity: 0;
  visibility: hidden;
}
.product-item__btn-toolbar-toggle svg {
  width: auto;
  height: 0.85rem;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  .product-item__btn-toolbar-toggle {
    display: none;
  }
}
.product-item__list {
  display: none;
  background-color: var(--white) !important;
}
.product-item__list.active {
  display: block;
  visibility: visible;
  opacity: 1;
}
.product-item__dropdown-wrapper {
  width: 100%;
  bottom: 0;
  top: auto;
  right: 0;
}
.product-item__toolbar-wrapper .product-item__toolbar {
  z-index: 9;
}
.product-item__body.active .product-item__label {
  display: none;
}
.product-item__body.active .product-item__toolbar, .product-item__body.active .product-item__btn-toolbar-toggle {
  opacity: 1;
  visibility: visible;
}
.product-item__body.active .product-item__media {
  height: 90%;
  top: calc(var(--options-size) * 6%);
}
@media screen and (max-width: 1200px) {
  .product-item__body.active .product-item__media {
    top: calc(var(--options-size) * 8%);
  }
}
@media screen and (max-width: 1008px) {
  .product-item__body.active .product-item__media {
    top: calc(var(--options-size) * 6%);
  }
}
@media screen and (max-width: 600px) {
  .product-item__body.active .product-item__media {
    top: calc(var(--options-size) * 8%);
  }
}
@media screen and (max-width: 500px) {
  .product-item__body.active .product-item__media {
    top: calc(var(--options-size) * 11%);
  }
}
@media screen and (max-width: 400px) {
  .product-item__body.active .product-item__media {
    top: calc(var(--options-size) * 15%);
  }
}
.product-item__body.active .product-item__toolbar-wrapper {
  z-index: 9996;
}
.product-item__body.active .product-item__btn-toolbar-toggle svg {
  transform: rotate(180deg);
}
.product-item--layout_2 .wishlist-engine {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 9;
  margin-top: -3px;
  margin-left: -5px;
}
@media screen and (min-width: 1140px) {
  .product-item--layout_2 .wishlist-engine {
    opacity: 0;
  }
}
@media screen and (max-width: 485px) {
  .product-item--layout_2 .wishlist-engine {
    top: 0.5rem;
    left: 0.5rem;
  }
}
.product-item--layout_2 .wishlist-engine .wishlist-engine-button {
  background: transparent !important;
  padding: 8px !important;
}
.product-item--layout_2:hover .product-item__body:not(.active) .product-item__cart-btn > *, .product-item--layout_2:hover ~ .product-item__cart-btn > *, .product-item--layout_2 ~ .product-item__cart-btn:hover > *, .product-item--layout_2:hover .product-item__body:not(.active) ~ .wishlist-engine {
  opacity: 1 !important;
}
.product-item--layout_2:hover .product-item__body .labels-new-wrapper, .product-item__body.active .labels-new-wrapper {
  opacity: 0;
}
.product-item__body.active .product-item__cart-btn > svg {
  opacity: 1 !important;
}
.product-item__body.active .product-item__backdrop {
  visibility: visible;
}
.product-item__body.active ~ .wishlist-engine {
  display: none;
}
.product-item__animate-btn {
  animation: scaleUp 1s ease-in;
}
.product-item--layout_2 .product-title, .product-item--layout_2 .product-color-link {
  text-align: left;
  font-weight: inherit;
  font-size: inherit;
  color: #000;
}
.product-item--layout_2 .product-color-link {
  color: #757575;
}
.product-item--layout_2 .product-item__footer {
  margin-top: 2rem;
  font-size: 1.4rem;
  font-weight: 400;
}
.product-item--layout_2 .product-item__price-group {
  align-items: flex-start;
}
@media screen and (max-width: 485px) {
  .product-item--layout_2 .product-item__toolbar-wrapper {
    /* width: calc(100% - 2rem);
    right: 1rem; */
    /* top: 1rem; */
  }
}
@media screen and (max-width: 1008px) {
  .product-item__label {
    cursor: pointer;
  }
  .product-item--featured {
    grid-column: 1/-1 !important;
    grid-row: 1/2;
    margin-bottom: 1px;
  }
  .product-item--group {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 3.5px;
  }
  .product-item--group .product-item--group {
    grid-column: 1/-1;
    grid-template-columns: 1fr 1fr;
    grid-row: 2/3 !important;
  }
}
@media screen and (max-width: 769px) {
  .product-item[data-layout=with_image] .product-item--featured {
    margin-bottom: 3rem;
    margin-top: 0;
  }
}
.product-item__wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.product-item .wishlist-engine {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 9;
}
@media screen and (max-width: 485px) {
  .product-item .wishlist-engine {
    top: 0.5rem;
    left: 0.5rem;
  }
  .product-item .wishlist-engine .wishlist-engine-button svg {
    width: 1rem;
    height: 1rem;
  }
}
.product-item .wishlist-engine .wishlist-engine-button {
  background-color: transparent !important;
}

@media screen and (max-width: 1024px) {
  .collections--bottom .product-item--featured {
    grid-row: initial !important;
  }
  .collections--bottom .product-item--group {
    grid-row: 1/3 !important;
  }
}
.btn-add-to-cart {
  display: inline-block;
  width: max-content;
  padding: 6px 8px;
  font-size: 0.75rem;
  text-transform: uppercase;
  text-align: center;
  font-family: "Roboto";
  visibility: hidden;
  position: absolute;
  right: 5px;
  z-index: 98;
  letter-spacing: 0;
  bottom: 0;
}
@media screen and (min-width: 1009px) {
  .btn-add-to-cart {
    font-size: 1rem;
    padding: 12px;
  }
}
.btn-add-to-cart::before {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 7px;
  right: 7px;
  height: 1px;
  border-bottom: 1px solid #000;
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition: transform 0.3s;
}
.btn-add-to-cart:hover::before {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
}
.btn-add-to-cart.active {
  visibility: visible;
}

.collections .product-item__toolbar {
  bottom: 0;
}

.product-color-link,
.product-price,
.labels-new-wrapper .label--new {
  font-size: 1.25rem;
  font-weight: 400;
  font-family: inherit;
  font-style: var(--heading-font-style);
  transition: color 0.2s ease-in-out;
  color: var(--black);
}

.product-color-link {
  color: var(--dark-silver);
}

.labels-wrapper .label--text {
  display: block;
  color: var(--new-label-color_secondary);
  background-color: var(--new-label-background_secondary);
  text-transform: uppercase !important;
  line-height: normal !important;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
}
@media screen and (min-width: 1140px) {
  .labels-wrapper .label--text {
    color: var(--new-label-color_primary);
    background-color: var(--new-label-background_primary);
    font-size: 1.2rem;
  }
}

.labels-wrapper--primary .label--text--primary {
  color: var(--new-label-color_primary);
  background-color: var(--new-label-background_primary);
}

.labels-wrapper--secondary .label--text--secondary {
  color: #726A27;
  background-color: transparent;
  border: none;
  letter-spacing: 2px;
  font-family: "GalanoGrotesqueMedium", sans-serif;
  white-space: nowrap;
}

.product-item--label-secondary {
  position: relative;
}
.product-item--label-secondary::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100px;
  z-index: 2;
  background: linear-gradient(360deg, rgba(245, 242, 234, 0) 0%, rgba(0, 0, 0, 0.1) 100%);
}
.product-item--label-secondary .labels-wrapper .label--text {
  color: #726A27;
  background-color: transparent;
  border: none;
  letter-spacing: 2px;
  font-family: "GalanoGrotesqueMedium", sans-serif;
  white-space: nowrap;
}
@media screen and (max-width: 1139px) {
  .product-item--label-secondary .labels-wrapper--secondary {
    display: block !important;
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 3;
  }
  .product-item--label-secondary .labels-wrapper--secondary .label--text--secondary {
    font-size: 6px;
    letter-spacing: 1px;
  }
  .product-item--label-secondary .labels-wrapper--secondary.labels-wrapper--align-center {
    left: 50%;
    right: auto;
    top: 0.4rem;
    transform: translateX(-50%);
  }
}

.product-item__body--label-secondary .labels-wrapper .label--text {
  color: #726A27;
  background-color: transparent;
  border: none;
  letter-spacing: 2px;
  font-family: "GalanoGrotesqueMedium", sans-serif;
  white-space: nowrap;
}
@media screen and (max-width: 1139px) {
  .product-item__body--label-secondary .labels-wrapper--secondary {
    display: block !important;
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 3;
  }
  .product-item__body--label-secondary .labels-wrapper--secondary .label--text--secondary {
    font-size: 6px;
    letter-spacing: 1.5px !important;
  }
  .product-item__body--label-secondary .labels-wrapper--secondary.labels-wrapper--align-center {
    left: 50%;
    right: auto;
    top: 0.6rem;
    transform: translateX(-50%);
  }
}

.product-item--label-secondary .labels-wrapper--primary .label--text--primary {
  color: var(--new-label-color_primary);
  background-color: var(--new-label-background_primary);
}
.product-item--label-secondary .labels-wrapper--secondary .label--text--secondary {
  color: #726A27;
  background-color: transparent;
  border: none;
  letter-spacing: 2px;
  font-family: "GalanoGrotesqueMedium", sans-serif;
  white-space: nowrap;
}

.product-item__body--label-secondary .labels-wrapper--primary .label--text--primary {
  color: var(--new-label-color_primary);
  background-color: var(--new-label-background_primary);
}
.product-item__body--label-secondary .labels-wrapper--secondary .label--text--secondary {
  color: #726A27;
  background-color: transparent !important;
  border: none !important;
  letter-spacing: 2px;
  font-family: "GalanoGrotesqueMedium", sans-serif;
  white-space: nowrap;
  top: 1rem;
}

.labels-wrapper--align-left {
  left: 2rem;
  right: auto;
}

.labels-wrapper--align-center {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}
.labels-wrapper--align-center.labels-wrapper {
  right: 0;
}

.labels-wrapper--align-right {
  left: auto;
  right: 2rem;
}

.product-price {
  text-transform: uppercase;
}

.product-price--real {
  margin-right: 10px;
  position: relative;
  color: var(--dark-silver);
}

.product-price--real::before {
  position: absolute;
  content: "";
  top: 50%;
  left: -0.4em;
  width: calc(100% + 0.8em);
  height: 1px;
  background: #757575;
  z-index: 10;
}

.product-title {
  text-align: left;
  display: inline-block;
  font-weight: 500;
  font-family: inherit;
  line-height: 1.5em;
  font-size: 1.25rem;
  padding: 0;
  color: #424242;
  width: 100%;
}

.product-price,
.product-title {
  font-family: var(--body-font);
}

@keyframes scaleUp {
  0% {
    transform: scale(1.35);
  }
  100% {
    transform: scale(1);
  }
}
.product-item__body.active .short {
  color: var(--black);
}

.shopify-section-header-sticky ~ main .product-item__backdrop-upper {
  height: calc(var(--header-height) + var(--plp-subnav-height) + var(--filters-bar-height) - 4px);
}

.shopify-section-header-hidden ~ main .product-item__backdrop-upper {
  height: calc(var(--plp-subnav-height) + var(--filters-bar-height));
}

.banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 9;
  display: flex;
  flex-direction: column;
  width: 80%;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
}
.banner-content a {
  margin-top: 1rem;
}
.banner-content > * {
  margin: 0;
  color: inherit !important;
  text-align: center;
}

.banner__footer {
  min-height: 12.2rem;
  margin-top: 2rem;
  padding: 0 1rem;
}
@media screen and (max-width: 1008px) {
  .banner__footer {
    min-height: initial;
    margin: 2rem 0;
  }
}

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

@media screen and (max-width: 1008px) {
  .wrapper-main {
    padding-bottom: 150%;
  }
}

.product-item--featured {
  margin-bottom: 0 !important;
}

.banner-center .banner__footer .text,
.banner-bottom .banner__footer .text {
  display: none;
}

.banner-below .banner-content {
  display: none;
}

.banner__footer {
  padding-bottom: var(--padding-bottom);
}
.banner__footer a:hover {
  color: var(--dark-silver) !important;
}
.banner__footer a:active {
  color: var(--silver);
}
.banner__footer .text {
  display: block;
}

.banner-bottom .banner-content {
  top: calc(100% - 4rem);
  transform: translate(-50%, -100%);
}

.product-item__option-wrapper:nth-child(1) .product-item__dropdown {
  max-width: 100%;
}

.fp-container:not(:has(*:not(:empty))):not(:has(text)) {
  display: none;
}

.product-item__option:focus-visible,
.product-item .btn-add-to-cart:focus-visible {
  outline: var(--focus-ring-width) solid var(--focus-ring-color);
  outline-offset: 2px;
}
.product-item__dropdown__item:focus {
  outline: var(--focus-ring-width) solid var(--focus-ring-color);
  outline-offset: -2px;
  background: #ececec;
}
/*!********************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/resolve-url-loader/index.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/lib/Collapsable.scss ***!
  \********************************************************************************************************************************************************************************************************/
.collapsable {
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .collapsable .collapsable {
    overflow: auto;
  }
}

.collapsable-init {
  visibility: visible !important;
}

.accordion-c {
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.accordion-c__btn {
  font-family: var(--heading-font-small);
  font-weight: 500;
  font-size: 1.1rem;
  padding: 0;
  margin: 0;
  line-height: inherit;
  outline: none;
  border: none;
  background: transparent;
  display: flex;
  justify-content: space-between;
  width: 100%;
  text-transform: uppercase;
  padding: 1.5rem 0;
  cursor: pointer;
  color: #1c1c1c;
  align-items: center;
}
.accordion-c__btn:focus {
  outline: none;
}
.accordion-c--open .animation-container {
  grid-template-rows: 1fr;
  visibility: visible;
  min-height: auto;
}
.accordion-c__plus {
  position: relative;
  width: 2rem;
  height: 2rem;
  display: inline-block;
}
.accordion-c__plus::after, .accordion-c__plus::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1.25rem;
  position: absolute;
  top: 50%;
  left: 50%;
  background: #424242;
  transform: translate(-50%, -50%);
  transition: transform 0.6s ease;
}
.accordion-c__plus::after {
  transition: all 0.75s ease;
  transform: translate(-50%, -50%) rotate(90deg);
}
.accordion-c__content {
  font-size: 1.25rem;
  min-height: 0;
}
.accordion-c__content p {
  margin: 0;
  font-size: 1.2rem;
  color: #000;
  line-height: 1.65;
  margin-bottom: 0.65rem;
}
.accordion-c__content--dashed {
  display: flex;
  flex-direction: column;
}
.accordion-c__content--dashed p {
  display: flex;
  align-items: center;
  text-transform: capitalize;
}
.accordion-c__content--dashed p:not(:last-child) {
  margin-bottom: 0.65rem;
}
.accordion-c__content--dashed p::before {
  content: "-";
  position: relative;
  color: #000;
  font-size: inherit;
  margin-right: 0.5rem;
}
.accordion-c__content-inner {
  padding-bottom: 2rem;
}
.accordion-c--open .accordion-c__plus::before {
  transform: translate(-50%, -50%) rotate(270deg);
}
.accordion-c--open .accordion-c__plus::after {
  transform: translate(-50%, -50%) rotate(270deg);
  opacity: 0;
}
.accordion-c--open ~ .animation-container {
  grid-template-rows: 1fr;
  visibility: visible;
  min-height: auto;
}

.animation-container {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
  visibility: hidden;
  min-height: 0;
}
.animation-container.active {
  grid-template-rows: 1fr;
  visibility: visible;
  min-height: auto;
}
.animation-container > * {
  overflow: hidden;
}
/*!******************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/resolve-url-loader/index.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/common/styles/_quick-view.scss ***!
  \******************************************************************************************************************************************************************************************************************/
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.overflow-hidden--quick-view {
  overflow: hidden;
}

.quick-view-container {
  visibility: hidden;
  opacity: 0;
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10005;
  overflow-y: auto;
}
.quick-view-container.show {
  visibility: visible;
  opacity: 1;
}
.quick-view-container.show .quick-view-content {
  animation: fadeIn 0.3s;
}
.quick-view-container.closing .quick-view-content {
  animation: fadeOut 0.3s;
}
.quick-view-container .quick-view-close {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 10006;
  cursor: pointer;
  width: 3rem;
  height: 3rem;
  color: var(--black);
  display: block;
}
.quick-view-container .quick-view-close svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  fill: currentColor;
  overflow: visible;
}
.quick-view-container .quick-view-content {
  width: 100%;
  height: 100%;
  max-width: 120rem;
  margin-left: auto;
  background: var(--white);
}
.quick-view-container .quick-view-content #shopify-section-pdp {
  background: var(--white);
}
.quick-view-container .quick-view-content #shopify-section-pdp .pdp {
  padding: 0;
}
.quick-view-container .quick-view-content #shopify-section-pdp .pdp .pdp-grid,
.quick-view-container .quick-view-content #shopify-section-pdp .pdp .pdp-info {
  width: 100% !important;
  max-width: 50% !important;
  min-width: unset !important;
}
@media screen and (max-width: 768px) {
  .quick-view-container .quick-view-content #shopify-section-pdp .pdp .pdp-grid,
  .quick-view-container .quick-view-content #shopify-section-pdp .pdp .pdp-info {
    max-width: 100% !important;
  }
}
.quick-view-container .quick-view-content #shopify-section-pdp .pdp .pdp-info {
  padding: 0;
}
.quick-view-container .quick-view-content #shopify-section-pdp .pdp .pdp-info .pdp-info--container {
  padding: 0 6rem;
  top: 100px;
  height: 85vh;
  overflow-y: scroll;
}
@media screen and (max-width: 768px) {
  .quick-view-container .quick-view-content #shopify-section-pdp .pdp .pdp-info .pdp-info--container {
    height: unset;
    padding: 1.6rem 2rem 0;
  }
}
.quick-view-container .quick-view-content #shopify-section-pdp .pdp .pdp-info .klarna-pay--wrapper {
  display: none;
  height: 0;
}
.quick-view-container .quick-view-content #shopify-section-pdp .pdp .pdp-info .pdp__view--details {
  display: block !important;
  font-size: 1.5rem;
  text-underline-offset: 2px;
  text-decoration: underline;
  margin: 5px 0;
}
.quick-view-container .quick-view-content #shopify-section-pdp .pdp .pdp__content--breadcrumbs,
.quick-view-container .quick-view-content #shopify-section-pdp .pdp .page-width {
  display: none;
}
.quick-view-container .quick-view-content #shopify-section-pdp .pdp .pdp-grid .pdp-grid--slider {
  grid-template-columns: 1fr;
}
.quick-view-container .quick-view-content #shopify-section-pdp .pdp .pdp-grid .pdp-grid--slider .slider-item:first-child {
  grid-column: unset;
  padding-bottom: 125%;
}
/*!******************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/resolve-url-loader/index.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/common/styles/_shop-modal.scss ***!
  \******************************************************************************************************************************************************************************************************************/
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.overflow-hidden--shop-modal {
  overflow: hidden;
}

.shop-modal-container {
  visibility: hidden;
  opacity: 0;
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  overflow-y: auto;
}
.shop-modal-container.show {
  visibility: visible;
  opacity: 1;
  transition: 0.3s ease;
}
.shop-modal-container.show .shop-modal-content {
  animation: fadeIn 0.3s;
}
.shop-modal-container.closing {
  transition: 0.3s ease;
}
.shop-modal-container.closing .shop-modal-content {
  animation: fadeOut 0.3s;
}
.shop-modal-container .swiper-control {
  display: block;
}
@media only screen and (max-width: 1008px) {
  .shop-modal-container .swiper-control {
    display: none;
  }
}
.shop-modal-container .shop-modal-close {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 10001;
  cursor: pointer;
  width: 3rem;
  height: 3rem;
  color: var(--black);
  display: block;
}
.shop-modal-container .shop-modal-close svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  fill: currentColor;
  overflow: visible;
}
@media only screen and (max-width: 1008px) {
  .shop-modal-container .shop-modal-close svg {
    color: var(--white);
  }
}
.shop-modal-container .shop-modal-content {
  width: 100%;
  height: 100%;
  max-width: 120rem;
  margin-left: auto;
  background: var(--white);
  display: flex;
}
@media only screen and (max-width: 1008px) {
  .shop-modal-container .shop-modal-content {
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
  }
}
.shop-modal-container .shop-modal-content .shopable-images {
  width: 42.5%;
  height: 100%;
  position: relative;
}
@media only screen and (max-width: 1008px) {
  .shop-modal-container .shop-modal-content .shopable-images {
    width: 100%;
  }
}
.shop-modal-container .shop-modal-content .shopable-images .swiper-control {
  display: none;
}
@media only screen and (max-width: 1008px) {
  .shop-modal-container .shop-modal-content .shopable-images .swiper-control {
    display: block;
  }
}
.shop-modal-container .shop-modal-content .shopable-images .swiper-wrapper {
  flex-direction: column !important;
  overflow: scroll;
}
@media only screen and (max-width: 1008px) {
  .shop-modal-container .shop-modal-content .shopable-images .swiper-wrapper {
    flex-direction: row !important;
    overflow: unset;
  }
}
.shop-modal-container .shop-modal-content .shopable-images .swiper-wrapper .shop-modal-image img {
  height: 100%;
  width: 100%;
  display: block;
  object-fit: cover;
}
@media only screen and (max-width: 1008px) {
  .shop-modal-container .shop-modal-content .shopable-images .swiper-wrapper .shop-modal-image img {
    height: auto;
  }
}
.shop-modal-container .shop-modal-content .shop-modal-products {
  width: 40%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  column-gap: 14px;
  row-gap: 18px;
  padding: 60px 0;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  justify-content: center;
}
@media only screen and (max-width: 1008px) {
  .shop-modal-container .shop-modal-content .shop-modal-products {
    width: 100%;
    overflow: unset;
    column-gap: 5px;
    row-gap: 30px;
    padding: 40px 20px;
    justify-content: center;
  }
}
.shop-modal-container .shop-modal-content .shop-modal-products .shop-modal-product {
  max-width: 200px;
  width: 100%;
  overflow-x: hidden;
}
.shop-modal-container .shop-modal-content .shop-modal-products .shop-modal-product *:not(.swiper-control) {
  color: var(--black);
  margin: 0;
}
@media only screen and (max-width: 1008px) {
  .shop-modal-container .shop-modal-content .shop-modal-products .shop-modal-product {
    max-width: 49%;
  }
}
.shop-modal-container .shop-modal-content .shop-modal-products .shop-modal-product .shopable-product-images {
  position: relative;
  cursor: pointer;
}
.shop-modal-container .shop-modal-content .shop-modal-products .shop-modal-product .shop-modal__product-details {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  padding: 12px 2px;
}
@media only screen and (max-width: 1008px) {
  .shop-modal-container .shop-modal-content .shop-modal-products .shop-modal-product .shop-modal__product-details {
    padding: 10px 2px;
  }
}
.shop-modal-container .shop-modal-content .shop-modal-products .shop-modal-product .shop-modal__product-details .shop-modal__product-title {
  font-weight: 400;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 19px;
}
@media only screen and (max-width: 1008px) {
  .shop-modal-container .shop-modal-content .shop-modal-products .shop-modal-product .shop-modal__product-details .shop-modal__product-title {
    font-size: 10px;
  }
}
.shop-modal-container .shop-modal-content .shop-modal-products .shop-modal-product .shop-modal__product-details .wishlist-engine {
  min-width: unset !important;
}
@media only screen and (max-width: 1008px) {
  .shop-modal-container .shop-modal-content .shop-modal-products .shop-modal-product .shop-modal__product-details .wishlist-engine svg {
    height: 11px !important;
    width: 13px !important;
  }
}
.shop-modal-container .shop-modal-content .shop-modal-products .shop-modal-product .shop-modal__product-price {
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  text-transform: uppercase;
}
@media only screen and (max-width: 1008px) {
  .shop-modal-container .shop-modal-content .shop-modal-products .shop-modal-product .shop-modal__product-price {
    font-size: 10px;
  }
}

/*# sourceMappingURL=common.min.css.map*/