@charset "UTF-8";
#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: 99999999999;
  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 ul {
  padding: 0;
  margin: 0;
}
nav.breadcrumbs ul li {
  display: inline-block;
  position: relative;
  padding: 4px;
  color: #737373;
}
nav.breadcrumbs ul li:first-of-type {
  padding-left: 0;
}
nav.breadcrumbs ul li a {
  font-size: 14px;
  text-transform: capitalize;
  color: #737373;
}
nav.breadcrumbs ul li:nth-of-type(n+2):before {
  content: "•";
  position: absolute;
  left: -5px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #737373;
}

/* Customize the label (the container) */
.custom-checkbox {
  display: block;
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  width: 100%;
  min-height: 26px;
  /* 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 p {
  font-size: 13px;
  width: 100%;
  margin: 0px 0px 0px 10px;
}
.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 1px;
  width: 1px;
}
.custom-checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 26px;
  width: 26px;
  border: 1px solid var(--text-primary-color);
  background-color: #fff;
  /* Create the checkmark/indicator (hidden when not checked) */
}
.custom-checkbox .checkmark::after {
  content: "";
  position: absolute;
  display: none;
  /* Style the checkmark/indicator */
  left: 50%;
  top: 50%;
  width: 4px;
  height: 8px;
  border: solid var(--primary-color);
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -59%) rotate(40deg);
}
.custom-checkbox:hover input ~ .checkmark {
  border-color: var(--primary-color);
}
.custom-checkbox input:checked ~ .checkmark {
  border-color: var(--primary-color);
}
.custom-checkbox input:checked ~ .checkmark:after {
  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-size: 16px;
  font-weight: 400;
  height: 36px;
  position: relative;
  background: #ffffff;
  border: none;
  outline: none;
  padding: 10px 20px 10px 45px;
  width: 100%;
}
.search-bar-qf input[type=text]::-moz-placeholder {
  font-weight: 400;
}
.search-bar-qf input[type=text]::placeholder {
  font-weight: 400;
}
.search-bar-qf .submit-group {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0 auto 0 0;
  width: 50px;
  height: 36px;
}
.search-bar-qf .submit-group label {
  width: 50px;
  height: 36px;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 5px;
}
.search-bar-qf .submit-group label svg {
  width: 21px;
  height: 21px;
}
.search-bar-qf .submit-group label svg path {
  fill: var(--text-primary-color);
}
.search-bar-qf .submit-group label input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  cursor: pointer;
  border-radius: 0;
  background: none;
  border: none;
  padding: 0;
}

.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;
}
.custom-search-qf-section .wrapper .search-bar-qf .submit-group label svg path {
  fill: #10573b;
}

.lightbox-trigger {
  padding: 12px;
}
.lightbox-trigger svg {
  width: 20px;
  max-width: 20px;
  height: 20px;
  max-height: 20px;
}
.lightbox-trigger svg path {
  fill: white;
}

.predictive-search-container {
  translate: -50% 0;
  position: absolute;
  inset: auto auto auto 50%;
  width: 100%;
  z-index: 1;
  display: flex;
  display: none;
  opacity: 0;
}
.predictive-search-container.active {
  display: flex;
  opacity: 1;
}
@media only screen and (max-width: 1299.98px) {
  .predictive-search-container.active {
    z-index: 999;
  }
}
.predictive-search-container.mobile-active {
  display: flex;
  opacity: 1;
}
@media only screen and (max-width: 1299.98px) {
  .predictive-search-container.mobile-active {
    z-index: 999;
  }
}
.predictive-search-container.mobile-active .inner.recommended-inner {
  flex-direction: column;
}
.predictive-search-container .predictive-search-modal {
  position: relative;
  margin: 0 auto;
  background: #ffffff;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
  border-radius: 0;
}
@media only screen and (min-width: 1300px) {
  .predictive-search-container .predictive-search-modal {
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
  }
}
@media only screen and (max-width: 1299.98px) {
  .predictive-search-container .predictive-search-modal {
    max-width: 100vw;
  }
}
.predictive-search-container .predictive-search-modal .inner {
  width: 100%;
  height: 100%;
  padding: 10px 20px 20px 20px;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: calc(100vh - 148px);
}
@media only screen and (min-width: 1300px) {
  .predictive-search-container .predictive-search-modal .inner {
    max-height: calc(100vh - 230px);
    padding: 40px 60px;
  }
}
.predictive-search-container .predictive-search-modal .inner.no-results {
  padding: 10px 20px 0 20px;
}
@media only screen and (min-width: 1300px) {
  .predictive-search-container .predictive-search-modal .inner.no-results {
    padding: 40px 60px 0;
  }
}
.predictive-search-container .predictive-search-modal .inner.recommended-inner.no-results {
  padding: 10px 20px 20px;
}
@media only screen and (min-width: 1300px) {
  .predictive-search-container .predictive-search-modal .inner.recommended-inner.no-results {
    padding: 20px 60px 40px;
  }
}
.predictive-search-container .predictive-search-modal .inner::-webkit-scrollbar {
  width: 4px;
}
.predictive-search-container .predictive-search-modal .inner::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.predictive-search-container .predictive-search-modal .inner::-webkit-scrollbar-thumb {
  background: #000;
}
.predictive-search-container .predictive-search-modal .inner::-webkit-scrollbar-thumb:hover {
  background: #000;
}
.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 .clear {
  position: absolute;
  padding: 0;
  cursor: pointer;
  z-index: 99;
  transition: all 0.3s;
  display: none;
  right: 100px;
  top: 15px;
  font-size: 12px;
  text-decoration: underline;
  text-transform: uppercase;
}
@media only screen and (min-width: 1300px) {
  .predictive-search-container .predictive-search-modal .clear {
    right: 110px;
  }
}
.predictive-search-container .predictive-search-modal .close {
  position: absolute;
  padding: 0;
  cursor: pointer;
  z-index: 99;
  transition: all 0.3s;
  display: block;
  right: 40px;
  top: 10px;
  width: 20px;
  height: 20px;
}
@media only screen and (max-width: 1299.98px) {
  .predictive-search-container .predictive-search-modal .close {
    display: none;
  }
}
@media only screen and (max-width: 1299.98px) {
  .predictive-search-container .predictive-search-modal .close.mobile-active {
    display: block;
  }
}
@media only screen and (min-width: 1300px) {
  .predictive-search-container .predictive-search-modal .close {
    right: 60px;
  }
}
.predictive-search-container .predictive-search-modal .close svg, .predictive-search-container .predictive-search-modal .close img {
  width: 100%;
  height: 100%;
  fill: var(--primary-color);
  margin: auto;
}
.predictive-search-container .predictive-search-modal #predictive-search-results {
  width: 100%;
}
.predictive-search-container .predictive-search-modal .predictive-search-bar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column nowrap;
  padding: 0 20px;
}
@media only screen and (min-width: 1300px) {
  .predictive-search-container .predictive-search-modal .predictive-search-bar {
    padding: 0 60px;
  }
}
.predictive-search-container .predictive-search-modal .predictive-search-bar::after {
  content: "";
  width: 100%;
  margin: 0 20px;
  border-bottom: solid 1px #E0E0E0;
  margin-top: 20px;
}
@media only screen and (max-width: 1299.98px) {
  .predictive-search-container .predictive-search-modal .predictive-search-bar::after {
    content: unset;
    display: none;
  }
}
.predictive-search-container .predictive-search-modal .predictive-search-bar form.search-bar-qf {
  margin: 0 auto 0 0;
  width: calc(100% - 50px);
}
.predictive-search-container .predictive-search-modal .predictive-search-bar form.search-bar-qf input[type=text] {
  background: #fff;
}
@media only screen and (max-width: 1299.98px) {
  .predictive-search-container .predictive-search-modal .predictive-search-bar form.search-bar-qf input[type=text] {
    height: 40px;
  }
}
.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: none;
  flex-flow: row nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 30px;
  padding-bottom: 30px;
}
@media only screen and (max-width: 1299.98px) {
  .predictive-search-container .inner.recommended-inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding-bottom: 20px;
  }
}
.predictive-search-container .inner.recommended-inner.active {
  display: flex;
}
@media only screen and (max-width: 1299.98px) {
  .predictive-search-container .inner.recommended-inner.active {
    flex-direction: column;
  }
}
.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;
}
@media only screen and (min-width: 1300px) {
  .predictive-search-container .inner.recommended-inner .search-recommendations-wrapper {
    width: calc(100% - 220px);
  }
}
@media only screen and (max-width: 1299.98px) {
  .predictive-search-container .inner.recommended-inner .search-recommendations-wrapper.slider {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 767.98px) {
  .predictive-search-container .inner.recommended-inner .search-recommendations-wrapper.slider {
    margin-left: -20px;
    width: calc(100% + 40px);
  }
}
.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-swiper {
    padding-bottom: 0;
  }
}
.predictive-search-container .inner.recommended-inner .search-recommendations-swiper a.view-all {
  display: none;
  width: 100%;
  max-width: 400px;
  margin: 20px auto 0;
  text-align: center;
  order: 1000;
  grid-column: 1/-1;
}
@media only screen and (max-width: 767.98px) {
  .predictive-search-container .inner.recommended-inner .search-recommendations-swiper a.view-all {
    display: block;
  }
}
.predictive-search-container .inner.recommended-inner .search-recommendations-grid {
  width: 100%;
  display: grid;
  gap: 20px;
  color: var(--text-primary-color);
  grid-template-columns: repeat(2, 1fr);
}
@media only screen and (min-width: 992px) {
  .predictive-search-container .inner.recommended-inner .search-recommendations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (min-width: 1300px) {
  .predictive-search-container .inner.recommended-inner .search-recommendations-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media only screen and (max-width: 1299.98px) {
  .predictive-search-container .inner.recommended-inner .recommended-links-sidebar .sidebar-heading,
  .predictive-search-container .inner.recommended-inner .search-recommendations-wrapper .sidebar-heading {
    display: none;
  }
}
.predictive-search-container .inner.recommended-inner .recommended-links-sidebar .accordion,
.predictive-search-container .inner.recommended-inner .search-recommendations-wrapper .accordion {
  padding: 14px 0;
  border-bottom: 1px solid #E0E0E0 !important;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 400;
}
@media only screen and (min-width: 1300px) {
  .predictive-search-container .inner.recommended-inner .recommended-links-sidebar .accordion,
  .predictive-search-container .inner.recommended-inner .search-recommendations-wrapper .accordion {
    display: none;
  }
}
@media only screen and (max-width: 1299.98px) {
  .predictive-search-container .inner.recommended-inner .recommended-links-sidebar .panel.active,
  .predictive-search-container .inner.recommended-inner .search-recommendations-wrapper .panel.active {
    margin-top: 10px;
  }
}
.predictive-search-container .inner.recommended-inner .recommended-links-sidebar .panel .content,
.predictive-search-container .inner.recommended-inner .search-recommendations-wrapper .panel .content {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-flow: column nowrap;
  gap: 16px;
}
.predictive-search-container .inner.recommended-inner .recommended-links-sidebar {
  min-width: 220px;
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 28px;
}
@media only screen and (max-width: 1299.98px) {
  .predictive-search-container .inner.recommended-inner .recommended-links-sidebar {
    width: 100%;
    gap: 0;
  }
}
.predictive-search-container .inner.recommended-inner .recommended-links-sidebar .sidebar-group {
  width: 100%;
}
.predictive-search-container .inner.recommended-inner .recommended-links-sidebar .sidebar-heading {
  font-family: "Neue Plak";
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 400;
  padding: 0 0 10px;
  border-bottom: 1px solid #E0E0E0;
  margin: 0 0 20px;
}
.predictive-search-container .inner.recommended-inner .recommended-links-sidebar .panel {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
}
@media only screen and (min-width: 1300px) {
  .predictive-search-container .inner.recommended-inner .recommended-links-sidebar .panel {
    max-height: 100%;
  }
}
@media only screen and (max-width: 1299.98px) {
  .predictive-search-container .inner.recommended-inner .recommended-links-sidebar .panel.active {
    margin-top: 10px;
  }
}
.predictive-search-container .inner.recommended-inner .recommended-links-sidebar .panel a:hover {
  text-decoration: underline;
}
.predictive-search-container .inner.recommended-inner .recommended-links-sidebar .accordion {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 400;
}

.quick-view-container {
  display: none;
  opacity: 0;
  position: fixed;
  inset: 0;
  height: 100%;
  height: 100vh;
  height: 100dvh;
  width: 100%;
  z-index: 99;
}
.quick-view-container:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
}
.quick-view-container.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}
.quick-view-container.active:before {
  opacity: 1;
}
.quick-view-container .quick-view-modal {
  position: relative;
  max-width: 1168px;
  background-color: white;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.07);
  padding: 0;
  max-height: 100%;
  max-height: 100vh;
  max-height: 100dvh;
  box-sizing: border-box;
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none; /* Firefox */
}
.quick-view-container .quick-view-modal::-webkit-scrollbar {
  display: none;
}
.quick-view-container .quick-view-modal .inner {
  width: 100%;
  height: 100%;
  padding: 0 20px 20px;
}
@media only screen and (min-width: 992px) {
  .quick-view-container .quick-view-modal .inner {
    padding: 20px;
  }
}
.quick-view-container .quick-view-modal .inner .page-width {
  padding: 0;
}
.quick-view-container .quick-view-modal .inner .pdp-sold-out-form,
.quick-view-container .quick-view-modal .inner .recommended-products.recommended-products-snippet {
  display: none;
}
.quick-view-container .quick-view-modal .inner #rbk-main-product {
  margin: 0 !important;
}
.quick-view-container .quick-view-modal .inner #main-product-container #main-product {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0 0 20px;
}
@media only screen and (min-width: 992px) {
  .quick-view-container .quick-view-modal .inner #main-product-container #main-product {
    flex-direction: row;
  }
}
.quick-view-container .quick-view-modal .inner #main-product-container #main-product .gallery {
  width: calc(100% + 40px);
}
@media only screen and (min-width: 992px) {
  .quick-view-container .quick-view-modal .inner #main-product-container #main-product .gallery {
    width: 50%;
  }
}
.quick-view-container .quick-view-modal .inner #main-product-container #main-product .gallery .gallery-container {
  position: relative;
  top: unset;
}
@media only screen and (min-width: 992px) {
  .quick-view-container .quick-view-modal .inner #main-product-container #main-product .gallery .gallery-container .main-desktop-gallery {
    display: none;
  }
}
@media only screen and (min-width: 992px) {
  .quick-view-container .quick-view-modal .inner #main-product-container #main-product .gallery .gallery-container .main-gallery,
  .quick-view-container .quick-view-modal .inner #main-product-container #main-product .gallery .gallery-container .thumb-gallery {
    display: block;
  }
}
@media only screen and (max-width: 991.98px) {
  .quick-view-container .quick-view-modal .inner #main-product-container #main-product .gallery .gallery-container .main-gallery .lightbox-trigger {
    bottom: 60px;
  }
}
.quick-view-container .quick-view-modal .inner #main-product-container #main-product .gallery .gallery-container .thumb-gallery {
  height: 70px;
}
@media only screen and (min-width: 992px) {
  .quick-view-container .quick-view-modal .inner #main-product-container #main-product .gallery .gallery-container .thumb-gallery {
    height: 80px;
  }
}
.quick-view-container .quick-view-modal .inner #main-product-container #main-product .gallery .gallery-container .thumb-gallery .thumb-swiper {
  height: 100%;
}
.quick-view-container .quick-view-modal .inner #main-product-container #main-product .product-blocks {
  display: none;
}
.quick-view-container .quick-view-modal .inner #main-product-container #main-product .product-information .product-usps {
  display: none;
}
@media only screen and (min-width: 992px) {
  .quick-view-container .quick-view-modal .inner #main-product-container #main-product .product-information .product-details .product-title-wrapper .product-title {
    padding-right: 35px;
  }
}
.quick-view-container .quick-view-modal .inner #main-product-container #main-product .product-form .product-full-link {
  position: relative;
  display: block;
  margin: 20px 0 0;
  z-index: 2;
}
@media only screen and (max-width: 767.98px) {
  .quick-view-container .quick-view-modal .inner #main-product-container #main-product .product-form .product-full-link {
    margin: -60px 0 20px;
    padding: 20px 0;
  }
}
.quick-view-container .quick-view-modal .inner #main-product-container #main-product .product-form .product-full-link a {
  text-decoration: underline;
  margin: 0;
  display: block;
  font-weight: 600;
  text-align: center;
}
.quick-view-container .quick-view-modal .inner #main-product-container #main-product .product-form .product-full-link a:hover {
  text-decoration: none;
}
@media only screen and (max-width: 767.98px) {
  .quick-view-container .quick-view-modal .inner #main-product-container #main-product .product-form .product-submit-wrapper [add-to-cart-label] {
    opacity: 0 !important;
  }
}
@media only screen and (max-width: 767.98px) {
  .quick-view-container .quick-view-modal .inner #main-product-container #main-product .product-form .product-submit-wrapper [add-to-cart-label].disabled {
    margin-top: 140px;
  }
}
.quick-view-container .quick-view-modal .inner #main-product-container #main-product .product-form .product-related-colours show-more {
  display: flex;
}
@media only screen and (max-width: 767.98px) {
  .quick-view-container .quick-view-modal .inner #main-product-container #main-product .product-form .pdp-variant-sold-out {
    position: fixed;
    bottom: 57px;
    background: white;
    left: 0px;
    padding: 20px 20px 10px;
    margin: 0px;
    z-index: 2;
    box-shadow: rgba(0, 0, 0, 0.1) 0px -10px 10px;
  }
}
@media only screen and (max-width: 767.98px) {
  .quick-view-container .quick-view-modal .inner #main-product-container #main-product .product-form .pdp-coming-soon-spacer {
    height: 140px;
  }
}
@media only screen and (max-width: 767.98px) {
  .quick-view-container .quick-view-modal .inner #main-product-container #main-product .product-form .pdp-coming-soon {
    position: fixed;
    bottom: 0;
    background: white;
    left: 0px;
    padding: 20px 20px 10px;
    margin: 0px;
    z-index: 2;
    box-shadow: rgba(0, 0, 0, 0.1) 0px -10px 10px;
  }
}
.quick-view-container .quick-view-modal .close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  display: flex;
  z-index: 99;
  background: white;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quick-view-container .quick-view-modal .close svg {
  width: 18px;
  height: 18px;
}

.collection-card {
  display: block;
  cursor: pointer;
  text-align: center;
}
.collection-card .collection-card-image {
  aspect-ratio: 1/1;
  margin: 0 0 20px;
}
.collection-card .collection-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.collection-card p {
  margin: 0 0 12px;
  font-size: 16px;
}
@media only screen and (min-width: 1200px) {
  .collection-card p {
    font-size: 20px;
  }
}
.collection-card span {
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media only screen and (min-width: 992px) {
  .collection-card span {
    font-size: 16px;
  }
}
.collection-card:hover {
  color: var(--text-primary-color);
}
.collection-card:hover span {
  text-decoration: none;
}

.collection-grid-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
}
.collection-grid-card .product-image {
  overflow: hidden;
  isolation: isolate;
  position: relative;
  padding-bottom: 100%;
  z-index: 2;
}
.collection-grid-card .product-image:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.5s;
}
.collection-grid-card .product-image .product-badges {
  top: 10px;
  left: 10px;
}
.collection-grid-card .product-image img, .collection-grid-card .product-image svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s ease;
}
.collection-grid-card .product-image .product-image-hover {
  opacity: 0;
}
@media only screen and (min-width: 992px) {
  .collection-grid-card .product-image:hover .product-image-hover {
    opacity: 1;
  }
}
.collection-grid-card .product-image svg {
  width: 100%;
  height: auto;
}
.collection-grid-card .product-image svg:hover {
  fill: unset;
}
.collection-grid-card .product-image .button-wishlist {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 3;
  opacity: 1;
  transition: opacity 0.35s;
}
.collection-grid-card .product-image .button-wishlist svg {
  cursor: pointer;
}
.collection-grid-card .product-title {
  display: block;
  font-weight: 400;
  overflow: hidden;
  line-height: 1.3;
  font-size: 14px;
  margin: 0 0 2px;
}
@media only screen and (min-width: 992px) {
  .collection-grid-card .product-title {
    font-size: 16px;
  }
}
.collection-grid-card .product-title-reviews-wrapper {
  display: flex;
}
.collection-grid-card .product-title-reviews-wrapper .quick-view-btn,
.collection-grid-card .product-title-reviews-wrapper .view-details-link {
  flex: none;
  width: 20px;
  height: 20px;
  padding: 0;
}
@media only screen and (min-width: 992px) {
  .collection-grid-card .product-title-reviews-wrapper .quick-view-btn,
  .collection-grid-card .product-title-reviews-wrapper .view-details-link {
    width: 32px;
    height: 32px;
    padding: 4px;
  }
}
.collection-grid-card .product-title-reviews-wrapper .quick-view-btn svg,
.collection-grid-card .product-title-reviews-wrapper .view-details-link svg {
  width: 100%;
  height: 100%;
}
.collection-grid-card .product-title-reviews-wrapper .quick-view-btn:hover svg path,
.collection-grid-card .product-title-reviews-wrapper .view-details-link:hover svg path {
  stroke: var(--text-primary-color);
}
.collection-grid-card .product-title-reviews-wrapper .quick-view-btn:hover svg path[data-name="Path 12044"],
.collection-grid-card .product-title-reviews-wrapper .view-details-link:hover svg path[data-name="Path 12044"] {
  stroke: unset;
  fill: var(--text-primary-color);
}
.collection-grid-card .product-title-reviews-wrapper .view-details-link svg path {
  fill: #737373;
}
.collection-grid-card .product-title-reviews-wrapper .view-details-link svg:hover path {
  fill: var(--text-primary-color);
}
.collection-grid-card.product-card-coming-soon .product-title-reviews-wrapper .quick-view-btn {
  opacity: 0.4;
  pointer-events: none;
}
.collection-grid-card .product-card-colours {
  display: none;
  position: relative;
  z-index: 3;
  font-size: 12px;
  border-bottom: 1px solid #E0E0E0;
  padding: 0 0 6px;
  margin-top: -20px;
  cursor: pointer;
}
.collection-grid-card .product-card-colours:hover {
  text-decoration: underline;
}
.collection-grid-card .product-card-colours.active {
  z-index: 1;
}
.collection-grid-card .product-card-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 4px;
  font-size: 14px;
  color: #737373;
}
.collection-grid-card .product-card-breadcrumbs a {
  font-size: 14px;
  color: #737373;
}
.collection-grid-card .product-card-breadcrumbs a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.collection-grid-card .product-card-breadcrumbs span {
  font-size: 14px;
  color: #737373;
}
.collection-grid-card .product-title-reviews {
  flex: 1;
}
.collection-grid-card .product-price {
  display: flex;
  gap: 12px;
  align-items: center;
}
.collection-grid-card .product-price span {
  font-size: 12px;
}
.collection-grid-card .product-link {
  display: none;
}
.collection-grid-card .product-related-colours {
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.collection-grid-card .product-related-colours .related-colour {
  width: 32px;
  height: 32px;
  background: white;
  border: 1px solid #b7b7b7;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px white;
  cursor: pointer;
}
.collection-grid-card .product-related-colours .related-colour.active {
  border-color: var(--primary-color);
}
.collection-grid-card .variant-selector-wrapper {
  position: absolute;
  z-index: 4;
  right: 5px;
  bottom: -100%;
  left: 5px;
  transition: bottom 0.35s;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.collection-grid-card .variant-selector-wrapper .selector-wrapper {
  display: none;
}
.collection-grid-card .variant-selector-wrapper .selector-wrapper:last-of-type {
  margin-bottom: 0;
}
.collection-grid-card .variant-selector-wrapper .selector-wrapper label {
  margin-right: 6px;
}
.collection-grid-card .variant-selector-wrapper .selector-wrapper select {
  border: none;
  min-width: 103px;
  background-color: #f0f0f0;
  padding: 0px 8px;
  height: 30px;
}
.collection-grid-card .variant-selector-wrapper .option-radios-wrapper {
  width: 100%;
  margin-top: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
.collection-grid-card .variant-selector-wrapper .option-radios-wrapper .radio-option {
  position: relative;
  width: 100%;
}
.collection-grid-card .variant-selector-wrapper .option-radios-wrapper .radio-option .size-guide {
  display: none;
  position: absolute;
  top: -5px;
  right: 0;
  padding: 0;
  font-size: 14px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: underline;
  color: var(--text-primary-color);
}
.collection-grid-card .variant-selector-wrapper .option-radios-wrapper .radio-option .size-guide svg {
  width: 24px;
  height: 24px;
}
.collection-grid-card .variant-selector-wrapper .option-radios-wrapper .radio-option .size-guide:hover {
  text-decoration: none;
}
.collection-grid-card .variant-selector-wrapper .option-radios-wrapper .radio-option .option-name,
.collection-grid-card .variant-selector-wrapper .option-radios-wrapper .radio-option .option-meta {
  font-size: 12px;
}
.collection-grid-card .variant-selector-wrapper .option-radios-wrapper .radio-option .option-name span,
.collection-grid-card .variant-selector-wrapper .option-radios-wrapper .radio-option .option-meta span {
  font-size: 12px;
}
.collection-grid-card .variant-selector-wrapper .option-radios-wrapper .radio-option .option-name {
  margin: 0 0 6px;
  font-weight: bold;
  color: #ffffff;
}
.collection-grid-card .variant-selector-wrapper .option-radios-wrapper .radio-option .option-meta {
  display: none;
  margin: 0 0 12px;
}
.collection-grid-card .variant-selector-wrapper .option-radios-wrapper .radio-option .variant-radios {
  display: none;
  flex-wrap: wrap;
  gap: 4px;
}
@media only screen and (min-width: 768px) {
  .collection-grid-card .variant-selector-wrapper .option-radios-wrapper .radio-option .variant-radios {
    display: flex;
  }
}
.collection-grid-card .variant-selector-wrapper .option-radios-wrapper .radio-option .variant-radios .variant-wrapper {
  position: relative;
  overflow: hidden;
  flex: 0 1 auto;
  width: calc(33.3333% - 4px);
}
@media only screen and (min-width: 768px) {
  .collection-grid-card .variant-selector-wrapper .option-radios-wrapper .radio-option .variant-radios .variant-wrapper {
    width: calc((100% - 16px) / 5);
  }
}
.collection-grid-card .variant-selector-wrapper .option-radios-wrapper .radio-option .variant-radios .variant-wrapper input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  margin: 0;
  cursor: pointer;
}
.collection-grid-card .variant-selector-wrapper .option-radios-wrapper .radio-option .variant-radios .variant-wrapper input:checked + label {
  border-color: var(--text-primary-color);
  background-color: var(--text-primary-color);
  color: white;
}
.collection-grid-card .variant-selector-wrapper .option-radios-wrapper .radio-option .variant-radios .variant-wrapper input:checked + label.sold-out:after {
  background: white;
}
.collection-grid-card .variant-selector-wrapper .option-radios-wrapper .radio-option .variant-radios .variant-wrapper input:hover:not(:checked) + label {
  border-color: var(--text-primary-color);
  background-color: var(--text-primary-color);
  color: white;
}
.collection-grid-card .variant-selector-wrapper .option-radios-wrapper .radio-option .variant-radios .variant-wrapper input:hover:not(:checked) + label.sold-out:after {
  background: white;
}
.collection-grid-card .variant-selector-wrapper .option-radios-wrapper .radio-option .variant-radios .variant-wrapper label {
  position: relative;
  background-color: var(--text-alternate-color);
  transition: all 0.3s;
  font-size: 14px;
  border: 1px solid var(--text-primary-color);
  width: 100%;
  text-align: center;
  display: flex;
  height: 30px;
  align-items: center;
  justify-content: center;
}
.collection-grid-card .variant-selector-wrapper .option-radios-wrapper .radio-option .variant-radios .variant-wrapper label.sold-out:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--text-primary-color);
  transform: rotate(-16deg);
}
.collection-grid-card .pdp-sold-out-form {
  width: 100%;
  position: absolute;
  z-index: 4;
  top: 0;
  left: 100%;
  transition: left 0.35s;
  padding: 10px;
  border: 0;
}
.collection-grid-card .pdp-sold-out-form__wrapper {
  gap: 0;
}
.collection-grid-card .pdp-sold-out-form__wrapper:after {
  display: none;
}
.collection-grid-card .pdp-sold-out-form__wrapper .heading {
  color: #ffffff;
}
.collection-grid-card .pdp-sold-out-form__wrapper .error-msg,
.collection-grid-card .pdp-sold-out-form__wrapper .success-msg {
  padding: 10px;
  box-sizing: border-box;
}
.collection-grid-card .pdp-sold-out-form__wrapper .success-msg {
  background-color: rgba(0, 150, 0, 0.65);
  border: 1px solid rgb(0, 150, 0);
  color: white;
}
.collection-grid-card .pdp-sold-out-form__wrapper .error-msg {
  background-color: rgba(139, 0, 0, 0.65);
  border: 1px solid rgb(139, 0, 0);
  color: white;
}
.collection-grid-card .pdp-sold-out-form__form {
  gap: 5px;
}
.collection-grid-card .pdp-sold-out-form.active, .collection-grid-card .pdp-sold-out-form:has(.success-msg), .collection-grid-card .pdp-sold-out-form:has(.error-msg) {
  left: 0;
}
.collection-grid-card .pdp-sold-out-form.active ~ .button-wishlist, .collection-grid-card .pdp-sold-out-form:has(.success-msg) ~ .button-wishlist, .collection-grid-card .pdp-sold-out-form:has(.error-msg) ~ .button-wishlist {
  opacity: 0;
  z-index: 2;
}
.collection-grid-card .pdp-sold-out-form:has(.success-msg) .heading,
.collection-grid-card .pdp-sold-out-form:has(.success-msg) .notify-form {
  display: none;
}
@media only screen and (min-width: 1800px) {
  .collection-grid-card.grid-size-4.is-hovered:not(.product-card-coming-soon) .product-image:before, .collection-grid-card.grid-size-5.is-hovered:not(.product-card-coming-soon) .product-image:before {
    background-color: rgba(0, 0, 0, 0.5);
  }
  .collection-grid-card.grid-size-4.is-hovered:not(.product-card-coming-soon) .variant-selector-wrapper, .collection-grid-card.grid-size-5.is-hovered:not(.product-card-coming-soon) .variant-selector-wrapper {
    bottom: 10px;
  }
  .collection-grid-card.grid-size-4.is-hovered:not(.product-card-coming-soon) .pdp-sold-out-form.active, .collection-grid-card.grid-size-5.is-hovered:not(.product-card-coming-soon) .pdp-sold-out-form.active {
    left: 0;
  }
}
.collection-grid-card.grid-size-3 .pdp-sold-out-form__form, .collection-grid-card.grid-size-4 .pdp-sold-out-form__form {
  gap: 15px;
}
.collection-grid-card.grid-size-3 .pdp-sold-out-form {
  padding: 0 10px;
}
@media only screen and (min-width: 1400px) {
  .collection-grid-card.grid-size-3 .pdp-sold-out-form {
    width: calc(100% - 30px);
    top: 15px;
    right: 15px;
  }
  .collection-grid-card.grid-size-3 .pdp-sold-out-form.active, .collection-grid-card.grid-size-3 .pdp-sold-out-form:has(.success-msg), .collection-grid-card.grid-size-3 .pdp-sold-out-form:has(.error-msg) {
    left: 15px;
  }
}
@media only screen and (min-width: 1400px) {
  .collection-grid-card.grid-size-3 .variant-selector-wrapper {
    right: 15px;
    left: 15px;
  }
}
.collection-grid-card.grid-size-3.is-hovered:not(.product-card-coming-soon) .product-image:before {
  background-color: rgba(0, 0, 0, 0.5);
}
.collection-grid-card.grid-size-3.is-hovered:not(.product-card-coming-soon) .variant-selector-wrapper {
  bottom: 15px;
}
.collection-grid-card.grid-size-3.is-hovered:not(.product-card-coming-soon) .pdp-sold-out-form.active {
  left: 15px;
}
.collection-grid-card.grid-size-5 .pdp-sold-out-form {
  padding: 0 10px;
}

.product-badges {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 50%;
  padding: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 5px;
  z-index: 2;
}
.product-badges .product-badge {
  font-size: 12px;
  color: var(--accent-2-color);
  padding: 3px 10px;
  white-space: nowrap;
  border: 1px solid var(--accent-2-color);
  position: relative;
  overflow: hidden;
  width: -moz-max-content;
  width: max-content;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  font-weight: 500;
}
.product-badges .product-badge.new-arrival-badge {
  color: white;
  background-color: var(--text-primary-color);
  border-color: var(--text-primary-color);
}
.product-badges .product-badge.discount-percentage-badge {
  color: var(--accent-2-color);
  border-color: var(--accent-2-color);
}
.product-badges .product-badge.limited-edition-badge {
  color: var(--accent-2-color);
  border-color: var(--accent-2-color);
}
.product-badges .product-badge.bestseller-badge {
  color: white;
  background-color: var(--text-primary-color);
  border-color: var(--text-primary-color);
}
.product-badges .product-badge.low-stock-badge {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.open-sidecart {
  cursor: pointer;
}

#cart-drawer-container {
  position: fixed;
  top: 0px;
  right: 0px;
  height: 100vh;
  width: 100vw;
  background: transparent;
  z-index: 99 !important;
  transition: 0.3s ease;
  pointer-events: none;
  visibility: hidden;
}
#cart-drawer-container.open {
  background: rgba(0, 0, 0, 0.4);
  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%;
  width: 536px;
  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 {
    max-width: 370px;
  }
}
@media only screen and (max-width: 575.98px) {
  #cart-drawer-container #cart-drawer {
    max-width: 100%;
  }
}
#cart-drawer-container #cart-drawer > .top {
  padding: 0;
  position: relative;
}
#cart-drawer-container #cart-drawer > .top .closeSideCart {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
#cart-drawer-container #cart-drawer > .top .closeSideCart svg {
  transition: 0.3s all;
}
#cart-drawer-container #cart-drawer > .top .closeSideCart svg:hover {
  rotate: 90deg;
}
#cart-drawer-container #cart-drawer > .top .cart-tabs {
  display: flex;
  padding: 20px;
}
#cart-drawer-container #cart-drawer > .top .cart-tabs .cart-tab {
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  cursor: pointer;
  width: auto;
  color: var(--text-primary-color);
}
#cart-drawer-container #cart-drawer > .top .cart-tabs .cart-tab span {
  font-size: 14px;
  flex-direction: column;
  align-items: center;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.025em;
  width: auto;
  color: var(--text-primary-color);
}
#cart-drawer-container #cart-drawer .free-delivery-status {
  position: relative;
  margin: 0;
  padding: 7px;
  background-color: #737373;
  color: white;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  line-height: 1;
}
@media only screen and (min-width: 992px) {
  #cart-drawer-container #cart-drawer .free-delivery-status {
    padding: 6px;
  }
}
#cart-drawer-container #cart-drawer .free-delivery-status .progress-bar {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--primary-color);
}
#cart-drawer-container #cart-drawer .free-delivery-status .free-delivery-text {
  position: relative;
  font-size: 14px;
  z-index: 2;
}
@media only screen and (min-width: 992px) {
  #cart-drawer-container #cart-drawer .free-delivery-status .free-delivery-text {
    font-size: 16px;
  }
}
#cart-drawer-container #cart-drawer .global-discount-status {
  position: relative;
  margin: 0;
  padding: 7px;
  background-color: #737373;
  color: white;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  line-height: 1;
}
@media only screen and (min-width: 992px) {
  #cart-drawer-container #cart-drawer .global-discount-status {
    padding: 6px;
  }
}
#cart-drawer-container #cart-drawer .global-discount-status .progress-bar {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--secondary-color);
}
#cart-drawer-container #cart-drawer .global-discount-status .global-discount-text {
  position: relative;
  font-size: 14px;
  z-index: 2;
}
@media only screen and (min-width: 992px) {
  #cart-drawer-container #cart-drawer .global-discount-status .global-discount-text {
    font-size: 16px;
  }
}
#cart-drawer-container #cart-drawer .inner {
  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: 20px;
  margin-right: 11px;
}
#cart-drawer-container #cart-drawer > form .cart .items-wrapper .items {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow-y: auto;
}
@media only screen and (max-width: 991.98px) {
  #cart-drawer-container #cart-drawer > form .cart .items-wrapper .items {
    padding: 0;
  }
}
#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 .item {
  display: flex;
  margin-right: 10px;
  padding: 20px 0;
  border-bottom: 1px solid #E0E0E0;
}
#cart-drawer-container #cart-drawer > form .cart .items-wrapper .items .item:first-of-type {
  padding-top: 0;
}
#cart-drawer-container #cart-drawer > form .cart .items-wrapper .items .item .img-wrapper {
  display: flex;
  justify-content: center;
  width: 120px;
  height: 120px;
}
@media only screen and (min-width: 768px) {
  #cart-drawer-container #cart-drawer > form .cart .items-wrapper .items .item .img-wrapper {
    width: 150px;
    height: 150px;
  }
}
#cart-drawer-container #cart-drawer > form .cart .items-wrapper .items .item .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#cart-drawer-container #cart-drawer > form .cart .items-wrapper .items .item .info-wrapper {
  flex: 1;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 767.98px) {
  #cart-drawer-container #cart-drawer > form .cart .items-wrapper .items .item .info-wrapper {
    padding-left: 10px;
  }
}
#cart-drawer-container #cart-drawer > form .cart .items-wrapper .items .item .info-wrapper .top > div {
  display: flex;
  justify-content: space-between;
}
#cart-drawer-container #cart-drawer > form .cart .items-wrapper .items .item .info-wrapper .top a {
  display: block;
  margin: 0 0 6px;
}
#cart-drawer-container #cart-drawer > form .cart .items-wrapper .items .item .info-wrapper .top a p {
  margin: 0;
  font-size: 14px;
}
@media only screen and (min-width: 992px) {
  #cart-drawer-container #cart-drawer > form .cart .items-wrapper .items .item .info-wrapper .top a p {
    font-size: 16px;
  }
}
#cart-drawer-container #cart-drawer > form .cart .items-wrapper .items .item .info-wrapper .top svg {
  cursor: pointer;
  width: 14px;
  height: 14px;
}
#cart-drawer-container #cart-drawer > form .cart .items-wrapper .items .item .info-wrapper ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#cart-drawer-container #cart-drawer > form .cart .items-wrapper .items .item .info-wrapper ul * {
  font-size: 12px;
}
#cart-drawer-container #cart-drawer > form .cart .items-wrapper .items .item .info-wrapper ul li {
  padding: 3px 0;
  text-transform: capitalize;
  font-size: 12px;
  color: #737373;
}
#cart-drawer-container #cart-drawer > form .cart .items-wrapper .items .item .info-wrapper .mid {
  font-size: 12px;
  color: #737373;
}
#cart-drawer-container #cart-drawer > form .cart .items-wrapper .items .item .info-wrapper .bottom {
  display: flex;
  margin-top: 10px;
  flex-direction: column-reverse;
  gap: 8px;
}
#cart-drawer-container #cart-drawer > form .cart .items-wrapper .items .item .info-wrapper .bottom .final-price {
  font-size: 14px;
}
@media only screen and (min-width: 992px) {
  #cart-drawer-container #cart-drawer > form .cart .items-wrapper .items .item .info-wrapper .bottom .final-price {
    font-size: 16px;
  }
}
#cart-drawer-container #cart-drawer > form .cart .items-wrapper .items .item .info-wrapper .bottom .final-price span {
  font-size: 14px;
}
@media only screen and (min-width: 992px) {
  #cart-drawer-container #cart-drawer > form .cart .items-wrapper .items .item .info-wrapper .bottom .final-price span {
    font-size: 16px;
  }
}
#cart-drawer-container #cart-drawer > form .cart .items-wrapper .items .item .info-wrapper .low-stock-message {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  font-size: 14px;
}
#cart-drawer-container #cart-drawer > form .cart .items-wrapper .items .item .info-wrapper .low-stock-message svg {
  width: 20px;
  height: 20px;
}
#cart-drawer-container #cart-drawer > form .cart .items-wrapper .items .item .info-wrapper .quantity-wrapper {
  display: flex;
  border: 1px solid #E0E0E0;
  width: -moz-max-content;
  width: max-content;
}
#cart-drawer-container #cart-drawer > form .cart .items-wrapper .items .item .info-wrapper .quantity-wrapper > * {
  flex: 1;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 36px;
}
#cart-drawer-container #cart-drawer > form .cart .items-wrapper .items .item .info-wrapper .quantity-wrapper .minus,
#cart-drawer-container #cart-drawer > form .cart .items-wrapper .items .item .info-wrapper .quantity-wrapper .plus {
  cursor: pointer;
}
#cart-drawer-container #cart-drawer > form .cart .items-wrapper .items .item .info-wrapper .product-message, #cart-drawer-container #cart-drawer > form .cart .items-wrapper .items .item .info-wrapper .market-message {
  color: var(--primary-color);
  font-size: 14px;
}
#cart-drawer-container #cart-drawer > form .cart .items-wrapper .empty-cart {
  padding-top: 50%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}
#cart-drawer-container #cart-drawer > form .cart .items-wrapper .empty-cart .heading-md {
  font-size: 18px;
  font-weight: 500;
}
#cart-drawer-container #cart-drawer > form .cart .cart-recommendations {
  padding: 20px 0;
  background: #FFFFFF;
  margin-bottom: -47%;
  z-index: 1;
  transition: all 0.35s ease;
}
#cart-drawer-container #cart-drawer > form .cart .cart-recommendations.active {
  margin-bottom: 0;
}
#cart-drawer-container #cart-drawer > form .cart .cart-recommendations.active .heading svg {
  transform: rotate(0);
}
#cart-drawer-container #cart-drawer > form .cart .cart-recommendations .heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 0 20px;
}
#cart-drawer-container #cart-drawer > form .cart .cart-recommendations .heading svg {
  width: 15px;
  height: 7px;
  transform: rotate(180deg);
}
#cart-drawer-container #cart-drawer > form .cart .cart-recommendations .product-card {
  gap: 4px;
}
#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-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-message--recommendation {
  font-size: 12px;
  color: var(--primary-color);
}
#cart-drawer-container #cart-drawer > form .cart .cart-recommendations .product-card .product-related-colours {
  display: none;
}
#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;
  z-index: 2;
  background: white;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 0;
}
#cart-drawer-container #cart-drawer .cart-content .buttons .additional-checkout-buttons .shopify-cleanslate div[role=button] {
  max-height: 40px;
  border-radius: 40px !important;
}
#cart-drawer-container #cart-drawer .cart-content .buttons .additional-checkout-buttons .shopify-cleanslate ul {
  flex-direction: row !important;
}
#cart-drawer-container #cart-drawer .cart-content .buttons .additional-checkout-buttons .shopify-cleanslate ul li {
  margin-top: 0 !important;
  margin-right: 4px !important;
  height: unset !important;
}
#cart-drawer-container #cart-drawer .cart-content .buttons .additional-checkout-buttons .shopify-cleanslate ul li:nth-of-type(n + 3) {
  display: none;
}
#cart-drawer-container #cart-drawer .cart-content .buttons .checkout {
  flex: 1;
  padding-top: 18px;
  padding-bottom: 18px;
  text-align: center;
  font-family: "Neue Plak Extended";
  font-size: 18px;
  line-height: 22px;
  text-transform: uppercase;
}
@media only screen and (min-width: 992px) {
  #cart-drawer-container #cart-drawer .cart-content .buttons .checkout {
    font-size: 22px;
    line-height: 26px;
    padding-top: 23px;
    padding-bottom: 23px;
  }
}
#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: 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 .continue-shopping {
  margin: 0 auto;
  grid-column: 1/-1;
  margin-top: -20px;
}
#cart-drawer-container #cart-drawer span.closeSideCart {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
#cart-drawer-container #cart-drawer span.closeSideCart svg {
  width: 14px;
  height: -moz-max-content;
  height: max-content;
  fill: black;
}
#cart-drawer-container #cart-drawer .cart-details {
  position: relative;
  z-index: 2;
}
#cart-drawer-container #cart-drawer .cart-details .product-authentic {
  background: #E0E0E0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
}
@media only screen and (min-width: 992px) {
  #cart-drawer-container #cart-drawer .cart-details .product-authentic {
    padding: 10px 20px;
  }
}
#cart-drawer-container #cart-drawer .cart-details .product-authentic p {
  margin: 0;
}
#cart-drawer-container #cart-drawer .cart-details .product-authentic .title {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.15;
  margin: 0 0 5px;
}
@media only screen and (min-width: 992px) {
  #cart-drawer-container #cart-drawer .cart-details .product-authentic .title {
    font-size: 16px;
  }
}
#cart-drawer-container #cart-drawer .cart-details .product-authentic .subtitle {
  font-size: 12px;
  line-height: 1.15;
}
@media only screen and (min-width: 992px) {
  #cart-drawer-container #cart-drawer .cart-details .product-authentic .subtitle {
    font-size: 14px;
  }
}
#cart-drawer-container #cart-drawer .cart-details .product-authentic .subtitle * {
  font-size: 12px;
  line-height: 1.15;
}
@media only screen and (min-width: 992px) {
  #cart-drawer-container #cart-drawer .cart-details .product-authentic .subtitle * {
    font-size: 14px;
  }
}
#cart-drawer-container #cart-drawer .cart-details .product-authentic img {
  display: block;
  width: 80px;
  height: auto;
}
@media only screen and (min-width: 992px) {
  #cart-drawer-container #cart-drawer .cart-details .product-authentic img {
    width: 100px;
  }
}
#cart-drawer-container #cart-drawer .cart-details .shipping-taxes {
  padding: 15px 20px;
  font-size: 14px;
  line-height: 18px;
  background: white;
}
@media only screen and (min-width: 992px) {
  #cart-drawer-container #cart-drawer .cart-details .shipping-taxes {
    font-size: 16px;
    line-height: 22px;
  }
}

.cart .cart-item {
  position: relative;
  width: 100%;
  padding: 15px 0 30px 0;
  background: #ffffff;
  gap: 15px;
  display: grid;
  grid-template-columns: 20% 1fr;
  grid-template-rows: 1fr 1fr;
  border-bottom: solid 2px #f4f4f4;
}
@media only screen and (max-width: 991.98px) {
  .cart .cart-item {
    grid-template-rows: 1fr 30px;
  }
}
.cart .cart-item:last-of-type {
  border-bottom: solid 2px transparent;
  padding: 15px 0 0 0;
}
@media only screen and (max-width: 575.98px) {
  .cart .cart-item:first-of-type {
    padding: 0 0 30px 0;
  }
}
.cart .cart-item .img-wrap {
  grid-row: 1/-1;
  grid-column: 1/2;
  width: 100%;
  height: auto;
  aspect-ratio: 90/110;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 5px;
}
@media only screen and (max-width: 991.98px) {
  .cart .cart-item .img-wrap {
    grid-row: 1/2;
    grid-row: 1/2;
  }
}
.cart .cart-item .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cart .cart-item .product-info {
  grid-column: 2/-1;
  grid-row: 1/2;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  margin: 15px auto 0 0;
}
.cart .cart-item .product-info .title {
  font-size: 16px;
  font-weight: bold;
  color: var(--text-primary-color);
  margin-right: 30px;
}
@media only screen and (max-width: 767.98px) {
  .cart .cart-item .product-info .title {
    font-size: 14px;
  }
}
.cart .cart-item .product-info .product-options {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-flow: column nowrap;
  gap: 5px;
}
.cart .cart-item .product-info .product-options .product-option {
  display: flex;
  flex-flow: row nowrap;
  align-items: baseline;
  justify-content: flex-start;
  gap: 5px;
  font-size: 12px;
  font-weight: normal;
  color: var(--text-primary-color);
}
.cart .cart-item .product-info .product-options .product-option .option-name {
  opacity: 0.5;
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
  min-width: 80px;
}
.cart .cart-item .cart-info {
  grid-column: 2/-1;
  grid-row: 2/-1;
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-left: auto;
}
@media only screen and (max-width: 991.98px) {
  .cart .cart-item .cart-info {
    grid-column: 1/-1;
    grid-row: 2/-1;
  }
}
@media only screen and (max-width: 575.98px) {
  .cart .cart-item .cart-info {
    justify-content: space-between;
    margin-left: 0;
  }
}
.cart .cart-item .cart-info .price,
.cart .cart-item .cart-info .subtotal,
.cart .cart-item .cart-info .quantity-wrapper {
  min-width: 90px;
  justify-content: center;
  text-align: center;
}
@media only screen and (max-width: 575.98px) {
  .cart .cart-item .cart-info .price,
  .cart .cart-item .cart-info .subtotal,
  .cart .cart-item .cart-info .quantity-wrapper {
    min-width: unset;
  }
}
.cart .cart-item .cart-info .price {
  opacity: 0.6;
  font-size: 14px;
}
.cart .cart-item .cart-info .subtotal {
  color: var(--accent-1-color);
}
.cart .cart-item .cart-info .price,
.cart .cart-item .cart-info .subtotal {
  font-weight: bold;
}
.cart .cart-item .quantity-wrapper {
  gap: 0;
}
.cart .cart-item .quantity-wrapper .plus,
.cart .cart-item .quantity-wrapper .minus,
.cart .cart-item .quantity-wrapper .quantity {
  border-radius: 0;
  border: solid 1px #d3d3d3;
}
.cart .cart-item .quantity-wrapper .plus.quantity,
.cart .cart-item .quantity-wrapper .minus.quantity,
.cart .cart-item .quantity-wrapper .quantity.quantity {
  border-width: 1px 0 1px 0;
}
.cart .cart-item .quantity-wrapper .plus.plus,
.cart .cart-item .quantity-wrapper .minus.plus,
.cart .cart-item .quantity-wrapper .quantity.plus {
  border-width: 1px 1px 1px 0;
  border-radius: 0 10px 10px 0;
}
.cart .cart-item .quantity-wrapper .plus.minus,
.cart .cart-item .quantity-wrapper .minus.minus,
.cart .cart-item .quantity-wrapper .quantity.minus {
  border-width: 1px 0 1px 1px;
  border-radius: 10px 0 0 10px;
}
.cart .cart-item .quantity-wrapper .plus,
.cart .cart-item .quantity-wrapper .minus,
.cart .cart-item .quantity-wrapper .quantity {
  width: 30px;
  height: 30px;
}
.cart .cart-item .remove-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 0 0;
  padding: 0;
  width: 20px;
  min-width: 20px;
  height: 20px;
  opacity: 0.3;
}
.cart .cart-item .remove-item:hover {
  opacity: 1;
}
.cart .cart-item .remove-item svg {
  cursor: pointer;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  color: var(--primary-color);
}
.cart .cart-item .remove-item svg path {
  fill: currentColor;
}

.item .quantity-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 0;
}
.item .quantity-wrapper > div {
  display: flex;
  align-items: center;
}
.item .quantity-wrapper .quantity-select {
  display: flex;
  border: 1px solid #E0E0E0;
  width: -moz-max-content;
  width: max-content;
}
.item .quantity-wrapper .quantity-select > * {
  flex: 1;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 48px;
}
.item .quantity-wrapper .quantity-select .quantity {
  font-weight: 500;
}
.item .quantity-wrapper .quantity-select .minus,
.item .quantity-wrapper .quantity-select .plus {
  cursor: pointer;
}
.item .oos {
  font-size: 12px;
  width: 50%;
  margin: 0px;
  text-align: right;
}
.item .oos span {
  font-size: 12px;
  text-decoration: underline;
  cursor: pointer;
}

.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-left: 5px;
  font-size: 16px;
}
.variant-prices-container .variant-price-wrapper span.product-sale-price.strikethrough {
  text-decoration: line-through;
  color: #000;
}
.variant-prices-container .variant-price-wrapper .product-price {
  font-size: 16px;
}
.variant-prices-container .variant-price-wrapper.hidden {
  display: none;
}
.variant-prices-container .variant-price-wrapper .discount {
  display: block;
  color: var(--accent-2-color);
  font-size: 16px;
}

.product-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
}
.product-card.collection-grid-card {
  min-width: 0;
}
.product-card .product-image {
  overflow: hidden;
  isolation: isolate;
  position: relative;
  padding-bottom: 100%;
  z-index: 2;
}
.product-card .product-image .product-card-image--secondary {
  opacity: 0;
}
@media (hover: hover) {
  .product-card .product-image:hover .product-card-image--secondary {
    opacity: 1;
  }
}
.product-card .product-image .product-badges {
  top: 10px;
  left: 10px;
}
.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: 0.3s ease;
}
.product-card .product-image .product-image-hover {
  opacity: 0;
}
@media only screen and (min-width: 992px) {
  .product-card .product-image:hover .product-image-hover {
    opacity: 1;
  }
}
.product-card .product-image svg {
  width: 100%;
  height: auto;
}
.product-card .product-image svg:hover {
  fill: unset;
}
.product-card .product-image .button-wishlist {
  position: absolute;
  right: 10px;
  top: 10px;
}
.product-card .product-image .button-wishlist svg {
  cursor: pointer;
}
.product-card .product-image .quickview-eye {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 30px;
  height: 22px;
  cursor: pointer;
}
.product-card .product-image .quickview-eye svg {
  height: 21px;
}
.product-card .product-image .quickview-eye svg path {
  stroke: #000000;
}
.product-card .product-title {
  display: block;
  font-weight: 400;
  overflow: hidden;
  line-height: 1.3;
  font-size: 14px;
  margin: 0 0 2px;
}
@media only screen and (min-width: 992px) {
  .product-card .product-title {
    font-size: 17px;
  }
}
.product-card .product-title-reviews-wrapper {
  display: flex;
}
.product-card .product-title-reviews-wrapper .quick-view-btn {
  flex: none;
  width: 20px;
  height: 20px;
  padding: 0;
}
@media only screen and (min-width: 992px) {
  .product-card .product-title-reviews-wrapper .quick-view-btn {
    width: 32px;
    height: 32px;
    padding: 4px;
  }
}
.product-card .product-title-reviews-wrapper .quick-view-btn svg {
  width: 100%;
  height: 100%;
}
.product-card .product-title-reviews-wrapper .quick-view-btn:hover svg path {
  stroke: var(--text-primary-color);
}
.product-card .product-title-reviews-wrapper .quick-view-btn:hover svg path[data-name="Path 12044"] {
  stroke: unset;
  fill: var(--text-primary-color);
}
.product-card .product-card-colours {
  display: none;
  position: relative;
  z-index: 3;
  font-size: 12px;
  border-bottom: 1px solid #E0E0E0;
  padding: 0 0 6px;
  margin-top: -20px;
  cursor: pointer;
}
.product-card .product-card-colours:hover {
  text-decoration: underline;
}
.product-card .product-card-colours.active {
  z-index: 1;
}
.product-card .product-card-colour-thumbs {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  min-width: 0;
  overflow: hidden;
}
.product-card .product-card-colour-thumbs .colour-thumb {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid transparent;
  background: #f5f5f5;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s ease, opacity 0.2s ease;
}
.product-card .product-card-colour-thumbs .colour-thumb img, .product-card .product-card-colour-thumbs .colour-thumb svg {
  position: static;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: none;
}
.product-card .product-card-colour-thumbs .colour-thumb:hover {
  border-color: #b7b7b7;
}
.product-card .product-card-colour-thumbs .colour-thumb.active {
  border-color: var(--text-primary-color);
}
.product-card .product-card-colour-thumbs .colour-thumb.loading {
  opacity: 0.5;
  pointer-events: none;
}
.product-card .product-card-colour-thumbs .colour-thumb.colour-thumb--more {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  color: var(--text-primary-color);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
.product-card .product-card-colour-thumbs .colour-thumb.colour-thumb--more:hover {
  border-color: var(--text-primary-color);
}
.product-card .product-card-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 4px;
  font-size: 14px;
  color: #737373;
}
.product-card .product-card-breadcrumbs a {
  font-size: 14px;
  color: #737373;
}
.product-card .product-card-breadcrumbs a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.product-card .product-card-breadcrumbs span {
  font-size: 14px;
  color: #737373;
}
@media only screen and (max-width: 767.98px) {
  .product-card .product-card-breadcrumbs a:not(:first-of-type),
  .product-card .product-card-breadcrumbs span {
    display: none;
  }
}
.product-card .product-title-reviews {
  flex: 1;
}
.product-card .product-price {
  display: flex;
  gap: 12px;
  align-items: center;
}
.product-card .product-price span {
  font-size: 12px;
}
.product-card .product-price .sale-price {
  color: var(--accent-2-color);
}
.product-card .product-price .compare-at-price {
  text-decoration: line-through;
  color: #000;
}
.product-card .product-message, .product-card .market-message {
  color: var(--primary-color);
  font-size: 14px;
}
.product-card .product-link {
  display: none;
}
.product-card .product-related-colours {
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.product-card .product-related-colours .related-colour {
  width: 32px;
  height: 32px;
  background: white;
  border: 1px solid #b7b7b7;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px white;
  cursor: pointer;
}
.product-card .product-related-colours .related-colour.active {
  border-color: var(--primary-color);
}

.product-badges {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 50%;
  padding: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 5px;
  z-index: 2;
}
.product-badges .product-badge {
  font-size: 12px;
  color: var(--accent-2-color);
  padding: 3px 10px;
  white-space: nowrap;
  border: 1px solid var(--accent-2-color);
  position: relative;
  overflow: hidden;
  width: -moz-max-content;
  width: max-content;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  font-weight: 500;
}
.product-badges .product-badge.new-arrival-badge {
  color: white;
  background-color: var(--text-primary-color);
  border-color: var(--text-primary-color);
}
.product-badges .product-badge.discount-percentage-badge {
  color: var(--accent-2-color);
  border-color: var(--accent-2-color);
}
.product-badges .product-badge.limited-edition-badge {
  color: var(--accent-2-color);
  border-color: var(--accent-2-color);
}
.product-badges .product-badge.bestseller-badge {
  color: white;
  background-color: var(--text-primary-color);
  border-color: var(--text-primary-color);
}
.product-badges .product-badge.low-stock-badge {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.sale-price {
  color: var(--accent-2-color);
}

.compare-at-price {
  text-decoration: line-through;
  color: #000;
}

/*

<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>

*/
.accordion {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  border-top: 1px solid #E0E0E0;
  cursor: pointer;
  padding: 25px 0;
  width: 100%;
  outline: none;
  font-size: 14px;
  font-weight: bold;
  transition: 0.3s all;
  color: var(--text-primary-color);
}
@media only screen and (min-width: 992px) {
  .accordion {
    font-size: 16px;
  }
}
.accordion .question {
  pointer-events: none;
  font-size: 14px;
}
@media only screen and (min-width: 992px) {
  .accordion .question {
    font-size: 16px;
  }
}
.accordion > div {
  display: flex;
  align-items: center;
}
.accordion .chevron {
  width: 11px;
  height: 17px;
  pointer-events: none;
}
.accordion .chevron svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s;
}
.accordion.active .chevron svg {
  transform: rotate(-90deg);
}

.panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.panel.active {
  padding-bottom: 20px;
}
.panel .content {
  padding: 0;
  font-size: 14px;
}
.panel .content .image-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.panel .content .image-grid img {
  display: block;
  width: 100%;
  height: auto;
}
@media only screen and (min-width: 1200px) {
  .panel .content .image-grid img {
    width: calc(50% - 10px);
  }
}
.panel .content p {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 18px;
}
@media only screen and (min-width: 992px) {
  .panel .content p {
    font-size: 16px;
    line-height: 22px;
  }
}
.panel .content p b, .panel .content p strong, .panel .content p em {
  font-size: 14px;
  line-height: 18px;
}
@media only screen and (min-width: 992px) {
  .panel .content p b, .panel .content p strong, .panel .content p em {
    font-size: 16px;
    line-height: 22px;
  }
}
.panel .content ul, .panel .content ol {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 18px;
  padding-left: 17px;
}
@media only screen and (min-width: 992px) {
  .panel .content ul, .panel .content ol {
    font-size: 16px;
    line-height: 22px;
  }
}
.panel .content ul li, .panel .content ol li {
  font-size: 14px;
  line-height: 18px;
}
@media only screen and (min-width: 992px) {
  .panel .content ul li, .panel .content ol li {
    font-size: 16px;
    line-height: 22px;
  }
}
.panel .content ul li b, .panel .content ul li strong, .panel .content ul li em, .panel .content ol li b, .panel .content ol li strong, .panel .content ol li em {
  font-size: 14px;
  line-height: 18px;
}
@media only screen and (min-width: 992px) {
  .panel .content ul li b, .panel .content ul li strong, .panel .content ul li em, .panel .content ol li b, .panel .content ol li strong, .panel .content ol li em {
    font-size: 16px;
    line-height: 22px;
  }
}
.panel .content ul li::marker, .panel .content ol li::marker {
  font-size: 12px;
}

.article-card {
  display: flex;
  flex-direction: column;
  position: relative;
}
.article-card .article-card-image {
  aspect-ratio: 435/300;
  overflow: hidden;
  margin: 0 0 20px;
}
.article-card .article-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.article-card .article-card-title {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 6px;
  color: var(--text-primary-color);
}
.article-card .article-card-excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 14px;
  line-height: 23px;
  margin: 0 0 20px;
}
@media only screen and (min-width: 992px) {
  .article-card .article-card-excerpt {
    font-size: 16px;
  }
}
.article-card .article-card-link {
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media only screen and (min-width: 992px) {
  .article-card .article-card-link {
    font-size: 16px;
  }
}
.article-card .article-card-link:hover {
  text-decoration: none;
}
.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: 6px 12px;
  background-color: var(--secondary-color);
  color: var(--text-alternate-color);
  text-transform: capitalize;
  text-align: center;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  font-weight: 500;
}

.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;
  inset: 0;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: none;
  background-color: rgba(0, 0, 0, 0.4);
}
.modal-container.active {
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-container .modal {
  width: auto;
  padding: 60px 50px;
  max-width: calc(100% - 40px);
  min-width: 40%;
  max-height: 94%;
  background: white;
  position: relative;
  overflow: auto;
  text-align: center;
}
@media only screen and (min-width: 1300px) {
  .modal-container .modal {
    min-width: 60%;
  }
}
@media only screen and (min-width: 1800px) {
  .modal-container .modal {
    min-width: 50%;
  }
}
@media only screen and (max-width: 767.98px) {
  .modal-container .modal {
    padding: 20px;
  }
}
@media only screen and (max-width: 575.98px) {
  .modal-container .modal h2 {
    text-align: left;
  }
}
.modal-container .modal::-webkit-scrollbar {
  margin-left: 10px;
  width: 4px;
  background: transparent;
}
.modal-container .modal::-webkit-scrollbar-track {
  background-color: #fff;
}
.modal-container .modal::-webkit-scrollbar-thumb {
  background-color: var(--text-primary-color);
}
.modal-container .modal .close-button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  background-color: transparent;
  padding: 0;
  border: none;
}
@media only screen and (max-width: 767.98px) {
  .modal-container .modal .close-button {
    right: 0;
    justify-content: unset;
    align-items: unset;
  }
}
.modal-container .modal .close-button svg {
  pointer-events: none;
  width: 14px;
  height: 14px;
}
.modal-container .modal .icon.icon-close {
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.modal-container .modal .icon.icon-close path {
  fill: var(--primary-text-color);
}
.modal-container .modal .slide-in-enter {
  transition: all 300ms ease;
  margin-top: -62px;
  opacity: 0;
}
.modal-container .modal .slide-in-enter.slide-in-active {
  margin-top: 0;
  opacity: 1;
}
.modal-container .modal .modal-title {
  font-weight: bold;
  font-size: var(--heading-lg);
  line-height: 35px;
}
.modal-container .modal .modal-subtitle {
  margin-top: 17px;
}
.modal-container .modal .button-container {
  display: flex;
}
.modal-container .modal .size-table-wrapper {
  max-height: 400px;
  overflow-y: scroll;
  margin: 20px 0 0;
}
@media only screen and (max-width: 767.98px) {
  .modal-container .modal .size-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.modal-container .modal .size-table-wrapper::-webkit-scrollbar {
  margin-left: 10px;
  width: 4px;
  background: transparent;
}
.modal-container .modal .size-table-wrapper::-webkit-scrollbar-track {
  background-color: #fff;
}
.modal-container .modal .size-table-wrapper::-webkit-scrollbar-thumb {
  background-color: var(--text-primary-color);
}
.modal-container .modal .size-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  font-size: 16px;
  text-align: left;
  border-top: 1px solid #ddd;
}
@media only screen and (max-width: 767.98px) {
  .modal-container .modal .size-table {
    width: 100%;
    min-width: 600px;
  }
}
.modal-container .modal .size-table th {
  border: 1px solid #ddd;
  padding: 10px;
  min-width: 90px;
  text-align: center;
}
.modal-container .modal .size-table th:first-child {
  left: -1px;
  position: sticky;
  z-index: 1;
}
.modal-container .modal .size-table td {
  border: 1px solid #ddd;
  padding: 10px;
  min-width: 60px;
  text-align: center;
}
.modal-container .modal .size-table td:first-child {
  background: #000;
  left: -1px;
  position: sticky;
  z-index: 1;
  color: #fff;
  min-width: 90px;
}
.modal-container .modal .size-table th {
  background-color: var(--primary-color);
  border: 1px solid #ddd;
  font-weight: bold;
  color: white;
}
.modal-container.basic-confirm {
  text-align: center;
}
.modal-container.basic-confirm .modal-header {
  max-width: 270px;
  margin: auto;
}
.modal-container.basic-confirm .modal-body {
  display: flex;
  gap: 10px;
  padding-top: 32px;
}
.modal-container.basic-confirm .modal-body button {
  width: 100%;
}

[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%;
}

.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: var(--primary-color);
  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: #eee;
  border-radius: 2px;
  background: white;
}
.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 .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);
}

.country-modal-trigger,
.market-language-select-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
}
@media only screen and (min-width: 992px) {
  .country-modal-trigger:not(.country-modal-trigger--footer),
  .market-language-select-trigger:not(.country-modal-trigger--footer) {
    margin-right: -10px;
  }
}
.country-modal-trigger svg,
.market-language-select-trigger svg {
  display: none;
}
.country-modal-trigger__country-code,
.market-language-select-trigger__country-code {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  pointer-events: none;
}
.country-modal-trigger__flag,
.market-language-select-trigger__flag {
  flex: 0 0 auto;
  width: 24px;
  height: 18px;
  overflow: hidden;
  pointer-events: none;
  border: 1px solid rgba(0, 0, 0, 0.1019607843);
}
.country-modal-trigger__flag-image,
.market-language-select-trigger__flag-image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
}
.country-modal-trigger--footer,
.market-language-select-trigger--footer {
  margin: 0;
}
.country-modal-trigger--footer.button-2,
.market-language-select-trigger--footer.button-2 {
  border: solid 1px var(--button-1-border-color);
}
.country-modal-trigger--footer.button-2:hover,
.market-language-select-trigger--footer.button-2:hover {
  border: solid 1px var(--button-1-hover-border-color);
}

[data-modal=country-modal] h2 {
  margin: 0 0 20px;
}
@media only screen and (min-width: 992px) {
  [data-modal=country-modal] h2 {
    margin: 0 0 30px;
  }
}

.country-modal-search {
  margin: 0 0 20px;
}
@media only screen and (min-width: 992px) {
  .country-modal-search {
    margin-bottom: 24px;
  }
}
.country-modal-search__input {
  width: 100%;
  border: 1px solid #d9d9d9;
  border-radius: 0;
  background: #fff;
  color: var(--text-primary-color);
  font-size: 16px;
  line-height: 1.2;
  padding: 12px 14px;
}
.country-modal-search__input::-moz-placeholder {
  color: currentColor;
  opacity: 0.55;
}
.country-modal-search__input::placeholder {
  color: currentColor;
  opacity: 0.55;
}
.country-modal-search__input:focus {
  border-color: var(--primary-color);
  outline: 1px solid var(--primary-color);
  outline-offset: 0;
}

.country-modal-list {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  gap: 8px 20px;
  max-width: 100%;
}
.country-modal-list li {
  width: 100%;
  text-align: left;
  border-bottom: 1px solid #e5e5e5;
}
.country-modal-list__row {
  display: flex;
  justify-content: space-between;
  gap: 4px;
  width: 100%;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
}
.country-modal-list__country, .country-modal-list__language {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}
.country-modal-list__country:hover, .country-modal-list__language:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.country-modal-list__country {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.country-modal-list__country-name {
  font-size: inherit;
  text-align: left;
}
.country-modal-list__languages {
  display: flex;
  gap: 4px;
  text-align: right;
}
@media only screen and (max-width: 575.98px) {
  .country-modal-list__languages {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 4px;
  }
}
.country-modal-list__language {
  text-decoration: underline;
  text-underline-offset: 2px;
  font-size: 14px;
  opacity: 0.6;
  text-transform: capitalize;
  text-align: right;
  white-space: nowrap;
}
.country-modal-list__flag {
  flex: 0 0 auto;
  width: 24px;
  height: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1019607843);
}
.country-modal-list__flag-image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

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

localization-form.dropdown-selector {
  position: relative;
}
@media only screen and (min-width: 992px) {
  localization-form.dropdown-selector.language-selector {
    margin-right: -10px;
  }
}
localization-form.dropdown-selector button {
  display: flex;
  align-items: center;
  gap: 6px;
  width: -moz-max-content;
  width: max-content;
  font-size: 14px;
  font-weight: 600;
  font-family: "Neue Plak Extended";
  padding: 0;
  text-transform: uppercase;
  color: var(--text-primary-color);
}
localization-form.dropdown-selector button svg {
  width: 17px;
  height: 16px;
  transform: translateY(1px);
}
localization-form.dropdown-selector ul {
  position: absolute;
  top: 100%;
  left: -18px;
  background-color: white;
  flex-direction: column;
  margin: 0;
  list-style: none;
  width: -moz-max-content;
  width: max-content;
  z-index: 9999;
  display: flex;
  max-height: 300px;
  overflow: auto;
  padding: 14px;
}
localization-form.dropdown-selector ul[hidden] {
  display: none;
}
localization-form.dropdown-selector ul li {
  font-size: 14px;
  margin: 0;
  padding: 4px 6px;
  transition: 0.3s all;
  order: 2;
}
localization-form.dropdown-selector ul li span {
  font-size: 14px;
  font-weight: 500;
}
localization-form.dropdown-selector ul li.current {
  order: 1;
}
localization-form.dropdown-selector ul li.current span {
  text-decoration: underline;
}
localization-form.dropdown-selector ul li:hover span {
  text-decoration: underline;
}
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;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  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;
}
localization-form.language-selector .localization,
localization-form.language-selector .disclosure__button span {
  text-transform: capitalize;
}

.product-form, .ctl-product-form {
  display: grid;
  grid-template-columns: 100%;
  gap: 0;
}
.product-form .product-related-colours, .ctl-product-form .product-related-colours {
  margin: 0 0 20px;
}
.product-form .product-related-colours:has(show-more), .ctl-product-form .product-related-colours:has(show-more) {
  max-height: 155px;
  position: relative;
  overflow-y: hidden;
  transition: max-height 0.35s;
}
@media only screen and (min-width: 992px) {
  .product-form .product-related-colours:has(show-more), .ctl-product-form .product-related-colours:has(show-more) {
    max-height: 245px;
  }
}
.product-form .product-related-colours:has(show-more).expanded, .ctl-product-form .product-related-colours:has(show-more).expanded {
  max-height: 100vh;
  padding-bottom: 50px;
}
@media only screen and (min-width: 992px) {
  .product-form .product-related-colours:has(show-more).expanded, .ctl-product-form .product-related-colours:has(show-more).expanded {
    padding-bottom: 60px;
  }
}
.product-form .product-related-colours:has(show-more).expanded more-text, .ctl-product-form .product-related-colours:has(show-more).expanded more-text {
  display: none;
}
.product-form .product-related-colours:has(show-more).expanded less-text, .ctl-product-form .product-related-colours:has(show-more).expanded less-text {
  display: block;
}
.product-form .product-related-colours show-more, .ctl-product-form .product-related-colours show-more {
  width: 100%;
  height: 50px;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.45) 0%, rgb(255, 255, 255) 100%);
  color: var(--primary-color);
  cursor: pointer;
}
.product-form .product-related-colours show-more more-text,
.product-form .product-related-colours show-more less-text, .ctl-product-form .product-related-colours show-more more-text,
.ctl-product-form .product-related-colours show-more less-text {
  font-size: 14px;
}
.product-form .product-related-colours show-more more-text:hover,
.product-form .product-related-colours show-more less-text:hover, .ctl-product-form .product-related-colours show-more more-text:hover,
.ctl-product-form .product-related-colours show-more less-text:hover {
  text-decoration: underline;
}
.product-form .product-related-colours show-more more-text, .ctl-product-form .product-related-colours show-more more-text {
  display: block;
}
.product-form .product-related-colours show-more less-text, .ctl-product-form .product-related-colours show-more less-text {
  display: none;
}
@media only screen and (min-width: 992px) {
  .product-form .product-related-colours show-more, .ctl-product-form .product-related-colours show-more {
    height: 60px;
  }
}
.product-form .product-related-colours .option-name, .ctl-product-form .product-related-colours .option-name {
  font-size: 12px;
  margin: 0 0 12px;
}
.product-form .product-related-colours .option-name span, .ctl-product-form .product-related-colours .option-name span {
  font-size: 12px;
}
.product-form .product-related-colours .swatches, .ctl-product-form .product-related-colours .swatches {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
}
@media only screen and (min-width: 992px) {
  .product-form .product-related-colours .swatches, .ctl-product-form .product-related-colours .swatches {
    grid-template-columns: repeat(7, 1fr);
  }
}
.product-form .product-related-colours .swatches .swatch, .ctl-product-form .product-related-colours .swatches .swatch {
  position: relative;
  display: flex;
}
.product-form .product-related-colours .swatches .swatch img, .ctl-product-form .product-related-colours .swatches .swatch img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-form .product-related-colours .swatches .swatch:hover, .product-form .product-related-colours .swatches .swatch.active, .ctl-product-form .product-related-colours .swatches .swatch:hover, .ctl-product-form .product-related-colours .swatches .swatch.active {
  border: 1px solid;
}
.product-form .product-related-colours .swatches .swatch.sold-out:after, .ctl-product-form .product-related-colours .swatches .swatch.sold-out:after {
  content: "";
  position: absolute;
  top: 50%;
  left: -18%;
  width: 137%;
  height: 1px;
  background: var(--text-primary-color);
  transform: rotate(-45deg);
}
.product-form .variant-selector-wrapper, .ctl-product-form .variant-selector-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.product-form .variant-selector-wrapper .selector-wrapper, .ctl-product-form .variant-selector-wrapper .selector-wrapper {
  display: none;
}
.product-form .variant-selector-wrapper .selector-wrapper:last-of-type, .ctl-product-form .variant-selector-wrapper .selector-wrapper:last-of-type {
  margin-bottom: 0;
}
.product-form .variant-selector-wrapper .selector-wrapper label, .ctl-product-form .variant-selector-wrapper .selector-wrapper label {
  margin-right: 6px;
}
.product-form .variant-selector-wrapper .selector-wrapper select, .ctl-product-form .variant-selector-wrapper .selector-wrapper select {
  border: none;
  min-width: 103px;
  background-color: #f0f0f0;
  padding: 0px 8px;
  height: 30px;
}
.product-form .variant-selector-wrapper .option-radios-wrapper, .ctl-product-form .variant-selector-wrapper .option-radios-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  -moz-column-gap: 40px;
       column-gap: 40px;
  margin-top: 0;
  width: 100%;
}
.product-form .variant-selector-wrapper .option-radios-wrapper .radio-option, .ctl-product-form .variant-selector-wrapper .option-radios-wrapper .radio-option {
  position: relative;
  width: 100%;
}
.product-form .variant-selector-wrapper .option-radios-wrapper .radio-option .size-guide, .ctl-product-form .variant-selector-wrapper .option-radios-wrapper .radio-option .size-guide {
  position: absolute;
  top: -5px;
  right: 0;
  padding: 0;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: underline;
  color: var(--text-primary-color);
}
.product-form .variant-selector-wrapper .option-radios-wrapper .radio-option .size-guide svg, .ctl-product-form .variant-selector-wrapper .option-radios-wrapper .radio-option .size-guide svg {
  width: 24px;
  height: 24px;
}
.product-form .variant-selector-wrapper .option-radios-wrapper .radio-option .size-guide:hover, .ctl-product-form .variant-selector-wrapper .option-radios-wrapper .radio-option .size-guide:hover {
  text-decoration: none;
}
.product-form .variant-selector-wrapper .option-radios-wrapper .radio-option .option-name, .ctl-product-form .variant-selector-wrapper .option-radios-wrapper .radio-option .option-name {
  font-size: 12px;
  margin: 0 0 6px;
}
.product-form .variant-selector-wrapper .option-radios-wrapper .radio-option .option-name span, .ctl-product-form .variant-selector-wrapper .option-radios-wrapper .radio-option .option-name span {
  font-size: 12px;
}
.product-form .variant-selector-wrapper .option-radios-wrapper .radio-option .option-meta, .ctl-product-form .variant-selector-wrapper .option-radios-wrapper .radio-option .option-meta {
  font-size: 12px;
  margin: 0 0 12px;
}
.product-form .variant-selector-wrapper .option-radios-wrapper .radio-option .option-meta span, .ctl-product-form .variant-selector-wrapper .option-radios-wrapper .radio-option .option-meta span {
  font-size: 12px;
}
.product-form .variant-selector-wrapper .option-radios-wrapper .radio-option .variant-radios, .ctl-product-form .variant-selector-wrapper .option-radios-wrapper .radio-option .variant-radios {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.product-form .variant-selector-wrapper .option-radios-wrapper .radio-option .variant-radios .variant-wrapper, .ctl-product-form .variant-selector-wrapper .option-radios-wrapper .radio-option .variant-radios .variant-wrapper {
  position: relative;
  overflow: hidden;
  flex: 0 1 auto;
  width: calc(33.3333% - 4px);
}
@media only screen and (min-width: 768px) {
  .product-form .variant-selector-wrapper .option-radios-wrapper .radio-option .variant-radios .variant-wrapper, .ctl-product-form .variant-selector-wrapper .option-radios-wrapper .radio-option .variant-radios .variant-wrapper {
    width: calc(25% - 4px);
  }
}
.product-form .variant-selector-wrapper .option-radios-wrapper .radio-option .variant-radios .variant-wrapper input, .ctl-product-form .variant-selector-wrapper .option-radios-wrapper .radio-option .variant-radios .variant-wrapper input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  margin: 0;
  cursor: pointer;
}
.product-form .variant-selector-wrapper .option-radios-wrapper .radio-option .variant-radios .variant-wrapper input:checked + label, .ctl-product-form .variant-selector-wrapper .option-radios-wrapper .radio-option .variant-radios .variant-wrapper input:checked + label {
  border-color: var(--text-primary-color);
  background-color: var(--text-primary-color);
  color: white;
}
.product-form .variant-selector-wrapper .option-radios-wrapper .radio-option .variant-radios .variant-wrapper input:checked + label.sold-out:after, .ctl-product-form .variant-selector-wrapper .option-radios-wrapper .radio-option .variant-radios .variant-wrapper input:checked + label.sold-out:after {
  background: white;
}
.product-form .variant-selector-wrapper .option-radios-wrapper .radio-option .variant-radios .variant-wrapper input:hover:not(:checked) + label, .ctl-product-form .variant-selector-wrapper .option-radios-wrapper .radio-option .variant-radios .variant-wrapper input:hover:not(:checked) + label {
  border-color: var(--text-primary-color);
  background-color: var(--text-primary-color);
  color: white;
}
.product-form .variant-selector-wrapper .option-radios-wrapper .radio-option .variant-radios .variant-wrapper input:hover:not(:checked) + label.sold-out:after, .ctl-product-form .variant-selector-wrapper .option-radios-wrapper .radio-option .variant-radios .variant-wrapper input:hover:not(:checked) + label.sold-out:after {
  background: white;
}
.product-form .variant-selector-wrapper .option-radios-wrapper .radio-option .variant-radios .variant-wrapper label, .ctl-product-form .variant-selector-wrapper .option-radios-wrapper .radio-option .variant-radios .variant-wrapper label {
  position: relative;
  display: block;
  padding: 7px 10px 8px 10px;
  background-color: var(--text-alternate-color);
  transition: all 0.3s;
  font-size: 16px;
  border: 1px solid var(--text-primary-color);
  width: 100%;
  text-align: center;
}
.product-form .variant-selector-wrapper .option-radios-wrapper .radio-option .variant-radios .variant-wrapper label.sold-out:after, .ctl-product-form .variant-selector-wrapper .option-radios-wrapper .radio-option .variant-radios .variant-wrapper label.sold-out:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--text-primary-color);
  transform: rotate(-16deg);
}
.product-form .product-full-link, .ctl-product-form .product-full-link {
  display: none;
}
.product-form .product-submit-wrapper, .ctl-product-form .product-submit-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 26px 0 0;
}
@media only screen and (max-width: 767.98px) {
  .product-form .product-submit-wrapper, .ctl-product-form .product-submit-wrapper {
    gap: 10px;
  }
}
.product-form .product-submit-wrapper [wishlist-button], .ctl-product-form .product-submit-wrapper [wishlist-button] {
  border: 1px solid #E1E1E1;
  width: 48px;
  height: 48px;
  transition: all 0.35s ease;
}
.product-form .product-submit-wrapper [wishlist-button]:hover, .ctl-product-form .product-submit-wrapper [wishlist-button]:hover {
  border-color: var(--text-primary-color);
}
.product-form .product-submit-wrapper label, .ctl-product-form .product-submit-wrapper label {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background-color: var(--text-primary-color);
  flex: 1;
  cursor: pointer;
  transition: all 0.35s ease;
  padding: 9px 30px 10px 30px;
}
@media only screen and (min-width: 992px) {
  .product-form .product-submit-wrapper label, .ctl-product-form .product-submit-wrapper label {
    padding: 24px 50px;
  }
}
.product-form .product-submit-wrapper label:hover, .ctl-product-form .product-submit-wrapper label:hover {
  background-color: var(--primary-color);
}
.product-form .product-submit-wrapper label input, .ctl-product-form .product-submit-wrapper label input {
  font-family: "Neue Plak Extended";
  background: none;
  border: none;
  color: var(--text-alternate-color);
  width: -moz-max-content;
  width: max-content;
  cursor: pointer;
  font-size: 18px;
  padding: 0;
  font-weight: bold;
}
@media only screen and (min-width: 992px) {
  .product-form .product-submit-wrapper label input, .ctl-product-form .product-submit-wrapper label input {
    font-size: 22px;
  }
}
.product-form .product-submit-wrapper label > div, .ctl-product-form .product-submit-wrapper label > div {
  font-family: "Neue Plak Extended";
  color: var(--text-alternate-color);
  font-size: 18px;
  font-weight: bold;
}
@media only screen and (min-width: 992px) {
  .product-form .product-submit-wrapper label > div, .ctl-product-form .product-submit-wrapper label > div {
    font-size: 22px;
  }
}
.product-form .product-submit-wrapper label [add-to-cart-price] span, .ctl-product-form .product-submit-wrapper label [add-to-cart-price] span {
  font-family: "Neue Plak Extended";
  color: var(--text-alternate-color);
  font-size: 18px;
  font-weight: bold;
}
@media only screen and (min-width: 992px) {
  .product-form .product-submit-wrapper label [add-to-cart-price] span, .ctl-product-form .product-submit-wrapper label [add-to-cart-price] span {
    font-size: 22px;
  }
}
.product-form .product-submit-wrapper label.disabled, .ctl-product-form .product-submit-wrapper label.disabled {
  background-color: #E1E1E1;
  cursor: not-allowed;
}
.product-form .product-submit-wrapper label.disabled > div,
.product-form .product-submit-wrapper label.disabled input, .ctl-product-form .product-submit-wrapper label.disabled > div,
.ctl-product-form .product-submit-wrapper label.disabled input {
  color: var(--text-primary-color);
}
.product-form .product-submit-wrapper .oos-notification, .ctl-product-form .product-submit-wrapper .oos-notification {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.product-form .product-submit-wrapper .oos-notification div, .ctl-product-form .product-submit-wrapper .oos-notification div {
  width: 100%;
  text-align: center;
  pointer-events: none;
}
.product-form .product-submit-wrapper .oos-notification button, .ctl-product-form .product-submit-wrapper .oos-notification button {
  margin-left: 10px;
}
.product-form .product-submit-wrapper .mobile-add-to-cart, .ctl-product-form .product-submit-wrapper .mobile-add-to-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  box-shadow: 0 -6px 30px rgba(0, 0, 0, 0.16);
}
@media only screen and (min-width: 768px) {
  .product-form .product-submit-wrapper .mobile-add-to-cart, .ctl-product-form .product-submit-wrapper .mobile-add-to-cart {
    display: none;
  }
}
.product-form .product-submit-wrapper .mobile-add-to-cart label, .ctl-product-form .product-submit-wrapper .mobile-add-to-cart label {
  border-radius: 0;
  padding: 16px;
}
@media only screen and (max-width: 575.98px) {
  .product-form .product-submit-wrapper .mobile-add-to-cart label > div, .ctl-product-form .product-submit-wrapper .mobile-add-to-cart label > div {
    display: block;
  }
}
.product-form .product-submit-wrapper .mobile-add-to-cart label > div span, .ctl-product-form .product-submit-wrapper .mobile-add-to-cart label > div span {
  font-family: "Neue Plak Extended";
  color: var(--text-alternate-color);
  font-size: 18px;
  font-weight: bold;
}
@media only screen and (min-width: 992px) {
  .product-form .product-submit-wrapper .mobile-add-to-cart label > div span, .ctl-product-form .product-submit-wrapper .mobile-add-to-cart label > div span {
    font-size: 22px;
  }
}
.product-form .quantity-total-wrapper, .ctl-product-form .quantity-total-wrapper {
  display: none;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}
.product-form .quantity-total-wrapper .total, .ctl-product-form .quantity-total-wrapper .total {
  display: flex;
  align-items: center;
}
.product-form .quantity-total-wrapper .quantity-wrapper, .ctl-product-form .quantity-total-wrapper .quantity-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 0;
}
.product-form .quantity-total-wrapper .quantity-wrapper > div, .ctl-product-form .quantity-total-wrapper .quantity-wrapper > div {
  display: flex;
  align-items: center;
}
.product-form .quantity-total-wrapper .quantity-wrapper .quantity-select, .ctl-product-form .quantity-total-wrapper .quantity-wrapper .quantity-select {
  display: flex;
  border: 1px solid #E1E1E1;
  border-radius: 25px;
  width: -moz-max-content;
  width: max-content;
}
.product-form .quantity-total-wrapper .quantity-wrapper .quantity-select > *, .ctl-product-form .quantity-total-wrapper .quantity-wrapper .quantity-select > * {
  flex: 1;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 48px;
}
.product-form .quantity-total-wrapper .quantity-wrapper .quantity-select .quantity, .ctl-product-form .quantity-total-wrapper .quantity-wrapper .quantity-select .quantity {
  font-weight: 500;
}
.product-form .quantity-total-wrapper .quantity-wrapper .quantity-select .minus,
.product-form .quantity-total-wrapper .quantity-wrapper .quantity-select .plus, .ctl-product-form .quantity-total-wrapper .quantity-wrapper .quantity-select .minus,
.ctl-product-form .quantity-total-wrapper .quantity-wrapper .quantity-select .plus {
  cursor: pointer;
}
.product-form.radios .selector-wrapper, .ctl-product-form.radios .selector-wrapper {
  display: none;
}

.video-wrapper.js-video-controls {
  position: relative;
  isolation: isolate;
  cursor: pointer;
}
.video-wrapper.js-video-controls video {
  z-index: -1;
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.video-wrapper.js-video-controls svg.play-icon, .video-wrapper.js-video-controls img.play-icon,
.video-wrapper.js-video-controls img.pause-icon, .video-wrapper.js-video-controls svg.pause-icon {
  z-index: 10;
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background: rgba(0, 0, 0, 0.4);
  color: var(--video-icon-colour, #ffffff);
  pointer-events: none;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.75;
}
.video-wrapper.js-video-controls svg.play-icon.play-icon, .video-wrapper.js-video-controls img.play-icon.play-icon,
.video-wrapper.js-video-controls img.pause-icon.play-icon, .video-wrapper.js-video-controls svg.pause-icon.play-icon {
  visibility: visible;
}
.video-wrapper.js-video-controls svg.play-icon.pause-icon, .video-wrapper.js-video-controls img.play-icon.pause-icon,
.video-wrapper.js-video-controls img.pause-icon.pause-icon, .video-wrapper.js-video-controls svg.pause-icon.pause-icon {
  visibility: hidden;
}
@media only screen and (min-width: 1025px) {
  .video-wrapper.js-video-controls svg.play-icon, .video-wrapper.js-video-controls img.play-icon,
  .video-wrapper.js-video-controls img.pause-icon, .video-wrapper.js-video-controls svg.pause-icon {
    right: 50px;
    bottom: 60px;
  }
}
.video-wrapper.js-video-controls.video-playing svg.play-icon, .video-wrapper.js-video-controls.video-playing img.play-icon {
  visibility: hidden;
}
.video-wrapper.js-video-controls.video-playing svg.pause-icon, .video-wrapper.js-video-controls.video-playing img.pause-icon {
  visibility: visible;
}

.pdp-sold-out-form {
  padding-top: 30px;
  padding-bottom: 55px;
  border-bottom: 1px solid #e0e0e0;
}
.pdp-sold-out-form__wrapper {
  width: 100%;
  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;
  }
}
.pdp-sold-out-form__wrapper::after {
  content: "";
  order: 2;
  width: 1px;
  height: auto;
  display: flex;
  background: #e0e0e0;
}
@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: 120px;
  min-width: 120px;
  height: 120px;
  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: 16px;
}
.pdp-sold-out-form__form .notify-form {
  position: relative;
  width: 100%;
}
.pdp-sold-out-form__form .notify-form input {
  border: 1px solid #737373;
  border-radius: 25px;
  margin: 0;
  padding: 8px 25px 9px 25px;
  width: 100%;
  font-size: 16px;
  line-height: 1;
  color: var(--text-primary-color);
}
.pdp-sold-out-form__form .notify-form button {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  text-indent: -9999px;
  width: 60px;
  height: 100%;
  overflow: hidden;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 7a1 1 0 0 0 0 2V7Zm18.707 1.707a1 1 0 0 0 0-1.414L13.343.929a1 1 0 1 0-1.414 1.414L17.586 8l-5.657 5.657a1 1 0 0 0 1.414 1.414l6.364-6.364ZM1 9h18V7H1v2Z' fill='%23737373'/%3E%3C/svg%3E");
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
}

.pdp-coming-soon,
.pdp-variant-sold-out {
  margin: 20px 0;
}
.pdp-coming-soon .heading-sm,
.pdp-variant-sold-out .heading-sm {
  font-size: 16px;
}

[wishlist-button] {
  z-index: 10;
  cursor: pointer;
  color: #000000;
  transition: opacity 0.15s ease-in;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: white;
  padding: 0;
  width: 28px;
  height: 28px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 992px) {
  [wishlist-button] {
    width: 40px;
    height: 40px;
  }
}
[wishlist-button] svg,
[wishlist-button] img.active-heart,
[wishlist-button] img.inactive-heart {
  pointer-events: none;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  color: currentColor;
  width: 12px !important;
  height: 12px !important;
  position: relative !important;
}
[wishlist-button] svg path,
[wishlist-button] img.active-heart path,
[wishlist-button] img.inactive-heart path {
  fill: none;
}
@media only screen and (min-width: 992px) {
  [wishlist-button] svg,
  [wishlist-button] img.active-heart,
  [wishlist-button] img.inactive-heart {
    width: 18px !important;
    height: 18px !important;
  }
}
[wishlist-button] img.active-heart {
  display: none;
}
[wishlist-button] img.inactive-heart {
  display: block;
}
[wishlist-button].active-wishlist svg path, [wishlist-button]:hover svg path {
  fill: currentColor;
}
[wishlist-button].active-wishlist img.active-heart, [wishlist-button]:hover img.active-heart {
  display: block;
}
[wishlist-button].active-wishlist img.inactive-heart, [wishlist-button]:hover img.inactive-heart {
  display: none;
}
[wishlist-button][loading] {
  opacity: 0;
}

.wishlist-floater {
  position: absolute;
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 99999999999;
  color: #E4405F;
  scale: 0;
  animation: wishlist_floater 2s cubic-bezier(0.34, 0.17, 0.84, 0.51) 1 forwards;
}

@keyframes wishlist_floater {
  0% {
    scale: 0;
    translate: 0;
  }
  10% {
    scale: 0.4;
  }
  20% {
    rotate: 0deg;
    translate: 0;
  }
  50% {
    opacity: 1;
    rotate: -15deg;
  }
  65% {
    scale: 1.2;
  }
  100% {
    scale: 1.5;
    opacity: 0;
    rotate: 15deg;
    translate: 35vw -100vh;
  }
}
[wishlist-grid],
[side-cart-wishlist-grid] {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
[wishlist-grid]::after,
[side-cart-wishlist-grid]::after {
  content: "";
  display: flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: dotted 5px #E4405F;
  opacity: 1;
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -50% -50%;
  animation: wishlist_loader 3s infinite;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
[wishlist-grid][loaded],
[side-cart-wishlist-grid][loaded] {
  opacity: 1;
}
[wishlist-grid][loaded]::after,
[side-cart-wishlist-grid][loaded]::after {
  opacity: 0;
}
[wishlist-grid] .empty-wishlist-message,
[side-cart-wishlist-grid] .empty-wishlist-message {
  justify-self: center;
  font-size: 18px;
  text-align: center;
  grid-column: -1/1;
  margin-top: 50%;
}

@keyframes wishlist_loader {
  from {
    rotate: 0deg;
  }
  to {
    rotate: 360deg;
  }
}
.wishlist-choose-modal-wrapper {
  z-index: 9999;
  isolation: isolate;
  background: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease-in 0.2s;
}
.wishlist-choose-modal-wrapper .wishlist-modal {
  width: 100%;
  max-width: 375px;
  opacity: 0;
  translate: 0 100%;
  transition: all 0.2s ease-in-out 0.2s;
}
.wishlist-choose-modal-wrapper .wishlist-modal .modal-content {
  width: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  flex-flow: column nowrap;
  gap: 10px;
  background: #ffffff;
  border-radius: 3px;
  padding: 20px 25px;
}
.wishlist-choose-modal-wrapper .wishlist-modal .modal-content input {
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 5px 10px;
  outline: none;
  border-radius: 3px;
  border: 1px solid #ddd;
  background: #fff;
  color: #1C1C1C;
  font-size: 16px;
}
.wishlist-choose-modal-wrapper .wishlist-modal .modal-title {
  width: 100%;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
.wishlist-choose-modal-wrapper .wishlist-modal .modal-description {
  width: 100%;
  font-size: 14px;
  text-align: center;
  line-height: 1.4;
  color: #1C1C1C;
  margin-bottom: 10px;
}
.wishlist-choose-modal-wrapper .wishlist-modal .create-btn,
.wishlist-choose-modal-wrapper .wishlist-modal .create-list,
.wishlist-choose-modal-wrapper .wishlist-modal .wishlist-list-option {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 16px;
  max-width: 325px;
}
.wishlist-choose-modal-wrapper .wishlist-modal .create-btn > svg,
.wishlist-choose-modal-wrapper .wishlist-modal .create-list > svg,
.wishlist-choose-modal-wrapper .wishlist-modal .wishlist-list-option > svg {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  rotate: 90deg;
}
.wishlist-choose-modal-wrapper .wishlist-modal .create-btn,
.wishlist-choose-modal-wrapper .wishlist-modal .create-list {
  font-size: 18px;
  font-weight: bold;
  width: calc(100% - 5px);
  color: #1C1C1C;
  background: #ddd;
  border: solid 1px #c1c1c1;
  padding: 8px 15px;
}
.wishlist-choose-modal-wrapper .wishlist-modal .wishlist-list-container {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-flow: column nowrap;
  gap: 10px;
  width: 100%;
  min-height: 235px;
  max-height: 235px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 2px;
}
.wishlist-choose-modal-wrapper .wishlist-modal .wishlist-list-container .empty-msg {
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -50% -50%;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  opacity: 0.35;
  color: #1C1C1C;
}
.wishlist-choose-modal-wrapper .wishlist-modal .wishlist-list-container .wishlist-list-option {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 70px;
  padding: 0 35px 0 0;
  color: #1C1C1C;
  background: #ddd;
  justify-content: flex-start;
  gap: 12px;
}
.wishlist-choose-modal-wrapper .wishlist-modal .wishlist-list-container .wishlist-list-option .content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-flow: column nowrap;
  gap: 3px;
  padding: 10px 0;
}
.wishlist-choose-modal-wrapper .wishlist-modal .wishlist-list-container .wishlist-list-option .content .title {
  overflow: hidden;
  line-clamp: 1;
  white-space: nowrap;
  width: 100%;
  font-size: 18px;
  font-weight: bold;
  text-align: left;
}
.wishlist-choose-modal-wrapper .wishlist-modal .wishlist-list-container .wishlist-list-option .content .wishlist-count {
  width: 100%;
  opacity: 0.5;
  font-size: 12px;
  font-weight: normal;
  text-align: left;
}
.wishlist-choose-modal-wrapper .wishlist-modal .wishlist-list-container .wishlist-list-option .image {
  overflow: hidden;
  border-radius: 3px 0 0 3px;
  width: 70px;
  height: 70px;
  background: #353535;
}
.wishlist-choose-modal-wrapper .wishlist-modal .wishlist-list-container .wishlist-list-option .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.wishlist-choose-modal-wrapper .wishlist-modal .wishlist-list-container .wishlist-list-option .image svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  scale: 0.65;
  opacity: 0.5;
  color: #FFFFFF;
}
.wishlist-choose-modal-wrapper .wishlist-modal .wishlist-list-container .wishlist-list-option svg.chevron {
  width: 15px;
  height: 15px;
  rotate: -90deg;
  position: absolute;
  inset: 50% 12px auto auto;
  translate: -12px -50%;
  opacity: 0;
  transition: all 0.15s ease-in;
}
.wishlist-choose-modal-wrapper .wishlist-modal .wishlist-list-container .wishlist-list-option:hover {
  outline: solid 2px #C1C1C1;
}
.wishlist-choose-modal-wrapper .wishlist-modal .wishlist-list-container .wishlist-list-option:hover svg.chevron {
  opacity: 0.65;
  translate: 0 -50%;
}
.wishlist-choose-modal-wrapper.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transition: opacity 0.1s ease-in 0.1s;
}
.wishlist-choose-modal-wrapper.active .wishlist-modal {
  opacity: 1;
  translate: 0;
  transition: all 0.2s ease-in 0.2s;
}
.wishlist-choose-modal-wrapper.add .wishlist-modal .modal-content.update, .wishlist-choose-modal-wrapper.remove .wishlist-modal .modal-content.update {
  display: flex;
}
.wishlist-choose-modal-wrapper.create .wishlist-modal .modal-content.create {
  display: flex;
}

#qf-filter-wrapper {
  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: 30px;
  position: relative;
}
@media (max-width: 1024px) {
  #qf-filter-wrapper {
    grid-template-columns: 2fr 5fr;
  }
}
@media only screen and (max-width: 991.98px) {
  #qf-filter-wrapper {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 767.98px) {
  #qf-filter-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (min-width: 992px) {
  #qf-filter-wrapper.hide-filters {
    grid-template-columns: 1fr;
  }
  #qf-filter-wrapper.hide-filters .filter-container-wrapper {
    display: none;
  }
}
#qf-filter-wrapper.mobile-filters-open .filter-container-wrapper {
  display: flex;
}
#qf-filter-wrapper.mobile-filters-open:after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 98;
  background: var(--text-primary-color);
  opacity: 0.7;
  transition: opacity 0.35s ease;
  pointer-events: all;
}
#qf-filter-wrapper .mobile-filter-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 25px;
  border-bottom: 1px solid #E0E0E0;
  margin: 0 0 25px;
  font-weight: bold;
  font-size: 14px;
}
#qf-filter-wrapper .mobile-filter-heading svg {
  width: 8px;
  height: 8px;
}
@media only screen and (min-width: 992px) {
  #qf-filter-wrapper .mobile-filter-heading {
    display: none;
  }
}
#qf-filter-wrapper .desktop-filter-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  text-transform: capitalize;
}
#qf-filter-wrapper .filter-container-wrapper {
  display: flex;
  flex-direction: column;
  background-color: white;
  height: -moz-max-content;
  height: max-content;
}
@media only screen and (max-width: 991.98px) {
  #qf-filter-wrapper .filter-container-wrapper {
    z-index: 99;
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    background: white;
    display: none;
    padding: 20px;
    height: 100%;
    animation: revealLeft 0.5s ease forwards;
  }
  #qf-filter-wrapper .filter-container-wrapper .filter-scroll-wrapper {
    overflow-y: hidden;
    max-height: 0;
    transition: 0.2s ease-in;
    width: 100vw;
    margin-left: -15px;
    padding: 0 15px;
    background-color: var(--primary-color);
  }
}
@media only screen and (min-width: 992px) {
  #qf-filter-wrapper .filter-container-wrapper {
    position: sticky;
    top: 140px;
    max-width: 300px;
  }
}
#qf-filter-wrapper .filter-container-wrapper.open {
  padding-bottom: 50px;
}
@media only screen and (max-width: 991.98px) {
  #qf-filter-wrapper .filter-container-wrapper .filter-group-display__submit {
    padding-bottom: 15px;
  }
}
#qf-filter-wrapper .filter-container-wrapper .filter-group-display__submit input {
  width: 100%;
}
@media only screen and (max-width: 991.98px) {
  #qf-filter-wrapper .filter-container-wrapper .custom-filter-wrapper {
    overflow-y: scroll;
    max-height: 90vh;
  }
}
#qf-filter-wrapper .filter-container-wrapper .custom-filter-wrapper .price-filter-container {
  margin: 20px 0;
}
#qf-filter-wrapper .filter-container-wrapper .custom-filter-wrapper .price-filter-container .filter-heading {
  font-weight: 600;
}
#qf-filter-wrapper .selected-filter-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 10px;
}
@media only screen and (max-width: 991.98px) {
  #qf-filter-wrapper .selected-filter-wrapper {
    margin-top: 10px;
  }
}
#qf-filter-wrapper .selected-filter-wrapper .selected-filter {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 400;
  border: 1px solid var(--primary-color);
  padding: 3px 12px 3px 7px;
  text-transform: capitalize;
}
#qf-filter-wrapper .selected-filter-wrapper .selected-filter[data-filter-name=availability] {
  display: none !important;
}
#qf-filter-wrapper .selected-filter-wrapper .selected-filter:hover svg {
  rotate: 90deg;
}
#qf-filter-wrapper .selected-filter-wrapper .selected-filter svg {
  margin-right: 5px;
  width: 10px;
  height: 10px;
  transition: all 0.3s;
}
#qf-filter-wrapper .selected-filter-wrapper .selected-filter svg path {
  stroke: var(--primary-color);
}
@media only screen and (max-width: 991.98px) {
  #qf-filter-wrapper .selected-filter-wrapper.desktop {
    display: none;
  }
}
#qf-filter-wrapper .custom-filter {
  border-bottom: 1px solid #E0E0E0;
  padding: 20px 0;
}
#qf-filter-wrapper .custom-filter[data-filter-name=availability] {
  display: none !important;
}
#qf-filter-wrapper .custom-filter label {
  display: block;
  position: relative;
  text-transform: capitalize;
}
#qf-filter-wrapper .custom-filter .button {
  width: unset;
  text-align: center;
}
#qf-filter-wrapper .custom-filter .filter-heading {
  margin: 0px;
  position: relative;
  cursor: pointer;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--text-primary-color);
}
#qf-filter-wrapper .custom-filter .filter-heading svg {
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
#qf-filter-wrapper .custom-filter .filter-body {
  display: none;
}
#qf-filter-wrapper .custom-filter.open .filter-heading svg {
  transform: rotate(180deg) translateY(8px);
}
#qf-filter-wrapper .custom-filter.open .filter-body {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}
@media only screen and (min-width: 992px) {
  #qf-filter-wrapper .custom-filter.open .filter-body {
    max-height: 340px;
    overflow-y: auto;
    overflow-x: visible;
    scrollbar-gutter: stable;
    padding-right: 4px;
  }
}
#qf-filter-wrapper .custom-filter.open .filter-body::-webkit-scrollbar {
  background: transparent;
  width: 2px;
}
#qf-filter-wrapper .custom-filter.open .filter-body::-webkit-scrollbar-track {
  background-color: #fff;
}
#qf-filter-wrapper .custom-filter.open .filter-body::-webkit-scrollbar-thumb {
  background-color: var(--text-primary-color);
  border-radius: 2px;
  border-left: 12px solid transparent;
}
#qf-filter-wrapper .custom-filter.open .filter-body.filter-body-size {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2px;
}
#qf-filter-wrapper .custom-filter.open .filter-body.filter-body-size label {
  margin: 0;
  width: calc(33.3333% - 2px);
}
#qf-filter-wrapper .custom-filter.open .filter-body.filter-body-size label .label {
  border: 1px solid var(--text-primary-color);
  text-align: center;
  font-size: 12px;
  padding: 8px 4px;
  width: 100%;
  color: var(--text-primary-color);
}
@media only screen and (min-width: 992px) {
  #qf-filter-wrapper .custom-filter.open .filter-body.filter-body-size label .label {
    font-size: 13px;
    padding: 8px;
  }
}
#qf-filter-wrapper .custom-filter.open .filter-body.filter-body-size label .label span {
  display: none;
}
#qf-filter-wrapper .custom-filter.open .filter-body.filter-body-size label:hover {
  text-decoration: none;
}
#qf-filter-wrapper .custom-filter.open .filter-body.filter-body-size label:hover .label {
  background: var(--text-primary-color);
  border-color: var(--text-primary-color);
  color: white;
}
#qf-filter-wrapper .custom-filter.open .filter-body.filter-body-size label input:checked + .label {
  background: var(--text-primary-color);
  border-color: var(--text-primary-color);
  color: white;
}
#qf-filter-wrapper .custom-filter.open .filter-body.filter-body-colour {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}
#qf-filter-wrapper .custom-filter.open .filter-body.filter-body-colour label {
  margin: 0;
  width: auto;
}
#qf-filter-wrapper .custom-filter.open .filter-body.filter-body-colour label .label {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--text-primary-color);
  padding: 6px 8px 7px 6px;
  font-size: 13px;
  color: var(--text-primary-color);
}
#qf-filter-wrapper .custom-filter.open .filter-body.filter-body-colour label .label .colour-swatch {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #E0E0E0;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
#qf-filter-wrapper .custom-filter.open .filter-body.filter-body-colour label:hover {
  text-decoration: none;
}
#qf-filter-wrapper .custom-filter.open .filter-body.filter-body-colour label:hover .label {
  background: var(--text-primary-color);
  border-color: var(--text-primary-color);
  color: white;
}
#qf-filter-wrapper .custom-filter.open .filter-body.filter-body-colour label:hover .label .colour-name,
#qf-filter-wrapper .custom-filter.open .filter-body.filter-body-colour label:hover .label .colour-name span {
  color: white;
}
#qf-filter-wrapper .custom-filter.open .filter-body.filter-body-colour label input:checked + .label {
  background: var(--text-primary-color);
  border-color: var(--text-primary-color);
  color: white;
}
#qf-filter-wrapper .custom-filter.open .filter-body.filter-body-colour label input:checked + .label .colour-name,
#qf-filter-wrapper .custom-filter.open .filter-body.filter-body-colour label input:checked + .label .colour-name span {
  color: white;
}
#qf-filter-wrapper .custom-filter.open .filter-body label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 12px;
  color: var(--text-primary-color);
  cursor: pointer;
}
@media only screen and (min-width: 992px) {
  #qf-filter-wrapper .custom-filter.open .filter-body label {
    font-size: 13px;
  }
}
#qf-filter-wrapper .custom-filter.open .filter-body label .label {
  font-weight: 400;
  font-size: 12px;
  color: var(--text-primary-color);
}
@media only screen and (min-width: 992px) {
  #qf-filter-wrapper .custom-filter.open .filter-body label .label {
    font-size: 13px;
  }
}
#qf-filter-wrapper .custom-filter.open .filter-body label .label span {
  color: var(--text-primary-color);
  font-size: 14px;
}
#qf-filter-wrapper .custom-filter.open .filter-body label input {
  width: 0;
  height: 0;
  margin: 0;
}
#qf-filter-wrapper .custom-filter.open .filter-body label .custom-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  padding: 2px;
  background: white;
  border: 1px solid #111111;
}
#qf-filter-wrapper .custom-filter.open .filter-body label .custom-check svg {
  opacity: 0;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
  max-height: 14px;
}
#qf-filter-wrapper .custom-filter.open .filter-body label:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
#qf-filter-wrapper .custom-filter.open .filter-body label:hover .custom-check {
  border-color: var(--text-primary-color);
}
#qf-filter-wrapper .custom-filter.open .filter-body label input:checked + .custom-check {
  background: var(--text-primary-color);
  border-color: var(--text-primary-color);
}
#qf-filter-wrapper .custom-filter.open .filter-body label input:checked + .custom-check svg {
  opacity: 1;
}
#qf-filter-wrapper .custom-filter.open .filter-body label input:checked + .custom-check svg path {
  fill: #fff;
}
#qf-filter-wrapper .sort-container {
  display: none;
}
#qf-filter-wrapper .buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
@media only screen and (min-width: 992px) {
  #qf-filter-wrapper .buttons .apply-filters {
    display: none;
  }
}
#qf-filter-wrapper #reset-filters {
  display: block;
  width: 100%;
  font-weight: 400;
  text-align: right;
  text-decoration: underline;
  text-transform: uppercase;
  font-size: 14px;
}
#qf-filter-wrapper #reset-filters:hover {
  text-decoration: none;
}
#qf-filter-wrapper .custom-filter-load-more {
  width: -moz-max-content;
  width: max-content;
  margin: auto;
  margin-top: 40px;
  position: relative;
}
#qf-filter-wrapper .custom-filter-load-more.infinite-scroll {
  opacity: 0;
  pointer-events: none;
  height: 0;
  width: 0;
  overflow: hidden;
}
#qf-filter-wrapper .custom-filter-load-more .load-more-spinner {
  width: 0;
  height: 0;
  overflow: hidden;
  position: absolute;
  right: calc(-50% + 25px);
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: 0.3s all;
}
#qf-filter-wrapper .custom-filter-load-more .load-more-spinner .spinner-circle-outer {
  width: 100%;
  height: 100%;
}
#qf-filter-wrapper .custom-filter-load-more .load-more-spinner.show {
  width: 30px;
  height: 30px;
  opacity: 1;
}
#qf-filter-wrapper .price-wrapper {
  margin: 25px 0 15px 0;
}
#qf-filter-wrapper .price-wrapper .filter-heading {
  margin-bottom: 15px;
  font-weight: 600;
}
#qf-filter-wrapper .price-wrapper .custom-range ::-moz-selection {
  color: #fafafa;
  background: #000;
}
#qf-filter-wrapper .price-wrapper .custom-range ::selection {
  color: #fafafa;
  background: #000;
}
#qf-filter-wrapper .price-wrapper .custom-range .wrapper {
  width: 400px;
  background: #fff;
  border-radius: 10px;
  padding: 20px 25px 40px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}
#qf-filter-wrapper .price-wrapper .custom-range header h2 {
  font-size: 24px;
  font-weight: 600;
}
#qf-filter-wrapper .price-wrapper .custom-range header p {
  margin-top: 5px;
  font-size: 12px;
}
#qf-filter-wrapper .price-wrapper .custom-range .price-input {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
#qf-filter-wrapper .price-wrapper .custom-range .price-input .price-input-hidden {
  opacity: 0;
  width: 0;
  height: 0;
  overflow: hidden;
  position: absolute;
  pointer-events: none;
}
#qf-filter-wrapper .price-wrapper .custom-range .price-input .field {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
#qf-filter-wrapper .price-wrapper .custom-range .price-input .field * {
  font-size: 12px;
  font-weight: 300;
}
#qf-filter-wrapper .price-wrapper .custom-range .price-input .field:first-of-type input {
  text-align: left;
  padding-left: 5px;
}
#qf-filter-wrapper .price-wrapper .custom-range .price-input .field:last-of-type input {
  text-align: right;
}
#qf-filter-wrapper .price-wrapper .custom-range .field input {
  width: -moz-max-content;
  width: max-content;
  height: 100%;
  outline: none;
  font-size: 12px;
  border: none;
  -moz-appearance: textfield;
  background: #FAFAFA;
  -webkit-appearance: none;
  max-width: 37px;
}
#qf-filter-wrapper .price-wrapper .custom-range input[type=number]::-webkit-outer-spin-button,
#qf-filter-wrapper .price-wrapper .custom-range input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
#qf-filter-wrapper .price-wrapper .custom-range .price-input .separator {
  width: 130px;
  display: flex;
  font-size: 12px;
  align-items: center;
  justify-content: center;
}
#qf-filter-wrapper .price-wrapper .custom-range .slider {
  height: 2px;
  position: relative;
  background: #ddd;
  border-radius: 5px;
  translate: 0 -1px;
}
#qf-filter-wrapper .price-wrapper .custom-range .slider .progress {
  height: 3px;
  left: 0;
  right: 0;
  position: absolute;
  border-radius: 5px;
  translate: 0 -1.5px;
  background: var(--text-primary-color);
}
#qf-filter-wrapper .price-wrapper .custom-range .range-input {
  position: relative;
}
#qf-filter-wrapper .price-wrapper .custom-range .range-input input {
  position: absolute;
  width: 100%;
  height: 5px;
  top: -7px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
#qf-filter-wrapper .price-wrapper .custom-range .range-input input.range-min {
  left: -2px;
}
#qf-filter-wrapper .price-wrapper .custom-range input[type=range]::-webkit-slider-thumb {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: var(--text-primary-color);
  pointer-events: auto;
  -webkit-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}
#qf-filter-wrapper .price-wrapper .custom-range input[type=range]::-moz-range-thumb {
  height: 10px;
  width: 10px;
  border: none;
  border-radius: 50%;
  background: var(--text-primary-color);
  pointer-events: auto;
  -moz-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}
@media only screen and (max-width: 991.98px) {
  #qf-filter-wrapper .price-wrapper .custom-range input[type=range]::-webkit-slider-thumb {
    height: 26px;
    width: 26px;
  }
  #qf-filter-wrapper .price-wrapper .custom-range input[type=range]::-moz-range-thumb {
    height: 26px;
    width: 26px;
  }
}
#qf-filter-wrapper .price-wrapper button {
  margin-top: 8px;
  width: 100%;
}
#qf-filter-wrapper.horizontal-filters {
  gap: 20px !important;
}
@media only screen and (min-width: 992px) {
  #qf-filter-wrapper.horizontal-filters {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media only screen and (min-width: 992px) and (min-width: 992px) {
  #qf-filter-wrapper.horizontal-filters .filter-container-wrapper {
    position: static;
    top: unset;
  }
}
@media only screen and (min-width: 992px) {
  #qf-filter-wrapper.horizontal-filters .filter-container-wrapper .filter-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 992px) and (min-width: 992px) {
  #qf-filter-wrapper.horizontal-filters .filter-container-wrapper .filter-container .sort-container {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 992px) {
  #qf-filter-wrapper.horizontal-filters .filter-container-wrapper .filter-container .custom-filter {
    position: relative;
    height: -moz-max-content;
    height: max-content;
    margin-bottom: 0;
  }
  #qf-filter-wrapper.horizontal-filters .filter-container-wrapper .filter-container .custom-filter .filter-heading {
    padding-right: 20px;
  }
  #qf-filter-wrapper.horizontal-filters .filter-container-wrapper .filter-container .custom-filter .filter-body {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
    background-color: #ffffff;
    border-radius: 5px;
    z-index: 1;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  #qf-filter-wrapper.horizontal-filters .filter-container-wrapper .filter-container .custom-filter .filter-body .price-wrapper {
    padding: 0 15px;
  }
  #qf-filter-wrapper.horizontal-filters .filter-container-wrapper .filter-container .custom-filter.open .filter-body {
    height: -moz-max-content;
    height: max-content;
  }
}
@media only screen and (min-width: 992px) and (min-width: 992px) {
  #qf-filter-wrapper.horizontal-filters .filter-container-wrapper .filter-container .reset-filter-wrapper {
    display: none;
  }
}
@media only screen and (min-width: 992px) {
  #qf-filter-wrapper.horizontal-filters .filter-container-wrapper .selected-filter-wrapper {
    order: 999;
    display: none;
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 991.98px) {
  #qf-filter-wrapper.horizontal-filters .filter-container-wrapper .selected-filter-wrapper {
    display: flex;
    order: 1;
  }
}
#qf-filter-wrapper.horizontal-filters .selected-filter-wrapper .reset-filter-wrapper {
  display: flex;
  align-items: center;
}
#qf-filter-wrapper.horizontal-filters .selected-filter-wrapper .reset-filter-wrapper #reset-filters {
  margin-top: 0;
  font-size: 12px;
}
@media only screen and (max-width: 991.98px) {
  #qf-filter-wrapper.horizontal-filters .selected-filter-wrapper {
    display: flex;
    order: 1;
  }
}
#qf-filter-wrapper .desktop-filter-heading h2,
#qf-filter-wrapper .desktop-filter-heading span {
  font-size: 20px;
}
@media only screen and (max-width: 991.98px) {
  #qf-filter-wrapper .desktop-filter-heading h2,
  #qf-filter-wrapper .desktop-filter-heading span {
    font-size: 16px;
  }
}
#qf-filter-wrapper .custom-filter .filter-heading {
  font-weight: 700;
  font-size: 16px;
}
#qf-filter-wrapper .custom-filter .filter-heading svg {
  transform: translateY(-50%) rotate(-90deg);
}
#qf-filter-wrapper .custom-filter.open .filter-heading svg {
  transform: rotate(0deg) translateY(0);
}
#qf-filter-wrapper .custom-filter.open .filter-body label .label {
  font-size: 16px;
}
#qf-filter-wrapper .custom-filter.open .filter-body.filter-body-size label {
  width: calc(25% - 2px);
}
#qf-filter-wrapper .custom-filter.open .filter-body.filter-body-size label .label {
  font-weight: 600;
  font-size: 14px;
}

@keyframes revealLeft {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes revealFade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.collection-sort-wrapper {
  position: sticky;
  top: 56px;
  margin: 0 0 10px;
  z-index: 88;
}
@media only screen and (min-width: 768px) {
  .collection-sort-wrapper {
    top: 65px;
    margin: 0 0 20px;
  }
}
@media only screen and (min-width: 992px) {
  .collection-sort-wrapper {
    margin: 0 0 40px;
    top: 90px;
  }
}
@media only screen and (max-width: 767.98px) {
  .collection-sort-wrapper .page-width {
    padding: 0;
  }
}

.collection-sort {
  display: flex;
  justify-content: space-between;
  height: 38px;
  outline: 2px solid #737373;
  background: white;
}
@media only screen and (max-width: 767.98px) {
  .collection-sort {
    outline: 2px solid var(--text-primary-color);
  }
}
.collection-sort .collection-sort-actions {
  display: flex;
}
.collection-sort .hide-filters {
  display: none;
}
@media only screen and (min-width: 992px) {
  .collection-sort .hide-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    gap: 8px;
    border-right: 2px solid #737373;
    font-size: 12px;
    color: #737373;
    cursor: pointer;
  }
}
.collection-sort .hide-filters span {
  font-size: 12px;
}
.collection-sort .hide-filters:hover {
  color: var(--text-primary-color);
}
.collection-sort .hide-filters:hover svg path {
  stroke: var(--text-primary-color);
}
.collection-sort .mobile-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  gap: 8px;
  border-right: 2px solid var(--text-primary-color);
  font-size: 12px;
  color: #737373;
  cursor: pointer;
}
@media only screen and (max-width: 767.98px) {
  .collection-sort .mobile-filters {
    color: var(--text-primary-color);
  }
  .collection-sort .mobile-filters svg path {
    stroke: var(--text-primary-color);
  }
}
@media only screen and (min-width: 992px) {
  .collection-sort .mobile-filters {
    display: none;
  }
}
.collection-sort .mobile-filters span {
  font-size: 12px;
}
@media only screen and (max-width: 767.98px) {
  .collection-sort .mobile-filters span {
    text-transform: uppercase;
  }
}
.collection-sort .mobile-filters:hover {
  color: var(--text-primary-color);
}
.collection-sort .mobile-filters:hover svg path {
  stroke: var(--text-primary-color);
}
.collection-sort .collection-sort-select {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  gap: 8px;
  border-right: 2px solid #737373;
  cursor: pointer;
}
@media only screen and (max-width: 767.98px) {
  .collection-sort .collection-sort-select {
    border-right: 2px solid var(--text-primary-color);
  }
}
.collection-sort .collection-sort-select:hover .sort-selected {
  color: var(--text-primary-color);
}
.collection-sort .collection-sort-select:hover svg path {
  stroke: var(--text-primary-color);
}
.collection-sort .collection-sort-select .sort-selected {
  font-size: 12px;
  color: #737373;
  cursor: pointer;
}
@media only screen and (max-width: 767.98px) {
  .collection-sort .collection-sort-select .sort-selected {
    text-transform: uppercase;
    color: var(--text-primary-color);
  }
  .collection-sort .collection-sort-select .sort-selected svg path {
    stroke: var(--text-primary-color);
  }
}
.collection-sort .collection-sort-select .sort-options {
  display: none;
}
.collection-sort .collection-sort-select .sort-options.active {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  background: white;
  outline: 2px solid #737373;
  background: white;
  width: 150px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
}
.collection-sort .collection-sort-select .sort-options .option {
  font-size: 12px;
  color: var(--text-primary-color);
}
.collection-sort .collection-sort-select .sort-options .option:hover {
  text-decoration: underline;
}
.collection-sort .collection-sort-size {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
  padding: 10px;
}
.collection-sort .collection-sort-size .grid-size-option {
  position: relative;
  display: flex;
  gap: 3px;
  cursor: pointer;
}
.collection-sort .collection-sort-size .grid-size-option:after {
  content: "";
  position: absolute;
  left: -1px;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: var(--text-primary-color);
  transition: 0.35s ease;
}
.collection-sort .collection-sort-size .grid-size-option span {
  width: 16px;
  height: 16px;
  outline: 1px solid var(--text-primary-color);
}
.collection-sort .collection-sort-size .grid-size-option:hover:after, .collection-sort .collection-sort-size .grid-size-option.active:after {
  width: calc(100% + 2px);
}
.collection-sort .collection-sort-size .grid-size-option:hover span, .collection-sort .collection-sort-size .grid-size-option.active span {
  background: var(--text-primary-color);
}
@media only screen and (min-width: 1200px) {
  .collection-sort .collection-sort-size .grid-size-option.mobile {
    display: none;
  }
}
@media only screen and (max-width: 1199.98px) {
  .collection-sort .collection-sort-size .grid-size-option.desktop {
    display: none;
  }
}

.shopify-policy__container.shopify-policy__shipping-rates {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
}
.shopify-policy__container.shopify-policy__shipping-rates .shipping-rates-table-wrapper {
  width: 100%;
  overflow-x: auto;
}
.shopify-policy__container.shopify-policy__shipping-rates .shipping-rates-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
.shopify-policy__container.shopify-policy__shipping-rates .shipping-rates-table th,
.shopify-policy__container.shopify-policy__shipping-rates .shipping-rates-table td {
  border: 1px solid var(--border-color, #d8d8d8);
  padding: 20px 10px;
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}
@media only screen and (max-width: 450px) {
  .shopify-policy__container.shopify-policy__shipping-rates .shipping-rates-table th,
  .shopify-policy__container.shopify-policy__shipping-rates .shipping-rates-table td {
    min-width: 100px;
  }
}
.shopify-policy__container.shopify-policy__shipping-rates .shipping-rates-table th {
  font-weight: 600;
}
.shopify-policy__container.shopify-policy__shipping-rates .shipping-rates-table__extra-row[hidden] {
  display: none;
}
.shopify-policy__container.shopify-policy__shipping-rates .shipping-rates-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 600;
  padding-left: 0;
}
.shopify-policy__container.shopify-policy__shipping-rates .shipping-rates-toggle:hover {
  text-decoration: underline;
}

.help-page .page-width {
  max-width: 1450px;
}
.help-page .help-page-wrapper {
  display: flex;
}
@media only screen and (max-width: 767.98px) {
  .help-page .help-page-wrapper {
    flex-direction: column-reverse;
  }
}
.help-page .help-page-wrapper .help-sidebar {
  width: 100%;
  max-width: 358px;
  padding-top: 20px;
  border-top: 1px solid var(--text-primary-color);
}
@media only screen and (min-width: 992px) {
  .help-page .help-page-wrapper .help-sidebar {
    border: none;
    padding: 0;
    padding-right: 30px;
    border-right: 1px solid var(--text-primary-color);
  }
}
@media only screen and (min-width: 992px) {
  .help-page .help-page-wrapper .help-sidebar .sticky {
    position: sticky;
    top: 90px;
  }
}
.help-page .help-page-wrapper .help-sidebar .heading-rg {
  font-family: "Neue Plak";
}
.help-page .help-page-wrapper .help-sidebar ul {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media only screen and (min-width: 992px) {
  .help-page .help-page-wrapper .help-sidebar ul {
    margin: 50px 0 0;
  }
}
.help-page .help-page-wrapper .help-sidebar ul li a {
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  text-transform: uppercase;
}
.help-page .help-page-wrapper .help-sidebar ul li a:hover {
  text-decoration: underline;
}
.help-page .help-page-wrapper .help-sidebar ul li.active a {
  text-decoration: underline;
}
.help-page .help-page-wrapper .help-content {
  width: 100%;
  margin: 0 0 30px;
}
@media only screen and (min-width: 992px) {
  .help-page .help-page-wrapper .help-content {
    margin: 0;
    padding-left: 30px;
  }
}
@media only screen and (min-width: 1200px) {
  .help-page .help-page-wrapper .help-content {
    padding-left: 50px;
  }
}
@media only screen and (min-width: 1400px) {
  .help-page .help-page-wrapper .help-content {
    padding-left: 80px;
  }
}
.help-page .help-page-wrapper .help-content h1 {
  text-transform: uppercase;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.social-icons a {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  color: var(--primary-color);
}
.social-icons a:hover {
  color: var(--text-primary-color);
}
.social-icons a svg {
  width: 20px;
  height: 20px;
}

.product-option-selectors {
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-flow: column nowrap;
  gap: 20px;
}
.product-option-selectors.product-option-selectors--sidebar, .product-option-selectors.product-option-selectors--dropdown {
  flex-flow: row wrap;
  gap: 0;
}
.product-option-selectors.product-option-selectors--sidebar .product-option, .product-option-selectors.product-option-selectors--dropdown .product-option {
  flex: 1 0 50%;
  max-width: 50%;
}
.product-option-selectors.product-option-selectors--sidebar .product-option:nth-child(n+3) .product-option-sidebar-select, .product-option-selectors.product-option-selectors--dropdown .product-option:nth-child(n+3) .product-option-sidebar-select {
  border-top: none;
}
.product-option-selectors.product-option-selectors--sidebar .product-option + .product-option:not(:nth-child(odd)) .product-option-sidebar-select, .product-option-selectors.product-option-selectors--dropdown .product-option + .product-option:not(:nth-child(odd)) .product-option-sidebar-select {
  border-left: none;
}
.product-option-selectors.product-option-selectors--sidebar .product-option:last-of-type:nth-child(odd), .product-option-selectors.product-option-selectors--sidebar:has(.product-option:only-of-type) .product-option, .product-option-selectors.product-option-selectors--dropdown .product-option:last-of-type:nth-child(odd), .product-option-selectors.product-option-selectors--dropdown:has(.product-option:only-of-type) .product-option {
  flex-basis: 100%;
  max-width: 100%;
}
.product-option-selectors.product-option-selectors--dropdown {
  position: relative;
}

.product-option {
  width: 100%;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-flow: column nowrap;
  gap: 10px;
  /*
  // Error Option Styles
  &.error {
      .product-option-radios {

          label {
              border-color: var( --accent-3-color, #811922 );
          }

          input.disabled + label::before {
              background: var( --accent-3-color, #811922 );
          }


      }

  }
  */
}
.product-option .product-option-name {
  width: 100%;
  text-align: left;
  font-size: 14px;
}
.product-option .product-option-select {
  width: 100%;
  min-height: 40px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  cursor: pointer;
  border-radius: 0px;
  border: solid 1px var(--secondary-color-grey, #E5E5E5);
}
.product-option .product-option-select:has(:focus, :focus-within) {
  border-color: var(--primary-color-black, #1A1A1A);
}
.product-option .product-option-select:has(:focus, :focus-within)::after {
  rotate: 135deg;
  translate: 0 calc(-50% + 2px);
}
.product-option .product-option-select select {
  border: none;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 10px 15px;
  font-size: 14px;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.product-option .product-option-select::after {
  content: "";
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  display: flex;
  width: 8px;
  height: 8px;
  position: absolute;
  inset: 50% 15px auto auto;
  translate: 0 calc(-50% - 2px);
  border: solid 1px var(--primary-color-black, #1A1A1A);
  border-top: transparent;
  border-right: transparent;
  rotate: -45deg;
}
.product-option .product-option-radios {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-flow: row wrap;
  gap: 4px;
}
.product-option .product-option-radios label {
  flex: calc(33.3333333333% - 4px);
  max-width: calc(33.3333333333% - 4px);
  isolation: isolate;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  font-size: 16px;
  min-width: 25px;
  padding: 7px 10px 8px;
  border-radius: 0px;
  text-align: center;
  border: solid 1px var(--primary-color-black, #1A1A1A);
  white-space: nowrap;
  transition: all 0.1s ease-in;
}
.product-option .product-option-radios label.product-option-label--swatch {
  width: 38px;
  height: 38px;
  background: var(--secondary-color-grey, #E5E5E5);
  border: solid 2px var(--primary-color-white, #FFFFFF);
  outline: solid 1px var(--secondary-color-grey, #E5E5E5);
}
.product-option .product-option-radios label.product-option-label--swatch > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media (hover: hover) {
  .product-option .product-option-radios label.product-option-label--swatch:hover {
    border-color: var(--primary-color-white, #FFFFFF);
    outline-color: var(--primary-color-black, #1A1A1A);
  }
}
@media only screen and (min-width: 576px) {
  .product-option .product-option-radios label {
    flex: calc(25% - 4px);
    max-width: calc(25% - 4px);
  }
}
.product-option .product-option-radios input {
  display: none;
}
.product-option .product-option-radios input + label:hover, .product-option .product-option-radios input:checked + label {
  color: var(--primary-color-white, #FFFFFF);
  background-color: var(--primary-color-black, #1A1A1A);
  border-color: var(--primary-color-black, #1A1A1A);
}
.product-option .product-option-radios input + label:hover.product-option-label--swatch, .product-option .product-option-radios input:checked + label.product-option-label--swatch {
  border-color: var(--primary-color-white, #FFFFFF);
  outline-color: var(--primary-color-black, #1A1A1A);
}
.product-option .product-option-radios input:active:not(:checked) + label {
  background: var(--secondary-color-grey, #E5E5E5);
  border-color: var(--secondary-color-grey, #E5E5E5);
}
.product-option .product-option-radios input.disabled + label {
  cursor: auto;
  border-color: var(--primary-color-black, #1A1A1A);
}
.product-option .product-option-radios input.disabled + label::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--primary-color-black, #1A1A1A);
  clip-path: polygon(0 100%, 100% 0, 100% 1px, 0px calc(100% + 1px));
  pointer-events: none;
}
.product-option .product-option-radios input.disabled:checked + label::before {
  background: var(--primary-color-black, #1A1A1A);
}
.product-option .product-option-sidebar-select {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
  flex: 1;
  width: 100%;
  min-height: 40px;
  padding: 10px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row nowrap;
  gap: 22px;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.04em;
  color: var(--primary-color-black, #1A1A1A);
  border: solid 1px var(--primary-color, #EDE4D8);
  transition: color 0.1s ease-in;
}
.product-option .product-option-sidebar-select > svg {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  width: 11px;
  min-width: 11px;
  height: 9px;
  -o-object-fit: contain;
     object-fit: contain;
  color: inherit;
  transition: color 0.1s ease-in;
}
.product-option .product-option-sidebar {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 100;
  width: 100%;
  max-width: 300px;
  background: var(--primary-color-white, #FFFFFF);
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-flow: column nowrap;
  gap: 0px;
  pointer-events: none;
  opacity: 0;
  translate: 100% 0;
  /*
  transition: visibility 0s linear 0.2s, 
              opacity 0.1s ease-in 0s, 
              translate 0.2s ease-in 0s;
  */
  transition: translate 0.3s ease-in 0s, opacity 0.15s ease-in 0.15s;
}
.product-option .product-option-sidebar.product-option-sidebar--active {
  pointer-events: all;
  opacity: 1;
  translate: 0;
  /*
  transition: visibility 0s linear 0s, 
              opacity 0.1s ease-in 0.1s, 
              translate 0.2s ease-in 0s;
  */
  transition: translate 0.3s ease-in 0s, opacity 0.15s ease-in 0s;
}
.product-option .product-option-sidebar__header {
  width: 100%;
  min-height: 68px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 15px 16px 15px;
  border-bottom: solid 1px var(--secondary-color-grey, #E5E5E5);
}
.product-option .product-option-sidebar__header .sidebar-heading,
.product-option .product-option-sidebar__header .product-option-sidebar__close {
  color: var(--primary-color-black, #1A1A1A);
}
.product-option .product-option-sidebar__header .sidebar-heading {
  flex: 1;
  font-size: 20px;
  text-align: left;
}
.product-option .product-option-sidebar__header .product-option-sidebar__close {
  cursor: pointer;
  width: 28px;
  min-width: 28px;
  height: 28px;
  padding: 8px;
}
.product-option .product-option-sidebar__header .product-option-sidebar__close > svg {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  color: inherit;
}
.product-option .product-option-sidebar__inputs {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-flow: column nowrap;
  gap: 0px;
  padding: 15px 0;
  max-height: 100%;
  overflow: hidden auto;
}
.product-option .product-option-sidebar__inputs::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.product-option .product-option-sidebar__inputs::-webkit-scrollbar-track {
  background: var(--secondary-color-grey, #E5E5E5);
}
.product-option .product-option-sidebar__inputs::-webkit-scrollbar-thumb {
  outline: none;
  background-color: var(--accent-1-color, #615F65);
}
.product-option .product-option-sidebar__inputs label {
  isolation: isolate;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  font-size: 13px;
  width: 100%;
  min-height: 37px;
  padding: 10px 15px;
  border-radius: 0px;
  color: var(--primary-color-black, #1A1A1A);
  white-space: nowrap;
  transition: all 0.1s ease-in;
}
.product-option .product-option-sidebar__inputs label.product-option-label--swatch {
  width: 38px;
  height: 38px;
  background: var(--secondary-color-grey, #E5E5E5);
  border: solid 2px var(--primary-color-white, #FFFFFF);
  outline: solid 1px var(--secondary-color-grey, #E5E5E5);
}
.product-option .product-option-sidebar__inputs label.product-option-label--swatch > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media (hover: hover) {
  .product-option .product-option-sidebar__inputs label.product-option-label--swatch:hover {
    border-color: var(--primary-color-white, #FFFFFF);
    outline-color: var(--primary-color-black, #1A1A1A);
  }
}
.product-option .product-option-sidebar__inputs label .product-option-label--tag {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  position: absolute;
  inset: 50% 15px auto auto;
  translate: 0 -50%;
  font-size: 10px;
  line-height: 1.3;
  font-weight: 400;
  text-align: right;
  letter-spacing: 0.04em;
  text-underline-offset: 0.25em;
  color: var(--accent-1-color, #615F65);
}
.product-option .product-option-sidebar__inputs label .product-option-label--tag.sold-out {
  opacity: 0.4;
  color: var(--accent-1-color, #615F65);
  text-decoration: underline;
}
.product-option .product-option-sidebar__inputs label .product-option-label--tag.low-stock {
  color: var(--accent-3-color, #811922);
}
.product-option .product-option-sidebar__inputs input {
  display: none;
}
.product-option .product-option-sidebar__inputs input + label:hover, .product-option .product-option-sidebar__inputs input:checked + label {
  background: var(--primary-color, #EDE4D8);
}
.product-option .product-option-sidebar__inputs input + label:hover.product-option-label--swatch, .product-option .product-option-sidebar__inputs input:checked + label.product-option-label--swatch {
  border-color: var(--primary-color-white, #FFFFFF);
  outline-color: var(--primary-color-black, #1A1A1A);
}
.product-option .product-option-sidebar__inputs input:active:not(:checked) + label {
  background: var(--secondary-color-grey, #E5E5E5);
}
.product-option .product-option-sidebar__inputs input.disabled + label {
  color: rgba(97, 95, 101, 0.4);
  /*
      cursor: not-allowed;

      // Crossed Out
      &::before {
          content: "";
          position: absolute;
          inset: 0; // Stretch the pseudo-element to cover the label
          background: var( --secondary-color-grey, #E5E5E5 );
          clip-path: polygon(0 100%, 100% 0, 100% 1px, 0px calc(100% + 1px));
          // clip-path: polygon(0 0, 100% 100%, 100% calc(100% - 1px), 0px -1px);
          pointer-events: none;
      }
  */
}
.product-option .product-option-sidebar__inputs input.disabled:checked + label {
  /*
      &::before {
          background: var( --primary-color-black, #1A1A1A );
      }
  */
}
.product-option .product-option-dropdown-select {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
  flex: 1;
  width: 100%;
  min-height: 40px;
  padding: 10px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row nowrap;
  gap: 22px;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.04em;
  color: var(--primary-color-black, #1A1A1A);
  border: solid 1px var(--primary-color, #EDE4D8);
}
.product-option .product-option-dropdown-select > svg {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  width: 11px;
  min-width: 11px;
  height: 9px;
  -o-object-fit: contain;
     object-fit: contain;
  color: inherit;
}
.product-option .product-option-dropdown {
  position: absolute;
  inset: 0 0 auto 0;
  translate: 0 0;
  z-index: 10;
  width: 100%;
  max-width: 400px;
  max-height: 185px;
  background: var(--primary-color-white, #FFFFFF);
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.25);
  align-items: flex-start;
  justify-content: flex-start;
  flex-flow: column nowrap;
  gap: 0px;
  display: none;
  pointer-events: none;
  opacity: 0;
  transition: none;
}
.product-option .product-option-dropdown.product-option-dropdown--active {
  display: flex;
  pointer-events: all;
  opacity: 1;
  transition: none;
}
.product-option .product-option-dropdown__inputs {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-flow: column nowrap;
  gap: 0px;
  padding: 0;
  max-height: 100%;
  overflow: hidden auto;
}
.product-option .product-option-dropdown__inputs::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.product-option .product-option-dropdown__inputs::-webkit-scrollbar-track {
  background: var(--secondary-color-grey, #E5E5E5);
}
.product-option .product-option-dropdown__inputs::-webkit-scrollbar-thumb {
  outline: none;
  background-color: var(--accent-1-color, #615F65);
}
.product-option .product-option-dropdown__inputs label {
  isolation: isolate;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  font-size: 13px;
  width: 100%;
  min-height: 37px;
  padding: 10px 15px;
  border-radius: 0px;
  color: var(--primary-color-black, #1A1A1A);
  white-space: nowrap;
  transition: all 0.1s ease-in;
}
.product-option .product-option-dropdown__inputs label.product-option-label--swatch {
  width: 38px;
  height: 38px;
  background: var(--secondary-color-grey, #E5E5E5);
  border: solid 2px var(--primary-color-white, #FFFFFF);
  outline: solid 1px var(--secondary-color-grey, #E5E5E5);
}
.product-option .product-option-dropdown__inputs label.product-option-label--swatch > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.product-option .product-option-dropdown__inputs label.product-option-label--swatch:hover {
  border-color: var(--primary-color-white, #FFFFFF);
  outline-color: var(--primary-color-black, #1A1A1A);
}
.product-option .product-option-dropdown__inputs label .product-option-label--tag {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  position: absolute;
  inset: 50% 15px auto auto;
  translate: 0 -50%;
  font-size: 10px;
  line-height: 1.3;
  font-weight: 400;
  text-align: right;
  letter-spacing: 0.04em;
  text-underline-offset: 0.25em;
  color: var(--accent-1-color, #615F65);
}
.product-option .product-option-dropdown__inputs label .product-option-label--tag.sold-out {
  opacity: 0.4;
  color: var(--accent-1-color, #615F65);
  text-decoration: underline;
}
.product-option .product-option-dropdown__inputs label .product-option-label--tag.low-stock {
  color: var(--accent-3-color, #811922);
}
.product-option .product-option-dropdown__inputs input {
  display: none;
}
.product-option .product-option-dropdown__inputs input + label:hover, .product-option .product-option-dropdown__inputs input:checked + label {
  background: var(--primary-color, #EDE4D8);
}
.product-option .product-option-dropdown__inputs input + label:hover.product-option-label--swatch, .product-option .product-option-dropdown__inputs input:checked + label.product-option-label--swatch {
  border-color: var(--primary-color-white, #FFFFFF);
  outline-color: var(--primary-color-black, #1A1A1A);
}
.product-option .product-option-dropdown__inputs input:active:not(:checked) + label {
  background: var(--secondary-color-grey, #E5E5E5);
}
.product-option .product-option-dropdown__inputs input.disabled + label {
  color: rgba(97, 95, 101, 0.4);
  /*
      cursor: not-allowed;

      // Crossed Out
      &::before {
          content: "";
          position: absolute;
          inset: 0; // Stretch the pseudo-element to cover the label
          background: var( --secondary-color-grey, #E5E5E5 );
          clip-path: polygon(0 100%, 100% 0, 100% 1px, 0px calc(100% + 1px));
          // clip-path: polygon(0 0, 100% 100%, 100% calc(100% - 1px), 0px -1px);
          pointer-events: none;
      }
  */
}
.product-option .product-option-dropdown__inputs input.disabled:checked + label {
  /*
      &::before {
          background: var( --primary-color-black, #1A1A1A );
      }
  */
}

.product-option-name {
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
  flex-flow: row wrap;
  gap: 6px;
}
.product-option-name .option-name {
  flex: 1;
  order: 1;
  font-size: 12px;
}
.product-option-name .option-name * {
  font-size: inherit;
}
.product-option-name .size-guide {
  order: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0;
  font-size: 14px;
  text-decoration: underline;
  color: var(--text-primary-color);
}
.product-option-name .size-guide svg {
  height: 24px;
  width: 24px;
  min-width: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-option-name .option-meta {
  width: 100%;
  flex: 100%;
  order: 3;
  font-size: 12px;
}
