@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}
/**
 * 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%;
     -moz-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;
     -moz-user-select: none;
      -ms-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;
}

/*
  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); */
  background: rgba(245, 245, 245, 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: 15px;
  line-height: 20px;
  margin-top: -8px;
  color: var(--color-primary-text);
}

.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));
}

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

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

.bg-current{
  background-color: currentColor;
}

.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-primary-text{
  background-color: var(--color-primary-text);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.to-footer-background{
  --tw-gradient-to: var(--color-footer-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-primary-text{
  border-color: var(--color-primary-text);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hover\:border-footer-accent:hover{
  border-color: var(--color-footer-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-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-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;
}

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

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

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

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

.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-10{
  height: 2.5rem;
}

.h-auto{
  height: auto;
}

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

.h-full{
  height: 100%;
}

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

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

.text-xs{
  /* font-size: .64rem; */
  /* line-height: var(--base-line-height); */
  font-size: 15px;
  line-height: 20px;
}

.text-sm{
  /* font-size: .8rem; */
  /* line-height: var(--base-line-height); */
  font-size: 15px;
  line-height: 20px;   
}

.text-base{
  /* font-size: 1rem; */
  /* line-height: var(--base-line-height); */
  font-size: 15px;
  line-height: 20px;
}

.text-lg{
  /* font-size: 1.25rem; */
  /* line-height: var(--base-line-height); */
  font-size: 15px;
  line-height: 20px;
}

.text-xl{
  /* font-size: 1.563rem; */
  /* line-height: var(--base-line-height); */
  font-size: 15px;
  line-height: 20px;
}

.text-2xl{
  /* font-size: 1.953rem; */
  /* line-height: var(--base-line-height); */
  font-size: 15px;
  line-height: 20px;
}

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

.m-0{
  margin: 0px;
}

.my-0{
  margin-top: 0px;
  margin-bottom: 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;
}

.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;
}

.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;
}

.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;
}

.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;
}

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

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

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

.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{
  -o-object-fit: contain;
     object-fit: contain;
}

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

.object-bottom{
  -o-object-position: bottom;
     object-position: bottom;
}

.object-center{
  -o-object-position: center;
     object-position: center;
}

.object-left{
  -o-object-position: left;
     object-position: left;
}

.object-left-bottom{
  -o-object-position: left bottom;
     object-position: left bottom;
}

.object-left-top{
  -o-object-position: left top;
     object-position: left top;
}

.object-right{
  -o-object-position: right;
     object-position: right;
}

.object-right-bottom{
  -o-object-position: right bottom;
     object-position: right bottom;
}

.object-right-top{
  -o-object-position: right top;
     object-position: right top;
}

.object-top{
  -o-object-position: top;
     object-position: top;
}

.opacity-0{
  opacity: 0;
}

.opacity-50{
  opacity: 0.5;
}

.opacity-100{
  opacity: 1;
}

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

.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-4{
  padding: 1rem;
}

.p-8{
  padding: 2rem;
}

.p-px{
  padding: 1px;
}

.py-1{
  /* padding-top: 0.25rem; */
  /* padding-bottom: 0.25rem; */
  padding-top: 10px;
  padding-bottom: 10px;
}

.px-1{
  /* padding-left: 0.25rem; */
  /* padding-right: 0.25rem; */
  padding-top: 10px;
  padding-bottom: 10px;
}

.py-2{
  /* padding-top: 0.5rem; */
  /* padding-bottom: 0.5rem; */
  padding-top: 5px;
  padding-bottom: 5px;
}

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

.py-4{
  /* padding-top: 1rem; */
  /* padding-bottom: 1rem; */
  padding-top: 10px;
  padding-bottom: 10px;
}

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

.py-8{
  /* padding-top: 2rem; */
  /* padding-bottom: 2rem; */
  padding-top: 10px;
  padding-bottom: 10px;
}

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

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

.py-1\.5{
  /* padding-top: 0.375rem; */
  /* padding-bottom: 0.375rem; */
  padding-top: 10px
  padding-bottom: 10px;
}

.py-theme{
  /* padding-top: var(--spacing); */
  /* padding-bottom: var(--spacing); */
  padding-top: 10px;
  padding-bottom: 10px;
}

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

.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;
}

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

.pt-theme{
  /* padding-top: var(--spacing); */
  padding-top: 10px;
}

.pb-theme{
  /* padding-bottom: var(--spacing); */
  padding-bottom: 10px;
}

.pt-theme-double{
  /* padding-top: var(--spacing-double); */
  padding-top: 10px;
}

.pb-theme-double{
  /* padding-bottom: var(--spacing-double); */
  padding-bottom: 10px;
}

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

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

.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-primary-text{
  color: var(--color-primary-text);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hover\:text-black-accent:hover{
  --tw-text-opacity: 1;
  color: rgba(0, 0, 0, var(--tw-text-opacity));
}

.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-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-16{
  width: 4rem;
}

.w-20{
  width: 5rem;
}

.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-third-screen{
  width: 33.333333vw;
}

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

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

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

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

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

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

.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-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-in-out{
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

@-webkit-keyframes ping{
  75%, 100%{
    transform: scale(2);
    opacity: 0;
  }
}

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

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

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

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

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

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

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

.col-gap-lg{
  -moz-column-gap: 2rem;
       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;
  /* stylelint-enable declaration-no-important */
}

html {
  background-color: var(--color-primary-background);
  color: var(--color-primary-text);
}

html .responsive-image-placeholder {
  background-color: var(--color-primary-text);
}

html .bg-placeholder-bg {
  background-color: var(--color-primary-text-placeholder);
}

html .rte a:hover,
html.rte a:hover {
  color: var(--color-primary-accent);
  -webkit-text-decoration-color: var(--color-primary-accent);
          text-decoration-color: var(--color-primary-accent);
}

.text-primary-text .rte a:hover,
.text-primary-text.rte a:hover {
  color: var(--color-primary-accent);
  -webkit-text-decoration-color: var(--color-primary-accent);
          text-decoration-color: var(--color-primary-accent);
}

html .plyr,
html .plyr__control {
  background-color: var(--color-primary-background);
}

.bg-primary-background .plyr,
.bg-primary-background .plyr__control {
  background-color: var(--color-primary-background);
}

html .plyr,
html .plyr__control {
  color: var(--color-primary-text);
}

.text-primary-text .plyr,
.text-primary-text .plyr__control {
  color: var(--color-primary-text);
}

html :focus {
  /*
  outline-width: var(--text-width);
  outline-style: solid;
  outline-color: var(--color-primary-accent);
  outline-offset: 0.25rem;
  */
  outline: none;
}
  
html :active {
  outline: none;
}

html .increase-target:focus::before {
  outline: var(--text-width) solid -webkit-focus-ring-color;
  outline: var(--text-width) solid var(--color-primary-accent);
  outline-offset: calc(-1 * var(--text-width));
}

html .custom-input:focus + label {
  outline: var(--text-width) solid -webkit-focus-ring-color;
  /* outline: var(--text-width) solid var(--color-primary-accent); */
  outline: none;
}

html .product-media-object:focus {
  outline: 0;
}

html .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-primary-accent);
  outline-offset: calc(-1 * var(--text-width));
  position: absolute;
  top: 0;
  left: 0;
}

html{
  /* font-size: var(--base-font-size); */
  /* line-height: var(--base-line-height); */
  font-size: 15px;
  line-height: 20px;
}
  
body {
  /* font-family: var(--body-font-stack); */
  font-family: Cinetype;
  font-weight: var(--body-font-weight);
  font-style: var(--body-font-style);
  font-variant-ligatures: no-common-ligatures;
  text-transform: var(--bopy-copy-transform);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

@font-face {
  font-family: Cinetype;
  src: url(GT-Cinetype-Mono.ttf);
}

/* www.jordy.shop custom code */

.shopify-policy__container {
  max-width: 100% !important;
  margin-top: -10px !important;
}

.shopify-policy__title h1 {
  padding: 20px 0;
  text-align: left;
}
#PasswordNewsletterForm-email {
  border: 1px solid #aeaeae;
  padding: 10px;
}
form#ContactPassword button {
  border: 1px solid forestgreen !important;
  color: forestgreen !important;
}
form#ContactPassword button:hover {
  border: 1px solid royalblue !important;
  color: royalblue !important;
}

input, textarea {
  padding-left: 10px;
  padding-right: 10px;
}
  
input:focus {
  outline: none;
  border: 1px solid #aeaeae;
  margin-top: -1px;
}
input: active {
  outline: none;
  border: 1px solid Gold;
  margin-top: -1px;
}
  
textarea:focus, textarea:active {
  outline: none;
  border: 1px solid #aeaeae;
}

textarea:active {
  outline: none;
  border: 1px solid #aeaeae;
}

#shopify-section-page-template-contact > section form input {
  outline: none !important;
}

#shopify-section-page-template-contact > section form textarea {
  outline: none !important;
}
  
div.errors {
  color: tomato;
}
  
  
h1 {
  color: royalblue;
}
  
.breadcrumbs, sup { 
  color: gainsboro;
}

nav.breadcrumbs a:hover {
  color: #aeaeae;
}

nav.breadcrumbs li:last-of-type a {
  color: #aeaeae;
  pointer-events: none;
}
  
nav.breadcrumbs span {
  color: gainsboro;
}
  
section.featured-collection h2.font-heading {
  color: #aeaeae;
}  

section.featured-collection div ul li div div div span {
  color: forestgreen;
}
  
#shopify-section-collection-template > section > ul > li div div div span {
  color: forestgreen;
}
  
  
  
.money {
  padding: 4px 0 4px 9px;
  margin: 0;
  height: 38px;
  width: 77px;
  color: #aeaeae;
  border: 1px solid #aeaeae;
  background: whitesmoke;
}

.money_select {
  padding: 0;
  margin: 0;
  color: #aeaeae;
  border: 1px solid #aeaeae;
  text-transform: none;
  background: whitesmoke;
}

.money_select li {
  border-bottom: 1px dotted #aeaeae;
  color: #aeaeae;
}
.money_select li:last-of-type {
  border-bottom: none;
}

.money_select .border-b-text {
  color: #aeaeae;
  border-bottom: 1px solid whitesmoke;
}

.money_select .border-b-text:hover {
  color: #aeaeae;
  border-bottom: 1px solid #aeaeae;
}

  
  
#ContactFormMessage {
  color: #aeaeae;
  border: 1px solid #aeaeae;
}

div.sidebar-container {
  padding-top: 1px;
}

div.sidebar-container a:hover {
  color: tomato;
}
  
.sidebar-container div nav {
  margin-bottom: 20px;
}
  
.sidebar-container div nav.my-6 ul li a {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
  
#shopify-section-sidebar > section > div > div.border-t-grid.border-grid-color > ul > li:nth-child(2) {
  margin-top: 0;
}

#shopify-section-sidebar > section > div > div.border-t-grid.border-grid-color > form input {
  padding-top: 10px;
  padding-bottom: 10px;
}
  
#shopify-section-sidebar > section > div > div.border-t-grid.border-grid-color > form input:focus {
  outline: none;
}
  
#shopify-section-sidebar > section > div > div.border-t-grid.border-grid-color > form > div > button {
  padding: 12px 10px 8px 10px;
}

#shopify-section-sidebar > section > div > div.border-t-grid.border-grid-color > div ul li a {
  padding-top: 0;
  padding-bottom: 0;
}
  
#shopify-section-sidebar > section > div > div.border-t-grid.border-grid-color > form > div > button {
  color: #aeaeae;
}
  
#MainContent > form > table > tbody > tr > td:nth-child(1) > div > div:nth-child(2) > a.hidden.md\:block > small {
  font-size: 15px;
  line-height: 20px;
  color: tomato;
}

div.mt-8.social-sharing .border-b-text {
  padding-top: 0;
  padding-bottom: 3px;
}

#shopify-section-1629095151dd49f347 section div div input {
  padding: 0 0 3px 0;
}

#shopify-section-1629095151dd49f347 section div div input:focus {
  outline: none;
  border: none;
  border-bottom: 1px solid #aeaeae;
  margin-top: 1px;
}  

#Subscribe {
  color: #aeaeae !important;
  border-bottom: 1px solid #aeaeae;
}
  
#contact_form > div.errors > ul > li {
  color: tomato;
}

input.text-center {
  padding:0;
  color: royalblue !important;
  border-bottom: none !important;
}

input.text-center:focus {
  padding:0;
  color: royalblue !important;
  border-bottom: 1px solid #aeaeae !important;
}

#account, #create-account, #addresses {
  background-color: floralwhite;
  background: linear-gradient(250deg, lavenderblush, mistyrose, lavender, honeydew, lightyellow, aliceblue, floralwhite, white);
  background-size: 1000% 1000%;

  -webkit-animation: AccountGradient 25s ease infinite;
  -moz-animation: AccountGradient 25s ease infinite;
  -o-animation: AccountGradient 25s ease infinite;
  animation: AccountGradient 25s ease infinite;
}

@-webkit-keyframes AccountGradient {
    0%{background-position:0% 25%}
    50%{background-position:100% 75%}
    100%{background-position:0% 25%}
}
@-moz-keyframes AccountGradient {
    0%{background-position:0% 25%}
    50%{background-position:100% 75%}
    100%{background-position:0% 25%}
}
@-o-keyframes AccountGradient {
    0%{background-position:0% 25%}
    50%{background-position:100% 75%}
    100%{background-position:0% 25%}
}
@keyframes AccountGradient { 
    0%{background-position:0% 25%}
    50%{background-position:100% 75%}
    100%{background-position:0% 25%}
}
  
#account #MainContent > div.section-x-padding {
  padding-bottom: 40px;
}
#account #MainContent > div.section-x-padding h1 {
  padding-top: 20px;
  padding-bottom: 20px;
  color: royalblue;
}
#account #MainContent > div.section-x-padding h2 {
  color: royalblue;
}
#account #MainContent > div.section-x-padding a {
  color: #aeaeae;
  border-bottom: 1px solid #aeaeae;
}

  
#create-account #MainContent > div.section-x-padding {
  padding-bottom: 40px;
}
#create-account #MainContent > div.section-x-padding h1 {
  padding-top: 20px;
  padding-bottom: 20px;
  color: royalblue;
}
#create-account #MainContent > div.section-x-padding h2 {
  color: royalblue;
}
#create-account #MainContent > div.section-x-padding a {
  color: #aeaeae;
  border-bottom: 1px solid #aeaeae;
}

  
#addresses #MainContent > div.section-x-padding {
  padding-bottom: 40px;
}
#addresses #MainContent > div.section-x-padding > div.border-t-grid {
  border-top: none;
}
#addresses #MainContent > div.section-x-padding h1 {
  padding-top: 20px;
  padding-bottom: 20px;
  color: royalblue;
}
#addresses #MainContent > div.section-x-padding h2 {
  color: royalblue;
}
#addresses #MainContent > div.section-x-padding h3 {
  color: royalblue;
}
#addresses #MainContent > div.section-x-padding a {
  color: #aeaeae;
  border-bottom: 1px solid #aeaeae;
}
  
button.tomato {
  color: tomato !important;
}
 
input.border-b-text, select.border-b-text {
  border-bottom: 1px solid #aeaeae;
  color: #aeaeae;
}
  
#shopify-section-product .text-primary-text h1 {
  color: royalblue;
}


#shopify-section-footer > footer > div:nth-child(2) > div > div.flex.flex-wrap.items-center.justify-between.lg\:justify-end.mb-4.lg\:mb-0 {
  width: 100%;
  padding-left: 0;
  margin-left: 0;
  align-items: start;
  justify-content: start;
  margin-top: 10px;
  margin-bottom: 10px;
  box-sizing: border-box;
}
  
  
  
.font-heading {
  /* font-family: var(--heading-font-stack); */
  font-family: Cinetype;
  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);
}

.font-body {
  /* font-family: var(--body-font-stack); */
  font-family: Cinetype;
  font-weight: var(--body-font-weight);
  font-style: var(--body-font-style);
  text-transform: var(--body-font-style);
  letter-spacing: 0;
  text-decoration: none;
  text-transform: var(--bopy-copy-transform);
}

.multi-column p,
.tag-columns li {
  page-break-inside: avoid;
  -moz-column-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;
}

.text-primary-text .responsive-image-placeholder {
  /* background-color: var(--color-primary-text); */
  background-color: whitesmoke;
}

.text-secondary-text .responsive-image-placeholder {
  /* background-color: var(--color-secondary-text); */
  background-color: whitesmoke;
}

.text-tertiary-text .responsive-image-placeholder {
  /* background-color: var(--color-tertiary-text); */
  background-color: whitesmoke;
}

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

.bg-primary-background .bg-placeholder-bg {
  /* background-color: var(--color-primary-text-placeholder); */
  background-color: whitesmoke;
}

.bg-secondary-background .bg-placeholder-bg {
  /* background-color: var(--color-secondary-text-placeholder); */
  background-color: whitesmoke;
}

.bg-tertiary-background .bg-placeholder-bg {
  /* background-color: var(--color-tertiary-text-placeholder); */
  background-color: whitesmoke;
}

/**
 * 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 {
  background-color: var(--color-primary-background);
  opacity: 0;
  padding: 1rem;
  pointer-events: none;
  position: absolute;
  top: 0px;
  left: 0px;
  color: var(--color-primary-text);
  z-index: 50;
}

.skip-link .responsive-image-placeholder {
  background-color: var(--color-primary-text);
}

.skip-link .bg-placeholder-bg {
  background-color: var(--color-primary-text-placeholder);
}

select.skip-link {
  background-image: var(--icon-svg-select-primary);
}

.skip-link .rte a:hover,
.skip-link.rte a:hover {
  color: var(--color-primary-accent);
  -webkit-text-decoration-color: var(--color-primary-accent);
          text-decoration-color: var(--color-primary-accent);
}

.text-primary-text .rte a:hover,
.text-primary-text.rte a:hover {
  color: var(--color-primary-accent);
  -webkit-text-decoration-color: var(--color-primary-accent);
          text-decoration-color: var(--color-primary-accent);
}

.skip-link .plyr,
.skip-link .plyr__control {
  background-color: var(--color-primary-background);
}

.bg-primary-background .plyr,
.bg-primary-background .plyr__control {
  background-color: var(--color-primary-background);
}

.skip-link .plyr,
.skip-link .plyr__control {
  color: var(--color-primary-text);
}

.text-primary-text .plyr,
.text-primary-text .plyr__control {
  color: var(--color-primary-text);
}

.product-content-container.skip-link {
  --payment-terms-background-color: var(--color-primary-background-hex);
}

.skip-link :focus {
  outline-width: var(--text-width);
  outline-style: solid;
  outline-color: var(--color-primary-accent);
  outline-offset: 0.25rem;
}

.skip-link .increase-target:focus::before {
  outline: var(--text-width) solid -webkit-focus-ring-color;
  outline: var(--text-width) solid var(--color-primary-accent);
  outline-offset: calc(-1 * var(--text-width));
}

.skip-link .custom-input:focus + label {
  outline: var(--text-width) solid -webkit-focus-ring-color;
  /* outline: var(--text-width) solid var(--color-primary-accent); */
  outline: none;
}

.skip-link .product-media-object:focus {
  outline: 0;
}

.skip-link .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-primary-accent);
  outline-offset: calc(-1 * var(--text-width));
  position: absolute;
  top: 0;
  left: 0;
}

.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;
}

.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-primary a {
  border-color: var(--color-primary-text);
}

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

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

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

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

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

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

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

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

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

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

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

.section-x-padding {
  /* padding-left: 0.5rem; */
  /* padding-right: 0.5rem; */
  padding-left: 20px;
  padding-right: 20px;
}

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

/* 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));
}

@media (max-width: 1023px) {
  #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] {
  border-radius: 0;
  -webkit-appearance: none;
}

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

select.text-primary-text {
  background-image: var(--icon-svg-select-primary);
}

select.text-secondary-text {
  background-image: var(--icon-svg-select-secondary);
}

select.text-tertiary-text {
  background-image: var(--icon-svg-select-tertiary);
}

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

.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; */
  padding: 10px 20px;
}

.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: '\00a0\00a0\2192';
}

.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; */
  padding: 20px;
}

@media (min-width: 1024px) {
  .rte th, .rte td{
    /* padding: 0.5rem; */
    padding: 20px;
  }

  .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); */
  font-size: 15px;
  line-height: 20px;
}

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

.rte h2 {
  /* font-size: 1.953rem; */
  /* line-height: var(--base-line-height); */
  font-size: 15px;
  line-height: 20px;
}

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

.rte h3 {
  /* font-size: 1.563rem; */
  /* line-height: var(--base-line-height); */
  font-size: 15px;
  line-height: 20px;
}

.rte h4 {
  /* font-size: 1.25rem; */
  /* line-height: var(--base-line-height); */
  font-size: 15px;
  line-height: 20px;
}

.rte h1,
.rte h2,
.rte h3,
.rte h4 {
  /* font-family: var(--heading-font-stack);*/
  font-family: Cinetype;
  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 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); */
  font-size: 15px;
  line-height: 20px;
}

.text-primary-text .rte a:hover,
.text-primary-text.rte a:hover {
  color: var(--color-primary-accent);
  -webkit-text-decoration-color: var(--color-primary-accent);
          text-decoration-color: var(--color-primary-accent);
}

.text-secondary-text .rte a:hover,
.text-secondary-text.rte a:hover {
  color: var(--color-secondary-accent);
  -webkit-text-decoration-color: var(--color-secondary-accent);
          text-decoration-color: var(--color-secondary-accent);
}

.text-tertiary-text .rte a:hover,
.text-tertiary-text.rte a:hover {
  color: var(--color-tertiary-accent);
  -webkit-text-decoration-color: var(--color-tertiary-accent);
          text-decoration-color: var(--color-tertiary-accent);
}

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

.disclosure-list {
  transform: translateY(calc(-100% + 2px));
}

.splide--product {
  position: static;
}

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

.splide__pagination__page {
  background-color: transparent;
  /* border-color: currentColor; */
  border-color: silver;
  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; */
  background-color: gainsboro;
}

.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.55319%;
}

.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;
}

.bg-primary-background .plyr,
.bg-primary-background .plyr__control {
  background-color: var(--color-primary-background);
}

.text-primary-text .plyr,
.text-primary-text .plyr__control {
  color: var(--color-primary-text);
}

.bg-secondary-background .plyr,
.bg-secondary-background .plyr__control {
  background-color: var(--color-secondary-background);
}

.text-secondary-text .plyr,
.text-secondary-text .plyr__control {
  color: var(--color-secondary-text);
}

.bg-tertiary-background .plyr,
.bg-tertiary-background .plyr__control {
  background-color: var(--color-tertiary-background);
}

.text-tertiary-text .plyr,
.text-tertiary-text .plyr__control {
  color: var(--color-tertiary-text);
}

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

.add-to-cart,
.shopify-payment-button,
.shopify-payment-button__button {
  min-height: 44px;
}

.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; */
  padding: 20px 10px;
  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: '\0020\2192';
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.payment-button-wrapper.color-tertiary.style-accent_background_text_border .shopify-payment-button__button--unbranded:hover {
  background-color: var(--color-tertiary-text);
  color: var(--color-tertiary-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;
}

.product-content-container.bg-primary-background {
  --payment-terms-background-color: var(--color-primary-background-hex);
}

.product-content-container.bg-secondary-background {
  --payment-terms-background-color: var(--color-secondary-background-hex);
}

.product-content-container.bg-tertiary-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; */
    padding-left: 20px;
    padding-right: 20px;
  }
}

@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; */
    padding-right: 20px;
    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; */
    padding-left: 20px;
    padding-right: 20px;
  }

  .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;
  }
}

/* Jordy image fix */
  
.cart-table img {
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}
 
@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; */
    padding-top:10px;
    padding-bottom: 10px;
  }

  .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; */
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .cart-table td:first-child div.flex.my-2.items-center {
    display: block;
    margin-top: 0;
    margin-bottom: 0;
  }
  
  
  @media (min-width: 1024px){
    .cart-table td {
      /* padding-left: 1rem; */
      /* padding-right: 1rem; */
      padding-left: 20px;
      padding-right: 20px;
    }
    
  }

  .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; */
    padding-top: 10px;
    padding-bottom: 10px;
    vertical-align: top;
    /* padding-left: 0.5rem; */
    /* padding-right: 0.5rem; */
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .cart-table td:first-child div.flex.my-2.items-center {
    display: none;
  }
  
  @media (min-width: 1024px){
    .cart-table th, .cart-table td {
      /* padding-left: 1rem; */
      /* padding-right: 1rem; */
      padding-left: 20px;
      padding-right: 20px;
    }
  }

  .cart-table th:first-child, .cart-table td:first-child{
    text-align: left;
  }
  
  .cart-table td:nth-child(3) .hidden{
    text-align: center;
    display: block;
  }
  
  .cart-table th:last-child, .cart-table td:last-child{
    text-align: right;
  }
  
}



  
  
  
  
  
  
.bg-primary-background :focus {
  outline-width: var(--text-width);
  outline-style: solid;
  outline-color: var(--color-primary-accent);
  outline-offset: 0.25rem;
}

.bg-primary-background .increase-target:focus::before {
  outline: var(--text-width) solid -webkit-focus-ring-color;
  outline: var(--text-width) solid var(--color-primary-accent);
  outline-offset: calc(-1 * var(--text-width));
}

.bg-primary-background .custom-input:focus + label {
  outline: var(--text-width) solid -webkit-focus-ring-color;
  outline: var(--text-width) solid var(--color-primary-accent);
}

.bg-primary-background .product-media-object:focus {
  outline: 0;
}

.bg-primary-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-primary-accent);
  outline-offset: calc(-1 * var(--text-width));
  position: absolute;
  top: 0;
  left: 0;
}

.bg-secondary-background :focus {
  outline-width: var(--text-width);
  outline-style: solid;
  outline-color: var(--color-secondary-accent);
  outline-offset: 0.25rem;
}

.bg-secondary-background .increase-target:focus::before {
  outline: var(--text-width) solid -webkit-focus-ring-color;
  outline: var(--text-width) solid var(--color-secondary-accent);
  outline-offset: calc(-1 * var(--text-width));
}

.bg-secondary-background .custom-input:focus + label {
  outline: var(--text-width) solid -webkit-focus-ring-color;
  /* outline: var(--text-width) solid var(--color-secondary-accent); */
  outline: none;
}

.bg-secondary-background .product-media-object:focus {
  outline: 0;
}

.bg-secondary-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-secondary-accent);
  outline-offset: calc(-1 * var(--text-width));
  position: absolute;
  top: 0;
  left: 0;
}

.bg-tertiary-background :focus {
  outline-width: var(--text-width);
  outline-style: solid;
  outline-color: var(--color-tertiary-accent);
  outline-offset: 0.25rem;
}

.bg-tertiary-background .increase-target:focus::before {
  outline: var(--text-width) solid -webkit-focus-ring-color;
  outline: var(--text-width) solid var(--color-tertiary-accent);
  outline-offset: calc(-1 * var(--text-width));
}

.bg-tertiary-background .custom-input:focus + label {
  outline: var(--text-width) solid -webkit-focus-ring-color;
  /* outline: var(--text-width) solid var(--color-tertiary-accent); */
  outline: none;
}

.bg-tertiary-background .product-media-object:focus {
  outline: 0;
}

.bg-tertiary-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-tertiary-accent);
  outline-offset: calc(-1 * var(--text-width));
  position: absolute;
  top: 0;
  left: 0;
}

.user-using-mouse button:focus {
  outline: 0;
}

.user-using-mouse :focus {
  outline: 0;
}

.user-using-mouse ::-moz-focus-inner {
  outline: 0;
}

.user-using-mouse .increase-target:focus::before {
  outline: 0;
}

.user-using-mouse .custom-input:focus + label {
  outline: 0;
}

.user-using-mouse .product-media-object:focus,
.user-using-mouse .product-media-object:focus:after {
  outline: 0;
}

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

@media (min-width: 640px){

   .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;
  }
}

@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); */
    font-size: 15px;
    line-height: 20px;
  }

  .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-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\: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\:text-sm{
    /* font-size: .8rem; */
    /* line-height: var(--base-line-height); */
    font-size: 15px;
    line-height: 20px;
  }

  .lg\:text-base{
    /* font-size: 1rem; */
    /* line-height: var(--base-line-height); */
    font-size: 15px;
    line-height: 20px;
  }

  .lg\:text-lg{
    /* font-size: 1.25rem; */
    /* line-height: var(--base-line-height); */
    font-size: 15px;
    line-height: 20px;
  }

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

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

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

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

  .lg\:text-5xl{
    /* font-size: 3.815rem; */
    /* line-height: 1; */
    font-size: 15px;
    line-height: 20px;
  }

  .lg\:text-6xl{
    /* font-size: 4.768rem; */
    /* line-height: 1; */
    font-size: 15px;
    line-height: 20px;
  }

  .lg\:text-7xl{
    /* font-size: 5.96rem; */
    /* line-height: 1; */
    font-size: 15px;
    line-height: 20px;
  }

  .lg\:mx-2{
    /* margin-left: 0.5rem; */
    /* margin-right: 0.5rem; */
    margin-left: 20px;
    margin-right: 20px;
  }

  .lg\:my-4{
    /* margin-top: 1rem; */
    /* margin-bottom: 1rem; */
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .lg\:mx-auto{
    /* margin-left: auto; */
    /* margin-right: auto; */
    margin-left: 20px;
    margin-right: 20px;
  }

  .lg\:-mx-4{
    /* margin-left: -1rem; */
    /* margin-right: -1rem; */
    margin-left: 20px;
    margin-right: 20px;
  }

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

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

  .lg\:mt-2{
    /* margin-top: 0.5rem; */
    margin-top: 10px;
  }

  .lg\:mr-2{
    /* margin-right: 0.5rem; */
    margin-right: 20px;
  }

  .lg\:ml-2{
    /* margin-left: 0.5rem; */
    margin-left: 20px;
  }

  .lg\:mr-4{
    /* margin-right: 1rem; */
    margin-right: 20px;
  }

  .lg\:ml-4{
    /* margin-left: 1rem; */
    margin-left: 20px;
  }

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

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

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

  .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\:px-2{
    /* padding-left: 0.5rem; */
    /* padding-right: 0.5rem; */
    padding-left: 20px;
    padding-right: 20px;
  }

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

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

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

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

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

  .lg\:pl-2{
    /* padding-left: 0.5rem; */
    padding-left: 20px;
  }

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

  .lg\:pl-4{
    /* padding-left: 1rem; */
    padding-left: 20px;
    
  }

  .lg\:static{
    position: static;
  }

  .lg\:absolute{
    position: absolute;
  }

  .lg\:relative{
    position: relative;
  }

  .lg\:sticky{
    position: -webkit-sticky;
    position: sticky;
  }

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

  .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-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-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-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-13{
    grid-column-end: 13;
  }

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

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

  .lg\:col-count-4{
    -moz-column-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.55319%;
  }
}

@media (min-width: 1280px){

   .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;
  }
}



     .lg\:top-sticky-header.py-theme{
     	padding-top: var(--spacing) !important; 
    /* padding-bottom: var(--spacing);
     }