@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}
/** 
* Font Kits
*/
@font-face {
    font-family: 'Commuters Sans';
    src: url('CommutersSans-Regular.eot');
    src: url('CommutersSans-Regular.eot?#iefix') format('embedded-opentype'),
        url('CommutersSans-Regular.woff2') format('woff2'),
        url('CommutersSans-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.bebas-neue-regular {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/**
 * 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;
  color: transparent;
}

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

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

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

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

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

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

.pswp__error-msg {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  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-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);
}

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

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

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

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

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

.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-grid{
  border-width: var(--border-width);
}

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

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

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

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

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

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

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

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

.text-base{
  font-size: 1rem;
  line-height: var(--base-line-height);
}
  
@media (min-width: 1024px) {
  .text-base{
    font-size: 1.25rem;
    line-height: var(--base-line-height);
  }
}

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

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

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

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

.m-0{
  margin: 0px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.object-contain{
  -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-10{
  opacity: 0.1;
}

.opacity-40{
  opacity: 0.4;
}

.opacity-50{
  opacity: 0.5;
}

.opacity-100{
  opacity: 1;
}

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

.overflow-auto{
  overflow: auto;
}

.overflow-hidden{
  overflow: hidden;
}

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

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

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

.p-0{
  padding: 0px;
}

.p-1{
  padding: 0.25rem;
}

.p-2{
  padding: 0.5rem;
}

.p-4{
  padding: 1rem;
}

.p-8{
  padding: 2rem;
}

.p-px{
  padding: 1px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.placeholder-current::-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;
}

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

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

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

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

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

body {
  font-family: var(--body-font-stack);
  font-weight: var(--body-font-weight);
  font-style: var(--body-font-style);
  text-transform: var(--bopy-copy-transform);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

.font-heading {
  font-family: var(--heading-font-stack);
  font-weight: var(--heading-font-weight);
  font-style: var(--heading-font-style);
  text-transform: var(--heading-capitalize);
  letter-spacing: var(--heading-letterspacing);
  -webkit-text-decoration: var(--heading-decoration);
          text-decoration: var(--heading-decoration);
}

.font-body {
  font-family: var(--body-font-stack);
  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 {
  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);
}

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

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

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

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

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

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

/**
 * Utility
 */

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

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

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

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

/* Video wrapper */

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

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

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

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

.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: 2rem;
  padding-right: 2rem;
}


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

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

.custom-input:disabled + label {
  cursor: default;
}

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

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

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

.show-button-arrows .btn:after,
.show-button-arrows .button:after {
  content: '\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 {
  width: auto;
  max-width: 100%;
  height: auto;
}

.rte table {
  table-layout: fixed;
}

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

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

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

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

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

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

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

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

.rte ol {
  list-style: decimal;
}

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

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

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

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

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

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

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

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

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

.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-radius: 9999px;
  border-width: var(--checkbox-width);
  display: block;
  height: 0.5rem;
  margin: 0.25rem;
  width: 0.5rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * Aspect ratios
 *
 */

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

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

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

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

.background-video-wrapper--cinematic {
  padding-bottom: 42.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;
}

.plyr__video-wrapper {
  height: 100%;
}

.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,
.shopify-payment-button__button--branded {
  min-height: var(--add-to-cart-height) !important;
}

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

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

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

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

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

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

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

.show-button-arrows .shopify-payment-button__button--unbranded:after {
  content: '\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;
  }
}

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

  .responsive-table thead {
    display: none;
  }

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

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

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

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

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

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

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

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

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

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

  .cart-table thead {
    display: none;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.collapsible-tab + .collapsible-tab {
  margin-top: 0;
}

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

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

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

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

.product-block-area .collapsible-tab:first-child > div {
  border-top: 0;
}

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

#icelandic-ultra-spirulina™-focus-amp-memory-gummies .collapsible-tab, #icelandic-ultra-spirulina™-brain-performance-bar .collapsible-tab {
  display: none;
}

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

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

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

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

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

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

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

  .md\:absolute{
    position: absolute;
  }

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 1024px){

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

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

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

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

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

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

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

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

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

  .lg\:block{
    display: block;
  }

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

  .lg\:inline{
    display: inline;
  }

  .lg\:flex{
    display: flex;
  }

  .lg\:grid{
    display: grid;
  }

  .lg\:hidden{
    display: none;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .lg\:static{
    position: static;
  }

  .lg\:absolute{
    position: absolute;
  }

  .lg\:relative{
    position: relative;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .lg\:gap-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-10{
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .lg\:col-count-2{
    -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;
  }
}
     
/* Custom CSS */
/* Header */
@media (min-width: 500px) {
  #shopify-section-header header::after{
    /*content:'';*/
    position:absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    /*background: url(https://cdn.shopify.com/s/files/1/0602/3856/1517/files/orlo-nav-icon.jpg?v=1636057043) no-repeat center;*/
    background-size: 48px 27px;
    width: 48px;
    height: 27px;
    display: none;
  }
}
     
@media (max-width: 1023px) {
  .logo-image {
    max-width: 80px !important;
  }
  
  #shopify-section-header header button {
    text-transform: uppercase;
    font-size: 14px;
  }
}
     
@media (min-width: 1024px) {
  #shopify-section-header header::after {
    background-size: 83px 47px;
    width: 83px;
    height: 47px;
  }
}
     
#shopify-section-header header .justify-start a {
  font-size: 21px;
  font-family: var(--heading-font-stack);
}

#shopify-section-header header .text-right a {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
}
     
#shopify-section-header header li a,
#shopify-section-header header .text-right a {
  position: relative;
}
     
#shopify-section-header header li a::after,
#shopify-section-header header .text-right a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all .3s ease-in-out;
  width: 0;
  height: 1px;
  content: '';
}
     
#shopify-section-header header.bg-secondary-background li a::after,
#shopify-section-header header.bg-secondary-background .text-right a::after {
  background-color: var(--color-secondary-text);
}
     
#shopify-section-header header.bg-header-background li a::after,
#shopify-section-header header.bg-header-background .text-right a::after {
  background-color: var(--color-primary-text);
}
     
#shopify-section-header header li a:hover::after,
#shopify-section-header header .text-right a:hover::after {
  width: 100%;
}
     
#shopify-section-header header.bg-secondary-background,
#shopify-section-announcement-bar .border-grid-color {
  border-color: var(--color-secondary-text);
}
     
/* Marquee */
#marquee-announcement-bar {
  text-transform: uppercase;
}
     
/* Footer */
#shopify-section-footer ul li {
  margin-bottom: 10px;
  font-size: 20px;
}
     
#shopify-section-footer ul li a {
  text-transform: uppercase;
}

#shopify-section-footer .footer-small {
  margin-top: 20px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}
     
#shopify-section-footer .footer-small + .footer-small {
  margin-top: 0;
}
     
#shopify-section-footer .bg-border {
  background-color: #dfdad1;
}

.orlo-newsletter {
  margin-top: 25px;
  border: 1px solid #e0dcd3;
}
     
.orlo-newsletter input[type=email] {
  margin: 5px;
  font-size: 14px;
}
     
.orlo-newsletter button {
  background-color: #e0dcd3;
  padding: 10px;
  text-transform: lowercase;
  color: #000;
  font-size: 12px;
}
     
@media (max-width: 1023px) {
  .orlo-newsletter .w-full {
    width: calc(100% - 10px);
  }
  
  .orlo-newsletter button {
    width: 100%;
  }
}

.orlo-newsletter button:hover {
  color: #000;
}
     
.orlo-newsletter-directions {
  margin: 10px 0 0;
  width: 100%;
  max-width: 350px;
  font-size: 14px;
}
     
.text-footer-text {
  font-size: 18px;
}

/*
Common
*/
.shopify-section .orlo-section-title {
  padding: 1rem 2rem;
  text-transform: uppercase;
}
     
.shopify-section .orlo-section-title h2,
.orlo-rich-text h2 {
  font-size: 26px;
}
     
@media (min-width: 1024px) {
  .shopify-section .orlo-section-title h2,
  .orlo-rich-text h2 {
  	font-size: 34px;
  }
}
     
.orlo-button {
  transition: all .3s ease-in-out;
  padding-top: .75rem;
  padding-bottom: .75rem;
  max-width: 100%;
  min-width: 200px;
  text-transform: uppercase;
}
     
@media (min-width: 1024px) {
  .orlo-button {
    padding-top: 1rem;
    padding-bottom: 1rem;
  	max-width: 100%;
  	min-width: 300px;
  }
}
     
.shopify-payment-button__button {
  transition: all .3s ease-in-out !important;
  text-transform: uppercase !important;
}
     
.orlo-button:hover,
.orlo-button-dark {
  background-color: var(--button-text-color);
  color: var(--color-tertiary-background);
}
     
.orlo-button-dark {
  border: 2px solid var(--button-text-color);
}
     
.bg-secondary-background .orlo-button:hover,
.shopify-payment-button__button:hover,
.orlo-button-dark:hover {
  border-color: var(--color-secondary-background) !important;
  background-color: var(--color-primary-background) !important;
  color: var(--color-secondary-background) !important;
}
     
.anchored-section {
  scroll-margin-top: 90px;
}
     
.anchored-section:focus {
  outline: none;
}
     
.orlo-subscription-button {
  margin-top: 15px;
  width: 100%;
  max-width: 100%;
}
    
/*
Blog
*/

.blog-template li.relative .relative {
  padding: 2rem;
}
     
.blog-template li .font-heading {
  width: auto;
  max-width: 450px;
  text-transform: uppercase;
  font-size: 20px;
}
     
.article .font-heading {
  margin-bottom: 60px;
  text-transform: uppercase;
}
     
.article .full-h .relative {
  padding: 30px;
}
     
.article .rte h2 {
  margin: 0 0 60px !important;
  width: 100%;
  max-width: 700px;
  text-transform: uppercase;
  font-size: 1.563rem;
}
     
.article .rte h3 {
  margin: 30px 0 5px !important;
  text-transform: uppercase;
  font-size: 18px;
}
     
.article .rte h6 {
  margin-top: 40px !important;
  text-transform: uppercase;
  font-size: 12px;
  font-family: 'Bebas Neue', sans-serif;
}

.article .rte h6 + h6 {
  margin-top: 15px !important;
}
     
.article .rte blockquote {
  margin: 30px auto !important;
  padding: 0 40px;
  text-align: center;
  line-height: 1.6;
  font-size: 24px;
}
     
.article .rte blockquote:last-child {
  margin-bottom: 0 !important;
}
     
@media (min-width: 1024px) {
  .article .rte blockquote {
    margin: 50px auto !important;
    font-size: 28px;
  }
}
     
/*
Text section

.shopify-section .text-center .w-full p {
  margin: 0 auto 15px;
  width: 100%;
  max-width: 900px;
}

.shopify-section .text-center .w-full p:last-child {
  margin-bottom: 0;
}
     
.orlo-image-with-text .relative.min-h-full {
  padding: 2rem;
}
     
.orlo-image-with-text h2 {
  text-transform: uppercase;
  font-size: 26px;
}
     
.orlo-image-with-text-video {
  padding: 1rem;
}

.orlo-image-with-text--secondary-background {
  background-color: #dfdad1;
}
     
.orlo-image-with-text ul {
  margin: 20px 0 0;
  list-style-type: none;
  font-size: 26px;
  font-family: var(--heading-font-stack);
}
     
.orlo-image-with-text li {
  position: relative;
  padding: 10px 0 10px 30px;
}
     
.orlo-image-with-text li::before {
  position: absolute;
  top: 20px;
  left: 0;
  border: 2px solid #000;
  width: 10px;
  height: 10px;
  content: '';
}
     
@media (min-width: 1024px) {
  .orlo-image-with-text h2 {
  	position: absolute;
  	top: 32px;
    font-size: 34px;
  }
  
  .orlo-image-with-text ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
       -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin: 40px 0 0;
    font-size: 34px;
  }
  
  .orlo-image-with-text li {
    width: 50%;
  }
  
  .orlo-image-with-text li::before {
    top: 25px;
    width: 14px;
    height: 14px;
  }
  
  .orlo-image-with-text div.font-body {
    padding-top: 50px;
  }
}
*/

/*
Rich text
*/
.orlo-rich-text {
  padding-top: 40px;
  padding-bottom: 40px;
}
     
@media (min-width: 1024px) {
  .orlo-rich-text {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
     
.orlo-rich-text h2 {
  margin-bottom: 40px;
}
     
.orlo-rich-text .font-body {
  margin-bottom: 50px;
}
     
.orlo-rich-text .font-body p {
  line-height: 1.5;
}
     
.orlo-rich-text h2.orlo-icon-header {
  background: url(https://cdn.shopify.com/s/files/1/0602/3856/1517/files/orlo-icon-large.jpg?v=1636124081) no-repeat center top;
  background-size: 174px 97px;
  padding-top: 125px;
}
     
@media (min-width: 1024px) {
  .orlo-rich-text h2.orlo-icon-header {
    background: url(https://cdn.shopify.com/s/files/1/0602/3856/1517/files/orlo-icon-large.jpg?v=1636124081) no-repeat center top;
    background-size: 210px 117px;
    padding-top: 165px;
  }
}

/*
Text w Buttons section
*/
.rich-text-buttons {
  padding-top: 40px;
  padding-bottom: 40px;
}
     
.rich-text-buttons h2 {
  background: url(https://cdn.shopify.com/s/files/1/0602/3856/1517/files/icon-tall.jpg?v=1634596509) no-repeat center top;
  background-size: 39px 69px;
  padding-top: 90px;
  font-size: 24px;
}
     
.rich-text-buttons ul,
.orlo-buttons ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
     -moz-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: center;
     -moz-justify-content: center;
      -ms-justify-content: center;
          justify-content: center;
            -ms-flex-pack: center;
  list-style-type: none;
}
     
.orlo-buttons ul {
  margin: 0;
}
     
.rich-text-buttons ul {
  margin: 30px auto;
  width: 100%;
  max-width: 560px;
}
     
.rich-text-buttons li,
.orlo-buttons li {
  margin: 0 !important;
  width: 100%;
  padding: 10px;
  text-transform: uppercase;
  line-height: 1;
  font-size: 11px;
}
     
.rich-text-buttons li span,
.orlo-buttons li span {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
     -moz-justify-content: center;
      -ms-justify-content: center;
          justify-content: center;
            -ms-flex-pack: center;
  -webkit-align-items: center;
     -moz-align-items: center;
      -ms-align-items: center;
          align-items: center;
  border: 1px solid #231f20;
  padding: 5px 8px;
  width: 100%;
  height: auto;
  min-height: 40px;
  text-align: center;
}
     
@media (min-width: 600px) {
  .rich-text-buttons li,
  .orlo-buttons li {
    width: 50%;
  }
  
  .rich-text-buttons li span,
  .orlo-buttons li span {
    min-height: 50px;
  }
}
     
@media (min-width: 1024px) {
  .rich-text-buttons li,
  .orlo-buttons li {
    width: 33.3333%;
  }
}
     
/*
Navigation with image
*/
.navigation-with-image sup {
  top: -1em;
  font-size: 50%;
}

.navigation-with-image li {
  margin-bottom: 30px;
}
     
@media (max-width: 1023px) {
  .navigation-with-image li {
    font-size: 22px;
  }
}
     
/*
Image with text overlay
*/
.orlo-image-overlay {
  position: relative;
}
     
.orlo-image-overlay > .h-full {
  padding: 50px 0;
  height: auto;
  min-height: 650px;
}
     
.orlo-image-overlay > .h-full > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
     
.orlo-image-overlay > .h-full .responsive-image-wrapper {
  padding-bottom: 0 !important;
  height: 100% !important;
}
     
.orlo-image-overlay > .h-full .responsive-image-wrapper img {
  object-fit: cover;
}

.orlo-image-overlay::after {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.3;
  background-color: #000;
  width: 100%;
  height: 100%;
  content: '';
}
     
.orlo-image-overlay h2 {
  margin: 0 auto 40px;
  width: 100%;
  max-width: 700px;
}
     
.orlo-image-overlay .rte {
  margin-bottom: 50px;
  font-size: 24px;
}
     
@media (min-width: 1024px) {
  .orlo-image-overlay .rte {
  	font-size: 34px;
  }
  
  .orlo-image-overlay > .h-full {
    padding: 100px 0;
  }
}
     
.orlo-image-overlay .rte p {
  margin: 0 auto;
  width: 100%;
  max-width: 500px;
}
     
/*
Featured Collection
*/

.featured-collection div.w-full.h-full,
.product-recommendations div.w-full.h-full {
  padding: 2rem;
}

.featured-collection .bg-secondary-background .bg-border,
.product-recommendations .bg-secondary-background .bg-border {
  background-color: #dfdad1;
}
     
.featured-collection .bg-secondary-background.border-grid-color,
.featured-collection .bg-secondary-background .border-grid-color,
.featured-collection,
.product-recommendations .bg-secondary-background.border-grid-color,
.product-recommendations .bg-secondary-background .border-grid-color,
.product-recommendations,
.product-recommendations .bg-secondary-background .orlo-product-learn-more,
.featured-collection .bg-secondary-background .orlo-product-learn-more,
.orlo-image-with-text--secondary-background {
  border-color: #dfdad1;
}
     
.featured-collection .text-left,
.product-recommendations .text-left {
  position: relative;
  font-family: var(--heading-font-stack);
}
     
.featured-collection .product-grid-title,
.product-recommendations .product-grid-title {
  text-transform: uppercase;
  font-size: 20px;
  font-family: var(--heading-font-stack);
}
     
.orlo-product-tagline,
.orlo-product-learn-more,
.orlo-product-subscribe {
  text-transform: uppercase;
  font-size: 14px;
}

.orlo-product-learn-more {
  display: none;
  border-bottom: 1px solid var(--color-primary-text);
  font-family: var(--heading-font-stack);
}
     
.orlo-product-supply {
  /* position: absolute; */
  /* bottom: 38px; */
  /* left: 80px; */
  /* line-height: 1; */
  font-size: 11px;
  font-family: var(--body-font-stack);
/*   padding-left: 40px; */
}
     
/* .orlo-product-supply::before {
  position: absolute;
  top: 50%;
  left: 0;
  background-color: var(--color-primary-text);
  width: 25px;
  height: 1px;
  content: '';
} */
     
.product-recommendations .bg-secondary-background .orlo-product-supply::before,
.featured-collection .bg-secondary-background .orlo-product-supply::before {
  background-color: var(--color-secondary-text);
}
     
.orlo-product-subscribe {
  display: block;
  margin-top: 15px;
}
     
@media (min-width: 1024px) {
  
  .featured-collection .text-left,
  .product-recommendations .text-left {
    padding-right: 225px;
  }
  
  .orlo-product-tagline {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    max-width: 225px;
    text-align: right;
  }
  
  .orlo-product-learn-more {
    display: block;
    position: unset;
    text-align: center;
    margin-top: 15px;
  }
  
  .orlo-product-learn-more.orlo-product-learn-more--adjust {
    bottom: 30px;
    right: 0;
  }
}
     
/*
FAQ Category
*/
#frequently-asked-questions main,
#faq main {
  padding: 40px 0;
}

#faq main h1,
#frequently-asked-questions main h1 {
  margin: 0 auto;
  width: 100%;
  max-width: 800px;
}
     
#faq #MainContent .shopify-section:first-of-type section,
#frequently-asked-questions #MainContent .shopify-section:first-of-type section {
  margin-top: 0;
  border: 0;
}
     
#faq #MainContent .shopify-section:first-of-type section .section-x-padding,
#frequently-asked-questions #MainContent .shopify-section:first-of-type section .section-x-padding {
  padding-top: 0;
}
     
.orlo-faq-category {
  margin: 0 auto;
  width: calc(100% - 40px);
  max-width: 800px;
  padding: 20px 0;
}
     
.orlo-faq-question-text {
  width: calc(100% - 30px);
}

@media (max-width: 1023px) {
  .orlo-faq-category-questions .section-x-padding {
    padding-left: .5rem;
    padding-right: .5rem;
  }
}
     
.orlo-faq-category h2 {
  margin-bottom: 30px;
  text-transform: uppercase;
  font-size: 20px;
  font-family: var(--heading-font-stack);
}

.orlo-faq-category .orlo-faq-category-questions {
  border-top: 2px solid #231f20;
}

.orlo-faq-category .collapsible-tab h3 {
  text-transform: uppercase;
  font-size: 16px;
}
     
@media (min-width: 1024px) {
  #faq main,
  #frequently-asked-questions main {
    padding: 80px 0;
  }
  
  .orlo-faq-category {
  	padding: 40px 0;
  }
}
     
     
/*
Product detail
*/
     
     
.product-media-object.w-full {
  padding: 2rem;
}
     
.product-title-block {
  text-transform: uppercase;
  font-size: 26px;
}
     
@media (min-width: 1024px) {
  .product-title-block {
  	font-size: 34px;
  }
}
     
.product-quantity-block,
shopify-payment-terms {
  display: none;
}

#icelandic-ultra-spirulina™-focus-amp-memory-gummies .product-quantity-block, #icelandic-ultra-spirulina™-brain-performance-bar .product-quantity-block {
  display: block;
}

.orlo-product-notes {
  margin-top: 25px;
  width: 100%;
  max-width: 420px;
  font-size: 11px;
}
     
.orlo-product-notes h3 {
  margin-bottom: 10px;
  text-transform: uppercase;
  text-decoration: underline;
  font-size: 14px;
  font-family: 'Commuter Sans', sans-serif;
}
     
.product-price-block {
  font-size: 20px;
  font-family: var(--heading-font-stack);
}
     
.product-price-block .orlo-price-notes {
  margin-top: 5px;
  font-size: 14px;
}
     
.collapsible-tab button {
  text-transform: uppercase;
}
     
.collapsible-tab h2 button {
  font-size: 20px;
}
     
.orlo-highlighted-ingredients-row,
.orlo-small-columns-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
     -moz-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: 100%;
  padding: 5px 0;
}
     
.orlo-highlighted-ingredients-col--1,
.orlo-highlighted-ingredients-col--3 {
  width: 25%;
}
     
.orlo-highlighted-ingredients-col--2 {
  width: 50%;
  text-transform: uppercase;
}
     
.orlo-highlighted-ingredients-col--3 {
  text-align: right;
}
     
.orlo-more-ingredients {
  font-size: 14px;
}
     
.orlo-small-columns-item-label {
  width: 100%;
  padding-bottom: 10px;
}
     
.orlo-small-columns-item-label h3 {
  text-transform: uppercase;
  line-height: 1;
  font-size: 18px;
}
     
.orlo-small-columns-item-text {
  width: 100%;
}
     
.orlo-small-columns-item-text p {
  margin-bottom: 15px;
}
     
.orlo-small-columns-item-text p:last-child {
  margin-bottom: 0;
}
     
@media (min-width: 1024px) {
  .orlo-small-columns-item-label {
  	width: 35%;
    padding-bottom: 0;
  }
  
  .orlo-small-columns-item-text {
    padding-left: 20px;
  	width: 65%;
  }
}
     
.orlo-reviews .summary-overview,
.orlo-reviews div[data-widget-style*=standard] .stamped-tab-container {
  display: none !important;
}
     
.orlo-reviews div[data-widget-style*=standard] .stamped-summary-actions {
  width: 100% !important;
  text-align: center;
}
     
.orlo-reviews .stamped-container ul.stamped-tabs {
  border: 0 !important;
}
     
.orlo-reviews .stamped-form-review-rating input {
  visibility: hidden;
}
     
.orlo-reviews .stamped-form-label {
  display: block;
  margin-bottom: 5px;
  text-transform: uppercase;
}
     
.orlo-reviews input.stamped-form-input-email,
.orlo-reviews input.stamped-form-input-text, 
.orlo-reviews textarea.stamped-form-input-textarea {
  border: 1px solid #231f20;
  padding: 5px;
}
     
.orlo-reviews textarea.stamped-form-input-textarea {
  height: 200px;
  resize: none;
}
     
.orlo-reviews .stamped-summary-actions-clear,
.orlo-reviews .stamped-summary-actions-mobile-filter,
.orlo-reviews .stamped-summary-actions-newquestion,
.orlo-reviews .stamped-summary-actions-newreview {
  float: none !important;
  margin: 0 10px !important;
  border-color: #231f20 !important;
  background-color: #231f20 !important;
  color: #fff !important;
}
     
.orlo-reviews .stamped-summary-actions-newreview {
  display: inline-block !important;
}
     
.orlo-reviews .stamped-summary-actions-newquestion:before,
.orlo-reviews .stamped-summary-actions-newreview:before,
.orlo-reviews .stamped-summary-actions-mobile-filter i:before,
.orlo-reviews .stamped-summary-actions-clear:before {
  color: #fff !important;
}
     
.stamped-product-reviews-badge {
  margin-top: 10px;
}
     
/*
Columns
*/

.orlo-columns .py-theme {
  padding-top: 80px;
  padding-bottom: 80px;
}
     
.orlo-columns h2 {
  display: inline-block;
  margin-bottom: 20px;
  border-bottom: 2px solid #000;
  font-size: 24px;
}
     
.orlo-columns p {
  margin: 0 auto;
  width: 100%;
  max-width: 320px;
  line-height: 1.5;
  font-size: 1rem;
}
     
@media (min-width: 1024px) {
  .orlo-columns p {
    font-size: 1.05rem;
  }
}
     
/*
Quotes
*/
.orlo-quotes li {
  padding-top: 40px;
  padding-bottom: 40px;
}
     
.orlo-quotes p {
  margin: 0 auto;
  width: 100%;
  max-width: 400px;
  line-height: 1.5;
  font-size: 26px;
  font-family: var(--heading-font-stack);
}

.orlo-quotes .font-heading {
  display: inline-block;
  margin-top: 30px;
  border-bottom: 2px solid #000;
  text-transform: uppercase;
  font-size: 20px;
}
     
@media (min-width: 1024px) {
  .orlo-quotes li {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  
  .orlo-quotes p {
    font-size: 34px;
  }
  
  .orlo-quotes .font-heading {
    font-size: 24px;
  }
}
     
/*
Highlighted Phrases
*/
     
.orlo-highlighted-phrases.bg-primary-background h2 {
  position: relative;
  z-index: 2;
  background-color: var(--color-primary-background);
}
     
.orlo-highlighted-phrases.bg-secondary-background h2 {
  position: relative;
  z-index: 2;
  background-color: var(--color-secondary-background);
}
     
.orlo-highlighted-phrases.bg-secondary-background {
  border-color: var(--color-secondary-text);
}
     
.orlo-highlighted-phrases.bg-primary-background .orlo-highlighted-phrase::after {
  background-color: var(--color-primary-text);
}
     
.orlo-highlighted-phrases.bg-secondary-background .orlo-highlighted-phrase::after {
  background-color: var(--color-secondary-text);
}
     
.orlo-highlighted-phrases .orlo-highlighted-phrase::after {
  position: absolute;
  top: 50%;
  width: 2000px;
  height: 2px;
  content: '';
}
     
.orlo-highlighted-phrases .orlo-highlighted-phrase.phrase1,
.orlo-highlighted-phrases .orlo-highlighted-phrase.phrase3 {
  text-align: right;
}
     
.orlo-highlighted-phrases .orlo-highlighted-phrase.phrase1 h2,
.orlo-highlighted-phrases .orlo-highlighted-phrase.phrase3 h2 {
  padding-left: 20px;
}
     
.orlo-highlighted-phrases .orlo-highlighted-phrase.phrase1::after,
.orlo-highlighted-phrases .orlo-highlighted-phrase.phrase3::after {
  right: 0;
}
     
.orlo-highlighted-phrases .orlo-highlighted-phrase.phrase2::after {
  left: 0;
}
     
.orlo-highlighted-phrases .orlo-highlighted-phrase.phrase2 h2 {
  padding-right: 20px;
}
     
.orlo-highlighted-phrases h2 {
  display: inline-block;
  max-width: 230px;
  text-transform: uppercase;
  line-height: 1;
  font-size: 20px;
  font-family: var(--heading-font-stack);
}
     
@media (min-width: 1024px) {
  .orlo-highlighted-phrases {
  	padding: 25px 0;
  }
  
  .orlo-highlighted-phrases h2 {
    max-width: 100%;
    font-size: 60px;
  }
  
  .orlo-highlighted-phrases .orlo-highlighted-phrase::after {
    top: calc(50% + 5px);
  }
}
     
.orlo-highlighted-phrase {
  position: relative;
  padding: 25px 0;
}
     
/*
Benefits
*/
     
.orlo-benefits.bg-primary-background .orlo-benefit-inner {
  position: relative;
  z-index: 2;
  background-color: var(--color-primary-background);
}
     
.orlo-benefits.bg-secondary-background .orlo-benefit-inner {
  position: relative;
  z-index: 2;
  background-color: var(--color-secondary-background);
}
     
.orlo-benefits.bg-secondary-background {
  border-color: var(--color-secondary-text);
}
     
.orlo-benefits.bg-primary-background .orlo-benefit::after {
  background-color: var(--color-primary-text);
}
     
.orlo-benefits.bg-secondary-background .orlo-benefit::after {
  background-color: var(--color-secondary-text);
}
     
.orlo-benefits .orlo-benefit::after {
  position: absolute;
  top: calc(50% + 5px);
  width: 2000px;
  height: 2px;
  content: '';
}
     
.orlo-benefits .orlo-benefit.benefit1,
.orlo-benefits .orlo-benefit.benefit3,
.orlo-benefits .orlo-benefit.benefit5 {
  text-align: right;
}
     
.orlo-benefits .orlo-benefit.benefit1 .orlo-benefit-inner,
.orlo-benefits .orlo-benefit.benefit3 .orlo-benefit-inner,
.orlo-benefits .orlo-benefit.benefit5 .orlo-benefit-inner {
  padding-left: 20px;
}
     
.orlo-benefits .orlo-benefit.benefit2 .orlo-benefit-inner,
.orlo-benefits .orlo-benefit.benefit4 .orlo-benefit-inner {
  padding-right: 20px;
}
     
.orlo-benefits .orlo-benefit.benefit1::after,
.orlo-benefits .orlo-benefit.benefit3::after,
.orlo-benefits .orlo-benefit.benefit5::after {
  right: 0;
}
     
.orlo-benefits .orlo-benefit.benefit2::after,
.orlo-benefits .orlo-benefit.benefit4::after {
  left: 0;
}
     
.orlo-benefits .orlo-benefit.benefit2 h2 {
  padding-right: 20px;
}
     
.orlo-benefits h2 {
  display: inline-block;
  text-transform: uppercase;
  line-height: 1;
  font-size: 20px;
  font-family: var(--heading-font-stack);
}
     
@media (min-width: 1024px) {
  
  .orlo-benefits {
  	padding: 25px 0;
  }
  
  .orlo-benefits h2 {
    font-size: 60px;
  }
  
  .orlo-benefits .orlo-benefit.benefit1 .orlo-benefit-inner,
  .orlo-benefits .orlo-benefit.benefit2 .orlo-benefit-inner,
  .orlo-benefits .orlo-benefit.benefit3 .orlo-benefit-inner,
  .orlo-benefits .orlo-benefit.benefit4 .orlo-benefit-inner,
  .orlo-benefits .orlo-benefit.benefit5 .orlo-benefit-inner {
    padding-right: 250px;
  }
  
  .orlo-benefit span {
    position: absolute;
    width: 250px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    z-index: 2;
  }
}
     
.orlo-benefit {
  position: relative;
  padding: 25px 0;
}

.orlo-benefit-inner {
  display: inline-block;
  position: relative;
}
     
.orlo-benefit span {
  padding-top: 8px;
}
     
/*
Contact
*/
     
.orlo-contact {
  padding-top: 80px;
  padding-bottom: 80px;
  font-size: 20px;
  font-family: var(--heading-font-stack);
}
     
#shopify-section-template--15227217346797__main .orlo-default {
  padding-top: 40px;
  padding-bottom: 40px;
}
     
@media (min-width: 1024px) {
  .orlo-contact {
    padding-top: 80px;
  	padding-bottom: 120px;
    font-size: 24px;
  }
  
  #shopify-section-template--15227217346797__main .orlo-default {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
     
.orlo-contact h1,
.orlo-default h1 {
  margin-bottom: 30px;
  text-align: left;
  text-transform: uppercase;
}
     
.orlo-default h2 {
  font-size: 20px;
}
     
.orlo-contact h3 {
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 16px;
  font-family: var(--body-font-stack);
  font-weight: 700;
}
     
.orlo-contact-links {
  margin-top: 60px;
}

.orlo-contact ul {
  margin: 0;
  border-bottom: 1px solid #000;
  width: 100%;
  max-width: 300px;
  list-style-type: none;
  font-size: 16px;
  font-family: var(--body-font-stack);
}

.orlo-contact li {
  border-top: 1px solid #000;
  padding: .5rem 0;
  text-transform: uppercase;
  font-weight: 700;
}
     
/*
Splash
*/
.orlo-splash h1 img {
  display: block;
  margin: 0 auto 30px;
  width: calc(100% - 50px);
  max-width: 500px;
}

.orlo-splash .border-t-grid {
  border: 0;
}
     
.orlo-splash .btn {
  border-color: var(--color-secondary-text);
  color: var(--color-secondary-text);
}
     
.template-password .responsive-image-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  padding: 0 !important;
  width: 100%;
  height: 100% !important;
  overflow: hidden;
}
     
.template-password .responsive-image-wrapper img {
  object-fit: cover;
  object-position: center;
}
     
.template-password .orlo-splash {
  position: relative;
  z-index: 2;
}
     
.orlo-splash-footer {
  padding-top: 50px;
  text-align: center;
  text-transform: uppercase;
  color: var(--color-secondary-text);
}
     
.orlo-splash-footer ul {
  margin: 0;
  list-style-type: none;
  text-align: center;
}
     
.orlo-splash-footer li {
  display: inline-block;
  margin: 0 10px;
}
     
.orlo-splash-footer li a {
  display: block;
  transition: all .3s ease-in-out;
  height: 20px;
  line-height: 0;
  text-indent: -9999px;
  font-size: 0;
}
     
.orlo-splash-footer li a:hover {
  opacity: .7;
}
     
.orlo-splash-footer li a.instagram {
  background: url('https://cdn.shopify.com/s/files/1/0602/3856/1517/files/icon-instagram.svg?v=1637271823') no-repeat center;
  background-size: 20px auto;
  width: 20px;
}
     
.orlo-splash-footer li a.twitter {
  background: url('https://cdn.shopify.com/s/files/1/0602/3856/1517/files/icon-twitter.svg?v=1637271835') no-repeat center;
  background-size: 18px auto;
  width: 18px;
}
     
.orlo-splash-footer li a.facebook {
  background: url('https://cdn.shopify.com/s/files/1/0602/3856/1517/files/icon-facebook.svg?v=1637271808') no-repeat center;
  background-size: 18px auto;
  width: 18px;
}
     
.product-content-container form>*:first-child {margin-top: 2rem;}
     

     .variant-input {
       margin-right: 8px;
     }
     .variant-input label span {padding: 8px;}
     .highlight_this {
  background-color: var(--color-primary-text);
  color: white;
}
     
     hr {
       border-top: 2px dashed var(--color-primary-text);
         margin: 42px 0;
         }
     
     .product-variant-picker-block legend {font-weight: bold;}

/* Contact Form */
#contact_form label {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
}
#contact_form input[type="text"], #contact_form input[type="tel"], #contact_form input[type="email"], #contact_form textarea {
  width: 100%;
  border: 1px solid #231f20;
  background: #ffffff69;
  padding: 10px;
  font-size: 14px;
}

#contact_form input[type="submit"] {
  width: 100%;
  background: transparent;
  cursor: pointer;
}
.nuo-fens-feeniksPopupClose svg {
  height: 12px !important;
  display: flex;
  align-items: end;
  width: 20px !important;
}

.baDropdownStyle.bottom_right {
  right: 100px !important;
  bottom: 30px !important;
  
}
.lang-switcher {
    display: inline-block;
    position: relative;
    top: 2px;
    right: 10px;
}
#repeatProductOverviewParent #productOverviewContainer .productCard {
  background: #fff !important;
  border: none !important;
  
}
#repeatProductOverviewParent .ant-card {
  background: transparent;
  border: none;
}

#repeatProductOverviewParent .ant-card-head {
  padding-left: 0;
  padding-right: 0;
  border: none;
}
#repeatProductOverviewParent .ant-card-body {
  padding: 20px;
  border: 1px solid #0626261c;
  border-radius: 10px;
}
#repeatProductOverviewParent .ant-btn-primary {
  background-color: #231f20 !important;
  padding: 20px !important;
  height: auto !important;
}
#repeatProductOverviewParent .attributeContainer svg {
  height: 15px;
  width: 15px;
}
#repeatProductOverviewParent .quantityContainer .ant-btn.ant-btn-sm {
  padding: 5px 20px;
  border: 1px solid #0626261c;
  border-radius: 6px;
  min-height: 39px;
}
#repeatProductOverviewParent .quantityContainer .ant-btn.ant-btn-sm:hover {
  background-color: #062626;
  color: #fff;
}
#shopify-section-template--17148359213361__video_with_text_overlay_Fc7xXt .background-video-wrapper::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #06262669;
  position: absolute;
  z-index: 10;
}