#notification-test {
  box-sizing: border-box;
  position: fixed;
  inset: auto 30px 100px auto;
  z-index: 9999;
  background: #f01e2c;
  border-color: #f01e2c;
}
#notification-test:hover {
  background: #d1001f;
  border-color: #d1001f;
}
@media only screen and (max-width: 767.98px) {
  #notification-test {
    font-size: 30px;
    text-align: center;
    width: calc(100vw - 3rem);
    inset: auto 1.5rem 200px auto;
  }
}

#toasty-zone {
  z-index: 99999;
  position: fixed;
  overflow: hidden;
  isolation: isolate;
  inset: 140px 0 auto auto;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  flex-direction: column;
  gap: 10px 0;
  height: 100vh;
  pointer-events: none;
  padding: 10px;
}
#toasty-zone, #toasty-zone * {
  box-sizing: border-box;
}

.toasty {
  z-index: -1;
  position: fixed;
  inset: 0 20px auto auto;
  pointer-events: all;
  width: clamp(280px, 100%, 360px);
  padding: 7px 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  color: white;
  border-radius: 8px;
  background: rgba(25, 25, 25, 0.5);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  filter: drop-shadow(2px 3px 4px rgba(30, 30, 30, 0.15));
  will-change: transform;
  scale: 1;
  transform-origin: top right;
  transition: translate 0.3s cubic-bezier(0.73, 0.04, 0.95, 0.74), background 0.15s ease-in-out, scale 0.15s ease-in-out, top 0.2s ease-in-out 0.2s;
  /*
  // Animations
  animation: 
  toasty-in .3s ease-in forwards, 
  toasty-out .3s ease-in var( --animation-delay ) forwards;
  */
}
@media only screen and (max-width: 767.98px) {
  .toasty {
    width: calc(100vw - 3rem);
    inset: 0 1.5rem auto auto;
  }
}
.toasty.bg {
  background: var(--background);
}
.toasty.bg:hover,
.toasty.bg .toasty-close {
  background: var(--background);
}
.toasty.img {
  justify-content: center;
  min-height: 74px;
  padding-left: 80px;
}
.toasty-title, .toasty-body {
  width: 100%;
  text-align: left;
  color: inherit;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  translate: 0 0 0;
  -webkit-font-smoothing: antialiased;
  transition: translate 0.25s ease-in-out 0.05s;
}
.toasty-title {
  font-size: 16px;
  font-weight: bold;
}
.toasty-body {
  font-size: 13px;
  line-height: 1.4;
}
.toasty-close {
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 2;
  position: absolute;
  inset: 0 auto auto 0;
  translate: -50% -30% 0;
  padding: 5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.3));
  opacity: 0;
  transition: opacity 0.15s ease-in;
  color: inherit;
  background: rgba(70, 70, 70, 0.8);
}
.toasty-close svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  color: inherit;
  pointer-events: none;
}
.toasty-image {
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  border-radius: 3px;
  position: absolute;
  inset: 50% auto auto 10px;
  translate: 0 -50%;
  transition: translate 0.25s ease-in-out 0.05s;
}
.toasty:hover {
  scale: 1.028;
  background: rgba(25, 25, 25, 0.65);
}
.toasty:hover .toasty-title,
.toasty:hover .toasty-body {
  translate: 5px 0 0;
}
.toasty:hover .toasty-image {
  translate: 5px -50% 0;
}
.toasty:hover .toasty-close {
  opacity: 1;
  cursor: pointer;
  pointer-events: all;
}
.toasty.dragging {
  z-index: 1;
  scale: 1.048;
  cursor: grabbing;
}
@media only screen and (max-width: 767.98px) {
  .toasty:hover, .toasty.dragging {
    scale: 1;
  }
}

/*
@keyframes toasty-in {
    0% {
        translate: calc(150% + var(--drag-offset)) 0;
    }
    100% {
        translate: calc(0% + var(--drag-offset)) 0;
    }
}

@keyframes toasty-out {
    0% {
        translate: calc(0% + var(--drag-offset)) 0;
    }
    100% {
        translate: calc(150% + var(--drag-offset)) 0;
    }
}
*/
nav.breadcrumbs {
  padding: 4px 0;
}
nav.breadcrumbs ul {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  flex-flow: row wrap;
  padding: 0;
  margin: 0;
}
nav.breadcrumbs ul li {
  display: inline-block;
  position: relative;
  padding: 0;
}
nav.breadcrumbs ul li:first-of-type {
  padding-left: 0;
}
nav.breadcrumbs ul li a {
  font-size: 14px;
  line-height: 21px;
  text-transform: capitalize;
}
nav.breadcrumbs ul li + li:before {
  content: "/";
  font-size: 14px;
  margin: 0 1px 0 4px;
}

/* Customize the label (the container) */
.custom-checkbox {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  width: 100%;
  min-height: 36px;
  /* Styles Label */
  /* Hide the browser's default checkbox */
  /* Create a custom checkbox */
  /* On mouse-over, add a grey background color */
  /* When the checkbox is checked, add a blue background */
  /* Show the checkmark when checked */
}
.custom-checkbox * {
  font-size: 13px;
}
.custom-checkbox p {
  font-size: 13px;
  width: 100%;
  margin: 0px 0px 0px 10px;
}
.custom-checkbox a {
  text-decoration: underline;
}
.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 1px;
  width: 1px;
}
.custom-checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 36px;
  width: 36px;
  background-color: #fff;
  border-radius: 50%;
  /* Create the checkmark/indicator (hidden when not checked) */
}
.custom-checkbox .checkmark svg {
  position: absolute;
  display: none;
  /* Style the checkmark/indicator */
  left: 50%;
  top: 50%;
  width: 14px;
  height: 14px;
  color: black;
  translate: -50% -50%;
  pointer-events: none;
}
.custom-checkbox:hover input ~ .checkmark {
  background-color: var(--secondary-color);
}
.custom-checkbox input:checked ~ .checkmark {
  background-color: var(--secondary-color);
}
.custom-checkbox input:checked ~ .checkmark svg {
  display: block;
}

.search-bar-qf {
  position: relative;
  width: clamp(125px, 100%, 145px);
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 21px;
}
.search-bar-qf input[type=text] {
  color: var(--text-primary-color);
  font-weight: regular;
  height: 36px;
  position: relative;
  background: #F0F0F0;
  border-radius: 21px;
  border: none;
  outline: none;
  padding: 10px 40px 10px 20px;
  width: 100%;
}
.search-bar-qf input[type=text]::-moz-placeholder {
  font-weight: regular;
}
.search-bar-qf input[type=text]::placeholder {
  font-weight: regular;
}
.search-bar-qf .submit-group {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 36px;
}
.search-bar-qf .submit-group label {
  width: 40px;
  height: 36px;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 5px;
}
.search-bar-qf .submit-group label svg {
  color: var(--text-primary-color);
  width: 21px;
  height: 21px;
}
.search-bar-qf .submit-group label input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 0;
  background: none;
  border: none;
  padding: 0;
  display: none;
}

.custom-search-qf-section .wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 20px;
  max-width: 750px;
}
.custom-search-qf-section .wrapper p {
  min-width: -moz-max-content;
  min-width: max-content;
  font-weight: bolder;
}
.custom-search-qf-section .wrapper .search-bar-qf input {
  color: rgba(0, 0, 0, 0.65);
  padding-right: 50px;
}
.custom-search-qf-section .wrapper .search-bar-qf input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.65);
  font-weight: 500;
}
.custom-search-qf-section .wrapper .search-bar-qf input::placeholder {
  color: rgba(0, 0, 0, 0.65);
  font-weight: 500;
}

.button-wishlist {
  padding: unset;
  background-color: unset;
  border: none;
}
.button-wishlist:hover {
  background-color: unset;
}
.button-wishlist path {
  fill: #000000;
}

.active-wishlist path {
  fill: var(--button-1-color);
}

.lightbox-trigger {
  display: block;
  width: 21px;
  max-width: 21px;
  height: 21px;
  max-height: 21px;
  position: absolute;
  inset: 18px 18px auto auto;
  transition: scale 0.1s ease-in-out;
}
.lightbox-trigger:hover {
  scale: 1.05;
}
.lightbox-trigger svg {
  pointer-events: none;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/*
body:not(.is-homepage) .predictive-search-container {
  bottom: -42px;
}
*/
.predictive-search-container {
  translate: -50% 100%;
  position: absolute;
  inset: auto auto -63px 50%;
  /*
  @include to-sm {
    inset: auto auto -63px 50%;
  }
  */
  width: 100%;
  z-index: 1;
  display: flex;
  display: none;
  opacity: 0;
}
@media only screen and (max-width: 1050px) {
  .predictive-search-container {
    inset: auto auto -100px 50%;
  }
}
.predictive-search-container.active {
  display: flex;
  opacity: 1;
}
.predictive-search-container.active::before {
  content: "";
  width: 100vw;
  height: 100vh;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  pointer-events: none;
}
.predictive-search-container .predictive-search-modal {
  position: relative;
  margin: 0 auto;
  background: white;
  min-height: 432px;
  height: -moz-fit-content;
  height: fit-content;
  width: clamp(320px, 90vw, 1300px);
  border-radius: 0;
  box-shadow: 0px 6px 21px 5px rgba(0, 0, 0, 0.38);
}
@media only screen and (max-width: 767.98px) {
  .predictive-search-container .predictive-search-modal {
    width: clamp(320px, 100%, 100vw);
    max-width: 100vw;
  }
}
.predictive-search-container .predictive-search-modal .inner {
  width: 100%;
  height: 100%;
  min-height: 432px;
  padding: 40px 30px 30px;
  max-height: calc(90vh - 160px);
  overflow-y: auto;
  overflow-x: hidden;
}
.predictive-search-container .predictive-search-modal .inner::-webkit-scrollbar {
  width: 5px;
}
.predictive-search-container .predictive-search-modal .inner::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.predictive-search-container .predictive-search-modal .inner::-webkit-scrollbar-thumb {
  background: var(--primary-color);
}
.predictive-search-container .predictive-search-modal .inner::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}
.predictive-search-container .predictive-search-modal .inner .main-search {
  margin: 30px;
}
.predictive-search-container .predictive-search-modal .inner .main-search .page-width {
  padding: 0;
}
.predictive-search-container .predictive-search-modal .inner .main-search .page-width .result_amount {
  margin-bottom: 30px;
}
.predictive-search-container .predictive-search-modal .close {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: white;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: flex;
  z-index: 99;
  transition: all 0.3s;
}
@media only screen and (max-width: 1050px) {
  .predictive-search-container .predictive-search-modal .close {
    display: none;
  }
}
.predictive-search-container .predictive-search-modal .close svg {
  width: 100%;
  height: 100%;
  fill: var(--primary-color);
  margin: auto;
}
.predictive-search-container .predictive-search-modal .close:hover {
  rotate: 90deg;
}
.predictive-search-container .predictive-search-modal #predictive-search-results {
  width: 100%;
}
.predictive-search-container .predictive-search-results {
  width: 100%;
  padding: 5px 0px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}
.predictive-search-container .predictive-search-results .resource-header,
.predictive-search-container .predictive-search-results .resource-results {
  width: 100%;
}
.predictive-search-container .predictive-search-results .resource-header p,
.predictive-search-container .predictive-search-results .resource-results p {
  margin: 0;
}
.predictive-search-container .predictive-search-results .resource-header {
  border-bottom: solid 1px #ddd;
  padding: 15px 0px;
  margin-bottom: 5px;
}
.predictive-search-container .predictive-search-results .resource-header p {
  font-weight: bold;
  text-transform: capitalize;
  padding: 0 40px;
}
.predictive-search-container .predictive-search-results .resource-results {
  padding: 0 5px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 5px;
}
.predictive-search-container .predictive-search-results .resource-results .resource-result {
  width: 100%;
  padding: 5px 5px 5px 50px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 20px;
}
.predictive-search-container .predictive-search-results .resource-results .resource-result:hover {
  background: rgb(241, 241, 241);
}
.predictive-search-container .predictive-search-results .resource-results .resource-result .resource-result-title {
  width: -moz-max-content;
  width: max-content;
  padding: 0px 10px 0px 5px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
}
.predictive-search-container .predictive-search-results .resource-results .resource-result .resource-result-url {
  white-space: nowrap;
  font-size: 12px;
  color: #707070;
}
@media (max-width: 1024px) {
  .predictive-search-container .predictive-search-results .resource-results .resource-result .resource-result-url {
    display: none;
  }
}
.predictive-search-container .predictive-search-results .resource-results .resource-result .resource-result-image {
  width: 30px;
  height: 30px;
  background: white;
  margin: 0 0 0 auto;
  display: none;
}
.predictive-search-container .predictive-search-results .resource-results .resource-result .resource-result-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.predictive-search-container .inner.recommended-inner {
  height: auto;
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 30px;
}
@media only screen and (max-width: 767.98px) {
  .predictive-search-container .inner.recommended-inner {
    flex-flow: column nowrap;
    gap: 0px 15px;
  }
}
.predictive-search-container .inner.recommended-inner .searching-prompt {
  opacity: 0.5;
}
.predictive-search-container .inner.recommended-inner .search-recommendations-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
@media only screen and (max-width: 767.98px) {
  .predictive-search-container .inner.recommended-inner .search-recommendations-wrapper {
    width: 100%;
    flex-flow: column nowrap;
    justify-content: flex-start;
  }
}
.predictive-search-container .inner.recommended-inner .search-recommendations-wrapper .recommended-products-heading {
  margin-bottom: 10px;
}
@media only screen and (max-width: 767.98px) {
  .predictive-search-container .inner.recommended-inner .search-recommendations-wrapper.grid .recommended-products-heading {
    display: none;
  }
}
.predictive-search-container .inner.recommended-inner .search-recommendations-grid,
.predictive-search-container .inner.recommended-inner .search-recommendations-swiper {
  width: 100%;
  padding-bottom: 30px;
}
@media only screen and (max-width: 767.98px) {
  .predictive-search-container .inner.recommended-inner .search-recommendations-grid,
  .predictive-search-container .inner.recommended-inner .search-recommendations-swiper {
    padding-bottom: 0;
  }
}
.predictive-search-container .inner.recommended-inner .search-recommendations-grid .product-card .quickview-eye,
.predictive-search-container .inner.recommended-inner .search-recommendations-grid .product-card .wishlist-heart,
.predictive-search-container .inner.recommended-inner .search-recommendations-grid .product-card .product-buttons,
.predictive-search-container .inner.recommended-inner .search-recommendations-grid .product-card .product-description,
.predictive-search-container .inner.recommended-inner .search-recommendations-swiper .product-card .quickview-eye,
.predictive-search-container .inner.recommended-inner .search-recommendations-swiper .product-card .wishlist-heart,
.predictive-search-container .inner.recommended-inner .search-recommendations-swiper .product-card .product-buttons,
.predictive-search-container .inner.recommended-inner .search-recommendations-swiper .product-card .product-description {
  display: none;
}
.predictive-search-container .inner.recommended-inner .search-recommendations-grid {
  display: grid;
  gap: 20px 20px;
  grid-template-columns: repeat(4, 1fr);
}
@media only screen and (max-width: 1199.98px) {
  .predictive-search-container .inner.recommended-inner .search-recommendations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 1024.98px) {
  .predictive-search-container .inner.recommended-inner .search-recommendations-grid {
    gap: 15px 15px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 389.98px) {
  .predictive-search-container .inner.recommended-inner .search-recommendations-grid {
    grid-template-columns: 1fr;
  }
}
.predictive-search-container .inner.recommended-inner .search-recommendations-grid a.view-all {
  display: none;
  grid-column: 1/-1;
  margin: 0 auto;
  width: 100%;
  order: 1000;
  text-align: center;
}
@media only screen and (max-width: 767.98px) {
  .predictive-search-container .inner.recommended-inner .search-recommendations-grid a.view-all {
    display: block;
  }
}
.predictive-search-container .inner.recommended-inner .recommended-links-sidebar .accordion,
.predictive-search-container .inner.recommended-inner .search-recommendations-wrapper .accordion {
  padding: 0;
  padding-bottom: 8px;
}
@media only screen and (min-width: 768px) {
  .predictive-search-container .inner.recommended-inner .recommended-links-sidebar .accordion,
  .predictive-search-container .inner.recommended-inner .search-recommendations-wrapper .accordion {
    display: none;
  }
}
.predictive-search-container .inner.recommended-inner .recommended-links-sidebar .accordion > div,
.predictive-search-container .inner.recommended-inner .search-recommendations-wrapper .accordion > div {
  font-size: 20px;
  pointer-events: none;
}
.predictive-search-container .inner.recommended-inner .recommended-links-sidebar .panel,
.predictive-search-container .inner.recommended-inner .search-recommendations-wrapper .panel {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .predictive-search-container .inner.recommended-inner .recommended-links-sidebar .panel,
  .predictive-search-container .inner.recommended-inner .search-recommendations-wrapper .panel {
    max-height: 100%;
  }
}
.predictive-search-container .inner.recommended-inner .recommended-links-sidebar .panel .content,
.predictive-search-container .inner.recommended-inner .search-recommendations-wrapper .panel .content {
  width: 100%;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  padding: 10px 0;
}
@media only screen and (min-width: 768px) {
  .predictive-search-container .inner.recommended-inner .recommended-links-sidebar .panel .content,
  .predictive-search-container .inner.recommended-inner .search-recommendations-wrapper .panel .content {
    padding: 0;
  }
}
@media only screen and (max-width: 767.98px) {
  .predictive-search-container .inner.recommended-inner .recommended-links-sidebar a.view-all:not(.search-recommendations-grid a.view-all),
  .predictive-search-container .inner.recommended-inner .search-recommendations-wrapper a.view-all:not(.search-recommendations-grid a.view-all) {
    display: none;
  }
}
.predictive-search-container .inner.recommended-inner .recommended-links-sidebar {
  height: 100%;
  width: 200px;
  max-width: 200px;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 25px;
  margin-right: auto;
}
@media only screen and (max-width: 767.98px) {
  .predictive-search-container .inner.recommended-inner .recommended-links-sidebar {
    height: auto;
    width: 100%;
    max-width: 100%;
    gap: 15px;
  }
}
.predictive-search-container .inner.recommended-inner .recommended-links-sidebar .sidebar-group {
  width: 100%;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
}
.predictive-search-container .inner.recommended-inner .recommended-links-sidebar .sidebar-group:last-child {
  padding-bottom: 30px;
}
@media only screen and (max-width: 767.98px) {
  .predictive-search-container .inner.recommended-inner .recommended-links-sidebar .sidebar-group:last-child {
    padding-bottom: 15px;
  }
}
.predictive-search-container .inner.recommended-inner .recommended-links-sidebar .sidebar-group .sidebar-heading {
  font-size: 20px;
}
@media only screen and (max-width: 767.98px) {
  .predictive-search-container .inner.recommended-inner .recommended-links-sidebar .sidebar-group .sidebar-heading {
    display: none;
  }
}
.predictive-search-container .inner.recommended-inner .recommended-links-sidebar .sidebar-group .recent-search-container {
  width: 100%;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
}
.predictive-search-container .inner.recommended-inner .recommended-links-sidebar a.link {
  font-size: 14px;
}
@media only screen and (min-width: 768px) {
  .predictive-search-container .inner.recommended-inner .recommended-links-sidebar + .search-recommendations-wrapper {
    width: calc(100% - 230px);
  }
}

.quick-view-container {
  display: none;
  opacity: 0;
  position: fixed;
  inset: 0;
  height: 100%;
  width: 100%;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  z-index: 99;
}
.quick-view-container.active {
  display: flex;
  opacity: 1;
}
.quick-view-container .quick-view-modal {
  position: relative;
  width: clamp(320px, 90vw, 1024px);
  background-color: white;
  box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.18);
  margin: 90px auto auto auto;
  padding: 0 0 2rem 0;
  box-sizing: border-box;
}
.quick-view-container .quick-view-modal .inner {
  width: 100%;
  height: 100%;
  max-height: calc(90vh - 90px);
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none; /* Firefox */
}
.quick-view-container .quick-view-modal .inner::-webkit-scrollbar {
  display: none;
}
.quick-view-container .quick-view-modal .inner .page-width {
  padding: 0 15px;
}
.quick-view-container .quick-view-modal .inner .dl-main-product {
  margin-bottom: 0;
}
.quick-view-container .quick-view-modal .inner .dl-main-product #main-product-container .pdp-sold-out-form {
  margin-bottom: 20px;
}
.quick-view-container .quick-view-modal .inner .dl-main-product #main-product-container #main-product {
  gap: 5px 60px;
}
.quick-view-container .quick-view-modal .inner .dl-main-product #main-product-container #main-product .product-information .product-details {
  padding-top: 20px;
}
.quick-view-container .quick-view-modal .inner .dl-main-product #main-product-container #main-product .pdp-blocks,
.quick-view-container .quick-view-modal .inner .dl-main-product #main-product-container #main-product .brand-logo,
.quick-view-container .quick-view-modal .inner .dl-main-product #main-product-container #main-product .breadcrumbs,
.quick-view-container .quick-view-modal .inner .dl-main-product #main-product-container #main-product .button-wishlist,
.quick-view-container .quick-view-modal .inner .dl-main-product #main-product-container #main-product .payment-options,
.quick-view-container .quick-view-modal .inner .dl-main-product #main-product-container #main-product .mobile-add-to-cart,
.quick-view-container .quick-view-modal .inner .dl-main-product #main-product-container #main-product [data-trigger-size-guide] {
  display: none !important;
}
.quick-view-container .quick-view-modal .inner .dl-main-product #main-product-container #main-product .gallery {
  display: contents;
}
.quick-view-container .quick-view-modal .inner .dl-main-product #main-product-container #main-product .gallery .gallery-container {
  top: 0;
}
@media only screen and (max-width: 767.98px) {
  .quick-view-container .quick-view-modal .inner .dl-main-product #main-product-container #main-product .gallery .gallery-container {
    margin: 0 !important;
  }
}
.quick-view-container .quick-view-modal .close {
  position: absolute;
  inset: auto auto 0 50%;
  transform: translate(-50%, 50%);
  background-color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: flex;
  z-index: 99;
  padding: 8px;
}
.quick-view-container .quick-view-modal .close svg {
  width: 50%;
  height: 50%;
  stroke: #333;
  margin: auto;
  transition: 0.3s all;
}
.quick-view-container .quick-view-modal .close:hover svg {
  rotate: 90deg;
}

.collection-card .img-wrap img,
.collection-card .img-wrap svg {
  height: unset;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.nav-mega-menu {
  position: relative;
  padding: 0 !important;
  background-color: #fff;
}
.nav-mega-menu .mega-menu-top-items {
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 12px;
}
.nav-mega-menu .mega-menu-top-items .menu-item {
  font-size: 14px;
  transition: all 0.3s;
  padding: 0 15px;
  cursor: pointer;
}
.nav-mega-menu .mega-menu-top-items .menu-item.menu-img {
  border-left: 2px solid #c9c9c9;
}
.nav-mega-menu .mega-menu-top-items .menu-item a span {
  font-size: 14px;
}
.nav-mega-menu .mega-menu-top-items > div:hover + .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transition: all 0.3s;
}
.nav-mega-menu a:hover {
  text-decoration: underline;
}
.nav-mega-menu .mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 999;
  min-height: -moz-min-content;
  min-height: min-content;
  background-color: #fff;
  width: 100vw;
  opacity: 0;
  padding-top: 20px;
  max-width: 100%;
  margin: 0 auto;
  pointer-events: none;
  transition: all 0.3s;
  box-shadow: 0px 21px 9px 1px rgba(0, 0, 0, 0.12);
}
.nav-mega-menu .mega-menu:hover {
  opacity: 1;
  pointer-events: auto;
  transition: all 0.3s;
}
.nav-mega-menu .mega-menu .mega-menu-container {
  display: flex;
  padding: 30px;
  height: 100%;
}
.nav-mega-menu .mega-menu .mega-menu-container.menu-image-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
}
.nav-mega-menu .mega-menu .mega-menu-container.menu-image-container .mega-menu-image-block {
  aspect-ratio: 17/20;
  position: relative;
  overflow: hidden;
}
.nav-mega-menu .mega-menu .mega-menu-container.menu-image-container .mega-menu-image-block:hover > img {
  transform: scale(1.1);
  transition: all 0.3s;
}
.nav-mega-menu .mega-menu .mega-menu-container.menu-image-container .mega-menu-image-block:hover .icon-arrow {
  transform: translateX(5px);
}
.nav-mega-menu .mega-menu .mega-menu-container.menu-image-container .mega-menu-image-block img,
.nav-mega-menu .mega-menu .mega-menu-container.menu-image-container .mega-menu-image-block svg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s;
}
.nav-mega-menu .mega-menu .mega-menu-container.menu-image-container .mega-menu-image-block .gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  min-height: 30%;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 40%, rgb(16, 87, 60) 100%);
}
.nav-mega-menu .mega-menu .mega-menu-container.menu-image-container .mega-menu-image-block .link {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  color: #fff;
}
.nav-mega-menu .mega-menu .mega-menu-container.menu-image-container .mega-menu-image-block .link .link-text {
  font-size: 24px;
  font-weight: 700;
}
.nav-mega-menu .mega-menu .mega-menu-container.menu-image-container .mega-menu-image-block .link > div {
  display: flex;
  align-items: center;
}
.nav-mega-menu .mega-menu .mega-menu-container.menu-image-container .mega-menu-image-block .link svg {
  width: 30px;
  height: 30px;
}
.nav-mega-menu .mega-menu .mega-menu-container .mega-menu-menu {
  flex: 2;
  font-weight: 700;
  font-size: 13px;
  padding-right: 20px;
  margin-top: 20px;
  -moz-column-count: 3;
       column-count: 3;
}
.nav-mega-menu .mega-menu .mega-menu-container .mega-menu-menu .mega-menu-title {
  margin-bottom: 30px;
}
.nav-mega-menu .mega-menu .mega-menu-container .mega-menu-menu .submenu-title {
  font-size: 20px;
  font-weight: 700;
  color: #343434;
}
.nav-mega-menu .mega-menu .mega-menu-container .mega-menu-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 20px;
  font-weight: 500;
}
.nav-mega-menu .mega-menu .mega-menu-container .mega-menu-menu ul li {
  margin: 10px 0;
  position: relative;
  padding: 2px 0;
  page-break-inside: avoid;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  font-size: 14px;
}
.nav-mega-menu .mega-menu .mega-menu-container .mega-menu-menu ul li:hover {
  font-weight: 700;
}
.nav-mega-menu .mega-menu .mega-menu-container .mega-menu-menu ul li .menu-chevron {
  position: absolute;
  top: 6px;
  right: 10px;
  width: 8px;
  display: none;
}
.nav-mega-menu .mega-menu .mega-menu-container .mega-menu-menu ul li:hover .menu-chevron {
  display: block;
}
.nav-mega-menu .mega-menu .mega-menu-container .mega-menu-menu ul li:hover .menu-chevron svg {
  width: 100%;
}
.nav-mega-menu .mega-menu .mega-menu-container .mega-menu-menu ul li a {
  width: 100%;
  display: block;
}
.nav-mega-menu .mega-menu .mega-menu-container .mega-menu-menu .submenu-link {
  font-size: 14px;
  color: #343434;
}
.nav-mega-menu .mega-menu .mega-menu-container .mega-menu-banner-wrapper {
  flex: 1;
  padding-left: 20px;
  display: flex;
}
.nav-mega-menu .mega-menu .mega-menu-container .mega-menu-banner-wrapper .mega-menu-banner {
  flex: 1;
  height: 100%;
  padding: 20px;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  cursor: pointer;
}
.nav-mega-menu .mega-menu .mega-menu-container .mega-menu-banner-wrapper .mega-menu-banner .mega-menu-banner-title {
  align-items: center;
  padding: 15px 0;
}
.nav-mega-menu .mega-menu .mega-menu-container .mega-menu-banner-wrapper .mega-menu-banner .mega-menu-banner-title span svg {
  width: 10px;
  transform: translateY(2px);
  visibility: hidden;
  transition: all 0.3s;
}
.nav-mega-menu .mega-menu .mega-menu-container .mega-menu-banner-wrapper .mega-menu-banner:hover .mega-menu-banner-title span svg {
  visibility: visible;
}
.nav-mega-menu .mega-menu .mega-menu-container .mega-menu-banner-wrapper .mega-menu-banner .mega-menu-banner-image {
  width: 100%;
  aspect-ratio: 20/19;
  overflow: hidden;
  flex: 1;
  position: relative;
}
.nav-mega-menu .mega-menu .mega-menu-container .mega-menu-banner-wrapper .mega-menu-banner .mega-menu-banner-desc {
  position: absolute;
  bottom: -100%;
  width: 100%;
  background-color: rgba(238, 238, 238, 0.7019607843);
  padding: 15px;
  font-size: 13px;
  transition: all 0.3s;
  bottom: 0;
}
.nav-mega-menu .mega-menu .mega-menu-container .mega-menu-banner-wrapper .mega-menu-banner .mega-menu-banner-desc .desc-title {
  margin-bottom: 10px;
  font-weight: 700;
}
.nav-mega-menu .mega-menu .mega-menu-container .mega-menu-banner-wrapper .mega-menu-banner:hover {
  bottom: 0;
}
.nav-mega-menu .mega-menu .mega-menu-container .mega-menu-banner-wrapper .mega-menu-banner .mega-menu-banner-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all 0.3s;
}
.nav-mega-menu .mega-menu .mega-menu-container .mega-menu-banner-wrapper .mega-menu-banner:hover .mega-menu-banner-image img {
  transform: scale(1.05);
  transition: all 0.3s;
}
.nav-mega-menu .mega-menu .mega-menu-container .mega-menu-banner-wrapper .mega-menu-banner .mega-menu-banner-image-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  opacity: 0;
}
.nav-mega-menu .mega-menu .mega-menu-container .mega-menu-banner-wrapper .mega-menu-banner:hover .mega-menu-banner-image-hover {
  opacity: 1;
  transition: all 0.3s;
}
.nav-mega-menu .mega-menu .mega-menu-container .mega-menu-banner-wrapper .mega-menu-banner:hover .mega-menu-banner-image-hover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.nav-mega-menu .mega-menu .mega-menu-container .mega-menu-banner-wrapper .mega-menu-banner:hover .mega-menu-banner-title {
  font-weight: 700;
}

@media screen and (max-width: 1250px) {
  .mega-menu-top-items .menu-item a span {
    font-size: 1.2vw !important;
  }
}
.open-sidecart {
  cursor: pointer;
}

#cart-drawer-container {
  position: fixed;
  top: 0px;
  right: 0px;
  height: 100vh;
  width: 100vw;
  background: transparent;
  z-index: 9999999999 !important;
  transition: 0.3s ease;
  pointer-events: none;
  visibility: hidden;
}
#cart-drawer-container.open {
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(0.5px);
          backdrop-filter: blur(0.5px);
  visibility: visible;
  transition: 0.3s ease;
  pointer-events: auto;
}
#cart-drawer-container.open #cart-drawer {
  transform: translateX(0%);
  display: flex;
  flex-direction: column;
}
#cart-drawer-container #cart-drawer {
  height: 100%;
  max-height: 100vh;
  width: clamp(260px, 100%, 392px);
  background-color: white;
  float: right;
  transition: 0.3s ease;
  transform: translateX(103%);
  pointer-events: auto;
}
@media only screen and (max-width: 767.98px) {
  #cart-drawer-container #cart-drawer {
    float: left;
    transform: translateX(-103%);
    max-width: 370px;
  }
}
@media only screen and (max-width: 575.98px) {
  #cart-drawer-container #cart-drawer {
    max-width: calc(100vw - 20px);
  }
}
#cart-drawer-container #cart-drawer .cart-drawer-header {
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
  padding: 17px 25px 0 20px;
  background-color: var(--primary-color);
  border-bottom: none;
}
#cart-drawer-container #cart-drawer .cart-drawer-header .closeSideCart {
  position: absolute;
  inset: 50% 25px auto auto;
  translate: 0 -50%;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin-left: auto;
}
#cart-drawer-container #cart-drawer .cart-drawer-header .closeSideCart svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  color: #fff;
}
#cart-drawer-container #cart-drawer .cart-drawer-header .cart-tabs {
  display: flex;
  gap: 20px;
}
#cart-drawer-container #cart-drawer .cart-drawer-header .cart-tabs .cart-tab {
  color: #FCFCFC;
  border: solid 1px #FCFCFC;
  border-radius: 0;
  font-size: 14px;
  border-width: 1px 1px 0 1px;
  background-color: var(--primary-color);
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 3px;
  cursor: pointer;
}
#cart-drawer-container #cart-drawer .cart-drawer-header .cart-tabs .cart-tab.active {
  background-color: #FCFCFC;
  color: var(--text-primary-color);
}
#cart-drawer-container #cart-drawer .cart-drawer-header .cart-tabs .cart-tab.active span {
  font-weight: 700;
}
#cart-drawer-container #cart-drawer .cart-drawer-header .cart-tabs .cart-tab.active svg {
  color: var(--text-primary-color);
}
#cart-drawer-container #cart-drawer .cart-drawer-header .cart-tabs .cart-tab:hover:not(.active) svg {
  transform: scale(1.2);
}
#cart-drawer-container #cart-drawer .cart-drawer-header .cart-tabs .cart-tab:hover:not(.active) span {
  transform: scale(1.05);
}
#cart-drawer-container #cart-drawer .cart-drawer-header .cart-tabs .cart-tab svg {
  width: 21px;
  height: 21px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.3s all;
  color: #FCFCFC;
}
#cart-drawer-container #cart-drawer .cart-drawer-header .cart-tabs .cart-tab svg.heart-empty path {
  fill: currentColor;
}
#cart-drawer-container #cart-drawer .cart-drawer-header .cart-tabs .cart-tab span {
  font-size: 14px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  transition: 0.3s all;
}
#cart-drawer-container #cart-drawer .cart-drawer-header .cart-tabs .cart-tab span:after {
  content: attr(data-title);
  content: attr(data-title)/"";
  height: 0;
  visibility: hidden;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  font-weight: 700;
}
@media speech {
  #cart-drawer-container #cart-drawer .cart-drawer-header .cart-tabs .cart-tab span:after {
    display: none;
  }
}
@media only screen and (min-width: 1200px) {
  #cart-drawer-container #cart-drawer .cart-drawer-header .cart-tabs .cart-tab[data-tab=for-you-cart] {
    display: none !important;
  }
}
#cart-drawer-container #cart-drawer .free-delivery-status {
  padding: 16px 30px 13px;
  background-color: var(--accent-2-color);
  color: var(--text-primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column nowrap;
  gap: 12px;
}
#cart-drawer-container #cart-drawer .free-delivery-status .free-delivery-progress {
  position: relative;
  width: 100%;
  height: 4px;
  background: #fff;
}
#cart-drawer-container #cart-drawer .free-delivery-status .free-delivery-progress::after, #cart-drawer-container #cart-drawer .free-delivery-status .free-delivery-progress::before {
  transition: all 0.15s ease-in-out;
}
#cart-drawer-container #cart-drawer .free-delivery-status .free-delivery-progress::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--progress-percent);
  height: 4px;
  background: var(--text-primary-color);
}
#cart-drawer-container #cart-drawer .free-delivery-status .free-delivery-progress::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 0;
  left: var(--progress-percent);
  translate: -6px -50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--text-primary-color);
}
#cart-drawer-container #cart-drawer .free-delivery-status .free-delivery-msg {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px 17px;
}
@media only screen and (max-width: 767.98px) {
  #cart-drawer-container #cart-drawer .free-delivery-status .free-delivery-msg {
    gap: 10px 13px;
  }
}
#cart-drawer-container #cart-drawer .free-delivery-status .free-delivery-msg .free-delivery-text {
  font-weight: 700;
  text-align: left;
  font-size: 16px;
}
@media only screen and (max-width: 767.98px) {
  #cart-drawer-container #cart-drawer .free-delivery-status .free-delivery-msg .free-delivery-text {
    font-size: 14px;
  }
}
#cart-drawer-container #cart-drawer .free-delivery-status .free-delivery-msg svg {
  width: 30px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  color: var(--text-primary-color);
}
@media only screen and (max-width: 767.98px) {
  #cart-drawer-container #cart-drawer .free-delivery-status .free-delivery-msg svg {
    width: 25px;
    height: 17px;
  }
}
#cart-drawer-container #cart-drawer .inner {
  overflow: hidden;
  width: 100%;
  display: flex;
  flex: 1;
  flex-direction: column;
}
#cart-drawer-container #cart-drawer .inner > div {
  height: 100%;
}
#cart-drawer-container #cart-drawer > form {
  flex: 1;
  display: flex;
}
#cart-drawer-container #cart-drawer > form .cart .items-wrapper {
  flex: 1;
  position: relative;
  margin: 0;
}
#cart-drawer-container #cart-drawer > form .cart .items-wrapper .items {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  padding: 30px 30px;
}
#cart-drawer-container #cart-drawer > form .cart .items-wrapper .items::-webkit-scrollbar {
  margin-left: 10px;
  width: 4px;
  background: transparent;
}
#cart-drawer-container #cart-drawer > form .cart .items-wrapper .items::-webkit-scrollbar-track {
  background-color: #fff;
}
#cart-drawer-container #cart-drawer > form .cart .items-wrapper .items::-webkit-scrollbar-thumb {
  background-color: var(--accent-1-color);
  border-radius: 2px;
}
#cart-drawer-container #cart-drawer > form .cart .items-wrapper .items .additional-items-wrapper {
  border-top: 3px solid #EDEDED;
  margin-right: 10px;
}
@media only screen and (min-width: 768px) {
  #cart-drawer-container #cart-drawer > form .cart .items-wrapper .items .additional-items-wrapper {
    border-top: unset;
  }
}
#cart-drawer-container #cart-drawer > form .cart .items-wrapper .items .additional-items-wrapper .additional-items-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  #cart-drawer-container #cart-drawer > form .cart .items-wrapper .items .additional-items-wrapper .additional-items-title {
    display: none;
  }
}
#cart-drawer-container #cart-drawer > form .cart .items-wrapper .items .additional-items-wrapper .additional-items-title * {
  pointer-events: none;
}
#cart-drawer-container #cart-drawer > form .cart .items-wrapper .items .additional-items-wrapper .additional-items-title p {
  font-size: 14px;
  font-weight: normal;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 10px;
}
#cart-drawer-container #cart-drawer > form .cart .items-wrapper .items .additional-items-wrapper .additional-items-title svg {
  width: 14px;
  height: 14px;
  scale: 1 1;
  transition: all 0.3s;
}
#cart-drawer-container #cart-drawer > form .cart .items-wrapper .items .additional-items-wrapper .additional-items-title svg.active {
  transform: rotateX(180deg);
}
#cart-drawer-container #cart-drawer > form .cart .items-wrapper .items .additional-items-wrapper .additional-items-title.active svg {
  scale: 1 -1;
}
#cart-drawer-container #cart-drawer > form .cart .items-wrapper .items .additional-items-wrapper .additional-items-title .counter {
  padding: 3px;
  line-height: 20px;
  width: 20px;
  height: 20px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 21px;
  color: white;
  font-size: 10px;
  background: var(--text-primary-color);
}
#cart-drawer-container #cart-drawer > form .cart .items-wrapper .items .additional-items-wrapper .additional-items {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.15s ease-in-out;
}
#cart-drawer-container #cart-drawer > form .cart .items-wrapper .items .additional-items-wrapper .additional-items.active {
  max-height: 100000px;
}
@media only screen and (min-width: 768px) {
  #cart-drawer-container #cart-drawer > form .cart .items-wrapper .items .additional-items-wrapper .additional-items {
    max-height: unset;
    overflow: unset;
  }
}
#cart-drawer-container #cart-drawer > form .cart .items-wrapper .items .additional-items-wrapper .additional-items .additional-items-inner {
  padding: 10px 0;
}
#cart-drawer-container #cart-drawer > form .cart .items-wrapper .empty-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column nowrap;
  gap: 20px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  color: var(--text-primary-color);
  padding-top: calc(50vh - 170px);
}
#cart-drawer-container #cart-drawer > form .cart .cart-recommendations {
  padding: 10px 0 20px 20px;
  padding-right: 0;
}
@media only screen and (min-width: 768px) {
  #cart-drawer-container #cart-drawer > form .cart .cart-recommendations {
    display: none;
  }
}
#cart-drawer-container #cart-drawer > form .cart .cart-recommendations .heading {
  margin-bottom: 10px;
}
#cart-drawer-container #cart-drawer > form .cart .cart-recommendations .product-card {
  gap: 1px;
  padding: 0px 1px 20px;
}
#cart-drawer-container #cart-drawer > form .cart .cart-recommendations .product-card .product-image .product-badges {
  gap: 2px;
}
#cart-drawer-container #cart-drawer > form .cart .cart-recommendations .product-card .product-image .product-badges .product-badge {
  font-size: 10px;
  padding: 3px 6px;
}
#cart-drawer-container #cart-drawer > form .cart .cart-recommendations .product-card .product-title {
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#cart-drawer-container #cart-drawer > form .cart .cart-recommendations .product-card .product-reviews {
  display: none;
}
#cart-drawer-container #cart-drawer > form .cart .cart-recommendations .product-card .product-description {
  display: none;
}
#cart-drawer-container #cart-drawer > form .cart .cart-recommendations .product-card .product-price span {
  font-size: 14px;
}
#cart-drawer-container #cart-drawer > form .cart .cart-recommendations .product-card .product-buttons {
  gap: 0;
}
#cart-drawer-container #cart-drawer > form .cart .cart-recommendations .product-card .product-buttons .product-link {
  font-size: 14px;
  padding: 3px 6px;
}
#cart-drawer-container #cart-drawer > form .cart .cart-recommendations .product-card .product-buttons button {
  border: none;
  max-height: 26px;
}
#cart-drawer-container #cart-drawer > form .cart .cart-recommendations .product-card .product-buttons button svg {
  width: 15px;
  height: 17px;
}
#cart-drawer-container #cart-drawer > form .cart .sub-total-wrapper p:first-of-type {
  font-size: 22px;
}
#cart-drawer-container #cart-drawer .cart-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  display: none;
}
#cart-drawer-container #cart-drawer .cart-content .buttons {
  position: relative;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 0 25px 15px 25px;
  gap: 13px;
}
#cart-drawer-container #cart-drawer .cart-content .buttons .checkout,
#cart-drawer-container #cart-drawer .cart-content .buttons .express-checkout-button {
  overflow: hidden;
  position: relative;
  padding: 11px 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  color: #ffffff;
  background: var(--text-primary-color);
  border: solid 2px var(--text-primary-color);
}
#cart-drawer-container #cart-drawer .cart-content .buttons .checkout:hover::after,
#cart-drawer-container #cart-drawer .cart-content .buttons .express-checkout-button:hover::after {
  transform: translateX(100%);
  transition: 0.5s ease-in;
}
#cart-drawer-container #cart-drawer .cart-content .buttons .checkout::after,
#cart-drawer-container #cart-drawer .cart-content .buttons .express-checkout-button::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  transition: 0s linear;
  opacity: 0.3;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%);
}
#cart-drawer-container #cart-drawer .cart-content .buttons .express-checkout-button {
  flex: 1;
  width: 100%;
  padding: 7px 15px;
  font-size: 14px;
  font-weight: bold;
  background: #F0F0F0;
  border-color: #F0F0F0;
  color: var(--text-primary-color);
}
#cart-drawer-container #cart-drawer .cart-content .buttons .express-checkout-button.active + .express-checkout-wrapper {
  max-height: 400px;
  pointer-events: all;
  transition: all 0.3s ease-in;
}
#cart-drawer-container #cart-drawer .cart-content .buttons .express-checkout-wrapper {
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  inset: -10px 0 auto 0;
  translate: 0 -100%;
  width: 100%;
  max-height: 0;
  background: #ffffff;
  box-shadow: 0px -6px 10px rgba(0, 0, 0, 0.062745098);
  transition: all 0s linear;
}
#cart-drawer-container #cart-drawer .cart-content .buttons .express-checkout-wrapper .express-checkout-buttons {
  padding: 15px 25px;
}
#cart-drawer-container #cart-drawer .cart-content .buttons .express-checkout-wrapper .express-checkout-buttons .dynamic-checkout__content {
  width: 100%;
}
#cart-drawer-container #cart-drawer .cart-content .buttons .express-checkout-wrapper .express-checkout-buttons .shopify-cleanslate div[role=button] {
  max-height: 40px;
  border-radius: 40px !important;
}
#cart-drawer-container #cart-drawer .cart-content .buttons .express-checkout-wrapper .express-checkout-buttons .shopify-cleanslate ul {
  width: 100%;
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column nowrap !important;
  gap: 15px;
}
#cart-drawer-container #cart-drawer .cart-content .buttons .express-checkout-wrapper .express-checkout-buttons .shopify-cleanslate ul li {
  width: 100%;
  margin-top: 0 !important;
  max-height: 42px;
}
#cart-drawer-container #cart-drawer .cart-content .buttons .checkout {
  flex: 1;
  width: 100%;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}
#cart-drawer-container #cart-drawer .cart-content .content-heading {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
#cart-drawer-container #cart-drawer .cart-content .content-heading svg {
  width: 30px;
  height: 30px;
}
#cart-drawer-container #cart-drawer .cart-content .content-heading svg.heart-full {
  fill: var(--accent-2-color);
}
#cart-drawer-container #cart-drawer .cart-content .grid-container {
  overflow-y: auto;
  position: relative;
  flex: 1;
  padding: 0 20px;
  margin-bottom: 20px;
  margin-right: 8px;
}
#cart-drawer-container #cart-drawer .cart-content .grid-container::-webkit-scrollbar {
  margin-left: 10px;
  width: 4px;
  background: transparent;
}
#cart-drawer-container #cart-drawer .cart-content .grid-container::-webkit-scrollbar-track {
  background-color: #fff;
}
#cart-drawer-container #cart-drawer .cart-content .grid-container::-webkit-scrollbar-thumb {
  background-color: var(--accent-1-color);
  border-radius: 2px;
}
#cart-drawer-container #cart-drawer .cart-content .grid-container .side-cart-saved-grid {
  opacity: 0;
  grid-template-columns: 1fr 1fr;
  position: absolute;
  display: grid;
  grid-gap: 20px;
  width: calc(100% - 29px);
  margin-top: 20px;
}
@media only screen and (max-width: 319.98px) {
  #cart-drawer-container #cart-drawer .cart-content .grid-container .side-cart-saved-grid {
    grid-template-columns: 1fr;
  }
}
#cart-drawer-container #cart-drawer .cart-content .grid-container .side-cart-saved-grid + .loader {
  position: absolute;
  left: 50%;
  top: 120px;
}
#cart-drawer-container #cart-drawer .cart-content .grid-container .side-cart-saved-grid.loaded {
  opacity: 1;
  transition: 1s;
}
#cart-drawer-container #cart-drawer .cart-content .grid-container .side-cart-saved-grid.loaded + .loader {
  opacity: 0;
  transition: 0.25s;
}
#cart-drawer-container #cart-drawer .cart-content .grid-container .empty-wishlist {
  position: absolute;
  text-align: center;
  width: 100%;
}
#cart-drawer-container #cart-drawer .cart-content .grid-container .empty-wishlist-side-cart {
  z-index: 9;
  position: relative;
  display: none;
  margin-top: 40px;
  text-align: center;
}
#cart-drawer-container #cart-drawer .cart-content .grid-container .empty-wishlist-side-cart.active {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
#cart-drawer-container #cart-drawer .cart-content.for-you-cart .grid-container {
  padding: 0;
  margin: 20px 8px 20px 0;
}
#cart-drawer-container #cart-drawer .cart-content.for-you-cart .for-you-grid,
#cart-drawer-container #cart-drawer .cart-content.for-you-cart .side-cart-for-you-grid {
  inset: 0;
  position: absolute;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0 20px;
  display: none;
  gap: 20px 22px;
  grid-template-columns: repeat(2, 1fr);
}
#cart-drawer-container #cart-drawer .cart-content.for-you-cart .for-you-grid.active,
#cart-drawer-container #cart-drawer .cart-content.for-you-cart .side-cart-for-you-grid.active {
  display: grid;
}
@media only screen and (max-width: 389.98px) {
  #cart-drawer-container #cart-drawer .cart-content.for-you-cart .for-you-grid,
  #cart-drawer-container #cart-drawer .cart-content.for-you-cart .side-cart-for-you-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
#cart-drawer-container #cart-drawer .cart-details {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1607843137);
  padding: 15px 25px 11px 25px;
}
#cart-drawer-container #cart-drawer .cart-details .total-wrapper {
  display: flex;
  justify-content: space-between;
}
#cart-drawer-container #cart-drawer .cart-details .total-wrapper .total-title {
  font-size: 16px;
  font-weight: bold;
  text-align: left;
  color: var(--text-primary-color);
}
#cart-drawer-container #cart-drawer .cart-details .total-wrapper .sub-total {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
  gap: 10px;
  font-size: 16px;
  font-weight: bold;
  text-align: right;
}
#cart-drawer-container #cart-drawer .cart-details .total-wrapper .sub-total .sale-price {
  font-weight: normal;
  text-decoration: line-through;
}
#cart-drawer-container #cart-drawer .recommendations-trigger {
  cursor: pointer;
  width: 100%;
  font-size: 16px;
  font-weight: bold;
  color: #000;
  background: var(--accent-2-color);
  padding: 15px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
@media only screen and (min-width: 1200px) {
  #cart-drawer-container #cart-drawer .recommendations-trigger {
    display: none;
  }
}
#cart-drawer-container #cart-drawer .recommendations-trigger svg {
  pointer-events: none;
  width: 15px;
  height: 15px;
  rotate: -90deg;
  -o-object-fit: contain;
     object-fit: contain;
}
#cart-drawer-container .side-cart-recommended {
  opacity: 1;
  overflow: hidden;
  position: absolute;
  top: 50%;
  margin-left: 4.3vw;
  transform: translate(-120%, -50%);
  background-color: #fff;
  width: calc(100% - 390px - 8.6vw);
  pointer-events: none;
  max-width: 1300px;
  transition: all 1s ease;
}
@media only screen and (max-width: 1199.98px) {
  #cart-drawer-container .side-cart-recommended {
    display: none;
  }
}
#cart-drawer-container .side-cart-recommended .side-cart-recommended-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 30px 44px 60px;
}
#cart-drawer-container .side-cart-recommended .recommended-heading {
  line-height: 1;
  font-size: 30px;
  font-weight: 300;
  text-transform: uppercase;
  color: var(--text-primary-color);
  margin-bottom: 19px;
}
#cart-drawer-container .side-cart-recommended .close-recommendations {
  position: absolute;
  inset: 33.5px 44px auto auto;
  width: 19px;
  height: 19px;
  cursor: pointer;
}
#cart-drawer-container .side-cart-recommended .close-recommendations svg {
  pointer-events: none;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  color: var(--text-primary-color);
}
#cart-drawer-container .side-cart-recommended.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, -50%);
  min-height: 300px;
}
#cart-drawer-container .side-cart-recommended .swiper {
  overflow: visible;
}
#cart-drawer-container .side-cart-recommended .swiper-pagination {
  inset: auto 0 37px 0;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  gap: 7px;
}
#cart-drawer-container .side-cart-recommended .swiper-pagination.cart-rec {
  inset: auto 0 -20px 0;
}
#cart-drawer-container .side-cart-recommended .swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  margin: 0;
  background: none;
  width: 16px;
  height: 16px;
}
@media only screen and (max-width: 767.98px) {
  #cart-drawer-container .side-cart-recommended .swiper-pagination .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
  }
}
#cart-drawer-container .side-cart-recommended .swiper-pagination .swiper-pagination-bullet svg {
  color: var(--text-primary-color);
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#cart-drawer-container .side-cart-recommended .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active svg path {
  fill: currentColor;
}

[cart-items-container] .side-cart-item {
  display: flex;
  flex-flow: row nowrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--accent-1-color);
}
@media only screen and (max-width: 767.98px) {
  [cart-items-container] .side-cart-item {
    gap: 15px;
  }
}
[cart-items-container] .side-cart-item:first-of-type {
  padding-top: 0;
}
[cart-items-container] .side-cart-item:last-of-type {
  padding-bottom: 0;
  border-bottom: none;
}
[cart-items-container] .side-cart-item .img-wrapper {
  overflow: hidden;
  width: 98px;
  height: 122px;
  display: flex;
  align-items: center;
  justify-content: center;
}
[cart-items-container] .side-cart-item .img-wrapper img, [cart-items-container] .side-cart-item .img-wrapper svg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
[cart-items-container] .side-cart-item .info-wrapper {
  isolation: isolate;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
[cart-items-container] .side-cart-item .info-wrapper .remove-item {
  position: absolute;
  inset: 0 0 auto auto;
  cursor: pointer;
  width: 22px;
  height: 22px;
}
[cart-items-container] .side-cart-item .info-wrapper .remove-item svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
[cart-items-container] .side-cart-item .info-wrapper .top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-flow: column nowrap;
  gap: 6px;
}
[cart-items-container] .side-cart-item .info-wrapper .top .item-title,
[cart-items-container] .side-cart-item .info-wrapper .top .item-variant-title {
  width: 100%;
}
[cart-items-container] .side-cart-item .info-wrapper .top a.item-title {
  margin: 0px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: capitalize;
  padding-right: 25px;
}
@media only screen and (max-width: 767.98px) {
  [cart-items-container] .side-cart-item .info-wrapper .top a.item-title {
    font-size: 14px;
  }
}
[cart-items-container] .side-cart-item .info-wrapper .top .item-variant-title {
  font-size: 14px;
  font-weight: normal;
  text-transform: capitalize;
  line-height: 1.2;
  text-align: left;
}
@media only screen and (max-width: 767.98px) {
  [cart-items-container] .side-cart-item .info-wrapper .top .item-variant-title {
    font-size: 12px;
  }
}
[cart-items-container] .side-cart-item .info-wrapper ul.item-properties {
  margin: 0;
  padding: 0;
  list-style: none;
}
[cart-items-container] .side-cart-item .info-wrapper ul.item-properties .item-property {
  padding: 3px 0;
  font-size: 12px;
  text-transform: capitalize;
}
[cart-items-container] .side-cart-item .info-wrapper .mid {
  font-size: 14px;
}
[cart-items-container] .side-cart-item .info-wrapper .bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 6px;
}
[cart-items-container] .side-cart-item .info-wrapper .bottom .price-wrapper .item-sale-price {
  text-decoration: line-through;
}
[cart-items-container] .side-cart-item .info-wrapper .bottom .price-wrapper .item-sale-price,
[cart-items-container] .side-cart-item .info-wrapper .bottom .price-wrapper .item-final-price {
  font-size: 14px;
}

.cart .cart-item {
  display: flex;
  flex-flow: row nowrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 3px solid var(--accent-1-color);
}
@media only screen and (max-width: 767.98px) {
  .cart .cart-item {
    gap: 15px;
  }
}
.cart .cart-item:first-of-type {
  padding-top: 0;
}
.cart .cart-item:last-of-type {
  padding-bottom: 0;
  border-bottom: none;
}
.cart .cart-item .img-wrapper {
  overflow: hidden;
  width: 98px;
  height: 122px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart .cart-item .img-wrapper img, .cart .cart-item .img-wrapper svg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cart .cart-item .info-wrapper {
  isolation: isolate;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cart .cart-item .info-wrapper .remove-item {
  position: absolute;
  inset: 0 0 auto auto;
  cursor: pointer;
  width: 22px;
  height: 22px;
}
.cart .cart-item .info-wrapper .remove-item svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.cart .cart-item .info-wrapper .top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-flow: column nowrap;
  gap: 6px;
}
.cart .cart-item .info-wrapper .top .item-title,
.cart .cart-item .info-wrapper .top .item-variant-title {
  width: 100%;
}
.cart .cart-item .info-wrapper .top a.item-title {
  margin: 0px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: capitalize;
  padding-right: 25px;
}
.cart .cart-item .info-wrapper .top .item-variant-title {
  font-size: 16px;
  font-weight: normal;
  line-height: 1.2;
  text-align: left;
}
.cart .cart-item .info-wrapper ul.item-properties {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cart .cart-item .info-wrapper ul.item-properties .item-property {
  padding: 3px 0;
  font-size: 12px;
  text-transform: capitalize;
}
.cart .cart-item .info-wrapper .mid {
  font-size: 14px;
}
.cart .cart-item .info-wrapper .bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 6px;
}
.cart .cart-item .info-wrapper .bottom .price-wrapper .item-sale-price {
  text-decoration: line-through;
}
.cart .cart-item .info-wrapper .bottom .price-wrapper .item-sale-price,
.cart .cart-item .info-wrapper .bottom .price-wrapper .item-final-price {
  font-size: 14px;
}

.cart-item .quantity-wrapper,
.side-cart-item .quantity-wrapper {
  display: flex;
}
.cart-item .quantity-wrapper > *,
.side-cart-item .quantity-wrapper > * {
  width: 25px;
  height: 25px;
  text-align: center;
  border: solid 1px #d3d3d3;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cart-item .quantity-wrapper .plus,
.cart-item .quantity-wrapper .minus,
.side-cart-item .quantity-wrapper .plus,
.side-cart-item .quantity-wrapper .minus {
  cursor: pointer;
  transition: 0.3s ease;
}
.cart-item .quantity-wrapper .plus svg,
.cart-item .quantity-wrapper .minus svg,
.side-cart-item .quantity-wrapper .plus svg,
.side-cart-item .quantity-wrapper .minus svg {
  width: 12px;
  height: 12px;
  -o-object-fit: contain;
     object-fit: contain;
  color: currentColor;
  pointer-events: none;
}
.cart-item .quantity-wrapper .plus:hover,
.cart-item .quantity-wrapper .minus:hover,
.side-cart-item .quantity-wrapper .plus:hover,
.side-cart-item .quantity-wrapper .minus:hover {
  background: #d3d3d3;
}
.cart-item .quantity-wrapper .plus[data-pending=true],
.cart-item .quantity-wrapper .minus[data-pending=true],
.side-cart-item .quantity-wrapper .plus[data-pending=true],
.side-cart-item .quantity-wrapper .minus[data-pending=true] {
  cursor: not-allowed;
}
.cart-item .quantity-wrapper .quantity,
.side-cart-item .quantity-wrapper .quantity {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-left: none;
  border-right: none;
}
.cart-item .quantity-wrapper .quantity span,
.side-cart-item .quantity-wrapper .quantity span {
  font-size: 12px;
}
.cart-item .quantity-wrapper .plus,
.cart-item .quantity-wrapper .minus,
.cart-item .quantity-wrapper .quantity,
.side-cart-item .quantity-wrapper .plus,
.side-cart-item .quantity-wrapper .minus,
.side-cart-item .quantity-wrapper .quantity {
  background: var(--accent-1-color);
  border-color: var(--accent-1-color);
}
.cart-item .oos,
.side-cart-item .oos {
  font-size: 12px;
  width: 50%;
  margin: 0px;
  text-align: right;
}
.cart-item .oos span,
.side-cart-item .oos span {
  font-size: 12px;
  text-decoration: underline;
  cursor: pointer;
}

.quantity-wrapper .quantity {
  min-width: 28px;
  min-height: 30px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
}
.quantity-wrapper .minus, .quantity-wrapper .plus {
  min-width: 30px;
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 0;
  color: #000;
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.collection-grid-tile {
  padding-top: 100%;
  height: 0;
  display: block;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.collection-grid-tile.hover:hover img {
  scale: 1.05;
}
.collection-grid-tile.hover img {
  scale: 1;
  transition: scale 3.5s ease-in-out;
}
.collection-grid-tile img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.collection-grid-tile .content-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px;
  pointer-events: none;
  position: absolute;
  bottom: 0;
  left: 0;
}
.collection-grid-tile .content-wrapper .title {
  color: var(--text-primary-color);
  font-size: 18px;
  margin: 0;
}
.collection-grid-tile .content-wrapper .icon {
  width: 15px;
  height: 15px;
}
.collection-grid-tile .content-wrapper .icon svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  rotate: -90deg;
}

.variant-prices-container .variant-price-wrapper span.product-sale-price {
  margin-right: 5px;
  font-size: 20px;
}
.variant-prices-container .variant-price-wrapper span.product-sale-price.strikethrough {
  text-decoration: line-through;
}
.variant-prices-container .variant-price-wrapper .product-price {
  font-weight: bold;
  font-size: 20px;
}
.variant-prices-container .variant-price-wrapper.hidden {
  display: none;
}

.accordion-faqs-tag-based-container {
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 40px;
}
@media screen and (max-width: 768px) {
  .accordion-faqs-tag-based-container {
    padding: 40px 0px;
    grid-template-columns: 1fr;
  }
}
.accordion-faqs-tag-based-container .accordion-sub-container .faq-sub-title {
  text-align: left;
  font-weight: bold;
  font-size: 23px;
  line-height: 28px;
  letter-spacing: 0px;
  color: #484848;
  margin-bottom: 21px;
  font-family: var(--font-body);
}
@media screen and (max-width: 768px) {
  .accordion-faqs-tag-based-container .accordion-sub-container .faq-sub-title {
    text-align: center;
  }
}
.accordion-faqs-tag-based-container .accordion-sub-container .accordion-wrapper:last-of-type .panel-active {
  border: solid 1px #F4F4F4;
}

.accordion-wrapper {
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
}
.accordion-wrapper .accordion {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 10px;
  width: 100%;
  background-color: #F4F4F4;
  color: #212121;
  font-size: 14px;
  line-height: 17px;
  padding: 15px 22px;
  text-align: left;
  outline: none;
  border: 3px;
  border-radius: 0;
  cursor: pointer;
  transition: 0.2s;
  transition: max-height 0.3s ease-out;
}
.accordion-wrapper .accordion.active .custom-arrow svg {
  transform: scaleY(-1);
}
.accordion-wrapper .accordion .custom-arrow svg {
  width: 10px;
  height: 10px;
  transform: scaleY(1);
}
.accordion-wrapper .accordion .custom-arrow svg path {
  fill: var(--text-primary-color);
}
.accordion-wrapper .panel {
  padding: 0 22px;
  background-color: #fcfcfc;
  max-height: 0px;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.accordion-wrapper .panel.panel-active.panel-open-default {
  max-height: 100%;
}
.accordion-wrapper .panel p {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 22px;
  font-size: 14px;
  line-height: 17px;
  color: #212121;
  font-family: var(--font-body);
}

/*

<button class="accordion">Section 1</button>
<div class="panel">
  <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
</div>

*/
button.accordion {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: var(--text-primary-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  border-bottom: 1px solid #707070;
  cursor: pointer;
  padding: 20px 0;
  width: 100%;
  outline: none;
  font-size: 15px;
  transition: 0.3s all;
}
button.accordion > div {
  display: flex;
  align-items: center;
  pointer-events: none;
}
button.accordion .chevron {
  width: 16px;
  height: 16px;
  pointer-events: none;
}
button.accordion .chevron svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s;
}
button.accordion.active .chevron svg {
  transform: rotateX(180deg);
}

.panel {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.panel .content {
  padding: 20px 0 10px;
  font-size: 14px;
}
.panel .content table {
  width: 100% !important;
}

.article-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.article-card:hover img {
  transform: scale(1.05);
}
.article-card .article-card-image {
  height: 200px;
  overflow: hidden;
}
.article-card .article-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s;
}
.article-card .article-card-title {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-card .article-card-excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-card .article-card-link {
  text-align: center;
}
.article-card .article-card-tags {
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: absolute;
  top: 0;
  left: 0;
}
.article-card .article-card-tags .article-card-tag {
  padding: 7px 20px;
  background-color: var(--primary-color);
  color: var(--text-alternate-color);
  text-transform: capitalize;
  text-align: center;
}

.label-input {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.label-input label {
  font-weight: 700;
}

.label-input input {
  border: none;
  font-size: 14px;
  border-radius: 21px;
  padding: 10px 11px 10px 17px;
}

.errormessage {
  visibility: hidden;
  color: red;
  padding: 5px 10px;
}

[aria-invalid=true] {
  outline: 2px solid red;
}

[aria-invalid=true] ~ .errormessage {
  visibility: visible;
}

.reactivate-form--modal-container .modal {
  width: 94%;
  max-width: 500px;
  background: #f0f0f0;
}
.reactivate-form--modal-container .modal form {
  margin: 0;
  max-width: 700px;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}
.reactivate-form--modal-container .modal form button {
  margin: 15px auto 0;
}
@media only screen and (max-width: 767.98px) {
  .reactivate-form--modal-container .modal form {
    max-width: unset;
  }
}
.reactivate-form--modal-container .modal form #success-message:empty,
.reactivate-form--modal-container .modal form #success-message:not(.active),
.reactivate-form--modal-container .modal form #error-message:empty,
.reactivate-form--modal-container .modal form #errors-message:not(.active) {
  display: none;
}
.reactivate-form--modal-container .modal form #success-message.active {
  padding: 10px 0;
}
.reactivate-form--modal-container .modal form #error-message.active {
  color: red;
  padding: 10px 0;
}

.modal-container {
  z-index: 999999;
  position: fixed;
  overflow: hidden;
  inset: 0;
  padding: 80px 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(112, 112, 112, 0.73);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  visibility: hidden;
  pointer-events: none;
}
@media only screen and (max-width: 767.98px) {
  .modal-container {
    padding: 50px 1.5rem 70px;
  }
}
.modal-container.active {
  pointer-events: all;
  visibility: visible;
}
.modal-container .modal {
  position: relative;
  max-height: 65vh;
  width: 100%;
  padding: 60px 10px 60px 50px;
  border-radius: 5px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  translate: 0 100px;
  transition: all 0.15s linear 0s;
}
@media only screen and (max-width: 767.98px) {
  .modal-container .modal {
    padding: 40px 10px 40px 35px;
  }
}
.modal-container .modal .modal-content {
  overflow-x: hidden;
  overflow-y: scroll;
  max-height: calc(65vh - 90px);
  padding-right: 40px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-flow: column;
  text-align: center;
}
@media only screen and (max-width: 767.98px) {
  .modal-container .modal .modal-content {
    padding-right: 25px;
  }
}
.modal-container .modal .modal-content::-webkit-scrollbar {
  margin-left: 10px;
  width: 8px;
  background: transparent;
}
.modal-container .modal .modal-content::-webkit-scrollbar-track {
  background-color: #fff;
}
.modal-container .modal .modal-content::-webkit-scrollbar-thumb {
  background-color: var(--accent-1-color);
}
.modal-container .modal .close-button {
  cursor: pointer;
  display: inline-block;
  position: absolute;
  width: 55px;
  height: 55px;
  padding: 10px;
  border-radius: 50%;
  background: white;
  translate: -50% 50%;
  inset: auto auto 0 50%;
  transition: all 150ms ease-in-out;
}
.modal-container .modal .close-button:hover {
  rotate: 90deg;
}
.modal-container .modal .close-button svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  pointer-events: none;
}
.modal-container .modal.slide-in-active {
  opacity: 1;
  translate: 0;
  transition: all 0.3s ease 0.3s;
}

/*
.modal-container {
    z-index: 999999;
    position: fixed;
    inset: 0;
    width: 100vw;
    max-width: 100%;
    height: 100vh;
    max-height: 100%;
    display: none;
    background-color: rgba(0, 0, 0, 0.8);
    &.active {
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .modal {
      width: auto;
      padding: 60px 50px;
      border-radius: 5px;
      max-width: 90%;
      max-height: 94%;
      background: white;
      position: relative;
      overflow: auto;
      text-align: center;

      @include to-xs {
        padding: 1.5rem;
      }

      &::-webkit-scrollbar {
        margin-left: 10px;
        width: 8px;
        background: transparent;
      }
      &::-webkit-scrollbar-track { background-color: #fff; }
      &::-webkit-scrollbar-thumb { background-color: var(--accent-1-color); }


      .close-button {
        display: inline-block;
        position: absolute;

        width: 50px; 
        height: 50px;
        padding: 15px;
        border-radius: 50%;
        background: white; 

        translate: -50% 50%;
        inset: auto auto 0 50%;
        background-color: transparent;
        padding: 0;
        transition: all 150ms ease-in-out;
        &:hover {
          rotate: 90deg;
        }
      }

      .icon.icon-close {
        width: 100%;
        height: 100%;
        pointer-events: none;
        path {
          fill: var( --primary-text-color);
        }
      }

      .slide-in-enter {
        transition: all 300ms ease;
        margin-top: -62px;
        opacity: 0;
        &.slide-in-active {
          margin-top: 0;
          opacity: 1;
        }
      }

      .modal-title {
        font-weight: bold;
        font-size: var(--heading-lg);
        line-height: 35px;
      }

      .modal-subtitle {
        margin-top: 17px;
      }

      .button-container{
        display: flex;
      }
    }

    &.basic-confirm {

      text-align: center;

      .modal-header {
        max-width: 270px;
        margin: auto;
      }
      .modal-body{
        display: flex;
        gap: 10px;
        padding-top: 32px;

      button {
        width: 100%;
      }
    }
  }
}
*/
button[data-modal-trigger=example-fab] {
  position: fixed;
  left: 20px;
  bottom: 50px;
  border-radius: 50%;
  padding: 20px;
  z-index: 101;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
  background-color: var(--primary-color);
}
button[data-modal-trigger=example-fab] svg {
  width: 30px;
  height: 30px;
  fill: white;
  pointer-events: none;
}

[data-modal=delete-profile] .modal-content {
  max-width: 280px;
  text-align: center;
}
[data-modal=delete-profile] .button-container {
  display: flex;
  gap: 20px;
  justify-content: center;
}
@media only screen and (max-width: 767.98px) {
  [data-modal=delete-profile] .button-container {
    flex-wrap: wrap;
  }
}
[data-modal=delete-profile] .button-container button {
  width: 100%;
}

.modal-container.delete-address--modal-container .modal-content {
  padding-right: 0;
}

.account-form-page {
  display: flex;
  align-items: center;
  justify-content: center;
}
.account-form-page, .account-form-page * {
  box-sizing: border-box;
}
.account-form-page .account-form-wrapper {
  width: 100%;
  max-width: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
  gap: 20px;
}

.account-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 25px 15px;
}
.account-form .required-msg {
  width: 100%;
  height: 0;
  font-size: 14px;
  text-align: right;
  translate: 0 25px;
  margin-top: -25px;
}
.account-form .form-buttons {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 15px 25px;
}
.account-form .form-buttons > * {
  flex: 1;
}
@media only screen and (max-width: 575.98px) {
  .account-form .form-buttons {
    flex-direction: column;
  }
  .account-form .form-buttons > * {
    width: 100%;
  }
}

.form-errors {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
  grid-column: 1/-1;
  left: 0;
  padding: 5px 10px;
  margin: 10px auto;
  color: white;
  background: #cb3840;
  border: solid 2px #b3333a;
  border-radius: 5px;
}
@media only screen and (max-width: 575.98px) {
  .form-errors {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}
.form-errors .error-icon {
  width: 20px;
  min-width: 20px;
  height: 20px;
  min-height: 20px;
  color: #b3333a;
}
.form-errors .form__message {
  color: white;
  margin: -2px 5px 0 10px;
}
.form-errors .form__message strong {
  font-weight: bold;
}
.form-errors ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.form-errors ul li {
  color: white;
}
.form-errors ul li a {
  color: inherit;
  text-decoration: underline;
}

.form-success {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
  grid-column: 1/-1;
  left: 0;
  padding: 5px 10px;
  margin: 10px auto;
  color: white;
  background: #428445;
  border: solid 2px #346937;
  border-radius: 5px;
}
@media only screen and (max-width: 575.98px) {
  .form-success {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}
.form-success .success-icon {
  width: 20px;
  min-width: 20px;
  height: 20px;
  min-height: 20px;
}

.shopify-challenge__container {
  padding: var(--spacing-sections-desktop) 0 !important;
  margin: var(--spacing-sections-desktop) auto !important;
}
.shopify-challenge__container,
.shopify-challenge__container form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.shopify-challenge__container form {
  padding: 0 0 var(--spacing-sections-desktop) !important;
}
.shopify-challenge__container form .btn {
  padding: var(--button-v-padding) var(--button-h-padding);
  background-color: var(--button-1-color);
  color: var(--button-1-text-color);
  border-radius: var(--button-1-radius);
  transition: var(--button-transition);
  font-size: var(--button-font-size);
  font-weight: bold;
  display: block;
  width: -moz-max-content;
  width: max-content;
  height: -moz-max-content;
  height: max-content;
  cursor: pointer;
  border: solid 2px var(--button-1-border-color);
}
.shopify-challenge__container form .btn i,
.shopify-challenge__container form .btn svg,
.shopify-challenge__container form .btn i svg,
.shopify-challenge__container form .btn i svg path,
.shopify-challenge__container form .btn svg path {
  fill: var(--button-1-text-color);
}
.shopify-challenge__container form .btn:hover {
  background-color: var(--button-1-hover-color);
  color: var(--button-1-hover-text-color);
  border-radius: var(--button-1-hover-radius);
  border: solid 2px var(--button-1-hover-border-color);
}
.shopify-challenge__container form .btn:hover i,
.shopify-challenge__container form .btn:hover svg,
.shopify-challenge__container form .btn:hover i svg,
.shopify-challenge__container form .btn:hover i svg path,
.shopify-challenge__container form .btn:hover svg path {
  fill: var(--button-1-hover-text-color);
}

.form-field {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  color: var(--text-primary-color);
}
.form-field label,
.form-field input {
  font-size: 14px;
}
.form-field label {
  font-weight: bold;
  color: var(--text-primary-color);
}
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  padding: 10px 10px 8px 15px;
  border: var(--accent-1-color) solid 1px;
  border-radius: 2px;
  background: white;
  color: var(--text-alternate-color);
}
.form-field input input, .form-field textarea input, .form-field select input {
  height: 36px;
}
.form-field input textarea, .form-field textarea textarea, .form-field select textarea {
  height: 100px;
}
.form-field input:-webkit-autofill {
  background: transparent;
  color: var(--text-alternate-color);
}
.form-field .form-checkbox {
  position: relative;
  display: block;
  padding-left: 30px;
}
.form-field .form-checkbox .checkbox {
  width: 20px;
  height: 20px;
  border-radius: 2px;
  padding: 2.5px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0 auto auto 0;
  background: white;
  border: solid 1px var(--text-primary-color);
  transition: background 0.1s ease-in;
}
.form-field .form-checkbox .checkbox .form-checkbox-icon {
  opacity: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  color: white;
  transition: opacity 0.1s ease-in;
}
.form-field .form-checkbox .checkbox-label {
  margin: 0;
  text-align: left;
  font-size: 13px;
  font-weight: normal;
}
.form-field .form-checkbox input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: 0;
  opacity: 0;
  position: absolute;
  inset: 25px auto auto 10px;
}
.form-field .form-checkbox input:checked + .checkbox {
  background: var(--text-primary-color);
}
.form-field .form-checkbox input:checked + .checkbox .form-checkbox-icon {
  opacity: 1;
}
.form-field .form-select {
  width: 100%;
  position: relative;
  isolation: isolate;
}
.form-field .form-select select {
  z-index: -1;
}
.form-field .form-select svg {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
  pointer-events: none;
  z-index: 1;
  position: absolute;
  inset: 50% 12px auto auto;
  translate: 0 -50%;
}
.form-field .form-select svg, .form-field .form-select svg path {
  fill: var(--text-primary-color);
}

.market-language-select--modal-container .modal {
  overflow: visible;
}

localization-form.dropdown-selector {
  position: relative;
}
localization-form.dropdown-selector button {
  display: flex;
  width: -moz-max-content;
  width: max-content;
}
localization-form.dropdown-selector button img {
  width: 26px;
}
localization-form.dropdown-selector ul {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: white;
  flex-direction: column;
  margin: 0;
  list-style: none;
  padding: 14px;
  width: -moz-max-content;
  width: max-content;
  z-index: 9999;
  display: flex;
  max-height: 294px;
  overflow: hidden auto;
  border-radius: 0 0 4px 4px;
}
localization-form.dropdown-selector ul::-webkit-scrollbar {
  width: 8px;
  border-radius: 0 4px 4px 0;
}
localization-form.dropdown-selector ul::-webkit-scrollbar-track {
  width: 8px;
  background-color: #eee;
  border-radius: 0 4px 4px 0;
}
localization-form.dropdown-selector ul::-webkit-scrollbar-thumb {
  width: 8px;
  background: #000;
  border-radius: 3px;
}
@media only screen and (max-width: 767.98px) {
  localization-form.dropdown-selector ul {
    left: 50%;
    transform: translateX(-50%);
  }
}
localization-form.dropdown-selector ul[hidden] {
  display: none;
}
localization-form.dropdown-selector ul li {
  margin: 4px 0;
  padding: 4px 6px;
  border-radius: 4px;
  transition: 0.3s all;
}
localization-form.dropdown-selector ul li:hover {
  background-color: #f5f5f5;
}
localization-form.dropdown-selector ul li a {
  display: flex;
  gap: 10px;
  align-items: center;
}
localization-form.modal-selector {
  margin-top: 15px;
  display: block;
  position: relative;
}
localization-form.modal-selector button {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  align-items: center;
  padding: 4px 15px;
  border-radius: 15px;
  background-color: var(--primary-color);
  color: var(--text-alternate-color);
}
localization-form.modal-selector button img {
  width: 30px;
}
localization-form.modal-selector button svg {
  width: 24px;
  fill: var(--text-alternate-color);
}
localization-form.modal-selector ul {
  position: absolute;
  top: 0;
  width: -moz-max-content;
  width: max-content;
  min-width: 100%;
  left: 0;
  background-color: white;
  border: 2px solid var(--primary-color);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  z-index: 9999;
  margin: 0;
  padding: 14px;
  list-style: none;
}
localization-form.modal-selector ul[hidden] {
  display: none;
}
localization-form.modal-selector ul li {
  overflow: hidden;
  margin: 4px 0;
  padding: 4px 6px;
  border-radius: 4px;
  transition: 0.3s all;
}
localization-form.modal-selector ul li:hover {
  background-color: #f5f5f5;
}
localization-form.modal-selector ul li a {
  display: flex;
  gap: 10px;
  align-items: center;
}

.pdp-sold-out-form {
  padding-top: 30px;
  padding-bottom: 55px;
}
.pdp-sold-out-form__wrapper {
  width: 100%;
  padding: 25px 30px;
  background: var(--accent-1-color);
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  gap: 30px 40px;
}
@media only screen and (max-width: 1024.98px) {
  .pdp-sold-out-form__wrapper {
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
}
@media only screen and (max-width: 575.98px) {
  .pdp-sold-out-form__wrapper {
    padding: 17.5px 17.5px 20px;
  }
}
.pdp-sold-out-form__wrapper::after {
  content: "";
  order: 2;
  width: 1px;
  height: auto;
  display: flex;
  background: var(--text-primary-color);
  opacity: 0.2;
}
@media only screen and (max-width: 1024.98px) {
  .pdp-sold-out-form__wrapper::after {
    width: 100%;
    height: 1px;
  }
}
.pdp-sold-out-form__product-card {
  flex: 1;
  order: 1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 30px;
}
@media only screen and (max-width: 1024.98px) {
  .pdp-sold-out-form__product-card {
    width: 100%;
    align-items: center;
    justify-content: center;
  }
}
@media only screen and (max-width: 575.98px) {
  .pdp-sold-out-form__product-card {
    flex-direction: column;
  }
}
.pdp-sold-out-form__product-card .product-image {
  width: 104px;
  min-width: 104px;
  height: 104px;
  aspect-ratio: 1;
  overflow: hidden;
  background: white;
}
@media only screen and (max-width: 575.98px) {
  .pdp-sold-out-form__product-card .product-image {
    width: 100%;
    min-width: 100%;
    height: unset;
  }
}
.pdp-sold-out-form__product-card .product-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.pdp-sold-out-form__product-card .product-details {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}
.pdp-sold-out-form__product-card .product-details .product-title {
  font-size: 16px;
}
.pdp-sold-out-form__product-card .product-details .bis-text {
  font-size: 24px;
}
.pdp-sold-out-form__product-card .product-details .view-details {
  cursor: pointer;
  font-size: 14px;
  text-decoration: underline;
}
@media only screen and (max-width: 575.98px) {
  .pdp-sold-out-form__product-card .product-details .product-title,
  .pdp-sold-out-form__product-card .product-details .bis-text,
  .pdp-sold-out-form__product-card .product-details .view-details {
    width: 100%;
    text-align: center;
  }
}
.pdp-sold-out-form__form {
  flex: 1;
  order: 3;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 15px;
}
@media only screen and (max-width: 1024.98px) {
  .pdp-sold-out-form__form {
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
.pdp-sold-out-form__form .heading {
  font-size: 18px;
}
.pdp-sold-out-form__form form.notify-form {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  gap: 0;
}
@media only screen and (max-width: 575.98px) {
  .pdp-sold-out-form__form form.notify-form {
    align-items: center;
    flex-direction: column;
    gap: 20px;
  }
}
.pdp-sold-out-form__form form.notify-form .form-field {
  flex: 1;
  justify-content: center;
}
@media only screen and (max-width: 575.98px) {
  .pdp-sold-out-form__form form.notify-form .form-field {
    width: 100%;
  }
}
.pdp-sold-out-form__form form.notify-form .form-field input {
  height: 48px;
  color: var(--text-primary-color);
  border-radius: 0;
  border: solid 1px #fff;
}
.pdp-sold-out-form__form form.notify-form button {
  height: 48px;
  white-space: nowrap;
}
@media only screen and (max-width: 575.98px) {
  .pdp-sold-out-form__form form.notify-form button {
    width: 100%;
  }
}

#cookieNotice-v3 {
  isolation: isolate;
  z-index: 999997;
}
#cookieNotice-v3 #cookieNoticeModal {
  z-index: 2;
  padding: 1rem;
  max-width: 998px;
  box-sizing: border-box;
  position: fixed;
  inset: 50% auto auto 50%;
  translate: -50% -50%;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.25);
  color: var(--text-primary-color);
  background-color: var(--secondary-color);
  z-index: 1;
  width: 90vw;
  opacity: 0%;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  max-height: 70vh;
  overflow-y: auto;
}
@media only screen and (min-width: 768px) {
  #cookieNotice-v3 #cookieNoticeModal {
    width: 75vw;
    min-width: 750px;
  }
}
@media only screen and (min-width: 992px) {
  #cookieNotice-v3 #cookieNoticeModal {
    padding: 2rem;
    min-width: 800px;
  }
}
@media only screen and (min-width: 1200px) {
  #cookieNotice-v3 #cookieNoticeModal {
    width: 55vw;
    padding: 3rem;
  }
}
@media only screen and (min-width: 1399.98px) {
  #cookieNotice-v3 #cookieNoticeModal {
    width: 45vw;
  }
}
#cookieNotice-v3 #cookieNoticeModal .title-wrap p,
#cookieNotice-v3 #cookieNoticeModal .msg-wrap p {
  margin: 10px 0 20px;
}
#cookieNotice-v3 #cookieNoticeModal .title-wrap a:hover,
#cookieNotice-v3 #cookieNoticeModal .msg-wrap a:hover {
  text-decoration: underline;
}
#cookieNotice-v3 #cookieNoticeModal form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media only screen and (min-width: 992px) {
  #cookieNotice-v3 #cookieNoticeModal form {
    gap: 2rem;
  }
}
#cookieNotice-v3 #cookieNoticeModal form input[type=checkbox] {
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 50px;
  height: 25px;
  max-height: 25px;
  background: #ccc;
  border-radius: 50px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: 0.4s;
  padding: 0 !important;
}
#cookieNotice-v3 #cookieNoticeModal form input[type=checkbox]:not([name=necessary]):hover::after {
  background: rgb(220, 220, 220);
}
#cookieNotice-v3 #cookieNoticeModal form input[type=checkbox]:checked {
  background: var(--button-2-color);
}
#cookieNotice-v3 #cookieNoticeModal form input[type=checkbox]::after {
  position: absolute;
  content: "";
  width: 22px;
  height: 22px;
  top: 50%;
  left: 3%;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  translate: 0 -50%;
  transition: 0.4s;
}
#cookieNotice-v3 #cookieNoticeModal form input[type=checkbox]:checked::after {
  left: 53%;
}
#cookieNotice-v3 #cookieNoticeModal .flex-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 1rem !important;
  box-sizing: border-box;
  flex-basis: calc(50% - 0.5rem);
  color: var(--text-primary-color);
  background-color: #FFFFFF;
}
@media only screen and (max-width: 575.98px) {
  #cookieNotice-v3 #cookieNoticeModal .flex-wrap {
    width: calc(50% - 1rem);
  }
}
@media only screen and (max-width: 260px) {
  #cookieNotice-v3 #cookieNoticeModal .flex-wrap {
    width: 100%;
    flex-basis: 100%;
  }
}
#cookieNotice-v3 #cookieNoticeModal .flex-wrap label {
  font-weight: bold;
  display: block;
  margin-bottom: 1rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
}
#cookieNotice-v3 #cookieNoticeModal .form-row,
#cookieNotice-v3 #cookieNoticeModal .button-row {
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (min-width: 768px) {
  #cookieNotice-v3 #cookieNoticeModal .form-row,
  #cookieNotice-v3 #cookieNoticeModal .button-row {
    flex-wrap: nowrap;
  }
}
#cookieNotice-v3 #cookieNoticeModal .form-row {
  gap: 1rem;
}
@media only screen and (min-width: 992px) {
  #cookieNotice-v3 #cookieNoticeModal .form-row {
    gap: 2rem;
  }
}
#cookieNotice-v3 #cookieNoticeModal .button-row {
  gap: 1rem;
}
@media only screen and (min-width: 992px) {
  #cookieNotice-v3 #cookieNoticeModal .button-row {
    gap: 2rem;
  }
}
#cookieNotice-v3 #cookieNoticeModal .button-row button {
  flex-basis: calc(50% - 0.5rem);
  box-sizing: border-box;
}
@media only screen and (min-width: 768px) {
  #cookieNotice-v3 #cookieNoticeModal .button-row button {
    flex-basis: 100%;
  }
}
@media only screen and (max-width: 575.98px) {
  #cookieNotice-v3 #cookieNoticeModal .button-row button {
    flex: 1;
    white-space: nowrap;
  }
}
#cookieNotice-v3 #cookieNoticeModal #necessaryInput .check-box {
  opacity: 50%;
}
#cookieNotice-v3 #cookieNoticeModal #necessaryInput label,
#cookieNotice-v3 #cookieNoticeModal #necessaryInput input:hover {
  cursor: not-allowed;
}
#cookieNotice-v3::before {
  content: "";
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: -1;
  background: rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out 0s;
  opacity: 0;
  pointer-events: none;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  inset: 50% auto auto 50%;
  translate: -50% -50%;
}
#cookieNotice-v3.active {
  pointer-events: all;
}
#cookieNotice-v3.active::before,
#cookieNotice-v3.active #cookieNoticeModal {
  opacity: 1;
  pointer-events: all;
}

.dl-collection-card .img-wrap {
  position: relative;
  height: 0;
  width: 100%;
  max-height: 0;
  padding-top: 122.0394736842%;
}
.dl-collection-card .img-wrap img,
.dl-collection-card .img-wrap svg {
  position: absolute;
  inset: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.dl-collection-card h3 {
  margin-top: 10px;
  font-size: 16px;
  margin-bottom: 0;
  font-weight: 700;
  font-family: Scto Grotesk;
}
@media only screen and (max-width: 767.98px) {
  .dl-collection-card h3 {
    margin-top: 10px;
  }
}

.product-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  font-size: 12px;
  padding: 0px 1px 20px;
}
@media only screen and (min-width: 768px) {
  .product-card {
    gap: 10px;
  }
}
.product-card:hover .quickview-eye, .product-card:hover .wishlist-heart, .product-card:hover .product-badges {
  opacity: 1 !important;
}
.product-card .product-link {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-card .product-image {
  position: relative;
  aspect-ratio: 0.66/1;
  overflow: hidden;
}
.product-card .product-image:hover .image-hover {
  opacity: 1;
}
.product-card .product-image img, .product-card .product-image svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: opacity 0.3s ease;
}
.product-card .product-image img.image-hover, .product-card .product-image svg.image-hover {
  opacity: 0;
  transition: 0.5s opacity ease;
}
.product-card .product-image svg {
  width: 100%;
  height: auto;
}
.product-card .product-image svg:hover {
  fill: unset;
}
.product-card .product-image .wishlist-heart {
  opacity: 0;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 22px;
  height: 22px;
}
@media only screen and (max-width: 767.98px) {
  .product-card .product-image .wishlist-heart {
    opacity: 1 !important;
  }
}
.product-card .product-image .wishlist-heart img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  cursor: pointer;
  filter: drop-shadow(2px 4px 6px black);
}
.product-card .product-image .wishlist-heart .full {
  display: none;
}
.product-card .product-image .wishlist-heart .empty {
  display: block;
}
.product-card .product-image .wishlist-heart .active-wishlist img {
  filter: brightness(0) invert(1);
}
.product-card .product-image .wishlist-heart .active-wishlist .full {
  display: block;
}
.product-card .product-image .wishlist-heart .active-wishlist .empty {
  display: none;
}
.product-card .product-image .quickview-eye {
  opacity: 0;
  position: absolute;
  right: 10px;
  bottom: 14px;
  width: 30px;
  height: 22px;
  cursor: pointer;
  display: none;
}
@media only screen and (min-width: 768px) {
  .product-card .product-image .quickview-eye {
    display: block;
  }
}
.product-card .product-image .quickview-eye svg, .product-card .product-image .quickview-eye img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-card .product-title-reviews {
  font-size: 16px;
  text-transform: capitalize;
}
.product-card .product-title-reviews .product-title {
  font-weight: bold;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.3;
  font-size: 12px;
}
.product-card .proproduct-card-footer {
  display: flex;
  justify-content: end;
  align-items: end;
  font-size: 14px;
  margin-top: auto;
  position: relative;
}
@media only screen and (max-width: 767.98px) {
  .product-card .proproduct-card-footer {
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 4px;
  }
}
.product-card .proproduct-card-footer .available-colours {
  width: auto;
}
@media only screen and (max-width: 767.98px) {
  .product-card .proproduct-card-footer .available-colours {
    width: 100%;
    margin-bottom: 8px;
  }
}
.product-card .proproduct-card-footer .product-price {
  font-size: 12px;
  white-space: nowrap;
}
.product-card .proproduct-card-footer .product-price span {
  font-size: 12px;
}
.product-card .proproduct-card-footer .quickview-eye {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 99;
}
@media only screen and (min-width: 768px) {
  .product-card .proproduct-card-footer .quickview-eye {
    display: none;
  }
}
.product-card .proproduct-card-footer .quickview-eye svg {
  padding-left: 3px;
}

.product-badges {
  opacity: 0;
  position: absolute;
  bottom: 14px;
  left: 0;
  width: 50%;
  padding: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 5px;
}
@media only screen and (max-width: 767.98px) {
  .product-badges {
    opacity: 1 !important;
  }
}
.product-badges .product-badge {
  font-size: 14px;
  line-height: 1;
  color: white;
  padding: 6px 14.5px;
  white-space: nowrap;
  background: #313131;
  position: relative;
  overflow: hidden;
  width: -moz-max-content;
  width: max-content;
}
.product-badges .product-badge.new-arrival-badge {
  background-color: var(--accent-1-color);
}
.product-badges .product-badge.discount-percentage-badge {
  background-color: var(--accent-1-color);
}
.product-badges .product-badge.limited-edition-badge {
  background-color: var(--accent-2-color);
}
.product-badges .product-badge.bestseller-badge {
  background-color: var(--primary-color);
}
.product-badges .product-badge.low-stock-badge {
  background-color: var(--primary-color);
}
.product-badges .product-badge::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  opacity: 0.3;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%);
  animation: badge_shine 10s infinite 3s;
}
@keyframes badge_shine {
  0% {
    transform: translateX(-100%);
  }
  90% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.swatches {
  width: 100%;
  position: relative;
  z-index: 9;
}
@media only screen and (max-width: 767.98px) {
  .swatches {
    height: 18px;
    margin: 5px 0;
  }
}
.swatches::before {
  content: attr(data-text);
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 20px;
  font-size: 14px;
  inset: 50% auto auto 0;
  translate: 0 -50%;
  opacity: 1;
  transition: opacity 0.1s ease-in-out 0.1s;
}
.swatches .swatch-group {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-flow: row wrap;
  gap: 10px;
  background: #fff;
  box-sizing: border-box;
  opacity: 0;
  z-index: -1;
}
@media only screen and (max-width: 767.98px) {
  .swatches .swatch-group {
    display: none;
  }
}
.swatches .swatch {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.1s ease-in-out, outline 0.15s ease-in;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  outline: solid 1px #ddd;
  border: solid 3px #ffffff;
  background: var(--swatch-color);
}
.swatches .swatch img {
  width: 26px;
  height: 38px;
  -o-object-fit: cover;
     object-fit: cover;
}
.swatches .swatch.active {
  order: 0;
}
.swatches .swatch:hover, .swatches .swatch.active {
  outline-color: #000;
}

.product-card:hover .swatches::before {
  opacity: 0;
  transition: opacity 0.1s ease-in-out;
}
.product-card:hover .swatches .swatch {
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.1s ease-in-out 0.1s, outline 0.15s ease-in;
}
.product-card:hover .swatch-group {
  opacity: 1;
  z-index: 9;
}
@media only screen and (max-width: 767.98px) {
  .product-card:hover .swatch-group {
    display: flex;
  }
}
