/** Shopify CDN: Minification failed

Line 144:0 "@charset" must be the first rule in the file
Line 4878:0 Unexpected "}"

**/
@font-face {
    font-family: 'CalibreRegular';
    src: url('/cdn/shop/files/CalibreRegular.woff2?v=1739809066') format('woff2'),
         url('/cdn/shop/files/CalibreRegular.woff?v=1739809066') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'CalibreRegular', sans-serif;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0)
  }

  to {
    transform: rotate(1turn)
  }
}

.splide__container {
  position: relative;
  box-sizing: border-box
}

.splide__list {
  margin: 0 !important;
  padding: 0 !important;
  width: -webkit-max-content;
  width: max-content;
  will-change: transform
}

.splide.is-active .splide__list {
  display: flex
}

.splide__pagination {
  display: inline-flex;
  align-items: center;
  width: 95%;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0
}

.splide__pagination li {
  list-style-type: none;
  display: inline-block;
  line-height: 1;
  margin: 0
}

.splide {
  visibility: hidden
}

.splide,
.splide__slide {
  position: relative;
  outline: none
}

.splide__slide {
  box-sizing: border-box;
  list-style-type: none !important;
  margin: 0;
  flex-shrink: 0
}

.splide__slide img {
  vertical-align: bottom
}

.splide__slider {
  position: relative
}

.splide__spinner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #999;
  border-left-color: transparent;
  animation: splide-loading 1s linear infinite
}

.splide__track {
  position: relative;
  z-index: 0;
  overflow: hidden
}

.splide--draggable>.splide__track>.splide__list>.splide__slide {
  -webkit-user-select: none;
  user-select: none
}

.splide--fade>.splide__track>.splide__list {
  display: block
}

.splide--fade>.splide__track>.splide__list>.splide__slide {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0
}

.splide--fade>.splide__track>.splide__list>.splide__slide.is-active {
  position: relative;
  z-index: 1;
  opacity: 1
}

.splide--rtl {
  direction: rtl
}

.splide--ttb>.splide__track>.splide__list {
  display: block
}

.splide--ttb>.splide__pagination {
  width: auto
}

@charset "UTF-8";

/**
 * Baseline
 */

/* =======================================================================
  Photoswipe
========================================================================== */

/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */

/*
  Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)
*/

/* pswp = photoswipe */

.pswp {
  position: absolute;
  z-index: 15000;
  top: 0;
  left: 0;
  display: none;
  overflow: hidden;
  width: 100%;
  height: 100%;
  touch-action: none;
  touch-action: none;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  /* create separate layer, to avoid paint on window.onscroll in webkit/blink */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  outline: none;
}

.pswp * {
  box-sizing: border-box;
}

.pswp img {
  max-width: none;
}

/* style is added when JS option showHideOpacity is set to true */

.pswp--animate_opacity {
  /* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
  opacity: 0.001;
  will-change: opacity;
  /* for open/close transition */
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--open {
  display: block;
}

.pswp--zoom-allowed .pswp__img {
  /* autoprefixer: off */
  cursor: zoom-in;
  cursor: zoom-in;
  cursor: zoom-in;
}

.pswp--zoomed-in .pswp__img {
  /* autoprefixer: off */
  cursor: grab;
  cursor: grab;
  cursor: grab;
}

.pswp--dragging .pswp__img {
  /* autoprefixer: off */
  cursor: grabbing;
  cursor: grabbing;
  cursor: grabbing;
}

/*
  Background is added as a separate element.
  As animating opacity is much faster than animating rgba() background-color.
*/

.pswp__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--color-primary-background);
  opacity: 0;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: opacity;
}

.pswp__scroll-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.pswp__container,
.pswp__zoom-wrap {
  touch-action: none;
  touch-action: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

/* Prevent selection and tap highlights */

.pswp__container,
.pswp__img {
  -webkit-user-select: none;
  user-select: none;
  user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
}

.pswp__zoom-wrap {
  position: absolute;
  width: 100%;
  transform-origin: left top;
  transform-origin: left top;
  transform-origin: left top;
  transform-origin: left top;
  /* for open/close transition */
  transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp__bg {
  will-change: opacity;
  /* for open/close transition */
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
  transition: none;
  transition: none;
}

.pswp__container,
.pswp__zoom-wrap {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.pswp__item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
}

.pswp__img {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  color: transparent;
}

/*
  stretched thumbnail or div placeholder element (see below)
  style is added to avoid flickering in webkit/blink when layers overlap
*/

.pswp__img--placeholder {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/*
  div element that matches size of large image
  large image loads on top of it
*/

.pswp__img--placeholder--blank {
  background: rgba(var(--color-primary-text-rgb), 0.05);
}

.pswp--ie .pswp__img {
  top: 0;
  left: 0;
  width: 100% !important;
  height: auto !important;
}

/*
  Error message appears when image is not loaded
  (JS option errorMsg controls markup)
*/

.pswp__error-msg {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 12px;
  line-height: 14px;
  margin-top: -8px;
  color: var(--color-primary-text);
  letter-spacing: 0.05em;
}

.pswp__error-msg a {
  color: var(--color-primary-text);
  text-decoration: underline;
}

:root {
  --swiper-theme-color: var(--color-body-bg);
}

.space-y-1> :not([hidden])~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
}

.space-y-2> :not([hidden])~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}

.space-y-1\.5> :not([hidden])~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.375rem * var(--tw-space-y-reverse));
}

.appearance-none {
  -webkit-appearance: none;
  appearance: none;
}

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

.bg-black {
  --tw-bg-opacity: 1;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
}

.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}

.bg-scheme-text {
  background-color: var(--color-scheme-text);
}

.bg-scheme-background {
  background-color: var(--color-scheme-background);
}

.bg-scheme-accent {
  background-color: var(--color-scheme-accent);
}

.bg-border {
  background-color: var(--color-border);
}

.bg-placeholder-bg {
  background-color: hsla(0, 0%, 0%, 0.04);
}

.hover\:bg-scheme-text:hover {
  background-color: var(--color-scheme-text);
}

.hover\:bg-scheme-accent:hover {
  background-color: var(--color-scheme-accent);
}

.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-scheme-background-0 {
  --tw-gradient-from: var(--color-scheme-background-0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
}

.via-scheme-background {
  --tw-gradient-stops: var(--tw-gradient-from), var(--color-scheme-background), var(--tw-gradient-to, rgba(255, 255, 255, 0));
}

.to-scheme-background {
  --tw-gradient-to: var(--color-scheme-background);
}

.bg-center {
  background-position: center;
}

.bg-no-repeat {
  background-repeat: no-repeat;
}

.bg-cover {
  background-size: cover;
}

.bg-contain {
  background-size: contain;
}

.border-transparent {
  border-color: transparent;
}

.border-current {
  border-color: currentColor;
}

.border-scheme-text {
  border-color: var(--color-scheme-text);
}

.border-scheme-accent {
  border-color: var(--color-scheme-accent);
}

.border-scheme-meta {
  border-color: var(--color-scheme-meta);
}

.border-theme-color {
  border-color: var(--color-border);
}

.border-grid-color {
  border-color: var(--color-border);
}

.group:hover .group-hover\:border-scheme-accent {
  border-color: var(--color-scheme-accent);
}

.hover\:border-scheme-text:hover {
  border-color: var(--color-scheme-text);
}

.hover\:border-scheme-accent:hover {
  border-color: var(--color-scheme-accent);
}

.rounded-none {
  border-radius: 0px;
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-md {
  border-radius: 0.375rem;
}

.rounded-full {
  border-radius: 9999px;
}

.border-dashed {
  border-style: dashed;
}

.border-0 {
  border-width: 0px;
}

.border-2 {
  border-width: 2px;
}

.border {
  border-width: 1px;
}

.border-grid {
  border-width: var(--border-width);
}

.border-text {
  border-width: var(--text-width);
}

.border-checkbox {
  border-width: var(--checkbox-width);
}

.border-t-grid {
  border-top-width: var(--border-width);
}

.border-r-grid {
  border-right-width: var(--border-width);
}

.border-b-grid {
  border-bottom-width: var(--border-width);
}

.border-l-grid {
  border-left-width: var(--border-width);
}

.border-t-text {
  border-top-width: var(--text-width);
}

.border-b-text {
  border-bottom-width: var(--text-width);
}

.cursor-pointer {
  cursor: pointer;
}

.cursor-wait {
  cursor: wait;
}

.cursor-not-allowed {
  cursor: not-allowed;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline {
  display: inline;
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.table {
  display: table;
}

.grid {
  display: grid;
}

.contents {
  display: contents;
}

.hidden {
  display: none;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

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

.items-stretch {
  align-items: stretch;
}

.self-start {
  align-self: flex-start;
}

.self-stretch {
  align-self: stretch;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

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

.justify-between {
  justify-content: space-between;
}

.flex-1 {
  flex: 1 1 0%;
}

.flex-auto {
  flex: 1 1 auto;
}

.flex-grow {
  flex-grow: 1;
}

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

.font-normal {
  font-weight: 400;
}

.h-0 {
  height: 0px;
}

.h-2 {
  height: 0.5rem;
}

.h-3 {
  height: 0.75rem;
}

.h-4 {
  height: 1rem;
}

.h-5 {
  height: 1.25rem;
}

.h-6 {
  height: 1.5rem;
}

.h-7 {
  height: 1.75rem;
}

.h-8 {
  height: 2rem;
}

.h-10 {
  height: 2.5rem;
}

.h-14 {
  height: 3.5rem;
}

.h-auto {
  height: auto;
}

.h-0\.5 {
  height: 0.125rem;
}

.h-full {
  height: 100%;
}

.h-screen {
  height: 100vh;
}

.h-screen-header {
  height: 100vh;
}

.text-0 {
  font-size: 0;
  line-height: 0;
}

.text-xs {
  font-size: .64rem;
  line-height: var(--base-line-height);
}

.text-sm {
  font-size: .8rem;
  line-height: var(--base-line-height);
}

.text-base {
  font-size: 1rem;
  line-height: var(--base-line-height);
}

.text-lg {
  font-size: 1.25rem;
  line-height: var(--base-line-height);
}

.text-xl {
  font-size: 1.563rem;
  line-height: var(--base-line-height);
}

.text-2xl {
  font-size: 1.953rem;
  line-height: var(--base-line-height);
}

.list-none {
  list-style-type: none;
}

.m-0 {
  margin: 0px;
}

.m-auto {
  margin: auto;
}

.my-0 {
  margin-top: 0px;
  margin-bottom: 0px;
}

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

.my-1 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

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

.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

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

.my-6 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mt-5 {
  margin-top: 1.25rem;
}

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

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

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

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

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

.mr-auto {
  margin-right: auto;
}

.ml-auto {
  margin-left: auto;
}

.mb-1\.5 {
  margin-bottom: 0.375rem;
}

.mt-theme {
  margin-top: var(--spacing);
}

.mt-theme-half {
  margin-top: var(--spacing-half);
}

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

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

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

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

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

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

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

.-mt-theme {
  margin-top: calc(var(--spacing) * -1);
}

.-mb-theme-width {
  margin-bottom: calc(-1 * var(--border-width));
  ;
}

.max-h-full {
  max-height: 100%;
}

.max-w-xs {
  max-width: 20rem;
}

.max-w-sm {
  max-width: 24rem;
}

.max-w-md {
  max-width: 28rem;
}

.max-w-lg {
  max-width: 32rem;
}

.max-w-xl {
  max-width: 36rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-full {
  max-width: 100%;
}

.max-w-screen {
  max-width: 1620px;
}

.min-h-full {
  min-height: 100%;
}

.min-h-screen {
  min-height: 100vh;
}

.min-w-0 {
  min-width: 0px;
}

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

.object-cover {
  object-fit: cover;
}

.opacity-0 {
  opacity: 0;
}

.opacity-10 {
  opacity: 0.1;
}

.opacity-40 {
  opacity: 0.4;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-100 {
  opacity: 1;
}

.group:hover .group-hover\:opacity-100 {
  opacity: 1;
}

.overflow-auto {
  overflow: auto;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-x-auto {
  overflow-x: auto;
}

.overflow-y-auto {
  overflow-y: auto;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.p-0 {
  padding: 0px;
}

.p-1 {
  padding: 0.25rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-3 {
  padding: 0.75rem;
}

.p-4 {
  padding: 1rem;
}

.p-8 {
  padding: 2rem;
}

.p-px {
  padding: 1px;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.py-1\.5 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}

.py-theme {
  padding-top: var(--spacing);
  padding-bottom: var(--spacing);
}

.py-theme-half {
  padding-top: var(--spacing-half);
  padding-bottom: var(--spacing-half);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pl-100 {
  padding-left: 100%;
}

.pt-2\.5 {
  padding-top: 0.625rem;
}

.pt-theme {
  padding-top: var(--spacing);
}

.pb-theme {
  padding-bottom: var(--spacing);
}

.pt-theme-double {
  padding-top: var(--spacing-double);
}

.pb-theme-double {
  padding-bottom: var(--spacing-double);
}

.placeholder-current::placeholder {
  color: currentColor;
}

.pointer-events-none {
  pointer-events: none;
}

.static {
  position: static;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.top-0 {
  top: 0px;
}

.right-0 {
  right: 0px;
}

.bottom-0 {
  bottom: 0px;
}

.left-0 {
  left: 0px;
}

.top-1 {
  top: 0.25rem;
}

.top-2 {
  top: 0.5rem;
}

.right-2 {
  right: 0.5rem;
}

.bottom-2 {
  bottom: 0.5rem;
}

.bottom-3 {
  bottom: 0.75rem;
}

.top-4 {
  top: 1rem;
}

.right-4 {
  right: 1rem;
}

.bottom-4 {
  bottom: 1rem;
}

.left-4 {
  left: 1rem;
}

.bottom-8 {
  bottom: 2rem;
}

.-bottom-2 {
  bottom: -0.5rem;
}

.top-1\/2 {
  top: 50%;
}

.left-1\/2 {
  left: 50%;
}

.bottom-slide-arrows {
  bottom: 1.3rem;
}

.resize {
  resize: both;
}

* {
  --tw-shadow: 0 0 #0000;
}

* {
  --tw-ring-inset: var(--tw-empty,
      /*!*/
      /*!*/
    );
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgba(59, 130, 246, 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
}

.ring {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.fill-current {
  fill: currentColor;
}

.text-left {
  text-align: left;
}

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

.text-right {
  text-align: right;
}

.text-transparent {
  color: transparent;
}

.text-current {
  color: currentColor;
}

.text-white {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.text-scheme-text {
  color: var(--color-scheme-text);
}

.text-scheme-accent {
  color: var(--color-scheme-accent);
}

.text-scheme-meta {
  color: var(--color-scheme-meta);
}

.text-scheme-text-overlay {
  color: var(--color-scheme-text--overlay);
}

.text-scheme-accent-overlay {
  color: var(--color-scheme-accent--overlay);
}

.text-placeholder {
  color: hsla(0, 0%, 0%, 0.3);
}

.hover\:text-scheme-accent:hover {
  color: var(--color-scheme-accent);
}

.hover\:text-scheme-text-overlay:hover {
  color: var(--color-scheme-text--overlay);
}

.hover\:text-scheme-accent-overlay:hover {
  color: var(--color-scheme-accent--overlay);
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.italic {
  font-style: italic;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

.underline {
  text-decoration: underline;
}

.line-through {
  text-decoration: line-through;
}

.hover\:underline:hover {
  text-decoration: underline;
}

.oldstyle-nums {
  --tw-ordinal: var(--tw-empty,
      /*!*/
      /*!*/
    );
  --tw-slashed-zero: var(--tw-empty,
      /*!*/
      /*!*/
    );
  --tw-numeric-figure: var(--tw-empty,
      /*!*/
      /*!*/
    );
  --tw-numeric-spacing: var(--tw-empty,
      /*!*/
      /*!*/
    );
  --tw-numeric-fraction: var(--tw-empty,
      /*!*/
      /*!*/
    );
  font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
}

.oldstyle-nums {
  --tw-numeric-figure: oldstyle-nums;
}

.align-top {
  vertical-align: top;
}

.align-middle {
  vertical-align: middle;
}

.visible {
  visibility: visible;
}

.invisible {
  visibility: hidden;
}

.whitespace-normal {
  white-space: normal;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.break-words {
  overflow-wrap: break-word;
}

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

.w-2 {
  width: 0.5rem;
}

.w-3 {
  width: 0.75rem;
}

.w-4 {
  width: 1rem;
}

.w-5 {
  width: 1.25rem;
}

.w-6 {
  width: 1.5rem;
}

.w-7 {
  width: 1.75rem;
}

.w-8 {
  width: 2rem;
}

.w-10 {
  width: 2.5rem;
}

.w-12 {
  width: 3rem;
}

.w-14 {
  width: 3.5rem;
}

.w-16 {
  width: 4rem;
}

.w-28 {
  width: 7rem;
}

.w-auto {
  width: auto;
}

.w-theme-width {
  width: var(--border-width);
}

.w-1\/3 {
  width: 33.333333%;
}

.w-2\/3 {
  width: 66.666667%;
}

.w-3\/4 {
  width: 75%;
}

.w-3\/5 {
  width: 60%;
}

.w-11\/12 {
  width: 91.666667%;
}

.w-full {
  width: 100%;
}

.w-half {
  width: 50%;
}

.w-third-screen {
  width: 33.333333vw;
}

.z-0 {
  z-index: 0;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

.z-40 {
  z-index: 40;
}

.z-50 {
  z-index: 50;
}

.z-60 {
  z-index: 60;
}

.z-70 {
  z-index: 70;
}

.z-80 {
  z-index: 80;
}

.z-99 {
  z-index: 99;
}

.z-100 {
  z-index: 100;
}

.gap-10 {
  gap: 2.5rem;
}

.gap-theme {
  gap: var(--border-width);
}

.gap-gutter {
  gap: var(--gutter);
}

.grid-flow-row-dense {
  grid-auto-flow: row dense;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.col-span-1 {
  grid-column: span 1 / span 1;
}

.col-span-2 {
  grid-column: span 2 / span 2;
}

.col-span-full {
  grid-column: 1 / -1;
}

.transform {
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.origin-center {
  transform-origin: center;
}

.rotate-180 {
  --tw-rotate: 180deg;
}

.-rotate-45 {
  --tw-rotate: -45deg;
}

.translate-x-full {
  --tw-translate-x: 100%;
}

.-translate-x-1\/2 {
  --tw-translate-x: -50%;
}

.-translate-x-full {
  --tw-translate-x: -100%;
}

.translate-y-1 {
  --tw-translate-y: 0.25rem;
}

.translate-y-full {
  --tw-translate-y: 100%;
}

.-translate-y-1\/2 {
  --tw-translate-y: -50%;
}

.translate-y-0-important {
  --tw-translate-y: 0px !important;
}

.translate-y-full-with-border {
  --tw-translate-y: calc(100% - 1px);
}

.transition {
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-colors {
  transition-property: background-color, border-color, color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-max-height {
  transition-property: max-height;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.ease-out {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.duration-200 {
  transition-duration: 200ms;
}

.duration-300 {
  transition-duration: 300ms;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes ping {

  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes pulse {
  50% {
    opacity: .5;
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }

  50% {
    transform: none;
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

.col-gap-lg {
  column-gap: 2rem;
}

/* Reset loading styles */

/* stylelint-disable-next-line selector-max-specificity, selector-max-id */

#MainContent {
  /* stylelint-disable declaration-no-important */
  visibility: visible !important;
  opacity: 1 !important;
  isolation: isolate;
  /* stylelint-enable declaration-no-important */
}

html {
  background-color: var(--color-primary-background);
  color: var(--color-primary-text);
  font-size: var(--base-font-size);
  line-height: var(--base-line-height);
}

body {
  font-family: 'CalibreRegular', sans-serif;
  font-weight: 400;
  font-style: var(--body-font-style);
  text-transform: var(--bopy-copy-transform);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  font-size: 12px;
  letter-spacing: 0.05em;
}

.font-heading {
  font-family: 'CalibreRegular', sans-serif;
  font-weight: 400;
  font-style: var(--heading-font-style);
  text-transform: var(--heading-capitalize);
  letter-spacing: var(--heading-letterspacing);
  -webkit-text-decoration: var(--heading-decoration);
  text-decoration: var(--heading-decoration);
  font-size: 12px;
  letter-spacing: 0.05em;
}

.font-body {
  font-family: 'CalibreRegular', sans-serif;
  font-weight: 400;
  font-style: var(--body-font-style);
  text-transform: var(--body-font-style);
  letter-spacing: 0;
  text-decoration: none;
  text-transform: var(--bopy-copy-transform);
  font-size: 12px;
  letter-spacing: 0.05em;
}

.font-heading.uppercase,
.font-body.uppercase {
  text-transform: uppercase;
}

.multi-column p {
  page-break-inside: avoid;
  break-inside: avoid;
}

/*
.font-secondary {
  font-family: var(--secondary-font);
  font-weight: var(--secondary-font-weight);
  font-style: var(--secondary-font-style);
  text-transform: var(--secondary-title-capitalize);
  letter-spacing: var(--secondary-letterspacing);
}

.type-text-overlay {
  text-transform: var(--text-overlay-capitalize);
  letter-spacing: var(--text-overlay-letterspacing);
}

.type-navigation {
  font-family: var(--navigation-font);
  font-weight: var(--navigation-font-weight);
  font-style: var(--navigation-font-style);
  text-transform: var(--navigation-capitalize);
  letter-spacing: var(--navigation-letterspacing);
}

.type-product-grid-item {
  font-family: var(--product-grid-font);
  font-weight: var(--product-grid-font-weight);
  text-transform: var(--product-grid-capitalize);
  letter-spacing: var(--product-grid-letterspacing);
}

.type-section-title {
  text-transform: var(--section-title-capitalize);
  letter-spacing: var(--section-title-letterspacing);
  text-align: var(--section-title-align);
}
*/

/**
 * Responsive Images
 */

.responsive-image-wrapper::before {
  content: "";
  display: block;
}

.responsive-image {
  opacity: 0;
}

.responsive-image.lazyloaded {
  opacity: 1;
}

.responsive-image-placeholder {
  opacity: 0.05;
}

.responsive-image.lazyloaded+.responsive-image-placeholder {
  opacity: 0;
}

[data-color-scheme=primary] .responsive-image-placeholder {
  background-color: var(--color-scheme-text);
}

[data-color-scheme=secondary] .responsive-image-placeholder {
  background-color: var(--color-scheme-text);
}

[data-color-scheme=tertiary] .responsive-image-placeholder {
  background-color: var(--color-scheme-text);
}

.no-js .responsive-image-placeholder {
  display: none;
}

[data-color-scheme=primary].bg-scheme-background .bg-placeholder-bg,
[data-color-scheme=primary] .bg-scheme-background .bg-placeholder-bg {
  background-color: var(--color-scheme-text-placeholder);
}

[data-color-scheme=secondary].bg-scheme-background .bg-placeholder-bg,
[data-color-scheme=secondary] .bg-scheme-background .bg-placeholder-bg {
  background-color: var(--color-scheme-text-placeholder);
}

[data-color-scheme=tertiary].bg-scheme-background .bg-placeholder-bg,
[data-color-scheme=tertiary] .bg-scheme-background .bg-placeholder-bg {
  background-color: var(--color-scheme-text-placeholder);
}

/**
 * Utility
 */

/* stylelint-disable at-rule-no-unknown */

.visually-hidden {
  position: absolute !important;
  /* stylelint-disable-line declaration-no-important */
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

/* stylelint-enable at-rule-no-unknown */

svg,
model-viewer,
[data-product-media-type-video] video,
[data-product-media-type-video] iframe,
.shopify-model-viewer-ui {
  width: 100%;
  height: 100%;
}

/* Video wrapper */

.video-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  height: 0;
  height: auto;
  padding-bottom: 56.25%;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.table-wrapper {
  overflow: auto;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
}

.skip-link {
  opacity: 0;
  padding: 1rem;
  pointer-events: none;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 50;
  background-color: var(--color-primary-background);
  color: var(--color-primary-text);
}

.skip-link:focus {
  opacity: 1;
  pointer-events: auto;
}

#sticky-positioner {
  position: absolute;
  top: var(--border-width);
  left: 0;
  width: 1px;
  height: 1px;
}

.no-js .respimg {
  display: none;
}

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

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

html.no-js .js-enabled {
  display: none;
}

[hidden],
[x-cloak] {
  display: none;
}

html.no-js [x-cloak].no-js-undo-cloak {
  display: initial !important;
}

.supports-no-cookies:not(html) {
  display: none;
}

.supports-no-cookies .supports-no-cookies:not(html) {
  display: block;
}

.increase-target::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.increase-target:focus::before {
  outline: 5px auto Highlight;
  outline: 5px auto -webkit-focus-ring-color;
}

[data-shopify-buttoncontainer] {
  justify-content: center;
}

[data-shopify-xr-hidden] {
  display: none;
}

.accent-links-scheme a {
  border-color: var(--color-scheme-text);
}

.accent-links-scheme a:hover {
  border-color: var(--color-scheme-accent);
}

.accent-links-scheme a {
  border-bottom-width: var(--text-width);
  padding-bottom: 0.25rem;
}

.accent-links-scheme a:hover {
  color: var(--color-scheme-accent);
}

.max-h-three-quarters-screen-height {
  max-height: 75vh;
}

.section-x-padding {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 1024px) {
  .section-x-padding {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* stylelint-disable */

#MainContent .shopify-section:first-of-type section {
  margin-top: calc(-1 * var(--border-width));
}

#MainContent .shopify-section.has-full-screen-setting:first-of-type section .h-screen-header {
  height: calc(100vh - var(--header-height, 0px));
  height: auto;
  aspect-ratio: 9 / 4;
}

a.splash-image-link img {
  height: auto;
  width: 100%;
}

@media (max-width: 1023px) {
  #MainContent .shopify-section.has-full-screen-setting:first-of-type section .h-screen-header {
    aspect-ratio: 2 / 3;
    width: 100%;
    height: auto;
  }

  #MainContent .shopify-section.has-full-screen-setting:first-of-type section .background-video-wrapper--full-screen {
    padding-bottom: calc(100vh - var(--header-height, 0px));
  }
}

@media (min-width: 1024px) {
  #MainContent .shopify-section.has-full-screen-setting:first-of-type section .lg\:background-video-wrapper--full-screen {
    padding-bottom: calc(100vh - var(--header-height, 0px));
  }
}

/* stylelint-enable */

select {
  background-size: 1em 1em;
  background-image: var(--icon-svg-select);
  background-repeat: no-repeat;
  background-position: center right;
}

input[type=text],
input[type=email],
input[type=password],
input[type=number],
input[type=tel],
textarea {
  border-radius: 0;
  -webkit-appearance: none;
}

option {
  background-color: var(--color-primary-background);
}

[data-color-scheme=primary] select.text-scheme-text,
[data-color-scheme=primary].select.text-scheme-text {
  background-image: var(--icon-svg-select-primary);
}

[data-color-scheme=secondary] select.text-scheme-text,
[data-color-scheme=secondary] select.text-scheme-text {
  background-image: var(--icon-svg-select-secondary);
}

[data-color-scheme=tertiary] select.text-scheme-text,
[data-color-scheme=tertiary] select.text-scheme-text {
  background-image: var(--icon-svg-select-tertiary);
}

html:not(.no-js) input[type=number] {
  -moz-appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.filter-checkbox:checked+label span,
.recipient-checkbox:checked+label span {
  background-color: currentColor;
}

.variant-input:not([data-color]) label {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-input.disabled+label {
  color: rgba(0, 0, 0, .35);
}

.custom-input.disabled+label {
  overflow: hidden;
}

.custom-input.disabled+label::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 75%;
  height: 1px;
  background-color: black;
  opacity: .35;
  transform: translate(-50%, -50%);
  transform-origin: center center;
}

label.relative.block.p-2.min-w-4.border-text.text-center.cursor-pointer.border-scheme-text {
    border: none;
    border-bottom: 1px solid black;
}

.variant-input[data-color] .custom-input.disabled+label::after {
  width: 150%;
  transform: translate(-50%, -50%) rotate(45deg);
}

button {
  border-radius: 0;
}

.btn,
.button {
  text-transform: var(--button-text-transform);
  border-width: var(--text-width);
  border-radius: var(--button-border-radius);
  border-color: var(--button-border-color);
  background-color: var(--button-background-color);
  color: var(--button-text-color);
}

.btn,
.button {
  cursor: pointer;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

.btn:hover,
.button:hover {
  border-color: var(--button-border-color-hover);
  background-color: var(--button-background-color-hover);
  color: var(--button-text-color-hover);
}

.show-button-arrows .btn:after,
.show-button-arrows .button:after {
  content: "  →";
}

.btn,
.button,
button {
  /* stylelint-disable-next-line selector-max-type */
}

.btn svg,
.btn span,
.button svg,
.button span,
button svg,
button span {
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .marquee-container {
    padding-left: 0px;
    text-align: center;
    white-space: normal;
    display: block;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  @media (min-width: 1024px) {
    .marquee-container {
      padding-left: 1rem;
      padding-right: 1rem;
    }
  }

  .marquee span {
    display: none;
  }

  .marquee span:first-child {
    display: inline;
  }
}

.marquee-container {
  visibility: visible;
}

.rte> :not([hidden])~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}

.rte {
  line-height: var(--base-line-height);
}

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

.rte table {
  table-layout: fixed;
}

.rte table,
.rte th,
.rte td {
  border-width: var(--text-width);
}

.rte table,
.rte th,
.rte td {
  border-color: currentColor;
}

.rte th,
.rte td {
  padding: 0.25rem;
}

@media (min-width: 1024px) {

  .rte th,
  .rte td {
    padding: 0.5rem;
  }

  .rte th>.background-video-wrapper--full-screen,
  .rte td>.background-video-wrapper--full-screen {
    padding-bottom: calc(100vh - 1rem);
  }
}

.rte ul,
.rte ol {
  margin-left: var(--spacing);
}

.rte ul> :not([hidden])~ :not([hidden]),
.rte ol> :not([hidden])~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}

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

.rte ol {
  list-style: decimal;
}

.rte strong {
  font-weight: var(--font-body-bold-weight);
}

.rte h1 {
  font-size: 1.953rem;
  line-height: var(--base-line-height);
}

@media (min-width: 1024px) {
  .rte h1 {
    font-size: 3.815rem;
    line-height: 1;
  }
}

.rte h2 {
  font-size: 1.953rem;
  line-height: var(--base-line-height);
}

@media (min-width: 1024px) {
  .rte h2 {
    font-size: 2.441rem;
    line-height: calc(var(--base-line-height)*0.9);
  }
}

.rte h3 {
  font-size: 1.563rem;
  line-height: var(--base-line-height);
}

.rte h4 {
  font-size: 1.25rem;
  line-height: var(--base-line-height);
}

.rte h1,
.rte h2,
.rte h3,
.rte h4,
.rte blockquote {
  font-family: var(--heading-font-stack);
  font-weight: var(--heading-font-weight);
  font-style: var(--heading-font-style);
  text-transform: var(--heading-capitalize);
  letter-spacing: var(--heading-letterspacing);
  -webkit-text-decoration: var(--heading-decoration);
  text-decoration: var(--heading-decoration);
}

.rte blockquote {
  font-size: 1.953rem;
  line-height: var(--base-line-height);
  padding: 0.5rem;
}

.rte blockquote>.background-video-wrapper--full-screen {
  padding-bottom: calc(100vh - 1rem);
}

@media (min-width: 1024px) {
  .rte blockquote {
    font-size: 3.815rem;
    line-height: 1;
    padding: 1rem;
    line-height: calc(var(--base-line-height) * 0.9);
  }
}

.rte a {
  text-decoration: underline;
}

.rte code,
.rte pre {
  overflow: auto;
  font-family: monospace;
}

.rte code,
.rte pre {
  font-size: .8rem;
  line-height: var(--base-line-height);
}

[data-color-scheme=primary].text-scheme-text .rte a:hover,
[data-color-scheme=primary] .text-scheme-text.rte a:hover,
[data-color-scheme=primary].text-scheme-text.rte a:hover,
[data-color-scheme=secondary].text-scheme-text .rte a:hover,
[data-color-scheme=secondary] .text-scheme-text.rte a:hover,
[data-color-scheme=secondary].text-scheme-text.rte a:hover,
[data-color-scheme=tertiary].text-scheme-text .rte a:hover,
[data-color-scheme=tertiary] .text-scheme-text.rte a:hover,
[data-color-scheme=tertiary].text-scheme-text.rte a:hover {
  color: var(--color-scheme-accent);
  -webkit-text-decoration-color: var(--color-scheme-accent);
  text-decoration-color: var(--color-scheme-accent);
}

[data-color-scheme=primary].text-scheme-text .rte blockquote,
[data-color-scheme=primary] .text-scheme-text.rte blockquote,
[data-color-scheme=primary].text-scheme-text.rte blockquote,
[data-color-scheme=secondary].text-scheme-text .rte blockquote,
[data-color-scheme=secondary] .text-scheme-text.rte blockquote,
[data-color-scheme=secondary].text-scheme-text.rte blockquote,
[data-color-scheme=tertiary].text-scheme-text .rte blockquote,
[data-color-scheme=tertiary] .text-scheme-text.rte blockquote,
[data-color-scheme=tertiary].text-scheme-text.rte blockquote {
  background: var(--color-scheme-text);
  color: var(--color-scheme-text--overlay);
}

.svg-scale svg {
  width: 1em;
  height: 1em;
}

.disclosure-list {
  transform: translateY(calc(-100% + 2px));
  max-height: 60vh;
  overflow-y: auto;
}

.splide--product {
  position: static;
}

.splide__pagination--product {
  max-width: calc(100% - 7rem);
}

.splide__pagination__page {
  background-color: transparent;
  border-color: currentColor;
  border-radius: 9999px;
  border-width: var(--checkbox-width);
  display: block;
  height: 0.5rem;
  margin: 0.25rem;
  width: 0.5rem;
}

.add-to-cart-container .payment-button-wrapper.splide__pagination__page .shopify-payment-button__button--unbranded,
.add-to-cart-container .payment-button-wrapper.splide__pagination__page .shopify-payment-button__button--branded {
  border-radius: 9999px;
  overflow: hidden;
}

.add-to-cart-container .payment-button-wrapper.rounded-full .shopify-payment-button__button--unbranded,
.add-to-cart-container .payment-button-wrapper.rounded-full .shopify-payment-button__button--branded {
  border-radius: 9999px;
  overflow: hidden;
}

.additional-checkout-buttons.splide__pagination__page div[role=button] {
  border-radius: 9999px;
}

.splide__pagination__page.is-active {
  background-color: currentColor;
}

.splide__autoplay-control .splide__play,
.splide__autoplay-control .splide__pause {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.splide__autoplay-control .splide__play {
  opacity: 0;
  position: absolute;
}

.splide__autoplay-control .splide__pause {
  opacity: 1;
}

.splide__autoplay-control--paused .splide__play {
  opacity: 1;
  position: relative;
}

.splide__autoplay-control--paused .splide__pause {
  opacity: 0;
  position: absolute;
}

.no-js .splide {
  visibility: visible;
}

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

.no-js .splide__slide:not(:first-child) {
  display: none;
}

@media (min-width: 1024px) {
  .no-js .splide--product .splide__slide:not(:first-child) {
    display: block;
  }
}

.js .splide--product:not([data-slideshow-enabled=true]) {
  visibility: visible;
}

.js .splide--product:not([data-slideshow-enabled=true]) .splide__list {
  width: 100%;
}

/* .js .splide--product:not([data-slideshow-enabled=true]) .splide__slide:not(:first-child) {
  display: none;
} */

.js .splide--product:not([data-slideshow-enabled=true]) .splide__arrows {
  display: none;
}

@media (min-width: 1024px) {
  .js .splide--product:not([data-slideshow-enabled=true]) .splide--product .splide__slide:not(:first-child) {
    display: block;
  }
}

/**
 * Aspect ratios
 *
 */

.background-video-wrapper--full-screen {
  padding-bottom: 100vh;
}

.background-video-wrapper--four-three {
  padding-bottom: 75%;
}

.background-video-wrapper--landscape {
  padding-bottom: 62.5%;
}

.background-video-wrapper--widescreen {
  padding-bottom: 56.25%;
}

.background-video-wrapper--cinematic {
  padding-bottom: 42.5531914894%;
}

.p-2>.background-video-wrapper--full-screen {
  padding-bottom: calc(100vh - 1rem);
}

@media (min-width: 1024px) {

  .lg\:p-4>.background-video-wrapper--full-screen,
  .lg\:p-4>.lg\:background-video-wrapper--full-screen {
    padding-bottom: calc(100vh - 2rem);
  }
}

/**
 * Not required to size the iframe but
 * we need this to do the
 * container sizing calculation
 *
 */

.background-video__error {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}

.background-video iframe {
  position: absolute;
  z-index: 1;
  top: -100%;
  left: auto;
  width: 100%;
  height: 300%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  transform: scale(1.0125);
}

/* stylelint-disable-next-line selector-no-qualifying-type */

.background-video iframe.background-video-iframe--tall {
  top: -10%;
  left: -100%;
  width: 300%;
  height: 120%;
  max-width: none;
}

.background-video.is-playing iframe {
  opacity: 1;
}

.type-product-grid-item:focus-within .product-grid__meta {
  opacity: 1;
}

.plyr--video {
  height: 100%;
}

.plyr__control--overlaid svg {
  fill: currentColor;
}

.plyr__video-wrapper {
  height: 100%;
}

[data-color-scheme=primary].bg-scheme-background .plyr,
[data-color-scheme=primary].bg-scheme-background .plyr__control,
[data-color-scheme=primary] .bg-scheme-background .plyr,
[data-color-scheme=primary] .bg-scheme-background .plyr__control {
  background-color: var(--color-scheme-background);
}

[data-color-scheme=primary].text-scheme-text .plyr,
[data-color-scheme=primary].text-scheme-text .plyr__control,
[data-color-scheme=primary] .text-scheme-text .plyr,
[data-color-scheme=primary] .text-scheme-text .plyr__control {
  color: var(--color-scheme-text);
}

[data-color-scheme=secondary].bg-scheme-background .plyr,
[data-color-scheme=secondary].bg-scheme-background .plyr__control,
[data-color-scheme=secondary] .bg-scheme-background .plyr,
[data-color-scheme=secondary] .bg-scheme-background .plyr__control {
  background-color: var(--color-scheme-background);
}

[data-color-scheme=secondary].text-scheme-text .plyr,
[data-color-scheme=secondary].text-scheme-text .plyr__control,
[data-color-scheme=secondary] .text-scheme-text .plyr,
[data-color-scheme=secondary] .text-scheme-text .plyr__control {
  color: var(--color-scheme-text);
}

[data-color-scheme=tertiary].bg-scheme-background .plyr,
[data-color-scheme=tertiary].bg-scheme-background .plyr__control,
[data-color-scheme=tertiary] .bg-scheme-background .plyr,
[data-color-scheme=tertiary] .bg-scheme-background .plyr__control {
  background-color: var(--color-scheme-background);
}

[data-color-scheme=tertiary].text-scheme-text .plyr,
[data-color-scheme=tertiary].text-scheme-text .plyr__control,
[data-color-scheme=tertiary] .text-scheme-text .plyr,
[data-color-scheme=tertiary] .text-scheme-text .plyr__control {
  color: var(--color-scheme-text);
}

[data-shopify-xr-hidden] {
  display: none;
}

.add-to-cart,
.shopify-payment-button,
.shopify-payment-button__button,
.shopify-payment-button__button--branded {
  min-height: var(--add-to-cart-height) !important;
}

.shopify-payment-button__button--hidden {
  display: none !important;
}

.add-to-cart-container .shopify-payment-button__button--unbranded {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-transform: var(--button-text-transform);
}

.add-to-cart-container .shopify-payment-button__button--unbranded,
.add-to-cart-container .shopify-payment-button__button--branded {
  transition: none;
  border-radius: 0;
  font-weight: var(--body-font-weight);
  line-height: var(--base-line-height);
}

.add-to-cart-container .payment-button-wrapper.rounded-md .shopify-payment-button__button--unbranded,
.add-to-cart-container .payment-button-wrapper.rounded-md .shopify-payment-button__button--branded {
  border-radius: 0.375rem;
  overflow: hidden;
}

.add-to-cart-container .payment-button-wrapper.rounded-full .shopify-payment-button__button--unbranded,
.add-to-cart-container .payment-button-wrapper.rounded-full .shopify-payment-button__button--branded {
  border-radius: 9999px;
  overflow: hidden;
}

.additional-checkout-buttons.rounded-full div[role=button] {
  border-radius: 9999px !important;
}

.additional-checkout-buttons.rounded-md div[role=button] {
  border-radius: 0.375rem !important;
}

.show-button-arrows .shopify-payment-button__button--unbranded:after {
  content: " →";
}

.shopify-payment-button__more-options {
  margin-bottom: 28px;
}

.payment-button-wrapper.color-scheme.style-text_background .shopify-payment-button__button--unbranded {
  background-color: var(--color-scheme-text);
  color: var(--color-scheme-text--overlay);
  border: var(--border-width) solid var(--color-scheme-text);
}

.payment-button-wrapper.color-scheme.style-text_background .shopify-payment-button__button--unbranded:hover {
  background-color: var(--color-scheme-accent);
  border: var(--border-width) solid var(--color-scheme-accent);
  color: var(--color-scheme-accent--overlay);
}

.payment-button-wrapper.color-scheme.style-accent_background .shopify-payment-button__button--unbranded {
  background-color: var(--color-scheme-accent);
  color: var(--color-scheme-accent--overlay);
  border: var(--border-width) solid var(--color-scheme-accent);
}

.payment-button-wrapper.color-scheme.style-accent_background .shopify-payment-button__button--unbranded:hover {
  background-color: var(--color-scheme-text);
  border: var(--border-width) solid var(--color-scheme-text);
  color: var(--color-scheme-text--overlay);
}

.payment-button-wrapper.color-scheme.style-accent_background_text_border .shopify-payment-button__button--unbranded {
  background-color: var(--color-scheme-accent);
  color: var(--color-scheme-accent--overlay);
  border: var(--border-width) solid var(--color-scheme-text);
}

.payment-button-wrapper.color-scheme.style-accent_background_text_border .shopify-payment-button__button--unbranded:hover {
  background-color: var(--color-scheme-text);
  color: var(--color-scheme-text--overlay);
}

.shopify-payment-button__button--unbranded[disabled],
.shopify-payment-button__button--unbranded.disabled,
.shopify-payment-button__button[disabled],
.shopify-payment-button__button.disabled,
.shopify-payment-button__more-options[disabled],
.shopify-payment-button__more-options.disabled {
  cursor: default;
  display: none;
}

shopify-payment-terms {
  margin-top: 1rem;
  margin-bottom: 2rem;
  display: block;
}

[data-color-scheme=primary] .product-content-container.bg-scheme-background,
[data-color-scheme=primary].product-content-container.bg-scheme-background {
  --payment-terms-background-color: var(--color-primary-background-hex);
}

[data-color-scheme=secondary] .product-content-container.bg-scheme-background,
[data-color-scheme=secondary].product-content-container.bg-scheme-background {
  --payment-terms-background-color: var(--color-secondary-background-hex);
}

[data-color-scheme=tertiary] .product-content-container.bg-scheme-background,
[data-color-scheme=tertiary].product-content-container.bg-scheme-background {
  --payment-terms-background-color: var(--color-tertiary-background-hex);
}

.shopify-challenge__container {
  padding-top: var(--spacing);
  padding-bottom: var(--spacing);
  text-align: center;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 1024px) {
  .shopify-challenge__container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media only screen and (max-width: 767px) {
  .responsive-table {
    width: 100%;
  }

  .responsive-table thead {
    display: none;
  }

  .responsive-table td {
    border-width: 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0px;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    text-align: right;
    width: 100%;
  }

  .responsive-table th::before,
  .responsive-table td::before {
    content: attr(data-label);
    max-width: 50%;
  }

  .responsive-table th::before,
  .responsive-table td::before {
    font-weight: 400;
    font-size: .64rem;
    line-height: var(--base-line-height);
    margin-top: 0.25rem;
    padding-right: 0.75rem;
    text-align: left;
  }

  .table-small-hide {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .responsive-table {
    border-color: var(--color-border);
    border-width: var(--text-width);
    text-align: center;
    width: 100%;
  }

  .responsive-table th,
  .responsive-table td {
    border-color: var(--color-border);
    border-width: var(--text-width);
    padding: 0.5rem;
  }

  .responsive-table th>.background-video-wrapper--full-screen,
  .responsive-table td>.background-video-wrapper--full-screen {
    padding-bottom: calc(100vh - 1rem);
  }

  .responsive-table th:first-child,
  .responsive-table td:first-child {
    text-align: left;
  }

  .responsive-table th:last-child,
  .responsive-table td:last-child {
    text-align: right;
  }
}

@media only screen and (max-width: 767px) {
  .cart-table {
    width: 100%;
  }

  .cart-table thead {
    display: none;
  }

  .cart-table tr {
    border-color: var(--color-border);
    border-bottom-width: var(--text-width);
    display: block;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .cart-table tr:first-child {
    border-top-width: var(--text-width);
  }

  .cart-table td {
    border-width: 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0px;
    width: 100%;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  @media (min-width: 1024px) {
    .cart-table td {
      padding-left: 1rem;
      padding-right: 1rem;
    }
  }

  .cart-table td[data-price] {
    display: none;
  }

  .cart-table td[data-total] {
    justify-content: flex-end;
    text-align: right;
  }
}

@media (min-width: 768px) {
  .cart-table {
    border-color: var(--color-border);
    text-align: center;
    width: 100%;
  }

  .cart-table th,
  .cart-table td {
    border-color: var(--color-border);
    border-bottom-width: var(--text-width);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    vertical-align: top;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  @media (min-width: 1024px) {

    .cart-table th,
    .cart-table td {
      padding-left: 1rem;
      padding-right: 1rem;
    }
  }

  .cart-table th:first-child,
  .cart-table td:first-child {
    text-align: left;
  }

  .cart-table th:last-child,
  .cart-table td:last-child {
    text-align: right;
  }
}

[data-color-scheme=primary] .bg-scheme-background :focus,
[data-color-scheme=secondary] .bg-scheme-background :focus,
[data-color-scheme=tertiary] .bg-scheme-background :focus,
[data-color-scheme=header] .bg-scheme-background :focus,
[data-color-scheme=footer] .bg-scheme-background :focus,
[data-color-scheme=primary].bg-scheme-background :focus,
[data-color-scheme=secondary].bg-scheme-background :focus,
[data-color-scheme=tertiary].bg-scheme-background :focus,
[data-color-scheme=header].bg-scheme-background :focus,
[data-color-scheme=footer].bg-scheme-background :focus {
  outline-width: var(--text-width);
  outline-style: solid;
  outline-color: var(--color-scheme-accent);
  outline-offset: 0.25rem;
}

[data-color-scheme=primary] .bg-scheme-background .increase-target:focus::before,
[data-color-scheme=secondary] .bg-scheme-background .increase-target:focus::before,
[data-color-scheme=tertiary] .bg-scheme-background .increase-target:focus::before,
[data-color-scheme=header] .bg-scheme-background .increase-target:focus::before,
[data-color-scheme=footer] .bg-scheme-background .increase-target:focus::before,
[data-color-scheme=primary].bg-scheme-background .increase-target:focus::before,
[data-color-scheme=secondary].bg-scheme-background .increase-target:focus::before,
[data-color-scheme=tertiary].bg-scheme-background .increase-target:focus::before,
[data-color-scheme=header].bg-scheme-background .increase-target:focus::before,
[data-color-scheme=footer].bg-scheme-background .increase-target:focus::before {
  outline: var(--text-width) solid -webkit-focus-ring-color;
  outline: var(--text-width) solid var(--color-scheme-accent);
  outline-offset: calc(-1 * var(--text-width));
}

[data-color-scheme=primary] .bg-scheme-background .custom-input:focus+label,
[data-color-scheme=secondary] .bg-scheme-background .custom-input:focus+label,
[data-color-scheme=tertiary] .bg-scheme-background .custom-input:focus+label,
[data-color-scheme=header] .bg-scheme-background .custom-input:focus+label,
[data-color-scheme=footer] .bg-scheme-background .custom-input:focus+label,
[data-color-scheme=primary].bg-scheme-background .custom-input:focus+label,
[data-color-scheme=secondary].bg-scheme-background .custom-input:focus+label,
[data-color-scheme=tertiary].bg-scheme-background .custom-input:focus+label,
[data-color-scheme=header].bg-scheme-background .custom-input:focus+label,
[data-color-scheme=footer].bg-scheme-background .custom-input:focus+label {
  outline: var(--text-width) solid -webkit-focus-ring-color;
  outline: var(--text-width) solid var(--color-scheme-accent);
}

[data-color-scheme=primary] .bg-scheme-background .product-media-object:focus,
[data-color-scheme=secondary] .bg-scheme-background .product-media-object:focus,
[data-color-scheme=tertiary] .bg-scheme-background .product-media-object:focus,
[data-color-scheme=header] .bg-scheme-background .product-media-object:focus,
[data-color-scheme=footer] .bg-scheme-background .product-media-object:focus,
[data-color-scheme=primary].bg-scheme-background .product-media-object:focus,
[data-color-scheme=secondary].bg-scheme-background .product-media-object:focus,
[data-color-scheme=tertiary].bg-scheme-background .product-media-object:focus,
[data-color-scheme=header].bg-scheme-background .product-media-object:focus,
[data-color-scheme=footer].bg-scheme-background .product-media-object:focus {
  outline: 0;
}

[data-color-scheme=primary] .bg-scheme-background .product-media-object:focus:after,
[data-color-scheme=secondary] .bg-scheme-background .product-media-object:focus:after,
[data-color-scheme=tertiary] .bg-scheme-background .product-media-object:focus:after,
[data-color-scheme=header] .bg-scheme-background .product-media-object:focus:after,
[data-color-scheme=footer] .bg-scheme-background .product-media-object:focus:after,
[data-color-scheme=primary].bg-scheme-background .product-media-object:focus:after,
[data-color-scheme=secondary].bg-scheme-background .product-media-object:focus:after,
[data-color-scheme=tertiary].bg-scheme-background .product-media-object:focus:after,
[data-color-scheme=header].bg-scheme-background .product-media-object:focus:after,
[data-color-scheme=footer].bg-scheme-background .product-media-object:focus:after {
  width: 100%;
  height: 100%;
  content: "";
  outline: var(--text-width) solid -webkit-focus-ring-color;
  outline: var(--text-width) solid var(--color-scheme-accent);
  outline-offset: calc(-1 * var(--text-width));
  position: absolute;
  top: 0;
  left: 0;
}

.user-using-mouse button:focus,
.user-using-mouse [data-color-scheme] button:focus {
  outline: 0;
}

.user-using-mouse :focus,
.user-using-mouse [data-color-scheme] :focus {
  outline: 0;
}

.user-using-mouse ::-moz-focus-inner,
.user-using-mouse [data-color-scheme] ::-moz-focus-inner {
  outline: 0;
}

.user-using-mouse .increase-target:focus::before,
.user-using-mouse [data-color-scheme] .increase-target:focus::before {
  outline: 0;
}

.user-using-mouse .custom-input:focus+label,
.user-using-mouse [data-color-scheme] .custom-input:focus+label {
  outline: 0;
}

.user-using-mouse .product-media-object:focus,
.user-using-mouse .product-media-object:focus:after,
.user-using-mouse [data-color-scheme] .product-media-object:focus,
.user-using-mouse [data-color-scheme] .product-media-object:focus:after {
  outline: 0;
}

.product-recommendations:not(:empty)+.collapsible-tab>div,
.collapsible-tab+.product-recommendations:not(:empty)>div {
  border-top-width: 0;
}

.collapsible-tab+.collapsible-tab,
.product-recommendations:not(:empty)+.collapsible-tab,
.collapsible-tab+.product-recommendations {
  margin-top: 0;
}

.product-page-popup-link+.product-page-popup-link,
.product-vendor-block+.product-title-block,
.product-title-block+.product-vendor-block {
  margin-top: 0.5rem;
}

.product-title-block+.product-price-block,
.product-inventory-status-block+.product-variant-picker-block,
.product-variant-picker-block+.product-variant-picker-block,
.product-variant-picker-block+.product-inventory-status-block,
.product-inventory-status-block+.product-quantity-block,
.product-variant-picker-block+.product-quantity-block {
  margin-top: 1rem;
}

.product-block-area>div:first-child,
.product-block-area>h1:first-child,
.product-block-area>fieldset:first-child {
  margin-top: 0;
}

.product-block-area .collapsible-tab:first-child,
.product-block-area .product-recommendations:not(:empty):first-child {
  margin-top: calc(-1 * var(--spacing));
}

.product-block-area .collapsible-tab:first-child>div,
.product-block-area .product-recommendations:not(:empty):first-child>div {
  border-top: 0;
}

.product-block-area .collapsible-tab:last-child,
.product-block-area .product-recommendations:not(:empty):last-child {
  margin-bottom: calc(-1 * (var(--spacing) + var(--border-width)));
}

.featured-collection__image > .responsive-image-wrapper,
.featured-collection__image > .product-item-hover {
  border: 1px solid #d7d7d7;
}

/* #Table boilerplate */

table {
  table-layout: auto;
  border-spacing: 0;
  /* border-style: hidden; */
  /* border: 1px solid rgba(0, 0, 0, .2); */
}

@media screen and (max-width: 767px) {
  table {
    table-layout: fixed;
  }
}

table *:is(td, th) {
  padding: 12px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, .2);
  border-left: 1px solid rgba(0, 0, 0, .2);
  border-right: 0;
  border-top: 0;
}

@media screen and (max-width: 767px) {
  table *:is(td, th) {
    padding: 8px;
  }
}

table thead tr:first-of-type *:is(td, th),
table:not(:has(thead)) tr:first-child td {
  border-top: 1px solid rgba(0, 0, 0, .2);
}

table *:is(td, th):last-of-type {
  border-right: 1px solid rgba(0, 0, 0, .2);
}

.modal__content table {
  min-width: 100%;
  border-collapse: separate;
  position: relative;
  font-size: 12px;
  letter-spacing: 0.05em;
}

/* @media screen and (max-width: 767px) {
  .modal__content table {
    font-size: 12px;
  }
} */

.modal__content table td,
.modal__content table th {
  box-sizing: border-box;
  text-align: center;
  background-color: #fff;
}

.modal__content table td:not(:first-child),
.modal__content table th:not(:first-child) {
  width: 10ch !important;
  min-width: 10ch;
  padding-inline: 0;
}

.modal__content table *:is(td, th):first-of-type {
  font-weight: bold;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .modal__content table *:is(td, th):first-of-type {
    width: 20ch !important;
  }
}

.modal__content table tr>*:nth-of-type(2) {
  border-left: 0;
}

.modal__content table tr>*:first-of-type {
  position: sticky;
  top: 0;
  left: 0;
  width: .1%;
  border-right: 1px solid rgba(0, 0, 0, .2);
}

.modal__content table tr>*:nth-child(even) {
  background-color: #f2f2f2;
}

/* #Toggle */

.toggle {
  display: flex;
  align-items: center;
  gap: 8px;
}

.toggle__control {
  display: block;
  position: relative;
  width: 1.4em;
  height: .8em;
  cursor: pointer;
  font-size: 27px;
  isolation: isolate;
}

.toggle__control:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.4em;
  height: .8em;
  background: #e7e7e7;
  border: 1px solid #ddd;
  transition: all .3s ease;
  border-radius: .75em;
  z-index: 0;
}

/* .toggle__control-input {
  appearance: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
} */

.toggle__control-indicator {
  width: .6em;
  height: .6em;
  border-radius: .6em;
  display: block;
  background: #343434;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: .1em;
  line-height: 0em;
  transition: left .15s ease;
  z-index: 0;
}

.toggle__control-input:checked+.toggle__control-indicator {
  left: .7em;
}

.toggle__label {
  display: inline-block;
  color: #797979;
}

.toggle__label[data-selected="true"] {
  color: var(--color-scheme-text);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* #Size chart */

button#sizefox {
  display: none !important;
}

.size-legend {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.size-legend button {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: .2em;
  position: relative;
  letter-spacing: 0.05em;
}

.size-legend button::after {
  content: '';
  position: absolute;
  width: 100%;
  bottom: -2px;
  height: 1px;
  background-color: currentColor;
  opacity: 0;
  transition: opacity .25s ease;
}

.inactive.size_chart {
   display: none !important;
 }

.size-legend button:hover::after {
  opacity: 1;
}

.size-legend button svg {
  width: 1.2em;
  display: inline-block;
}

.size-chart__container {
  overflow: hidden;
  position: relative;
}

.size-chart {
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: 0px;
  overscroll-behavior: none !important;
}

.size-chart::-webkit-scrollbar {
  display: none;
}

.size-chart th {
  font-weight: bold;
}

/* .size-chart table td:first-of-type {
  width: 24ch !important;
}

@media screen and (max-width: 767px) {
  .size-chart table td:first-of-type {
    width: 20ch !important;
  }
} */

.size-chart table:has(td:nth-child(10)) tr>*:first-of-type::after {
  content: '';
  position: absolute;
  top: 0;
  right: -10px;
  height: 100%;
  width: 10px;
  background: linear-gradient(-90deg, hsla(0, 0%, 0%, 0), hsla(0, 0%, 0%, 0.131));
  opacity: 0;
  transition: opacity .5s ease;
}

size-chart-content:not([data-scroll-position="start"]) .size-chart table:has(td:nth-child(10)) tr>*:first-of-type::after {
  opacity: 1;
}

.size-chart__container:has(td:nth-child(10))::after {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  height: 100%;
  width: 20px;
  background: linear-gradient(90deg, hsla(0, 0%, 96%, 0) -11.76%, #ffffff 73.53%);
  opacity: 1;
  transition: opacity .5s ease;
}

size-chart-content[data-scroll-position="end"] .size-chart__container:has(td:nth-child(10))::after {
  opacity: 0;
}

@media screen and (max-width: 767px) {
  .size-chart tr>*:first-of-type::after {
    content: '';
    position: absolute;
    top: 0;
    right: -10px;
    height: 100%;
    width: 10px;
    background: linear-gradient(-90deg, hsla(0, 0%, 0%, 0), hsla(0, 0%, 0%, 0.131));
    opacity: 0;
    transition: opacity .5s ease;
  }

  size-chart-content:not([data-scroll-position="start"]) .size-chart tr>*:first-of-type::after {
    opacity: 1;
  }

  .size-chart__container::after {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    height: 100%;
    width: 20px;
    background: linear-gradient(90deg, hsla(0, 0%, 96%, 0) -11.76%, #ffffff 73.53%);
    opacity: 1;
    transition: opacity .5s ease;
  }

  size-chart-content[data-scroll-position="end"] .size-chart__container::after {
    opacity: 0;
  }
}

.size-chart__controls {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.size-chart-arrows {
  display: flex;
}

@media screen and (min-width: 768px) {
  size-chart-content:not(:has(td:nth-child(10))) .size-chart-arrows {
    display: none;
  }
}

.size-chart-arrows svg {
  width: 16px;
  height: 16px;
}

.size-chart-arrows button {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .25s ease;
}

.size-chart-arrows button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: .5;
}

.size-chart-arrows button:nth-of-type(2) svg {
  transform: rotate(180deg);
}

.loading {
  position: relative;
  display: inline-block;
  width: 100%;
  padding-top: 100%;
}

.loading::after {
  content: " ";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  border-radius: 50%;
  border: var(--border-width) solid;
  border-color: currentColor transparent currentColor transparent;
  animation: loading 1.2s linear infinite;
}

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

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

.predictive-search-results {
  top: calc(100% + var(--border-width));
}

.query-suggestion mark {
  background: none;
  font-weight: bolder;
  text-decoration: underline;
}

/* stylelint-disable-next-line selector-no-qualifying-type */

@media (min-width: 640px) {

  .sm\:text-sm {
    font-size: .8rem;
    line-height: var(--base-line-height);
  }

  .sm\:py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .sm\:oldstyle-nums {
    --tw-ordinal: var(--tw-empty,
        /*!*/
        /*!*/
      );
    --tw-slashed-zero: var(--tw-empty,
        /*!*/
        /*!*/
      );
    --tw-numeric-figure: var(--tw-empty,
        /*!*/
        /*!*/
      );
    --tw-numeric-spacing: var(--tw-empty,
        /*!*/
        /*!*/
      );
    --tw-numeric-fraction: var(--tw-empty,
        /*!*/
        /*!*/
      );
    font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
  }

  .sm\:oldstyle-nums {
    --tw-numeric-figure: oldstyle-nums;
  }

  .sm\:w-40 {
    width: 10rem;
  }
}

@media (min-width: 768px) {

  .md\:block {
    display: block;
  }

  .md\:flex {
    display: flex;
  }

  .md\:grid {
    display: grid;
  }

  .md\:hidden {
    display: none;
  }

  .md\:justify-between {
    justify-content: space-between;
  }

  .md\:text-base {
    font-size: 1rem;
    line-height: var(--base-line-height);
  }

  .md\:text-lg {
    font-size: 1.25rem;
    line-height: var(--base-line-height);
  }

  .md\:my-4 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .md\:mt-0 {
    margin-top: 0px;
  }

  .md\:mb-0 {
    margin-bottom: 0px;
  }

  .md\:mt-2 {
    margin-top: 0.5rem;
  }

  .md\:ml-4 {
    margin-left: 1rem;
  }

  .md\:pb-0 {
    padding-bottom: 0px;
  }

  .md\:absolute {
    position: absolute;
  }

  .md\:bottom-0 {
    bottom: 0px;
  }

  .md\:oldstyle-nums {
    --tw-ordinal: var(--tw-empty,
        /*!*/
        /*!*/
      );
    --tw-slashed-zero: var(--tw-empty,
        /*!*/
        /*!*/
      );
    --tw-numeric-figure: var(--tw-empty,
        /*!*/
        /*!*/
      );
    --tw-numeric-spacing: var(--tw-empty,
        /*!*/
        /*!*/
      );
    --tw-numeric-fraction: var(--tw-empty,
        /*!*/
        /*!*/
      );
    font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
  }

  .md\:oldstyle-nums {
    --tw-numeric-figure: oldstyle-nums;
  }

  .md\:w-20 {
    width: 5rem;
  }

  .md\:w-auto {
    width: auto;
  }

  .md\:w-1\/3 {
    width: 33.333333%;
  }

  .md\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .md\:col-span-5 {
    grid-column: span 5 / span 5;
  }

  .md\:col-start-8 {
    grid-column-start: 8;
  }

  .md\:transform {
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .md\:translate-y-7 {
    --tw-translate-y: 1.75rem;
  }
}

@media (min-width: 1024px) {

  .lg\:space-y-4> :not([hidden])~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1rem * var(--tw-space-y-reverse));
  }

  .lg\:bg-border {
    background-color: var(--color-border);
  }

  .lg\:border-grid-color {
    border-color: var(--color-border);
  }

  .lg\:border-none {
    border-style: none;
  }

  .lg\:border-0 {
    border-width: 0px;
  }

  .lg\:border-t-0 {
    border-top-width: 0px;
  }

  .lg\:border-t-grid {
    border-top-width: var(--border-width);
  }

  .lg\:border-r-grid {
    border-right-width: var(--border-width);
  }

  .lg\:border-b-grid {
    border-bottom-width: var(--border-width);
  }

  .lg\:border-l-grid {
    border-left-width: var(--border-width);
  }

  .lg\:block {
    display: block;
  }

  .lg\:inline-block {
    display: inline-block;
  }

  .lg\:inline {
    display: inline;
  }

  .lg\:flex {
    display: flex;
  }

  .lg\:grid {
    display: grid;
  }

  .lg\:hidden {
    display: none;
  }

  .lg\:flex-wrap {
    flex-wrap: wrap;
  }

  .lg\:flex-nowrap {
    flex-wrap: nowrap;
  }

  .lg\:items-end {
    align-items: flex-end;
  }

  .lg\:items-center {
    align-items: center;
  }

  .lg\:justify-start {
    justify-content: flex-start;
  }

  .lg\:justify-end {
    justify-content: flex-end;
  }

  .lg\:justify-center {
    justify-content: center;
  }

  .lg\:justify-between {
    justify-content: space-between;
  }

  .lg\:flex-1 {
    flex: 1 1 0%;
  }

  .lg\:text-sm {
    font-size: .8rem;
    line-height: var(--base-line-height);
  }

  .lg\:text-base {
    font-size: 1rem;
    line-height: var(--base-line-height);
  }

  .lg\:text-lg {
    font-size: 1.25rem;
    line-height: var(--base-line-height);
  }

  .lg\:text-xl {
    font-size: 1.563rem;
    line-height: var(--base-line-height);
  }

  .lg\:text-2xl {
    font-size: 1.953rem;
    line-height: var(--base-line-height);
  }

  .lg\:text-3xl {
    font-size: 2.441rem;
    line-height: calc(var(--base-line-height)*0.9);
  }

  .lg\:text-4xl {
    font-size: 3.052rem;
    line-height: calc(var(--base-line-height)*0.9);
  }

  .lg\:text-5xl {
    font-size: 3.815rem;
    line-height: 1;
  }

  .lg\:text-6xl {
    font-size: 4.768rem;
    line-height: 1;
  }

  .lg\:text-7xl {
    font-size: 5.96rem;
    line-height: 1;
  }

  .lg\:mx-2 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

  .lg\:my-4 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .lg\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

  .lg\:-mx-4 {
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .lg\:mt-0 {
    margin-top: 0px;
  }

  .lg\:mb-0 {
    margin-bottom: 0px;
  }

  .lg\:mt-2 {
    margin-top: 0.5rem;
  }

  .lg\:mr-2 {
    margin-right: 0.5rem;
  }

  .lg\:ml-2 {
    margin-left: 0.5rem;
  }

  .lg\:mr-4 {
    margin-right: 1rem;
  }

  .lg\:ml-4 {
    margin-left: 1rem;
  }

  .lg\:ml-auto {
    margin-left: auto;
  }

  .lg\:ml-theme-half {
    margin-left: var(--spacing-half);
  }

  .lg\:-mb-theme-width {
    margin-bottom: calc(-1 * var(--border-width));
    ;
  }

  .lg\:max-w-xl {
    max-width: 36rem;
  }

  .lg\:max-w-4xl {
    max-width: 56rem;
  }

  .lg\:p-0 {
    padding: 0px;
  }

  .lg\:p-4 {
    padding: 1rem;
  }

  .lg\:p-16 {
    padding: 4rem;
  }

  .lg\:p-24 {
    padding: 6rem;
  }

  .lg\:px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .lg\:py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .lg\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .lg\:py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .lg\:pt-0 {
    padding-top: 0px;
  }

  .lg\:pb-0 {
    padding-bottom: 0px;
  }

  .lg\:pb-2 {
    padding-bottom: 0.5rem;
  }

  .lg\:pl-2 {
    padding-left: 0.5rem;
  }

  .lg\:pt-4 {
    padding-top: 1rem;
  }

  .lg\:pl-4 {
    padding-left: 1rem;
  }

  .lg\:static {
    position: static;
  }

  .lg\:absolute {
    position: absolute;
  }

  .lg\:relative {
    position: relative;
  }

  .lg\:sticky {
    position: sticky;
  }

  .lg\:right-0 {
    right: 0px;
  }

  .lg\:bottom-auto {
    bottom: auto;
  }

  .lg\:left-auto {
    left: auto;
  }

  .lg\:bottom-1\/2 {
    bottom: 50%;
  }

  .lg\:top-sticky-header {
    top: var(--sticky-header-height);
  }

  .lg\:text-left {
    text-align: left;
  }

  .lg\:text-center {
    text-align: center;
  }

  .lg\:text-right {
    text-align: right;
  }

  .lg\:oldstyle-nums {
    --tw-ordinal: var(--tw-empty,
        /*!*/
        /*!*/
      );
    --tw-slashed-zero: var(--tw-empty,
        /*!*/
        /*!*/
      );
    --tw-numeric-figure: var(--tw-empty,
        /*!*/
        /*!*/
      );
    --tw-numeric-spacing: var(--tw-empty,
        /*!*/
        /*!*/
      );
    --tw-numeric-fraction: var(--tw-empty,
        /*!*/
        /*!*/
      );
    font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
  }

  .lg\:oldstyle-nums {
    --tw-numeric-figure: oldstyle-nums;
  }

  .lg\:w-24 {
    width: 6rem;
  }

  .lg\:w-auto {
    width: auto;
  }

  .lg\:w-1\/2 {
    width: 50%;
  }

  .lg\:w-1\/3 {
    width: 33.333333%;
  }

  .lg\:w-2\/3 {
    width: 66.666667%;
  }

  .lg\:w-3\/4 {
    width: 75%;
  }

  .lg\:w-2\/5 {
    width: 40%;
  }

  .lg\:w-3\/5 {
    width: 60%;
  }

  .lg\:w-full {
    width: 100%;
  }

  .lg\:gap-4 {
    gap: 1rem;
  }

  .lg\:gap-6 {
    gap: 1.5rem;
  }

  .lg\:gap-gutter {
    gap: var(--gutter);
  }

  .lg\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lg\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .lg\:grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  .lg\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .lg\:col-span-1 {
    grid-column: span 1 / span 1;
  }

  .lg\:col-span-2 {
    grid-column: span 2 / span 2;
  }

  .lg\:col-span-3 {
    grid-column: span 3 / span 3;
  }

  .lg\:col-span-4 {
    grid-column: span 4 / span 4;
  }

  .lg\:col-span-5 {
    grid-column: span 5 / span 5;
  }

  .lg\:col-span-6 {
    grid-column: span 6 / span 6;
  }

  .lg\:col-span-7 {
    grid-column: span 7 / span 7;
  }

  .lg\:col-span-8 {
    grid-column: span 8 / span 8;
  }

  .lg\:col-span-9 {
    grid-column: span 9 / span 9;
  }

  .lg\:col-span-12 {
    grid-column: span 12 / span 12;
  }

  .lg\:col-span-full {
    grid-column: 1 / -1;
  }

  .lg\:col-start-1 {
    grid-column-start: 1;
  }

  .lg\:col-start-4 {
    grid-column-start: 4;
  }

  .lg\:col-start-5 {
    grid-column-start: 5;
  }

  .lg\:col-start-6 {
    grid-column-start: 6;
  }

  .lg\:col-start-7 {
    grid-column-start: 7;
  }

  .lg\:col-start-9 {
    grid-column-start: 9;
  }

  .lg\:col-start-10 {
    grid-column-start: 10;
  }

  .lg\:col-end-4 {
    grid-column-end: 4;
  }

  .lg\:col-end-10 {
    grid-column-end: 10;
  }

  .lg\:col-end-13 {
    grid-column-end: 13;
  }

  .lg\:col-count-2 {
    column-count: 2;
  }

  .lg\:col-count-3 {
    column-count: 3;
  }

  .lg\:col-count-4 {
    column-count: 4;
  }

  .lg\:background-video-wrapper--full-screen {
    padding-bottom: 100vh;
  }

  .lg\:background-video-wrapper--four-three {
    padding-bottom: 75%;
  }

  .lg\:background-video-wrapper--landscape {
    padding-bottom: 62.5%;
  }

  .lg\:background-video-wrapper--widescreen {
    padding-bottom: 56.25%;
  }

  .lg\:background-video-wrapper--cinematic {
    padding-bottom: 42.5531914894%;
  }
}

@media (min-width: 1280px) {

  .xl\:max-w-4xl {
    max-width: 56rem;
  }

  .xl\:oldstyle-nums {
    --tw-ordinal: var(--tw-empty,
        /*!*/
        /*!*/
      );
    --tw-slashed-zero: var(--tw-empty,
        /*!*/
        /*!*/
      );
    --tw-numeric-figure: var(--tw-empty,
        /*!*/
        /*!*/
      );
    --tw-numeric-spacing: var(--tw-empty,
        /*!*/
        /*!*/
      );
    --tw-numeric-fraction: var(--tw-empty,
        /*!*/
        /*!*/
      );
    font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
  }

  .xl\:oldstyle-nums {
    --tw-numeric-figure: oldstyle-nums;
  }
}

@media (min-width: 1536px) {

  .\32xl\:oldstyle-nums {
    --tw-ordinal: var(--tw-empty,
        /*!*/
        /*!*/
      );
    --tw-slashed-zero: var(--tw-empty,
        /*!*/
        /*!*/
      );
    --tw-numeric-figure: var(--tw-empty,
        /*!*/
        /*!*/
      );
    --tw-numeric-spacing: var(--tw-empty,
        /*!*/
        /*!*/
      );
    --tw-numeric-fraction: var(--tw-empty,
        /*!*/
        /*!*/
      );
    font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
  }

  .\32xl\:oldstyle-nums {
    --tw-numeric-figure: oldstyle-nums;
  }
}


/* Make Me Modern */

/* Make images clickable. */
.text-column-with-image {
  position: relative;
}

.text-column-with-image a:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Alter appearance of swatches. */
input[name*="COLOR"]:checked+label {
  outline: 1px solid var(--color-scheme-text) !important;
  outline-offset: 1px !important;
}

/* PDP mobile slideshow. */
@media screen and (max-width: 1023px) {

  .splide__arrows,
  .splide__pagination--product {
    display: none;
  }

  .splide__track {
    height: 400px !important;
    max-height: 400px !important;
  }

  .splide__list {
    height: 400px;
    width: 100%;
    overflow: scroll;
    display: flex;
    transform: unset !important;
    overflow: auto;
    scroll-snap-type: both mandatory;
    overscroll-behavior-x: contain;
  }

  .splide__list li {
    width: unset !important;
    flex: 0 0 auto;
    height: 400px;
    scroll-snap-stop: normal;
    scroll-snap-align: center;
  }

  .splide__list li .product-media-object {
    width: unset;
    height: 400px;
  }

  /* .splide__list li .responsive-image-wrapper {
    height: 400px !important;
    padding: 0 !important;
    width: auto !important;
  } */

  .splide__list li img {
    position: relative !important;
    height: 400px;
    width: 100%;
    min-width: 250px;
  }
}

#MainContent {
  position: relative;
}

[data-color-scheme="header"] {
  background-color: transparent;
}

@media (min-width: 1024px) {
  .section-x-padding {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.section-text-overlay {
  position: absolute;
  z-index: 3;
  bottom: 0;
  text-transform: uppercase;
  width: 100%;
  height: 100%;
  opacity: 100%;
  overflow: hidden;
}

.main-page-hover {
  text-transform: uppercase;
  opacity: 40%;
  bottom: 20px;
  vertical-align: baseline;
  display: grid;
  align-items: flex-end;
  height: 100%;
  position: absolute;
  width: 85%;
  z-index: 10;
}

.main-page-hover:hover {
  text-transform: uppercase;
  opacity: 100%;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.main-page-hover-white {
  text-transform: uppercase;
  opacity: 40%;
  bottom: 20px;
  vertical-align: baseline;
  display: grid;
  align-items: flex-end;
  height: 100%;
  position: absolute;
  width: 85%;
  z-index: 10;
  color: white;
}

.main-page-hover-white:hover {
  text-transform: uppercase;
  opacity: 100%;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.main-page-video {
  margin: -2em;
  top: 0px;
  position: absolute;
  z-index: -1;
  width: 120%;
}

video {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.template-index .section-header {
  margin-top: -65px;
}

.template-index .logo-image {}

.collections-filter-form {
  background-color: transparent;
  position: absolute;
  z-index: 99;
  right: 0px;
  top: 25px;
  width: 100%;
}

.js-filter-bg {
  background-color: rgba(256, 256, 256, 1);
  padding: 2em;
  margin-top: -40px;
}

@media (max-width: 1024px) {
  .js-filter-bg {
    margin-top: 0px;
  }

  .collections-filter-form {
    top: 25px;
  }

  /* #MainContent {
    top: 20px;
  } */
}

.js-filter {
  width: 220px;
}

.js-filter-bg {
  background-color: rgba(256, 256, 256, 0.8);
}

#sort {
  background-color: transparent;
}

#CollectionFiltersForm {
  right: 0px;
  position: absolute;
  top: -32px;
}

#CollectionProductGrid {
  padding-top: 32px;
}

.collection-text {
  position: absolute;
  bottom: 0px;
  width: 100%;
  text-align: left;
  text-color: black;
  margin: 0em;
  opacity: 30%;
  color: black;
}

.collection-text-hover {
  position: absolute;
  bottom: 0px;
  width: 100%;
  text-align: left;
  text-color: black;
  margin: 0em;
  background-color: transparent;
  background: none;
  color: black;
}

.text-align-left {
  text-align: left;
}

.align-bottom {
  bottom: 0px;
  vertical-align: baseline;
  display: grid;
  align-items: flex-end;
  height: 100%;
}


@media (max-width: 1024px) {
  #shopify-section-sections--22218912629032__footer {
    margin-top: 20px;
  }
}

.collection-list>li {
  margin: 1em;
  margin-bottom: 0em;
  margin-top: 0em;
}

.text-size-point8em {
  font-size: 0.5em;
}

.lg\:text-base {
  font-size: 0.85rem;
}

.header-drop-bg {
  background-color: rgba(256, 256, 256, 1);
  padding: 1em;
  height: 50vh;
  margin-left: -2rem;
  width: 250px;
}

#menu1 > div {
    width: 250px !important;
}

#menu0 > div {
    width: 250px !important;
}

.flex.py-2.-ml-16.justify-start.-ml-16.header-menu-col {
    padding-top: 0.2rem;
}

.header-drop-images {
  height: 50vh;
  float: right;
  margin: -1em;
  position: relative;
  overflow: hidden;
  display: inline-flex;
}

.header-drop-images img {
  height: 100%;
  display: block;
  object-fit: cover;
  width: 15vw;
}

.header-menu-col {
  margin-left: 0 !important;
  float: left;
}

.nav-grid {
  display: grid;
}

.url-text {
  text-align: center;
  padding: 0.3em;
}

.url-text {
  text-align: center;
  padding: 0.3em;
  height: 100%;
  background-color: red;
  position: absolute;
  top: 0;
  vertical-align: middle;
  width: 33.5%;
  opacity: 0%;
}

.url-text:hover {
  text-align: center;
  padding: 0.3em;
  height: 100%;
  position: absolute;
  top: 0;
  vertical-align: middle;
  width: 33.5%;
  opacity: 100%;
  background-color: rgba(256, 256, 256, 0.8);
  text-align: center;
  vertical-align: middle;
  line-height: 50vh;
}

.ml-16-v2 {
  padding-left: 2em;
  padding-right: 4em;
}

.video-container {
  display: block;
  padding-bottom: 44%;
  top: 0;
  position: relative;
}
}

.py-theme-v2 {
  padding-top: 0;
  padding-bottom: 0;
}



.locksmith-email {
  border-style: solid !important;
  border-width: 1px !important;
  border-color: black !important;
  padding: 10px;
  margin-bottom: 10px;
}

#locksmith_email_submit {
  cursor: pointer;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 2rem;
  padding-right: 2rem;
  width: 100%;
  margin-bottom: 15vh;
}

.locksmith-email-container h1 {
  font-size: 1.8rem;
  text-align: center;
  font-weight: bold;
  margin-top: 15vh;
}

.locksmith-email-container h3 {
  font-size: 1rem;
  text-align: center;
  padding: 10px;
}

.locksmith-email-container h4 {
  font-size: 0.7rem;
  text-align: center;
  padding: 10px;
  font-style: italic;
}

#collection-04 .relative #MainContent {
  margin-top: -64px;
}

@media (max-width: 1024px) {
  h2.font-heading.text-xl.break-words {
    color: white;
  }

  .rte p {}

  .w-full .lg\:w-full.text-scheme-text {
    padding: 1rem;
  }
}

@media (max-width: 1024px) {
  .rte p {
    text-decoration: none;
  }
}

@media (max-width: 1024px) {
  .text-invert {
    color: white !important;
  }
}

@media (min-width: 1024px) {
  .text-invert {
    padding-bottom: 4rem;
  }
}

/* Carousel */

.splash-image-link h2.font-heading.text-2xl.lg\:text-5xl.break-words {
  font-size: 1.4rem;
}

.w-full .mt-8.text-0 {
  margin-top: 0.5rem;
}

.mt-8 a.inline-block span.uppercase {
  text-decoration: underline;
}

ul.splide__pagination {
  display: none;
}


.js-enabled.splide__arrows {
  position: absolute;
  z-index: 99;
  margin: auto;
  padding: 0rem 1rem;
  bottom: 0.5rem;
  float: right;
  width: 100%;
}

#MainContent .shopify-section:first-of-type section {
  margin-bottom: -1rem;
}

@media screen and (max-width: 1023px) {
  .splide__track {
    height: 100% !important;
  }
}

@media screen and (max-width: 1023px) {
  .splide__list {
    height: 100% !important;
  }
}

@media (max-width: 1024px) {
  .text-invert {
    color: black !important;
    padding: 1rem
  }
}

@media screen and (max-width: 1023px) {
  .splide__track {
    height: 100% !important;
    max-height: 100% !important;
  }
}

button.splide__autoplay-control.absolute.top-0.left-0.z-10.p-2.transition-opacity {
  display: none;
}

.splide__slide {
  scroll-snap-stop: always;
}

.text-invert {
  color: black !important;
  padding: 1rem;
  bottom: 4rem;
  position: absolute;
}

@media (max-width: 1024px) {
  .text-invert {
    color: black !important;
    padding: 1rem;
    margin-top: 8.5rem;
    bottom: none;
    position: relative;
  }
}


.main-page-hover {
  opacity: 0%;
}

.main-page-hover a.inline-block span.uppercase {
  background-color: white;
  padding: 0.5rem;
  opacity: 60%;
  font-size: 0.7rem;
}

@media (max-width: 1024px) {
  .main-page-hover a.inline-block span.uppercase {
    display: none;
  }
}

.main-page-hover a.inline-block span.uppercase {
  display: none;
}

@media (min-width: 1024px) {
  .splash-image-link-click {
    height: 100%;
    display: block;
  }

  a.splash-image-link-click h2.font-heading.text-2xl.lg\:text-5xl.break-words {
    font-size: 1.8rem;
  }
}





@media (max-width: 1024px) {
  div#shopify-section-template--23511711351080__slideshow_BRrUHY {
    display: none;
  }
}


@media (min-width: 1024px) {
  div#shopify-section-template--23511711351080__image_with_text_overlay_kjLycN {
    display: none;
  }
}

@media (max-width: 1024px) {
  h2.font-heading.text-xl.break-words {
    color: black;
  }
}

/* =======================================================================
  Temporary announcement bar fix
========================================================================== */

.section-announcement-bar {
  position: relative;
  z-index: 1;
}

.template-index .section-header {
  margin-top: 0px !important;
}

.template-index #MainContent {
  margin-top: -45px !important;
}

/* Klaviyo Back In Stock */

.shopify-product-form {
  position: relative;
}

.button.klaviyo-bis-trigger {
  width: 75% !important;
  min-height: var(--add-to-cart-height) !important;
  position: absolute;
  padding-top: 1rem;
  padding-bottom: 1rem;
  top: 0;
}

@media screen and (max-width: 1023px) {
  .button.klaviyo-bis-trigger {
    width: 100% !important;
  }
}

.text-with-image-width {
  width:80%;
  margin: 0 auto;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

div.lg\:col-span-8.bg-scheme-background.text-scheme-text.relative.py-theme.flex.items-start > div > div > p {
    margin-top: 0.4rem;
}

.template-index #MainContent {
    margin-top: 6rem !important;
}

.image-with-text-overlay {
  width: 80%;
  margin: 0 auto;
}

.text-invert {
  padding: 0rem;
  position: relative;
  bottom: auto;
  margin-top: 0rem;
  margin-bottom: 3rem;
  text-align: right
}

.text-base {
    font-size: 12px !important;
  letter-spacing: 0.05em;
}

span.inline-block.align-middle.svg-scale.mr-1.transform.origin-center.rotate.transition {
    display: none;
}

span.inline-block.align-middle.svg-scale.mr-1.transform.origin-center.rotate.transition.rotate-180 {
    display: none;
}

.header-drop-bg {
    background-color: white;
    padding: 0rem;
    height: 100vh;
}

#menu0 > div {
    padding: 0rem !important;
    width: 35rem;
}

#menu1 > div {
    padding: 0rem !important;
    width: 35rem;
}

.py-1 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.py-2 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

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

.text-sm {
    font-size: 1rem;
}

.footer-logo-image {
    display: none !important;
}

@media (min-width: 1024px) {
    .lg\:text-right {
        text-align: left;
    }
}

@media screen and (min-width: 1024px) {
section.py-theme.bg-scheme-background.text-scheme-text.border-t-grid.border-grid-color {
    position: absolute;
    right: 0;
}
}

.collection-list>li {
    margin-bottom: 2em;
}

#CollectionFiltersForm {
    right: auto;
}

.js-filter-bg {
    padding: 0rem;
    margin-top: -20px;
    z-index: 9999;
    background-color: white !important;
    width: 96.5vw;
    position: absolute;
    display: flex
;
}

span.w-2.h-2.mr-1.inline-block.rounded-full.border-checkbox.border-current {
    display: none;
}

label.cursor-pointer.capitalize.flex.items-center.hover\:text-scheme-accent {
    padding: 0.4rem 0rem;
}

.hover\:text-scheme-accent:hover {
    color: black;
}

#MainContent .shopify-section:first-of-type section {
    margin-top: 4rem;
}

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

.js-filter {
    width: auto;
    padding: 1.35rem;
}

[data-color-scheme="header"] {
    color: black !important;
    background-color: white;
    backdrop-filter: none;
    transition: none;
  width: auto;
}

@media (min-width: 1024px) {
    .lg\:col-span-6 {
        grid-column: span 6 / span 6;
        grid-column-start: 4;
    }
    .lg\:col-span-2 {
        grid-column: span 2 / span 2;
        grid-column-start: 10;
    }
}

.modal__overlay {
    left: auto !important;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
}

.modal__container {
    background-color: #fff;
    max-width: 750px;
    max-height: 100vh;
    overflow: scroll;
    height: 100%;
}

.modal__overlay {
    padding-top: 4rem;
}

.modal__content table {
    font-size: 12px !important;
  letter-spacing: 0.05em;
}

b, strong {
    font-weight: 400 !important;
}

.modal__title {
    font-weight: 400 !important;
  font-size: 12px !important;
  letter-spacing: 0.05em;
}

div#shopify-section-template--24060201566504__product-recommendations {
    padding-top: 10rem;
}

footer {
    padding-top: 5rem;
}

.absolute.left-0.bottom-0.w-full.transform.translate-y-full.z-20.bg-scheme-background.text-scheme-text.border-b-grid.border-t-grid.border-grid-color.py-2.section-x-padding {
    border-bottom: #d7d7d7 solid 1px;
    width: 100%;
    border-top: #d7d7d7 solid 1px;
}

.py-2 {
    letter-spacing: 0.05em;
}

.lg\:text-right {
    text-align: right;
}

span.ql-font-poppins {
    font-family: 'CalibreRegular', sans-serif !important;
  letter-spacing: 0.05rem;
}

button.needsclick.go300628013.kl-private-reset-css-Xuajs1 {
    font-weight: 100 !important;
}

form#CollectionFiltersForm {
    padding-left: 1.35rem !important;
}

.js-filter-bg {
    width: 100vw;
    left: 0;
    margin-top: -28px;
}

.responsive-image-wrapper.relative.overflow-hidden.w-full.my-0.mx-auto {
    margin-bottom: 1rem;
  margin-right: 0.5rem;
}

.product-content-container {
    margin-top: 7rem;
}

.w-width {
  width: 99%;
}

.add-to-cart-container {
    width: 75% !important;
}

@media (min-width: 1024px) {
    .lg\:col-span-2 {
        grid-column: span 2 / span 3;
        grid-column-start: 10;
    }
}

.group.block.h-full.relative.text-center.type-product-grid-item.hover\:text-scheme-accent {
    padding: 0.4rem;
}

[data-option-index="2"] legend.block {
    padding-top: 2rem;
}

label.block[for="Quantity"] {
    text-transform: uppercase;
  padding-top: 2rem;
}

@media only screen and (max-width: 1024px) {
.prose {
    max-width: 80%;
    margin: 0 auto;
}
}

.image-overlay-padding {
    margin-top: -0.8rem !important;
    padding-top: 0rem !important;
}

.self-stretch.flex.no-js-focus-wrapper {
    position: relative;
}

div#menu1 {
    position: absolute;
}


@media only screen and (max-width: 1024px) {

.container-height {
    position: absolute;
    z-index: 20;
  top: 50%;
}

.text-with-image-width {
    width: 100%;
    padding-top: 0rem;
    padding-bottom: 0rem;
  position: relative;
  margin-top: -1rem;
  margin-bottom: -1rem;
}

.image-overlay-padding {
    margin-top: 0rem !important;
    padding-top: 0rem !important;
    background: transparent;
    left: 1.5rem;
    color: white;
    margin-top: -65px !important;
  position: absolute;
}

.text-invert {
    margin-bottom: 0rem;
    margin-top: -60px;
    text-align: left;
    left: 1rem;
    padding-bottom: 1.2rem;
    color: white !important;
}
.text-invert.right {
  text-align: right;
  left:70vw;
}

  h2.font-heading.text-xl.break-words {
    color: white;
}

.image-with-text-overlay {
    padding-bottom: 1rem !important;
  width: 100% !important;
}

.mobile-text-left {
    text-align: left !important;
}

footer.bg-scheme-background.text-scheme-text {
    padding: 0rem 0.0rem;
}

header.border-b-grid.relative.z-10.text-scheme-text.border-scheme-text.border-theme-color.bg-scheme-background {
    padding: 0rem 0.5rem;
}

#MainContent .shopify-section:first-of-type section {
    margin-top: 0rem;
}

.template-index #MainContent {
    margin-top: 0rem !important;
}

.flex.justify-end.text-right.flex-grow.w-1\/3 {
    padding-top: 6px;
}

.flex.items-center.flex-grow.w-1\/3 {
    padding-top: 6px;
}

  a[x-ref="search"][data-open-search][role="button"].inline-block.flex {
    display: none !important;
}

form#CollectionFiltersForm {
    padding-left: 1rem !important;
}

section.page.text-scheme-text.bg-scheme-background.border-t-grid.border-grid-color {
    padding: 0rem 0.5rem;
}

.prose {
    max-width: 81.2%;
}

.custom-text-column {
    padding-right: 1.2rem;
}

@media only screen and (max-width: 1024px) {
    #shopify-section-template--24060201566504__main .responsive-image.lazyloaded {
        top: -400px;
        position: relative !important;
        height: 400px;
    }

#shopify-section-template--24060201566504__main .responsive-image-wrapper.relative.overflow-hidden.w-full.my-0.mx-auto {
    padding-top: 140% !important;
}
}
}

.modal-title {
    font-family: 'CalibreRegular', sans-serif !important;
    font-size: 12px !important;
}

#klaviyo-bis-modal #container p {
    font-family: 'CalibreRegular', sans-serif !important;
    font-size: 12px !important;
}

input[name*="COLOR"]:checked+label {
    outline: none !important;
    outline-offset: 0px;
    underline: 1px;
    border: 0px;
    border-bottom: 1px solid black;
    box-shadow: 0 0px 0 0 black;
    padding-bottom: 5px;
    margin-top: 6px;
}

.variant-input:not([data-color]) label {
    width: 1.5rem;
    height: 1.5rem;
}

span.ql-font-poppins {
    font-family: 'CalibreRegular', sans-serif !important;
    letter-spacing: 0.05rem;
    font-size: 12px !important;
    font-weight: 400 !important;
}

@media only screen and (max-width: 1024px) {
    .product-content-container {
        margin-top: 0rem;
        padding: 0rem 1rem;
    }
}

.uppercase.py-4.justify-between.text-sm.lg\:text-base.lg\:flex {
    padding: 0rem;
}

.type-product-grid-item > a + div > div:last-of-type {
  padding: 0 !important;
}

.type-product-grid-item > div + div {
  display: none;
}

.group.block.h-full.relative.text-center.type-product-grid-item.hover\:text-scheme-accent {
    padding: 0.0rem;
}

form#CollectionFiltersForm {
    padding-left: 1rem !important;
}

Test vs Monty

Test vs Marquis
Monty vs Raven

Test vs Patchwerk
Monty vs Killings
Marquis vs Jeff Hardy
Raven vs Abyss


FEUDS
Raven vs Abyss
Monty vs Test



form.relative {
    padding-top: 3rem !important;
}

a.p-px.border-scheme-text.border-text.mx-1.mt-2 {
    border: 0px;
}

@media (max-width: 1024px) {
    .custom-image-column {
        max-width: 100 !important;
	padding: 1rem !important;
    }

    .custom-image-column img {
        width: 100% !important;
    }

    .prose {
        max-width: 100%;
        padding: 0rem 1rem;
        padding-bottom: 4rem;
    }

    .text-invert {
        color: black !important;
    }

    h2.font-heading.text-xl.break-words {
        color: black;
    }
}

input.cursor-pointer.py-2.px-4.w-full.bg-scheme-text.text-scheme-text-overlay.hover\:bg-scheme-accent.hover\:text-scheme-accent-overlay.border-scheme-text.hover\:border-scheme-accent.border-text {
    padding-top: 1rem;
    font-weight: bold;
  margin-top: 1.5rem;
}

p.my-2.md\:my-4.text-sm.accent-links-scheme.text-right {
    text-align: left;
  font-size: 12px;
}

button#addToCartButton {
    font-weight: bold;
  padding-top: 1rem;
}

div#shopify-section-template--24060201566504__product-recommendations {
    padding-top: 3rem;
}

.cart-padding {
  padding-top: 3rem;
}

@media only screen and (max-width: 765px) {
  img.responsive-image.block.absolute.top-0.left-0.w-full.h-full.transition-opacity.duration-200.ease-in-out.w-full.max-w-full.h-auto.lazyautosizes.lazyloaded {
    object-fit: cover;
  }
}
@media only screen and (max-width: 475px) {
  .text-invert.right {
    left: 60vw;
  }
}
@media only screen and (max-width: 400px) {
  .text-invert.right {
    left: 55vw;
  }
}

/* PDP */

.template-product #MainContent .shopify-section:first-of-type section {
  margin: 0 !important;
}

/* PDP Images */

.product-media-object {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 1024px) {
  #product-splide .splide__list li {
    aspect-ratio: 2/3;
  }
}

/* PDP Videos */

#product-splide [data-product-media-type-video] > div {
  height: 100%;
  width: 100%;
}

#product-splide [x-ref="video_container"] {
  /* aspect-ratio: 2/3; */
  width: 100%;
  height: 100%;
  margin-bottom: 1rem;
  margin-right: 0.5rem;
}

#product-splide [x-ref="video_container"] video {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

@media only screen and (max-width: 1024px) {
  #product-splide [x-ref="video_container"] {
    margin: 0 !important;
  }
}