/*! PhotoSwipe main CSS by Dmytro Semenov | photoswipe.com */


.pswp {
  --pswp-bg: #000;
  --pswp-placeholder-bg: #222;
  

  --pswp-root-z-index: 100000;
  
  --pswp-preloader-color: rgba(79, 79, 79, 0.4);
  --pswp-preloader-color-secondary: rgba(255, 255, 255, 0.9);
  
  /* defined via js:
  --pswp-transition-duration: 333ms; */
  
  --pswp-icon-color: #fff;
  --pswp-icon-color-secondary: #4f4f4f;
  --pswp-icon-stroke-color: #4f4f4f;
  --pswp-icon-stroke-width: 2px;

  --pswp-error-text-color: var(--pswp-icon-color);
}


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

.pswp {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: var(--pswp-root-z-index);
	display: none;
	touch-action: none;
	outline: 0;
	opacity: 0.003;
	contain: layout style size;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Prevents focus outline on the root element,
  (it may be focused initially) */
.pswp:focus {
  outline: 0;
}

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

.pswp img {
  max-width: none;
}

.pswp--open {
	display: block;
}

.pswp,
.pswp__bg {
	transform: translateZ(0);
	will-change: opacity;
}

.pswp__bg {
  opacity: 0.005;
	background: var(--pswp-bg);
}

.pswp,
.pswp__scroll-wrap {
	overflow: hidden;
}

.pswp__scroll-wrap,
.pswp__bg,
.pswp__container,
.pswp__item,
.pswp__content,
.pswp__img,
.pswp__zoom-wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.pswp__img,
.pswp__zoom-wrap {
	width: auto;
	height: auto;
}

.pswp--click-to-zoom.pswp--zoom-allowed .pswp__img {
	cursor: -webkit-zoom-in;
	cursor: -moz-zoom-in;
	cursor: zoom-in;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img {
	cursor: move;
	cursor: -webkit-grab;
	cursor: -moz-grab;
	cursor: grab;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img:active {
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

/* :active to override grabbing cursor */
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img,
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img:active,
.pswp__img {
	cursor: -webkit-zoom-out;
	cursor: -moz-zoom-out;
	cursor: zoom-out;
}


/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img,
.pswp__button,
.pswp__counter {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.pswp__item {
	/* z-index for fade transition */
	z-index: 1;
	overflow: hidden;
}

.pswp__hidden {
	display: none !important;
}

/* Allow to click through pswp__content element, but not its children */
.pswp__content {
  pointer-events: none;
}
.pswp__content > * {
  pointer-events: auto;
}


/*

  PhotoSwipe UI

*/

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg-container {
  display: grid;
}
.pswp__error-msg {
	margin: auto;
	font-size: 1em;
	line-height: 1;
	color: var(--pswp-error-text-color);
}

/*
class pswp__hide-on-close is applied to elements that
should hide (for example fade out) when PhotoSwipe is closed
and show (for example fade in) when PhotoSwipe is opened
 */
.pswp .pswp__hide-on-close {
	opacity: 0.005;
	will-change: opacity;
	transition: opacity var(--pswp-transition-duration) cubic-bezier(0.4, 0, 0.22, 1);
	z-index: 10; /* always overlap slide content */
	pointer-events: none; /* hidden elements should not be clickable */
}

/* class pswp--ui-visible is added when opening or closing transition starts */
.pswp--ui-visible .pswp__hide-on-close {
	opacity: 1;
	pointer-events: auto;
}

/* <button> styles, including css reset */
.pswp__button {
	position: relative;
	display: block;
	width: 50px;
	height: 60px;
	padding: 0;
	margin: 0;
	overflow: hidden;
	cursor: pointer;
	background: none;
	border: 0;
	box-shadow: none;
	opacity: 0.85;
	-webkit-appearance: none;
	-webkit-touch-callout: none;
}

.pswp__button:hover,
.pswp__button:active,
.pswp__button:focus {
  transition: none;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  opacity: 1;
}

.pswp__button:disabled {
  opacity: 0.3;
  cursor: auto;
}

.pswp__icn {
  fill: var(--pswp-icon-color);
  color: var(--pswp-icon-color-secondary);
}

.pswp__icn {
  position: absolute;
  top: 14px;
  left: 9px;
  width: 32px;
  height: 32px;
  overflow: hidden;
  pointer-events: none;
}

.pswp__icn-shadow {
  stroke: var(--pswp-icon-stroke-color);
  stroke-width: var(--pswp-icon-stroke-width);
  fill: none;
}

.pswp__icn:focus {
	outline: 0;
}

/*
	div element that matches size of large image,
	large image loads on top of it,
	used when msrc is not provided
*/
div.pswp__img--placeholder,
.pswp__img--with-bg {
	background: var(--pswp-placeholder-bg);
}

.pswp__top-bar {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 60px;
	display: flex;
  flex-direction: row;
  justify-content: flex-end;
	z-index: 10;

	/* allow events to pass through top bar itself */
	pointer-events: none !important;
}
.pswp__top-bar > * {
  pointer-events: auto;
  /* this makes transition significantly more smooth,
     even though inner elements are not animated */
  will-change: opacity;
}


/*

  Close button

*/
.pswp__button--close {
  margin-right: 6px;
}


/*

  Arrow buttons

*/
.pswp__button--arrow {
  position: absolute;
  top: 0;
  width: 75px;
  height: 100px;
  top: 50%;
  margin-top: -50px;
}

.pswp__button--arrow:disabled {
  display: none;
  cursor: default;
}

.pswp__button--arrow .pswp__icn {
  top: 50%;
  margin-top: -30px;
  width: 60px;
  height: 60px;
  background: none;
  border-radius: 0;
}

.pswp--one-slide .pswp__button--arrow {
  display: none;
}

/* hide arrows on touch screens */
.pswp--touch .pswp__button--arrow {
  visibility: hidden;
}

/* show arrows only after mouse was used */
.pswp--has_mouse .pswp__button--arrow {
  visibility: visible;
}

.pswp__button--arrow--prev {
  right: auto;
  left: 0px;
}

.pswp__button--arrow--next {
  right: 0px;
}
.pswp__button--arrow--next .pswp__icn {
  left: auto;
  right: 14px;
  /* flip horizontally */
  transform: scale(-1, 1);
}

/*

  Zoom button

*/
.pswp__button--zoom {
  display: none;
}

.pswp--zoom-allowed .pswp__button--zoom {
  display: block;
}

/* "+" => "-" */
.pswp--zoomed-in .pswp__zoom-icn-bar-v {
  display: none;
}


/*

  Loading indicator

*/
.pswp__preloader {
  position: relative;
  overflow: hidden;
  width: 50px;
  height: 60px;
  margin-right: auto;
}

.pswp__preloader .pswp__icn {
  opacity: 0;
  transition: opacity 0.2s linear;
  animation: pswp-clockwise 600ms linear infinite;
}

.pswp__preloader--active .pswp__icn {
  opacity: 0.85;
}

@keyframes pswp-clockwise {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/*

  "1 of 10" counter

*/
.pswp__counter {
  height: 30px;
  margin-top: 15px;
  margin-inline-start: 20px;
  font-size: 14px;
  line-height: 30px;
  color: var(--pswp-icon-color);
  text-shadow: 1px 1px 3px var(--pswp-icon-color-secondary);
  opacity: 0.85;
}

.pswp--one-slide .pswp__counter {
  display: none;
}
.splide__container{box-sizing:border-box;position:relative}.splide__list{backface-visibility:hidden;display:-ms-flexbox;display:flex;height:100%;margin:0!important;padding:0!important}.splide.is-initialized:not(.is-active) .splide__list{display:block}.splide__pagination{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:center;justify-content:center;margin:0;pointer-events:none}.splide__pagination li{display:inline-block;line-height:1;list-style-type:none;margin:0;pointer-events:auto}.splide:not(.is-overflow) .splide__pagination{display:none}.splide__progress__bar{width:0}.splide{position:relative;visibility:hidden}.splide.is-initialized,.splide.is-rendered{visibility:visible}.splide__slide{backface-visibility:hidden;box-sizing:border-box;-ms-flex-negative:0;flex-shrink:0;list-style-type:none!important;margin:0;position:relative}.splide__slide img{vertical-align:bottom}.splide__spinner{animation:splide-loading 1s linear infinite;border:2px solid #999;border-left-color:transparent;border-radius:50%;bottom:0;contain:strict;display:inline-block;height:20px;left:0;margin:auto;position:absolute;right:0;top:0;width:20px}.splide__sr{clip:rect(0 0 0 0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.splide__toggle.is-active .splide__toggle__play,.splide__toggle__pause{display:none}.splide__toggle.is-active .splide__toggle__pause{display:inline}.splide__track{overflow:hidden;position:relative;z-index:0}@keyframes splide-loading{0%{transform:rotate(0)}to{transform:rotate(1turn)}}.splide__track--draggable{-webkit-touch-callout:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.splide__track--fade>.splide__list>.splide__slide{margin:0!important;opacity:0;z-index:0}.splide__track--fade>.splide__list>.splide__slide.is-active{opacity:1;z-index:1}.splide--rtl{direction:rtl}.splide__track--ttb>.splide__list{display:block}.splide__arrow{-ms-flex-align:center;align-items:center;background:#ccc;border:0;border-radius:50%;cursor:pointer;display:-ms-flexbox;display:flex;height:2em;-ms-flex-pack:center;justify-content:center;opacity:.7;padding:0;position:absolute;top:50%;transform:translateY(-50%);width:2em;z-index:1}.splide__arrow svg{fill:#000;height:1.2em;width:1.2em}.splide__arrow:hover:not(:disabled){opacity:.9}.splide__arrow:disabled{opacity:.3}.splide__arrow:focus-visible{outline:3px solid #0bf;outline-offset:3px}.splide__arrow--prev{left:1em}.splide__arrow--prev svg{transform:scaleX(-1)}.splide__arrow--next{right:1em}.splide.is-focus-in .splide__arrow:focus{outline:3px solid #0bf;outline-offset:3px}.splide__pagination{bottom:.5em;left:0;padding:0 1em;position:absolute;right:0;z-index:1}.splide__pagination__page{background:#ccc;border:0;border-radius:50%;display:inline-block;height:8px;margin:3px;opacity:.7;padding:0;position:relative;transition:transform .2s linear;width:8px}.splide__pagination__page.is-active{background:#fff;transform:scale(1.4);z-index:1}.splide__pagination__page:hover{cursor:pointer;opacity:.9}.splide__pagination__page:focus-visible{outline:3px solid #0bf;outline-offset:3px}.splide.is-focus-in .splide__pagination__page:focus{outline:3px solid #0bf;outline-offset:3px}.splide__progress__bar{background:#ccc;height:3px}.splide__slide{-webkit-tap-highlight-color:rgba(0,0,0,0)}.splide__slide:focus{outline:0}@supports(outline-offset:-3px){.splide__slide:focus-visible{outline:3px solid #0bf;outline-offset:-3px}}@media screen and (-ms-high-contrast:none){.splide__slide:focus-visible{border:3px solid #0bf}}@supports(outline-offset:-3px){.splide.is-focus-in .splide__slide:focus{outline:3px solid #0bf;outline-offset:-3px}}@media screen and (-ms-high-contrast:none){.splide.is-focus-in .splide__slide:focus{border:3px solid #0bf}.splide.is-focus-in .splide__track>.splide__list>.splide__slide:focus{border-color:#0bf}}.splide__toggle{cursor:pointer}.splide__toggle:focus-visible{outline:3px solid #0bf;outline-offset:3px}.splide.is-focus-in .splide__toggle:focus{outline:3px solid #0bf;outline-offset:3px}.splide__track--nav>.splide__list>.splide__slide{border:3px solid transparent;cursor:pointer}.splide__track--nav>.splide__list>.splide__slide.is-active{border:3px solid #000}.splide__arrows--rtl .splide__arrow--prev{left:auto;right:1em}.splide__arrows--rtl .splide__arrow--prev svg{transform:scaleX(1)}.splide__arrows--rtl .splide__arrow--next{left:1em;right:auto}.splide__arrows--rtl .splide__arrow--next svg{transform:scaleX(-1)}.splide__arrows--ttb .splide__arrow{left:50%;transform:translate(-50%)}.splide__arrows--ttb .splide__arrow--prev{top:1em}.splide__arrows--ttb .splide__arrow--prev svg{transform:rotate(-90deg)}.splide__arrows--ttb .splide__arrow--next{bottom:1em;top:auto}.splide__arrows--ttb .splide__arrow--next svg{transform:rotate(90deg)}.splide__pagination--ttb{bottom:0;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;left:auto;padding:1em 0;right:.5em;top:0}
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  border: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg, iframe, embed, audio {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  border-radius: var(--border-radius);
  background: none;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
  word-break: break-word;
}

ol, ul {
  list-style: none;
}

a {
  cursor: pointer;
  text-underline-offset: 4px;
}

:root {
  --announcement-text-color: #FFFFFF;
  --announcement-background-color: #000000;
  --primary-font: "Montserrat", sans-serif;
  --secondary-font: "Montserrat", sans-serif;
  --border-radius: 0;
  --border-color: rgba(var(--primary-text-color-rgb), .3);
  --header-border-color: rgba(var(--primary-text-color-rgb), .3);
  --background-color: #EEEEEE;
  --content-background-color: #FFFFFF;
  --accent-background-color: #000000;
  --accent-text-color: #EEEEEE;
  --header-text-color: #222222;
  --primary-text-color: #222222;
  --secondary-text-color: #0B639A;
  --button-text-color: #FFFFFF;
  --button-background-color: #0B639A;
  --button-hover-background-color: #3C82AE;
  --badge-text-color-primary: #FFFFFF;
  --badge-background-color-primary: #C43F06;
  --badge-text-color-secondary: #222222;
  --badge-background-color-secondary: #B7B7B7;
  --inventory-status-text-color: #C43F06;
  --link-text-color: #222222;
  --link-hover-color: #FF642A;
  --error-background-color: #950f1e;
  --error-text-color: #FFFFFF;
  --header-height: 140px;
  --header-height-tablet: 96px;
  --header-height-mobile: 64px;
  --padding-value: 8px;
  --large-padding: calc(var(--padding-value) * 5);
  --med-padding: calc(var(--padding-value) * 4);
  --small-padding: calc(var(--padding-value) * 2);
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  min-height: 100%;
  position: relative;
}

body {
  display: flex;
  flex-direction: column;
  background-color: var(--background-color);
  color: var(--primary-text-color);
  font-family: var(--secondary-font);
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}
body.no-scroll {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  overscroll-behavior: none;
}

a.skip-link {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: var(--content-background-color);
  border: 1px solid var(--primary-text-color);
  color: var(--link-text-color);
  left: 25px;
  padding: 15px 20px;
  position: absolute;
  text-decoration: underline;
  top: -150px;
  z-index: 100;
}
a.skip-link:focus {
  top: 20px;
}

.errors {
  background: var(--error-background-color);
  color: var(--error-text-color);
  margin-bottom: 32px;
  padding: 16px 32px;
  text-align: center;
  width: 100%;
}

.wrapper {
  margin: 0 auto;
  padding: 0 64px;
  position: relative;
  width: 100%;
}

a {
  -webkit-transition: color 0.1s linear;
  transition: color 0.1s linear;
  color: var(--link-text-color);
  text-decoration: none;
}
a:hover, a:focus {
  color: var(--link-hover-color);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--primary-font);
  color: var(--primary-text-color);
  font-weight: 500;
  margin: 0;
  padding: 0;
  text-align: left;
}

.select {
  font-family: var(--secondary-font);
  height: 60px;
  padding: 0;
  position: relative;
  width: 100%;
}
.select select {
  border: 2px solid var(--primary-text-color);
  height: 100%;
  padding: 0 50px 0 20px;
  position: relative;
  width: 100%;
  z-index: 2;
}
.select select option {
  background-color: #FFF;
  color: #000;
}
.select select option:disabled {
  color: graytext;
}
.select select:focus {
  box-shadow: none;
}
.select select::-ms-expand {
  display: none;
}
.select svg {
  fill: currentColor;
  pointer-events: none;
  height: 8px;
  margin-top: -2px;
  position: absolute;
  right: 20px;
  top: 50%;
  width: 13px;
  z-index: 1;
}

.button, a.button {
  transition: background 0.1s linear;
  background: var(--button-background-color);
  border-radius: var(--border-radius);
  color: var(--button-text-color);
  min-height: 60px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  white-space: pre-wrap;
  width: 100%;
}
.button.minimal-button, a.button.minimal-button {
  background: none;
  color: var(--secondary-text-color);
  border: none;
  height: auto;
  min-height: 0;
  text-decoration: none;
}
.button.minimal-button:not(:disabled):hover, .button.minimal-button:not(:disabled):active, a.button.minimal-button:not(:disabled):hover, a.button.minimal-button:not(:disabled):active {
  box-shadow: none;
  background: none;
  color: var(--link-hover-color);
  opacity: 1;
  text-decoration: underline;
  transition: color 0.1s linear;
  text-underline-offset: 4px;
}
.button:disabled, .button.disabled, a.button:disabled, a.button.disabled {
  cursor: not-allowed;
}
.button.centered-button, a.button.centered-button {
  margin: 60px auto;
}
.button:not(:disabled):hover, .button:not(:disabled):active, a.button:not(:disabled):hover, a.button:not(:disabled):active {
  background: var(--button-hover-background-color);
  color: var(--button-text-color);
}

input, textarea {
  font-family: var(--secondary-font);
  max-width: 100%;
  padding: 14px;
}

h1.page-title {
  color: var(--accent-text-color);
  font-size: 2em;
  margin: 64px auto;
  text-align: center;
}
@media screen and (max-width: 668px) {
  h1.page-title {
    color: var(--primary-text-color);
    margin: 24px auto;
  }
}

section.content {
  margin: 0 auto 64px;
  padding: 0 64px;
  position: relative;
  width: 100%;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  section.content {
    padding: 0 32px;
  }
}
@media screen and (max-width: 668px) {
  section.content {
    margin-bottom: 0;
    padding: 0 0 64px;
  }
}
section.content.hide-featured {
  display: none;
}
section.content .page-content {
  background: var(--content-background-color);
  margin: 0 auto;
  min-height: 240px;
  position: relative;
  width: 100%;
}

/* repeating patterns from http://www.heropatterns.com */
.pattern {
  background-color: var(--accent-background-color);
  height: 360px;
  overflow: hidden;
  position: absolute;
  width: 100%;
  z-index: 1;
}
@media screen and (max-width: 668px) {
  .pattern {
    display: none;
  }
}
.pattern.wiggle {
  background-image: url("data:image/svg+xml,%3Csvg width='104' height='52' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23555555' fill-opacity='0.4'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.pattern.bubbles {
  background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23555555' fill-opacity='0.4' fill-rule='evenodd'/%3E%3C/svg%3E");
}
.pattern.diagonal-lines {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23555555' fill-opacity='0.4' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 6V5zM6 5v1H5z'/%3E%3C/g%3E%3C/svg%3E");
}
.pattern.random-shapes {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 80 80'%3E%3Cg fill='%23555555' fill-opacity='0.4'%3E%3Cpath fill-rule='evenodd' d='M11 0l5 20H6l5-20zm42 31a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM0 72h40v4H0v-4zm0-8h31v4H0v-4zm20-16h20v4H20v-4zM0 56h40v4H0v-4zm63-25a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm10 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM53 41a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm10 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm10 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-30 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-28-8a5 5 0 0 0-10 0h10zm10 0a5 5 0 0 1-10 0h10zM56 5a5 5 0 0 0-10 0h10zm10 0a5 5 0 0 1-10 0h10zm-3 46a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm10 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM21 0l5 20H16l5-20zm43 64v-4h-4v4h-4v4h4v4h4v-4h4v-4h-4zM36 13h4v4h-4v-4zm4 4h4v4h-4v-4zm-4 4h4v4h-4v-4zm8-8h4v4h-4v-4z'/%3E%3C/g%3E%3C/svg%3E");
}
.pattern.bank-note {
  background-image: url("data:image/svg+xml,%3Csvg width='200' height='40' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.184 20c.357-.13.72-.264 1.088-.402l1.768-.661C33.64 15.347 39.647 14 50 14c10.271 0 15.362 1.222 24.629 4.928.955.383 1.869.74 2.75 1.072h6.225c-2.51-.73-5.139-1.691-8.233-2.928C65.888 13.278 60.562 12 50 12c-10.626 0-16.855 1.397-26.66 5.063l-1.767.662c-2.475.923-4.66 1.674-6.724 2.275h6.335zm0-20C13.258 2.892 8.077 4 0 4V2c5.744 0 9.951-.574 14.85-2h6.334zM77.38 0C85.239 2.966 90.502 4 100 4V2c-6.842 0-11.386-.542-16.396-2h-6.225zM0 14c8.44 0 13.718-1.21 22.272-4.402l1.768-.661C33.64 5.347 39.647 4 50 4c10.271 0 15.362 1.222 24.629 4.928C84.112 12.722 89.438 14 100 14v-2c-10.271 0-15.362-1.222-24.629-4.928C65.888 3.278 60.562 2 50 2 39.374 2 33.145 3.397 23.34 7.063l-1.767.662C13.223 10.84 8.163 12 0 12v2z' fill='%23555555' fill-opacity='0.4' fill-rule='evenodd'/%3E%3C/svg%3E");
}
.pattern.bathroom-floor {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 80 80'%3E%3Cg fill='%23555555' fill-opacity='0.4'%3E%3Cpath fill-rule='evenodd' d='M0 0h40v40H0V0zm40 40h40v40H40V40zm0-40h2l-2 2V0zm0 4l4-4h2l-6 6V4zm0 4l8-8h2L40 10V8zm0 4L52 0h2L40 14v-2zm0 4L56 0h2L40 18v-2zm0 4L60 0h2L40 22v-2zm0 4L64 0h2L40 26v-2zm0 4L68 0h2L40 30v-2zm0 4L72 0h2L40 34v-2zm0 4L76 0h2L40 38v-2zm0 4L80 0v2L42 40h-2zm4 0L80 4v2L46 40h-2zm4 0L80 8v2L50 40h-2zm4 0l28-28v2L54 40h-2zm4 0l24-24v2L58 40h-2zm4 0l20-20v2L62 40h-2zm4 0l16-16v2L66 40h-2zm4 0l12-12v2L70 40h-2zm4 0l8-8v2l-6 6h-2zm4 0l4-4v2l-2 2h-2z'/%3E%3C/g%3E%3C/svg%3E");
}
.pattern.autumn {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='176' height='48' viewBox='0 0 88 24'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23555555' fill-opacity='0.4'%3E%3Cpath d='M10 0l30 15 2 1V2.18A10 10 0 0 0 41.76 0H39.7a8 8 0 0 1 .3 2.18v10.58L14.47 0H10zm31.76 24a10 10 0 0 0-5.29-6.76L4 1 2 0v13.82a10 10 0 0 0 5.53 8.94L10 24h4.47l-6.05-3.02A8 8 0 0 1 4 13.82V3.24l31.58 15.78A8 8 0 0 1 39.7 24h2.06zM78 24l2.47-1.24A10 10 0 0 0 86 13.82V0l-2 1-32.47 16.24A10 10 0 0 0 46.24 24h2.06a8 8 0 0 1 4.12-4.98L84 3.24v10.58a8 8 0 0 1-4.42 7.16L73.53 24H78zm0-24L48 15l-2 1V2.18A10 10 0 0 1 46.24 0h2.06a8 8 0 0 0-.3 2.18v10.58L73.53 0H78z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.pattern.kiwi {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='68' height='88' viewBox='0 0 34 44'%3E%3Cg fill='%23555555' fill-opacity='0.4'%3E%3Cpath fill-rule='evenodd' d='M1 6.2C.72 5.55.38 4.94 0 4.36v13.28c.38-.58.72-1.2 1-1.84A12.04 12.04 0 0 0 7.2 22 12.04 12.04 0 0 0 1 28.2c-.28-.65-.62-1.26-1-1.84v13.28c.38-.58.72-1.2 1-1.84A12.04 12.04 0 0 0 7.2 44h21.6a12.05 12.05 0 0 0 5.2-4.36V26.36A12.05 12.05 0 0 0 28.8 22a12.05 12.05 0 0 0 5.2-4.36V4.36A12.05 12.05 0 0 0 28.8 0H7.2A12.04 12.04 0 0 0 1 6.2zM17.36 23H12a10 10 0 1 0 0 20h5.36a11.99 11.99 0 0 1 0-20zm1.28-2H24a10 10 0 1 0 0-20h-5.36a11.99 11.99 0 0 1 0 20zM12 1a10 10 0 1 0 0 20 10 10 0 0 0 0-20zm0 14a2 2 0 1 0 0 4 2 2 0 0 0 0-4zm-3.46-2a2 2 0 1 0-3.47 2 2 2 0 0 0 3.47-2zm0-4a2 2 0 1 0-3.47-2 2 2 0 0 0 3.47 2zM12 7a2 2 0 1 0 0-4 2 2 0 0 0 0 4zm3.46 2a2 2 0 1 0 3.47-2 2 2 0 0 0-3.47 2zm0 4a2 2 0 1 0 3.47 2 2 2 0 0 0-3.47-2zM24 43a10 10 0 1 0 0-20 10 10 0 0 0 0 20zm0-14a2 2 0 1 0 0-4 2 2 0 0 0 0 4zm3.46 2a2 2 0 1 0 3.47-2 2 2 0 0 0-3.47 2zm0 4a2 2 0 1 0 3.47 2 2 2 0 0 0-3.47-2zM24 37a2 2 0 1 0 0 4 2 2 0 0 0 0-4zm-3.46-2a2 2 0 1 0-3.47 2 2 2 0 0 0 3.47-2zm0-4a2 2 0 1 0-3.47-2 2 2 0 0 0 3.47 2z'/%3E%3C/g%3E%3C/svg%3E");
}
.pattern.welcome-pattern {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 700px;
  overflow: hidden;
  position: relative;
}
.pattern.welcome-pattern canvas, .pattern.welcome-pattern .welcome-text {
  -webkit-animation: fade-in-load ease-in 600ms forwards;
  animation: fade-in-load ease-in 600ms forwards;
}
.pattern.no-pattern {
  background-color: var(--accent-background-color);
  background-image: none;
}
.pattern.hide-featured {
  height: 100%;
  position: relative;
}
.pattern.welcome-image img {
  -webkit-animation: fade-in-load ease-in 600ms forwards;
  animation: fade-in-load ease-in 600ms forwards;
  height: 100%;
  object-fit: cover;
  width: 100%;
  z-index: 1;
}
.pattern.welcome-image canvas {
  display: none;
}
.pattern canvas {
  height: 100%;
  margin: 0 auto;
  max-width: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
}

#main {
  flex: 1;
  padding-top: 0;
}
@media screen and (max-width: 668px) {
  #main {
    background: var(--content-background-color);
  }
}

footer {
  background: var(--accent-background-color);
  color: var(--accent-text-color);
  padding: 64px 0;
  width: 100%;
}
@media screen and (max-width: 968px) {
  footer {
    padding: 32px 0;
  }
}
footer .wrapper {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  footer .wrapper {
    padding: 0 32px 50px 32px;
  }
}
@media screen and (max-width: 668px) {
  footer .wrapper {
    flex-direction: column;
    padding-bottom: 30px;
  }
}
footer .credit-container {
  margin-left: auto;
}
@media screen and (max-width: 968px) {
  footer .credit-container {
    margin: 32px auto 0;
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 668px) {
  footer .credit-container {
    margin-left: 16px;
    width: auto;
    text-align: left;
  }
}
@media screen and (max-width: 968px) {
  footer .credit-container--primary {
    display: none;
  }
}
footer .credit-container--secondary {
  display: none;
}
@media screen and (max-width: 968px) {
  footer .credit-container--secondary {
    display: block;
  }
}
footer .credit-container .bigcartel-credit {
  line-height: 1em;
  font-size: 13px;
  display: flex;
  color: var(--accent-text-color);
  flex-direction: column;
  gap: 8px;
  outline-offset: 4px;
  padding: 2px 0;
  text-decoration: none;
}
@media screen and (max-width: 968px) {
  footer .credit-container .bigcartel-credit {
    font-size: 15px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
}
footer .credit-container .bigcartel-credit__text {
  position: relative;
}
footer .credit-container .bigcartel-credit__lockup {
  display: block;
  fill: currentColor;
  padding-top: 1px;
  width: 86px;
}

.footer-custom-content {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  text-align: center;
  padding: 10px 16px 40px 16px;
  gap: 20px;
}
.footer-custom-content > * {
  justify-self: center;
}

.footernav {
  display: flex;
  flex-direction: column;
  flex: 1;
  max-width: 300px;
  width: 100%;
}
@media screen and (max-width: 668px) {
  .footernav {
    max-width: fit-content;
  }
}
.footernav .footer-nav-title {
  color: var(--accent-text-color);
  font-weight: 500;
  font-size: 1.2em;
  margin-bottom: 16px;
}
.footernav .footer-nav-title a {
  color: inherit;
}
.footernav .footer-nav-title a:hover {
  text-decoration: underline;
}
.footernav ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (max-width: 668px) {
  .footernav ul {
    display: block;
    column-gap: 32px;
    column-count: 2;
    column-width: 40vw;
  }
}
.footernav ul li {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
@media screen and (max-width: 668px) {
  .footernav ul li {
    padding-bottom: 16px;
  }
}
.footernav ul li a {
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  color: var(--accent-text-color);
  display: block;
  font-size: 15px;
}
.footernav ul li a:hover, .footernav ul li a:focus {
  text-decoration: underline;
}
.footernav ul.social-links a {
  color: var(--accent-text-color);
  display: flex;
  align-items: center;
  gap: 12px;
}
.footernav ul.social-links a svg {
  flex-shrink: 0;
  fill: currentColor;
  height: 16px;
  position: relative;
  width: 16px;
}

.custom-page {
  font-size: 16px;
  line-height: 1.5em;
  max-width: 768px;
  padding: 64px;
  width: 100%;
}
.custom-page p {
  margin: revert;
}
.custom-page > :first-child {
  margin-top: 0;
}
.custom-page > :last-child {
  margin-bottom: 0;
}
.custom-page ol, .custom-page ul {
  margin: 1em;
}
.custom-page ul {
  list-style: disc;
}
.custom-page ol {
  list-style: decimal;
}
.custom-page a {
  color: var(--link-text-color);
  text-decoration: underline;
}
.custom-page a:hover, .custom-page a:focus {
  color: var(--link-hover-color);
}
.custom-page img {
  display: inline-block;
  max-width: 100%;
  margin: 0 auto;
  padding-bottom: 16px;
}
@media screen and (max-width: 968px) {
  .custom-page {
    padding: 32px;
  }
}
@media screen and (max-width: 968px) {
  .custom-page {
    padding: 16px;
  }
}

.no-products-message {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  position: relative;
  top: 50%;
  display: block;
  font-size: 16px;
  line-height: 1.25em;
  margin: 0;
  padding: 64px;
}
.no-products-message a {
  color: var(--link-hover-color);
}

.blur-up {
  transition: filter 0.2s;
  filter: blur(5px);
  transform: translate3d(0, 0, 0);
}
.blur-up.lazyloaded {
  filter: blur(0);
}

.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  list-style: none;
  gap: 24px;
}
.social-icons a {
  display: flex;
  outline-offset: 4px;
}
.social-icons a svg {
  display: block;
  fill: currentColor;
  height: 24px;
  width: 24px;
}

.announcement-message {
  align-items: center;
  background-color: var(--announcement-background-color);
  color: var(--announcement-text-color);
  display: none;
  font-size: 1rem;
  justify-content: center;
  line-height: 1.25em;
  padding: 22px 120px;
  position: relative;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 668px) {
  .announcement-message {
    padding: 14px 64px;
  }
}
.announcement-message.visible {
  display: flex;
}
.announcement-message__close-button {
  align-items: center;
  color: var(--announcement-text-color);
  display: flex;
  height: 32px;
  justify-content: center;
  padding: 0;
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
}
@media screen and (max-width: 1024px) {
  .announcement-message__close-button {
    right: 24px;
  }
}
@media screen and (max-width: 668px) {
  .announcement-message__close-button {
    right: 12px;
  }
}
.announcement-message__close-icon {
  height: 14px;
  width: 14px;
}

section.content .cart-page {
  max-width: 960px;
  padding: var(--large-padding);
}
section.content .cart-page.empty-cart {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  section.content .cart-page {
    padding: var(--med-padding);
  }
}
@media screen and (max-width: 668px) {
  section.content .cart-page {
    padding: var(--small-padding);
  }
}

.cart-page .empty-cart-message {
  display: none;
}
.cart-page.empty-cart .empty-cart-message {
  display: flex;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-width: 300px;
  max-width: 600px;
  align-items: center;
  margin: 0 auto;
  width: 100%;
}
.cart-empty div {
  text-align: center;
}
.cart-empty a.button {
  max-width: 360px;
}

.cart-columns {
  display: grid;
  align-items: flex-start;
  grid-template-columns: 1fr;
  column-gap: 64px;
}
@media screen and (max-width: 968px) {
  .cart-columns {
    grid-template-columns: 1fr;
  }
}

.cart-items {
  border-bottom: 2px solid var(--border-color);
}

.cart-item {
  display: grid;
  grid-template-columns: auto 1fr 148px auto;
  justify-content: flex-start;
  align-items: flex-start;
  border-top: 2px solid var(--border-color);
  padding: 24px 0;
  gap: 16px;
}
@media (max-width: 968px) {
  .cart-item {
    grid-template-columns: auto 1fr auto;
    grid-template-rows: repeat(2, auto);
  }
}
@media screen and (max-width: 968px) {
  .cart-item .cart-item-image-holder {
    grid-area: 1/1/3/2;
  }
}
.cart-item .cart-item-image-link {
  display: block;
  height: 90px;
  overflow: hidden;
  width: 90px;
}
@media screen and (max-width: 668px) {
  .cart-item .cart-item-image-link {
    height: 64px;
    width: 64px;
  }
}
.cart-item .cart-item-image-link img {
  border-radius: var(--border-radius);
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.cart-item .cart-item-detail {
  max-width: 400px;
  padding-right: 24px;
}
@media (max-width: 968px) {
  .cart-item .cart-item-detail {
    grid-area: 1/2/2/3;
    padding-right: 0;
  }
}
.cart-item .product-name {
  font-weight: 500;
  font-size: 1.1em;
  word-break: break-word;
}
.cart-item .option-name {
  font-size: 1em;
  margin-top: 4px;
}
.cart-item input {
  border: none;
  height: 100%;
  padding: 8px;
  text-align: center;
  width: 48px;
}
.cart-item input::-webkit-outer-spin-button, .cart-item input::-webkit-inner-spin-button {
  display: none;
}
.cart-item .cart-qty {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 148px;
  gap: 8px;
}
@media (max-width: 968px) {
  .cart-item .cart-qty {
    align-items: center;
    grid-area: 2/2/3/4;
    justify-content: flex-start;
    flex-direction: row;
    width: 100%;
    gap: 24px;
  }
}
.cart-item .qty-holder {
  display: flex;
  align-items: center;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  gap: 8px;
}
.cart-item .qty-holder.disabled > * {
  opacity: 0.7;
  cursor: not-allowed;
  user-select: none;
  pointer-events: none;
}
.cart-item .qty-button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  width: 36px;
}
.cart-item .qty-button svg {
  width: 14px;
  height: 16px;
}
.cart-item .cart-remove-item--link {
  display: inline-block;
  height: auto;
  padding: 0.5em;
  line-height: 1em;
  font-weight: normal;
  font-size: 0.925em;
  padding: 8px 16px;
  text-decoration: none;
  width: auto;
}
@media (max-width: 968px) {
  .cart-item .cart-remove-item--link {
    padding: 4px 0;
    margin-left: auto;
  }
}
.cart-item .cart-item-price {
  font-size: 1.1em;
  margin-left: auto;
  min-width: 100px;
  min-height: 42px;
  display: flex;
  justify-content: flex-end;
  text-align: right;
}
@media screen and (max-width: 968px) {
  .cart-item .cart-item-price {
    font-size: 1.2rem;
    min-height: 0;
    min-width: 0;
    grid-area: 1/3/2/4;
    margin-left: 0;
  }
}

.cart-header {
  display: grid;
  justify-content: flex-end;
  margin-bottom: 0;
}
.cart-header .button {
  padding-right: 0;
}

.cart-footer {
  display: grid;
  place-items: center;
  gap: 2rem;
  margin-top: 24px;
  margin-left: auto;
  width: 100%;
  max-width: 300px;
}
@media screen and (max-width: 668px) {
  .cart-footer {
    max-width: 100%;
  }
}

.cart-subtotal {
  display: flex;
  gap: 16px;
  font-size: 1.5rem;
  align-items: flex-start;
  width: 100%;
}
.cart-subtotal__amount {
  margin-left: auto;
}

.cart-submit {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.cart-submit button {
  margin-bottom: 20px;
}
.cart-submit .button {
  max-width: 100%;
  width: 100%;
}
.cart-submit a.button {
  padding: 8px;
}

section.content .contact-page {
  max-width: 768px;
  padding: 48px;
}
@media screen and (max-width: 968px) {
  section.content .contact-page {
    padding: 32px;
  }
}
@media screen and (max-width: 668px) {
  section.content .contact-page {
    padding: 16px;
  }
}

.contact-form {
  display: flex;
  gap: 24px;
  flex-direction: column;
}

.contact-form-block {
  position: relative;
  text-align: left;
}
.contact-form-block label {
  display: block;
  margin-bottom: 8px;
  width: 100%;
}
.contact-form-block .input-holder {
  width: 100%;
}
.contact-form-block input {
  height: 56px;
}
.contact-form-block textarea {
  height: 220px;
  resize: vertical;
}
.contact-form-block input, .contact-form-block textarea {
  background: var(--content-background-color);
  border: 2px solid var(--primary-text-color);
  width: 100%;
}
.contact-form-block .recaptcha-note {
  font-size: 0.925em;
  margin-top: 10px;
  text-align: center;
}
.contact-form-block .recaptcha-note a {
  text-decoration: underline;
}
@media screen and (max-width: 668px) {
  .contact-form-block .recaptcha-note {
    margin-bottom: 32px;
  }
}
.contact-form-block.contact-send {
  border-bottom: 0;
  padding: 0;
}

.message-sent {
  display: block;
  line-height: 1.5em;
  padding: 64px 0;
  text-align: center;
}

.message-banner--contact {
  margin-bottom: 30px;
}
.message-banner--contact ol, .message-banner--contact ul {
  list-style: unset;
  margin: 1em;
}
.message-banner--contact a {
  text-decoration: underline;
}

:root {
  --pagination-background: transparent;
  --pagination-page-background: var(--primary-text-color);
  --pagination-active-page: var(--primary-text-color);
}

@-webkit-keyframes fade-in-load {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in-load {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.home-slideshow {
  margin-bottom: 48px;
}
.home-slideshow .splide__slide {
  width: 100%;
}
.home-slideshow .slideshow-image {
  border-radius: var(--border-radius);
  width: 100%;
}
.home-slideshow .splide__arrow {
  border-radius: var(--border-radius);
  width: 2em;
  height: 3em;
}
.home-slideshow .splide__pagination {
  z-index: 1;
  background: var(--pagination-background);
  border-radius: 18px;
  display: inline-flex;
  position: relative;
  margin-top: 8px;
  bottom: auto;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  left: 50%;
  padding: 4px 8px;
  gap: 2px;
  right: auto;
}
.home-slideshow .splide__pagination li {
  display: flex;
}
.home-slideshow .splide__pagination .splide__pagination__page {
  opacity: 1;
  background: none;
  border: 1px solid var(--pagination-page-background);
  height: 10px;
  width: 10px;
}
.home-slideshow .splide__pagination .splide__pagination__page.is-active {
  background: var(--pagination-active-page);
  transform: scale(1.1);
}

.welcome-text {
  color: var(--accent-text-color);
  letter-spacing: 2px;
  margin: 0 auto;
  max-width: 1600px;
  padding: 0 32px;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  z-index: 2;
}

h1.featured-title {
  color: var(--primary-text-color);
  font-size: 2em;
  margin: 32px auto;
  text-align: center;
}
@media screen and (max-width: 668px) {
  h1.featured-title {
    color: var(--primary-text-color);
    font-size: 1.5em;
    margin: 24px auto;
  }
}

h1.welcome-header {
  color: var(--accent-text-color);
  font-size: 60px;
  line-height: 1.4em;
  margin: 0 0 32px;
  text-align: center;
}
@media screen and (max-width: 668px) {
  h1.welcome-header {
    color: var(--accent-text-color);
    font-size: 9vw;
  }
}

h2.welcome-subheader {
  color: var(--accent-text-color);
  font-size: 18px;
  line-height: 1.4em;
  text-align: center;
}
h2.welcome-subheader:after {
  display: block;
  content: "";
  background: var(--accent-text-color);
  height: 2px;
  margin: 36px auto 0;
  width: 100px;
}

section.content .home-page {
  margin-top: 80px;
  max-width: 1600px;
  padding: var(--large-padding);
}
@media screen and (max-width: 968px) {
  section.content .home-page {
    padding: var(--med-padding);
  }
}
@media screen and (max-width: 668px) {
  section.content .home-page {
    margin-top: 0;
    padding: var(--small-padding);
  }
}
section.content .home-page.has-welcome {
  margin-top: -80px;
}
@media screen and (max-width: 668px) {
  section.content .home-page.has-welcome {
    margin-top: 0;
  }
}

section.content .products-page {
  max-width: 1600px;
  padding: var(--large-padding);
}
@media screen and (max-width: 968px) {
  section.content .products-page {
    padding: var(--med-padding);
  }
}
@media screen and (max-width: 668px) {
  section.content .products-page {
    padding: var(--small-padding);
  }
}

a.all-products-button {
  max-width: 350px;
  background: none;
  color: var(--primary-text-color);
  border: 2px solid var(--primary-text-color);
  gap: 12px;
}
a.all-products-button svg {
  fill: currentColor;
}
a.all-products-button:not(:disabled):hover, a.all-products-button:not(:disabled):active {
  border: 2px solid var(--button-hover-background-color);
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.collage-image {
  opacity: 1;
  animation: fade-in 0.4s ease-in-out forwards;
}
.collage-image.loading {
  opacity: 0;
  animation: none;
}

#maintenance {
  padding: 100px 15px;
}
@media screen and (max-width: 968px) {
  #maintenance {
    padding: 60px 20px;
  }
}
#maintenance .message-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: var(--content-background-color);
  color: var(--primary-text-color);
  margin: 0 auto;
  max-width: 720px;
  padding: 24px 48px 40px;
  text-align: center;
  width: 100%;
  gap: 40px;
}
@media screen and (max-width: 668px) {
  #maintenance .message-container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
#maintenance .message-container h1.store-name {
  font-family: var(--primary-font);
  font-size: 2em;
  margin: 0 0 16px 0;
  height: auto;
  padding: 0;
}
#maintenance .message-container .maintenance-message * {
  text-align: inherit;
}
#maintenance .message-container .social-icons {
  margin: 16px 0 0 0;
}

header {
  -webkit-transition: height 0.4s;
  transition: height 0.4s;
  flex-shrink: 0;
  background: var(--content-background-color);
  border-bottom: 2px solid var(--header-border-color);
  height: var(--header-height);
  font-size: 1.1em;
  line-height: 1.2rem;
  font-weight: 500;
  width: 100%;
  z-index: 10;
}
@media screen and (min-width: 669px) {
  header.page-head-scrolled {
    position: fixed;
    top: 0;
  }
}
@media screen and (min-width: 669px) and (min-width: 1025px) {
  header.page-head-scrolled {
    --header-height: var(--header-height-tablet);
  }
}

@media screen and (max-width: 1024px) {
  header {
    --header-height: var(--header-height-tablet);
  }
}
@media screen and (max-width: 668px) {
  header {
    position: relative;
    height: auto;
  }
}
header .wrapper {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 64px;
  display: grid;
  min-height: 100%;
  align-items: center;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
}
@media screen and (max-width: 1024px) {
  header .wrapper {
    padding: 0 32px;
  }
}
@media screen and (max-width: 668px) {
  header .wrapper {
    grid-template-columns: 0.75fr 2.5fr 0.75fr;
    padding: 0 16px;
  }
}

.header-nav {
  cursor: pointer;
  position: relative;
  width: auto;
  z-index: 3;
}
@media screen and (max-width: 968px) {
  .header-nav {
    display: none;
    font-size: 1.25em;
  }
}
@media screen and (max-width: 668px) {
  .header-nav {
    font-size: 1em;
    max-width: 100%;
  }
}
.header-nav .nav-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: color 0.1s linear;
}
@media (hover: hover) {
  .header-nav .nav-heading:hover .nav-page {
    text-decoration: underline;
    text-decoration-thickness: 2px;
  }
}
.header-nav .nav-page {
  text-underline-offset: 4px;
}
.header-nav .nav-arrow {
  fill: currentColor;
  pointer-events: none;
  width: 12px;
}
.header-nav .nav-dropdown {
  background: var(--content-background-color);
  transition: opacity 0.2s linear, visibility 0.2s linear;
  border-radius: var(--border-radius);
  border: 2px solid var(--border-color);
  left: -20px;
  margin: 0 auto;
  min-width: 250px;
  opacity: 0;
  overflow-y: scroll;
  padding: 15px;
  position: absolute;
  text-align: left;
  visibility: hidden;
  height: auto;
  max-height: 50vh;
  top: calc(100% + 8px);
  scrollbar-width: thin;
  scrollbar-color: rgba(var(--primary-text-color-rgb),.5) transparent;
  scrollbar-gutter: stable;
}
.header-nav .nav-dropdown[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}
.header-nav .nav-dropdown::-webkit-scrollbar {
  height: 0.375rem;
  width: 0.75rem;
}
.header-nav .nav-dropdown::-webkit-scrollbar-track {
  background-color: transparent;
}
.header-nav .nav-dropdown::-webkit-scrollbar-thumb {
  border-radius: 0.375rem;
  border: 3px solid transparent;
  background-color: rgba(var(--primary-text-color-rgb),.5);
  background-clip: content-box;
}
.header-nav .dropdown-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}
.header-nav .dropdown-list li {
  display: block;
}
.header-nav .dropdown-list li a {
  display: block;
  font-size: 0.925rem;
  padding: 8px;
}

.store-name {
  font-family: var(--primary-font);
  font-size: 2em;
  display: flex;
  height: var(--header-height);
  transition: height 0.4s;
  align-items: center;
  text-align: center;
  justify-content: center;
  padding: 16px;
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (max-width: 968px) {
  .store-name {
    font-size: 1.4em;
  }
}
@media screen and (max-width: 668px) {
  .store-name {
    font-size: 1.2em;
    padding: 12px;
  }
}
.store-name a {
  display: flex;
  color: var(--header-text-color);
  line-height: 1.25em;
  align-items: center;
  width: auto;
  outline-offset: 4px;
}
.store-name.image img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}
.store-name.image a {
  height: 100%;
}

.header-cart {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .header-cart {
    right: -6px;
  }
}
@media screen and (max-width: 668px) {
  .header-cart {
    gap: 4px;
  }
}

.header-mobile-nav {
  color: var(--header-text-color);
  display: none;
}
.header-mobile-nav .menu-bars {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
  height: 36px;
  position: relative;
  width: 36px;
}
.header-mobile-nav .menu-bars svg {
  fill: currentColor;
  height: 24px;
  width: 24px;
}
@media screen and (max-width: 1024px) {
  .header-mobile-nav {
    display: flex;
    align-items: center;
    left: -4px;
    position: relative;
  }
}

@media screen and (max-width: 1024px) {
  .header-navigation {
    display: none;
  }
}
.header-navigation .header-pages {
  display: flex;
  column-gap: 24px;
  row-gap: 4px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-navigation .header-page-link a, .header-navigation .header-page-link .category-nav-heading {
  display: flex;
  color: var(--header-text-color);
  position: relative;
  outline-offset: 4px;
  border-radius: 0;
}
.header-navigation .header-page-link a:hover, .header-navigation .header-page-link a:focus, .header-navigation .header-page-link .category-nav-heading:hover, .header-navigation .header-page-link .category-nav-heading:focus {
  color: var(--link-hover-color);
}
@media (hover: hover) {
  .header-navigation .header-page-link a:hover {
    text-decoration: underline;
    text-decoration-thickness: 2px;
  }
}

.open-search {
  color: var(--header-text-color);
  height: 36px;
  width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.1s linear;
}
.open-search:hover, .open-search:focus {
  color: var(--link-hover-color);
}
.open-search svg {
  fill: currentColor;
  width: 22px;
  height: 22px;
}
@media screen and (max-width: 968px) {
  .open-search svg {
    width: 20px;
    height: 20px;
  }
}

.cart-link {
  color: var(--header-text-color);
  height: 36px;
  width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.1s linear;
}
.cart-link:hover, .cart-link:focus {
  color: var(--link-hover-color);
}
.cart-link svg {
  fill: currentColor;
  width: 22px;
  height: 22px;
}
@media screen and (max-width: 968px) {
  .cart-link svg {
    width: 20px;
    height: 20px;
  }
}

.cart-num-items__circle {
  background: var(--button-background-color);
  border-radius: 100%;
  color: var(--button-text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 18px;
  width: 18px;
  position: absolute;
  text-align: center;
  font-size: 11px;
  right: -2px;
  top: -2px;
}
@media screen and (max-width: 968px) {
  .cart-num-items__circle {
    right: -2px;
    top: 0px;
  }
}

#mobile-navigation {
  background: rgba(var(--background-color-rgb), .8);
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: calc(100vh - var(--header-bottom-position));
  height: calc(100svh - var(--header-bottom-position));
  z-index: 10;
  top: var(--header-bottom-position);
  left: 0;
  position: fixed;
  transition: opacity 0.1s ease, visibility 0.1s ease;
  overscroll-behavior: contain;
}
@media screen and (max-width: 1024px) {
  #mobile-navigation[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
  }
  #mobile-navigation[aria-hidden="false"] .mobile-navigation__wrapper {
    transform: translateX(0);
  }
}

.mobile-navigation__wrapper {
  max-width: 90%;
  background: var(--content-background-color);
  border-right: 2px solid var(--border-color);
  padding: 16px;
  height: 100%;
  width: 100%;
  transform: translateX(-100%);
  transition: transform 0.1s linear;
  overflow-y: scroll;
  padding-bottom: var(--header-bottom-position);
}
.mobile-navigation__body {
  display: grid;
  gap: 30px;
}
.mobile-navigation__links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mobile-navigation__links li a {
  padding: 4px 0;
  font-size: 1.1em;
}
.mobile-navigation__custom-pages {
  position: relative;
}
.mobile-navigation__custom-pages::before {
  content: "";
  position: absolute;
  left: 16px;
  top: -15px;
  width: 30px;
  height: 1px;
  background-color: var(--border-color);
}
.mobile-navigation__icons {
  column-gap: 36px;
  justify-content: flex-start;
}

section.content .product-page {
  margin-top: 80px;
  max-width: 1400px;
  padding: var(--large-padding);
}
@media screen and (max-width: 1024px) {
  section.content .product-page {
    padding: var(--med-padding);
  }
}
@media screen and (max-width: 668px) {
  section.content .product-page {
    margin-top: 0;
    padding: var(--med-padding) var(--small-padding);
  }
}

.product-breadcrumb {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  column-gap: 12px;
  row-gap: 4px;
  flex-wrap: wrap;
  font-size: 0.925em;
  font-weight: 500;
}
.product-breadcrumb .next-arrow {
  width: 5px;
  fill: var(--primary-text-color);
  opacity: 0.8;
}
.product-breadcrumb a {
  text-decoration: none;
}
.product-breadcrumb a:hover {
  text-decoration: underline;
}

.product-container {
  display: grid;
  grid-template-columns: 1fr 420px;
  column-gap: 48px;
  row-gap: 40px;
}
@media screen and (max-width: 1200px) {
  .product-container {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 1024px) {
  .product-container {
    column-gap: 32px;
  }
}
@media screen and (max-width: 968px) {
  .product-container {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 24px;
  }
}

.reset-selection-button-container {
  text-align: center;
  width: 100%;
}
.reset-selection-button-container button.reset-selection-button {
  display: none;
}

.product-form {
  width: 100%;
}
.product-form button {
  max-width: 100%;
}
@media screen and (max-width: 1024px) {
  .product-form {
    max-width: 100%;
  }
}

.product-selects {
  margin-bottom: 20px;
}

.product-option-groups {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-detail {
  display: flex;
  flex-direction: column;
  row-gap: 36px;
}
.product-detail__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.product-detail__status {
  font-size: 0.875em;
  line-height: normal;
  display: inline-block;
}
.product-detail__separator {
  margin: 0 8px;
}
.product-detail__pricing {
  display: flex;
  align-items: center;
  font-size: 1.25em;
  color: var(--primary-text-color);
}
.product-detail__description p {
  margin: revert;
}
.product-detail__description > :first-child {
  margin-top: 0;
}
.product-detail__description > :last-child {
  margin-bottom: 0;
}
.product-detail__description ol, .product-detail__description ul {
  margin: 1em;
}
.product-detail__description ul {
  list-style: disc;
}
.product-detail__description ol {
  list-style: decimal;
}
.product-detail__description a {
  color: var(--link-text-color);
  text-decoration: underline;
}
.product-detail__description a:hover, .product-detail__description a:focus {
  color: var(--link-hover-color);
}
.product-detail__description img {
  display: inline-block;
  max-width: 100%;
  margin: 0 auto;
  padding-bottom: 16px;
}
.product-detail h1.page-title {
  color: var(--primary-text-color);
  font-size: 1.75em;
  margin: 0;
  text-align: left;
}

.related-products-container {
  margin-top: 100px;
}

.related-products-header {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.related-products-header .related-products-view-all-link {
  margin-left: auto;
  font-weight: 500;
}
.related-products-header .related-products-view-all-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

#instant-checkout-button {
  margin-top: 12px;
}

.inventory-status-message {
  color: var(--inventory-status-text-color);
  font-size: 0.9em;
  margin: 10px 0 auto;
  text-align: center;
  padding: 8px 0;
  font-weight: 500;
}

#payment-processor-messaging {
  margin: 20px 0 0;
  width: 100%;
  display: block;
}
body[data-bc-page-type="cart"] #payment-processor-messaging {
  margin-bottom: 40px;
}
#payment-processor-messaging.display-flex {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#payment-processor-messaging.display-flex.dual-messaging {
  gap: 15x;
}
#payment-processor-messaging.display-grid {
  display: grid;
}
#payment-processor-messaging.hidden {
  position: absolute;
  left: -9999px;
  top: -9999px;
}
#payment-processor-messaging > div {
  margin-bottom: 0;
}
#payment-processor-messaging:not(.display-flex).dual-messaging > div.visible:first-of-type {
  margin-bottom: 15px;
}

:root {
  --thumbnail-active-color: var(--secondary-text-color);
  --thumb-scroller-color: var(--primary-text-color);
  --thumb-scroller-border-width: 1px;
  --thumb-scroller-border-color: var(--primary-text-color);
  --thumb-scroller-background: var(--content-background-color);
  --thumb-scroller-background-hover: transparent;
  --current-slide-background: var(--content-background-color);
  --current-slide-color: var(--primary-text-color);
  --active-slide-border-width: 2px;
  --active-slide-border-width-offset: -2px;
  --arrow-background-color: var(--content-background-color);
  --arrow-color: var(--primary-text-color);
  --gap-width: 16px;
  --num-images: 5;
}
@media screen and (max-width: 668px) {
  :root {
    --gap-width: 12px;
  }
}

.product-carousel .splide__list {
  align-items: flex-start;
}
.product-carousel .splide__slide {
  transition: height 0.2s ease;
}
.product-carousel .splide__slide img {
  display: block;
  width: 100%;
  height: auto;
}
.product-carousel .splide__slide:not(.is-active) {
  height: 0;
}

.splide__track {
  border-radius: var(--border-radius);
}

.splide__arrows {
  display: none;
}
@media (hover: hover) {
  .splide__arrows {
    display: block;
  }
}

.splide__arrow {
  transition: opacity 0.2s ease;
  opacity: 0;
  border-radius: var(--border-radius);
  width: 2em;
  height: 3em;
  background: var(--arrow-background-color);
  color: var(--arrow-color);
}
.splide__arrow:disabled {
  opacity: 0;
}
.splide__arrow--prev {
  left: 0.75em;
}
.splide__arrow--next {
  right: 0.75em;
}
.splide__arrow svg {
  fill: currentColor;
}

.splide:hover .splide__arrow:not(:disabled), .splide:focus-within .splide__arrow:not(:disabled) {
  opacity: 1;
}

.product-image {
  border-radius: var(--border-radius);
  width: 100%;
}

.product-thumbnails--list {
  display: flex;
  gap: var(--gap-width);
  list-style: none;
  flex: 1;
  padding: 0 calc(var(--gap-width) / 2);
  scroll-padding-left: calc(var(--gap-width) / 2);
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: var(--border-radius);
}
.product-thumbnails--list.mobile-overflow {
  padding-left: 0;
  padding-right: 0;
}
@media screen and (max-width: 668px) {
  .product-thumbnails--list .product-thumbnails--item {
    --num-images: 4;
  }
  .product-thumbnails--list.mobile-overflow {
    padding-left: 0;
    padding-right: 0;
  }
  .product-thumbnails--list.mobile-overflow .product-thumbnails--item {
    --num-images: 5;
  }
}
.product-thumbnails--list.is-overflow {
  justify-content: flex-start;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.product-thumbnails--list.is-overflow::-webkit-scrollbar {
  display: none;
}
.product-thumbnails--list.thumbnails {
  flex-wrap: wrap;
}
.product-thumbnails--item {
  width: calc(calc(100% / var(--num-images)) - calc(var(--gap-width) - calc(var(--gap-width) / var(--num-images))));
  flex-shrink: 0;
  cursor: pointer;
  border-radius: var(--border-radius);
  user-select: none;
  pointer-events: none;
  position: relative;
  scroll-snap-align: start;
}
.product-thumbnails--item:before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.product-thumbnails--item:not([aria-current="true"]):hover img {
  opacity: 0.8;
}
.product-thumbnails--item[aria-current="true"] .product-thumbnails--change-slide img {
  outline: var(--active-slide-border-width) solid var(--thumbnail-active-color);
  outline-offset: var(--active-slide-border-width-offset);
}
.product-thumbnails--item .product-thumbnails--change-slide {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: 100%;
  width: 100%;
  padding: 0;
  overflow: hidden;
  user-select: none;
  border-radius: var(--border-radius);
  pointer-events: auto;
}
.product-thumbnails--item .product-thumbnails--change-slide img {
  border-radius: var(--border-radius);
  height: 100%;
  width: 100%;
  object-fit: cover;
}

a.gallery-link {
  cursor: zoom-in;
  display: block;
}

.product-thumbnails-buttons-container {
  align-items: center;
  display: flex;
  gap: 4px;
  margin-top: var(--gap-width);
  width: 100%;
}
.product-thumbnails-buttons-container .thumb-scroller {
  display: none;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 48px;
  color: var(--thumb-scroller-color);
  background: var(--thumb-scroller-background);
  border-radius: var(--border-radius);
  border: var(--thumb-scroller-border-width) solid var(--thumb-scroller-border-color);
}
@media screen and (max-width: 668px) {
  .product-thumbnails-buttons-container .thumb-scroller {
    height: 44px;
  }
}
.product-thumbnails-buttons-container .thumb-scroller[disabled] {
  opacity: 0.2;
  cursor: not-allowed;
}
.product-thumbnails-buttons-container .thumb-scroller:not([disabled]):hover {
  background: var(--thumb-scroller-background-hover);
}
.product-thumbnails-buttons-container .thumb-scroller svg {
  fill: currentColor;
  display: block;
  width: 16px;
}
.product-thumbnails-buttons-container .thumb-scroller--left svg {
  transform: rotate(90deg);
}
.product-thumbnails-buttons-container .thumb-scroller--right svg {
  transform: rotate(-90deg);
}
.product-thumbnails-buttons-container .thumb-scroller.hidden {
  display: none;
}

@media screen and (min-width: 669px) {
  .overlay-image-counter {
    display: none;
  }

  .desktop-stacked .splide .splide__list, .desktop-two-column .splide .splide__list {
    display: flex !important;
    flex-direction: column;
    gap: 16px;
  }
  .desktop-stacked .splide .splide__slide, .desktop-two-column .splide .splide__slide {
    height: auto;
    flex-shrink: 0;
    width: 100%;
  }
  .desktop-stacked .product-thumbnails-buttons-container, .desktop-two-column .product-thumbnails-buttons-container {
    display: none;
  }

  .desktop-two-column .splide .splide__list {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .desktop-two-column .splide .splide__track {
    overflow: visible;
  }
  .desktop-two-column .splide .splide__slide {
    width: calc((100% / 2) - 8px);
  }
  .desktop-two-column .splide .splide__slide:not(:first-child):before {
    content: "";
    display: block;
    padding-bottom: 100%;
  }
  .desktop-two-column .splide .splide__slide:not(:first-child) .zoom-image-container {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    height: 100%;
    width: 100%;
    padding: 0;
    overflow: hidden;
    user-select: none;
    border-radius: var(--border-radius);
    pointer-events: auto;
  }
  .desktop-two-column .splide .splide__slide:not(:first-child) .zoom-image-container img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .desktop-two-column .splide .splide__slide:first-child {
    width: 100%;
  }

  .desktop-carousel .thumb-scroller {
    display: flex;
  }
  .desktop-carousel .overlay-image-counter {
    display: flex;
  }

  .desktop-thumbnails .product-thumbnails {
    padding: 0px;
  }
  .desktop-thumbnails .product-thumbnails--list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding: 0;
  }
  .desktop-thumbnails .product-thumbnails--item {
    width: 100%;
  }

  .mobile-buttons-indicator {
    display: none;
  }
}
@media screen and (max-width: 668px) {
  .mobile-show-thumbnails .mobile-buttons-indicator {
    display: none;
  }
  .mobile-show-thumbnails .thumb-scroller {
    display: flex;
  }

  .mobile-hide-thumbnails .overlay-image-counter {
    display: none;
  }
  .mobile-hide-thumbnails .product-thumbnails-buttons-container {
    display: none;
  }
  .mobile-hide-thumbnails .mobile-buttons-indicator {
    display: flex;
    font-size: 0.925rem;
    gap: 24px;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
  }
  .mobile-hide-thumbnails .mobile-buttons-indicator .change-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 40px;
    height: 40px;
    background: var(--thumb-scroller-background);
    color: var(--thumb-scroller-color);
  }
  .mobile-hide-thumbnails .mobile-buttons-indicator .change-slide svg {
    display: block;
    width: 16px;
  }
  .mobile-hide-thumbnails .mobile-buttons-indicator .change-slide--left svg {
    transform: rotate(90deg);
  }
  .mobile-hide-thumbnails .mobile-buttons-indicator .change-slide--right svg {
    transform: rotate(-90deg);
  }
}
.overlay-image-counter {
  position: absolute;
  right: 10px;
  bottom: 10px;
  font-size: 0.8rem;
  background: var(--current-slide-background);
  color: var(--current-slide-color);
  padding: 6px 8px;
  border-radius: var(--border-radius);
}

.product-list-container {
  margin: 0 auto;
  max-width: 1600px;
}

.product-list {
  --gap: var(--large-padding);
  --row-gap: 48px;
  --columns: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0;
  gap: var(--gap);
  row-gap: var(--row-gap);
}
.product-list.justify-center {
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .product-list {
    --gap: var(--med-padding);
    --columns: calc(3 - 1);
  }
}
@media screen and (max-width: 668px) {
  .product-list {
    --columns: 2;
    --gap: var(--small-padding);
    justify-content: flex-start;
    row-gap: 24px;
  }
}

.product-list-thumb {
  position: relative;
  text-decoration: none;
  width: calc((100% / var(--columns)) - var(--gap) + (var(--gap) / var(--columns)));
}

.product-list-link {
  color: var(--primary-text-color);
  background: var(--content-background-color);
  display: block;
  text-decoration: none;
}
.product-list-link:hover, .product-list-link:focus {
  color: var(--primary-text-color);
  text-decoration: none;
}
.product-list-link:hover .product-list-thumb-name, .product-list-link:focus .product-list-thumb-name {
  text-decoration: underline;
}

.product-list-image-container {
  overflow: hidden;
  position: relative;
}
.product-list-image-container:before {
  display: block;
  width: 100%;
  content: "";
  padding-bottom: 100%;
  height: 0;
}

.product-list-image {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.product-list-image.grid-cover {
  object-fit: cover;
}
.product-list-image.grid-contain {
  object-fit: contain;
}

.product-list-thumb-info {
  color: var(--primary-text-color);
  padding: 16px 0;
  font-size: 1.1em;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .product-list-thumb-info {
    padding: 12px 0;
    font-size: 1em;
  }
}

.product-list-thumb-name {
  font-weight: normal;
  overflow-wrap: break-word;
  position: relative;
}

.product-list-thumb-status {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 500;
  left: 16px;
  padding: 6px 12px;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  top: 16px;
  white-space: nowrap;
}
.product-list-thumb-status.status-primary {
  background: var(--badge-background-color-primary);
  color: var(--badge-text-color-primary);
}
.product-list-thumb-status.status-secondary {
  background: var(--badge-background-color-secondary);
  color: var(--badge-text-color-secondary);
}

.no-results {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--content-background-color);
  text-align: center;
  line-height: 1.5em;
  min-height: 240px;
  margin-bottom: 128px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
}
.no-results a {
  text-decoration: underline;
}

.pagination {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 48px;
}
@media screen and (max-width: 668px) {
  .pagination {
    margin-bottom: 48px;
    padding: 0 32px;
  }
}

.page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--button-background-color);
  text-align: center;
  height: 48px;
  padding: 0;
  position: relative;
  text-decoration: none;
  width: 48px;
}
.page-link:not(.disabled):hover, .page-link:not(.disabled):focus {
  background: var(--button-background-color);
}
.page-link:not(.disabled):hover svg, .page-link:not(.disabled):focus svg {
  fill: var(--button-text-color);
}
.page-link.next-page-link {
  margin-left: 2px;
}
.page-link.disabled {
  cursor: not-allowed;
  opacity: 0.8;
}
.page-link svg {
  display: block;
  fill: var(--button-text-color);
  height: 16px;
  width: 16px;
}

.pagination-caption {
  font-size: 1.1em;
  margin-left: 32px;
}

.search-modal {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  z-index: 999;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(var(--content-background-color-rgb),.8);
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.search-modal[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}
.search-modal__content {
  background-color: var(--content-background-color);
  border-bottom: 2px solid var(--border-color);
  color: var(--primary-text-color);
  text-align: center;
  display: grid;
  grid-template-rows: 1fr;
  width: 100%;
}
.search-modal__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 32px;
  max-width: 800px;
  position: relative;
  margin: 0 auto;
  width: 100%;
}
.search-modal__form {
  display: grid;
  font-weight: 500;
  grid-template-columns: 1fr;
  column-gap: 16px;
  row-gap: 8px;
  width: 100%;
}
.search-modal__input {
  grid-row: 2/2;
  grid-column: 1/1;
  border-radius: var(--border-radius);
  background: var(--content-background-color);
  border: 2px solid var(--primary-text-color);
  font-weight: normal;
  width: 100%;
  font-size: 1em;
  height: 48px;
  padding: 8px;
}
.search-modal__submit {
  color: var(--button-text-color);
  background: var(--button-background-color);
  grid-row: 2/2;
  grid-column: 2/2;
  padding: 0;
  height: 48px;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-modal__submit:hover, .search-modal__submit:focus {
  background: var(--button-hover-background-color);
}
.search-modal__close {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 4em;
  cursor: pointer;
  width: 48px;
  height: 48px;
  margin-left: auto;
  color: var(--primary-text-color);
}
.search-modal__close-icon {
  height: 20px;
  width: 20px;
}
.search-modal__close:hover, .search-modal__close:focus {
  color: var(--link-hover-color);
}
.search-modal__label {
  text-align: left;
}
/*


*/

/*============================================================
  Custom Styles - add and override styles below.
============================================================*/
