/** Shopify CDN: Minification failed

Line 2824:2 Expected identifier but found "*"
Line 2931:2 Expected identifier but found "*"
Line 8912:2 Expected identifier but found "*"
Line 13693:33 "text-aign" is not a known CSS property
Line 16203:10 Expected ":"
Line 19680:2 "padding-botom" is not a known CSS property

**/
@charset "UTF-8";










































































/*================ SETTINGS ================*/
/*================ Color Variables ================*/
:root {
  --payment-terms-background-color: #ffffff;
}

/* LOGO */


/* HEADINGS */


/* BODY */





/* NAVIGATION */


/* UPPERCASE SETTINGS */
/* FONT WEIGHTS */
/* BASE - COMMENTED SIZES FROM BASE SIZE OF 16 */
/* HEADINGS - COMMENTED APPROX SIZES FROM H3 SIZE OF 34 */
/* FOOTER FONTS */
/* HEADINGS */
/* BODY TEXT */
/* BUTTONS, INPUTS, LINKS */
/* IMAGE OVERLAYS */
/* PRICES */
/* CART FONTS */
/* META FONTS */
/*================ Sizing Variables ================*/
/* To let section titles closer to the section content */
/* Sub nav */
/*============================================================================
  Grid Breakpoints and Class Names
    - Do not change the variable names
==============================================================================*/
/*============================================================================
  Generate breakpoint-specific column widths and push classes
    - Default column widths: $breakpoint-has-widths: ($small, $medium-up);
    - Default is no push classes
    - Will not work if `styles/global/grid.scss` is removed
==============================================================================*/
/*================ Z-Index ================*/
/*================ VENDOR ================*/
/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*
	Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)
*/
/* pswp = photoswipe */
.pswp {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  z-index: 1500;
  -webkit-text-size-adjust: 100%;
  /* create separate layer, to avoid paint on window.onscroll in webkit/blink */
  -webkit-backface-visibility: hidden;
  outline: none;
}

.pswp * {
  -webkit-box-sizing: border-box;
  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 */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--open {
  display: block;
}

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

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

.pswp--dragging .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grabbing;
  cursor: -moz-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: #000;
  opacity: 0;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-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 {
  -ms-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;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

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

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

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

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

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

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

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

/*
	div element that matches size of large image
	large image loads on top of it
*/
.pswp__img--placeholder--blank {
  background: #222;
}

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

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

.pswp__error-msg a {
  color: #CCC;
  text-decoration: underline;
}

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

	Contents:

	1. Buttons
	2. Share modal and links
	3. Index indicator ("1 of X" counter)
	4. Caption
	5. Loading indicator
	6. Additional styles (root element, top bar, idle state, hidden state, etc.)

*/
/*

	1. Buttons

 */
/* <button> css reset */
.pswp__button {
  width: 44px;
  height: 44px;
  position: relative;
  background: none;
  cursor: pointer;
  overflow: visible;
  -webkit-appearance: none;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  float: right;
  opacity: 0.75;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.pswp__button:focus, .pswp__button:hover {
  opacity: 1;
}

.pswp__button:active {
  outline: none;
  opacity: 0.9;
}

.pswp__button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* pswp__ui--over-close class it added when mouse is over element that should close gallery */
.pswp__ui--over-close .pswp__button--close {
  opacity: 1;
}

.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
    background: url(//us.nextpair.com/cdn/shop/t/2/assets/photoswipe-default-skin.png?v=115405504031309184941746500748) 0 0 no-repeat;
  background-size: 264px 88px;
  width: 44px;
  height: 44px;
}

@media (-webkit-min-device-pixel-ratio: 1.1), (-webkit-min-device-pixel-ratio: 1.09375), (min-resolution: 105dpi), (min-resolution: 1.1dppx) {
  /* Serve SVG sprite if browser supports SVG and resolution is more than 105dpi */
  .pswp--svg .pswp__button,
.pswp--svg .pswp__button--arrow--left:before,
.pswp--svg .pswp__button--arrow--right:before {
        background-image: url(//us.nextpair.com/cdn/shop/t/2/assets/photoswipe-default-skin.svg?v=153845424322445325761746500749);
  }

  .pswp--svg .pswp__button--arrow--left,
.pswp--svg .pswp__button--arrow--right {
    background: none;
  }
}
.pswp__button--close {
  background-position: 0 -44px;
}

.pswp__button--share {
  background-position: -44px -44px;
}

.pswp__button--fs {
  display: none;
}

.pswp--supports-fs .pswp__button--fs {
  display: block;
}

.pswp--fs .pswp__button--fs {
  background-position: -44px 0;
}

.pswp__button--zoom {
  display: none;
  background-position: -88px 0;
}

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

.pswp--zoomed-in .pswp__button--zoom {
  background-position: -132px 0;
}

/* no arrows on touch screens */
.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
  visibility: hidden;
}

/*
	Arrow buttons hit area
	(icon is added to :before pseudo-element)
*/
.pswp__button--arrow--left,
.pswp__button--arrow--right {
  background: none;
  top: 50%;
  margin-top: -50px;
  width: 70px;
  height: 100px;
  position: absolute;
}

.pswp__button--arrow--left {
  left: 0;
}

.pswp__button--arrow--right {
  right: 0;
}

.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  content: "";
  top: 35px;
  background-color: rgba(0, 0, 0, 0.3);
  height: 30px;
  width: 32px;
  position: absolute;
}

.pswp__button--arrow--left:before {
  left: 6px;
  background-position: -138px -44px;
}

.pswp__button--arrow--right:before {
  right: 6px;
  background-position: -94px -44px;
}

/*

	2. Share modal/popup and links

 */
.pswp__counter,
.pswp__share-modal {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.pswp__share-modal {
  display: block;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 10px;
  position: absolute;
  z-index: 1600;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
  -webkit-backface-visibility: hidden;
  will-change: opacity;
}

.pswp__share-modal--hidden {
  display: none;
}

.pswp__share-tooltip {
  z-index: 1620;
  position: absolute;
  background: #FFF;
  top: 56px;
  border-radius: 2px;
  display: block;
  width: auto;
  right: 44px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  -webkit-transform: translateY(6px);
  -ms-transform: translateY(6px);
  transform: translateY(6px);
  -webkit-transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}

.pswp__share-tooltip a {
  display: block;
  padding: 8px 12px;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  line-height: 18px;
}

.pswp__share-tooltip a:hover {
  text-decoration: none;
  color: #000;
}

.pswp__share-tooltip a:first-child {
  /* round corners on the first/last list item */
  border-radius: 2px 2px 0 0;
}

.pswp__share-tooltip a:last-child {
  border-radius: 0 0 2px 2px;
}

.pswp__share-modal--fade-in {
  opacity: 1;
}

.pswp__share-modal--fade-in .pswp__share-tooltip {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

/* increase size of share links on touch devices */
.pswp--touch .pswp__share-tooltip a {
  padding: 16px 12px;
}

a.pswp__share--facebook:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: -12px;
  right: 15px;
  border: 6px solid transparent;
  border-bottom-color: #FFF;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  pointer-events: none;
}

a.pswp__share--facebook:hover {
  background: #3E5C9A;
  color: #FFF;
}

a.pswp__share--facebook:hover:before {
  border-bottom-color: #3E5C9A;
}

a.pswp__share--twitter:hover {
  background: #55ACEE;
  color: #FFF;
}

a.pswp__share--pinterest:hover {
  background: #CCC;
  color: #CE272D;
}

a.pswp__share--download:hover {
  background: #DDD;
}

/*

	3. Index indicator ("1 of X" counter)

 */
.pswp__counter {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  font-size: 13px;
  line-height: 44px;
  color: #FFF;
  opacity: 0.75;
  padding: 0 10px;
}

/*

	4. Caption

 */
.pswp__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 44px;
}

.pswp__caption small {
  font-size: 11px;
  color: #BBB;
}

.pswp__caption__center {
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
  font-size: 13px;
  padding: 10px;
  line-height: 20px;
  color: #CCC;
}

.pswp__caption--empty {
  display: none;
}

/* Fake caption element, used to calculate height of next/prev image */
.pswp__caption--fake {
  visibility: hidden;
}

/*

	5. Loading indicator (preloader)

	You can play with it here - http://codepen.io/dimsemenov/pen/yyBWoR

 */
.pswp__preloader {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -22px;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
  will-change: opacity;
  direction: ltr;
}

.pswp__preloader__icn {
  width: 20px;
  height: 20px;
  margin: 12px;
}

.pswp__preloader--active {
  opacity: 1;
}

.pswp__preloader--active .pswp__preloader__icn {
  /* We use .gif in browsers that don't support CSS animation */
      background: url(//us.nextpair.com/cdn/shop/t/2/assets/preloader.gif?v=77008736554601496081746500749) 0 0 no-repeat;
}

.pswp--css_animation .pswp__preloader--active {
  opacity: 1;
}

.pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
  -webkit-animation: clockwise 500ms linear infinite;
  animation: clockwise 500ms linear infinite;
}

.pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
  -webkit-animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
  animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
}

.pswp--css_animation .pswp__preloader__icn {
  background: none;
  opacity: 0.75;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 15px;
  top: 15px;
  margin: 0;
}

.pswp--css_animation .pswp__preloader__cut {
  /*
  	The idea of animating inner circle is based on Polymer ("material") loading indicator
  	 by Keanu Lee https://blog.keanulee.com/2014/10/20/the-tale-of-three-spinners.html
  */
  position: relative;
  width: 7px;
  height: 14px;
  overflow: hidden;
}

.pswp--css_animation .pswp__preloader__donut {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 2px solid #FFF;
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  margin: 0;
}

@media screen and (max-width: 1024px) {
  .pswp__preloader {
    position: relative;
    left: auto;
    top: auto;
    margin: 0;
    float: right;
  }
}
@-webkit-keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(-140deg);
    transform: rotate(-140deg);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
@keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(-140deg);
    transform: rotate(-140deg);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
/*

	6. Additional styles

 */
/* root element of UI */
.pswp__ui {
  -webkit-font-smoothing: auto;
  visibility: visible;
  opacity: 1;
  z-index: 1550;
}

/* top black bar with buttons and "1 of X" indicator */
.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  width: 100%;
}

.pswp__caption,
.pswp__top-bar,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  -webkit-backface-visibility: hidden;
  will-change: opacity;
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

/* pswp--has_mouse class is added only when two subsequent mousemove events occur */
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  visibility: visible;
}

.pswp__top-bar,
.pswp__caption {
  background-color: rgba(0, 0, 0, 0.5);
}

/* pswp__ui--fit class is added when main image "fits" between top bar and bottom bar (caption) */
.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
  background-color: rgba(0, 0, 0, 0.3);
}

/* pswp__ui--idle class is added when mouse isn't moving for several seconds (JS option timeToIdle) */
.pswp__ui--idle .pswp__top-bar {
  opacity: 0;
}

.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
  opacity: 0;
}

/*
	pswp__ui--hidden class is added when controls are hidden
	e.g. when user taps to toggle visibility of controls
*/
.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right {
  /* Force paint & create composition layer for controls. */
  opacity: 0.001;
}

/* pswp__ui--one-slide class is added when there is just one item in gallery */
.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
  display: none;
}

.pswp__element--disabled {
  display: none !important;
}

.pswp--minimal--dark .pswp__top-bar {
  background: none;
}

/* Slider */
.slick-slider {
  display: block;
  position: relative;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  display: block;
  position: relative;
  top: 0;
  left: 0;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
    background: #fff url(//us.nextpair.com/cdn/shop/t/2/assets/preloader.gif?v=77008736554601496081746500749) center center no-repeat;
}

/* Arrows */
.slick-prev,
.slick-next {
  display: block;
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  padding: 0;
  outline: none;
  box-shadow: none;
  border: none;
  background: transparent;
  transform: translate(0, -50%);
  color: inherit;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  box-shadow: none;
  background: none;
  color: inherit;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  color: white;
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir=rtl] .slick-prev {
  right: -25px;
  left: auto;
}

.slick-prev:before {
  content: "←";
}

[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

[dir=rtl] .slick-next {
  right: auto;
  left: -25px;
}

.slick-next:before {
  content: "→";
}

[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dots {
  display: block;
  list-style: none;
  position: absolute;
  bottom: -30px;
  width: 100%;
  padding: 0;
  margin: 0;
  text-align: center;
}

.slick-dots li {
  display: inline-block;
  margin: 0 8px;
  padding: 0;
}

.slick-dots li button {
  display: block;
  width: 8px;
  height: 8px;
  padding: 0;
  outline: none;
  border: 0;
  border-radius: 8px;
  background: #8c8c8f;
  transition: all 150ms;
  color: transparent;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li.slick-active button {
  background: #fff;
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.5);
}

.will-slick:not(.slick-slider) > .slide:not(:first-child) {
  display: none;
}

/*
    Colorbox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox, #cboxOverlay, #cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

#cboxWrapper {
  max-width: none;
}

#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
}

#cboxMiddleLeft, #cboxBottomLeft {
  clear: left;
}

#cboxContent {
  position: relative;
}

#cboxLoadedContent {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#cboxTitle {
  margin: 0;
}

#cboxLoadingOverlay, #cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow {
  cursor: pointer;
}

.cboxPhoto {
  float: left;
  margin: auto;
  border: 0;
  display: block;
  max-width: none;
  -ms-interpolation-mode: bicubic;
}

.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
}

#colorbox, #cboxContent, #cboxLoadedContent {
  box-sizing: content-box;
}

/**
 * Label must come directly after input and be a separate element (not wrapped around input)
 *
 * Checkbox example
 * ================
 * Markup:
 * <input type="checkbox" class="checkbox" id="some-id" name="some-name" value="some-value">
 * <label for="some-id">Some label</label>
 *
 * CSS:
 * @include cc-custom-checkbox();
 *
 *
 * Radio button group example
 * ==========================
 * Markup:
 * <ul>
 *   <li>
 *     <input type="radio" class="radio" id="opt1-id" name="radio-group-name" value="opt1-value">
 *     <label for="opt1-id">Option 1</label>
 *   </li>
 *   <li>
 *     <input type="radio" class="radio" id="opt2-id" name="radio-group-name" value="opt2-value">
 *     <label for="opt2-id">Option 2</label>
 *   </li>
 * </ul>
 *
 * CSS:
 * @include cc-custom-radio();
*/
.no-js .no-js-hidden {
  display: none !important;
} 
.hd_txts{
    display: flex;
    background: #000;
    padding: 5px 15px;
    border-radius: 8px;
    color: #fffcd9;
    align-items: center;
    justify-content: space-between;
    
    }
    .hd_txts big{
    font-weight:bold
    }
    .hd_txts span{
    font-size: 12px;
    word-break: keep-all;
    white-space: nowrap;
    margin-left: 0.15rem;
    background: #f7db5e;
    padding: 5px 15px;
    border-radius: 50px;
    cursor: pointer;
    color: #000;
    }
   
@media (max-width: 767.98px) {
  .hd_txts div{
      display:block;
      margin-top:10px
    }
  .md-down-hidden {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .md-up-hidden {
    display: none !important;
  }
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.cc-filters-control {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.cc-filters-control__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /*width: 100%;*/
  padding: 0px;
  /*
  border: 1px solid #bfbfbf;
  border-radius: 4px;
  */
  background: none;
  line-height: 1.5;
}
.cc-filters-control__btn img{
  margin-left: 0.5em;
}
.cc-filters-control__btn:first-child:not(:last-child), .cc-filters-control__btn:last-child:not(:first-child) {
  /*width: calc(50% - 10px);*/
}

.cc-filters-control__btn.has-active-filters,
.cc-filter__toggle.has-active-filters {
  border-color: #000000;
}
.cc-filters-container{z-index:10000;}
.cc-filters-container svg,
.cc-active-filter > svg {
  color: rgb(51, 51, 51);
  pointer-events: none;
}

.cc-filters,
.cc-filter__panel {
  z-index: 1;
  background: #ffffff;
}

.cc-filters__header,
.cc-filter__header {
  display: flex;
  align-items: center;
  position: relative;
  padding: 20px;
  border-bottom: 1px solid #bfbfbf;
}

.cc-filter li:not(:last-child) {
  margin-bottom: 1.25em;
}
.cc-filter label {
  display: flex;
  align-items: flex-start;
  width: 100%;
}
.cc-filter label::before {
  border-color: #000000;
}
.cc-filter .radio + label::before,
.cc-filter .checkbox + label::before {
  border-color: #bfbfbf;
}
.cc-filter .radio:checked + label::after,
.cc-filter .checkbox:checked + label::before {
  border-color: #000000;
  background-color: #000000;
}
.cc-filter .checkbox:checked + label::after {
  border-color: #ffffff;
}

.cc-filter-heading {
  flex: 1 1 auto;
  padding: 0 3.2em;
  font-size: 1.25em;
  font-weight: 600;
  text-align: center;
}

.cc-filter-close-btn,
.cc-filter-back-btn {
  position: absolute;
  left: 4px;
  min-width: 0;
  padding: 11px;
  border: 0;
  background: none;
  line-height: 1.3;
}

.cc-filter-label {
  flex: 1 1 auto;
}

.cc-filter__toggle {
  display: block;
  position: relative;
  background: right 10px center no-repeat;
  text-align: left;
  cursor: pointer;
}
.cc-filter__toggle::-webkit-details-marker {
  display: none;
}
.cc-filter__toggle::after {
  content: "";
  position: absolute;
  top: calc(50% - 8px);
  right: 13px;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' stroke='rgb(51, 51, 51)' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") no-repeat center;
}
.cc-filter__toggle > span {
  pointer-events: none;
}

.cc-filter__content {
  padding: 20px;
}

.cc-filters__footer,
.cc-filter__footer {
  z-index: 10;
  border-top: 1px solid #bfbfbf;
  padding: 15px 20px;
  background: #ffffff;
}
.cc-filters__footer .btn,
.cc-filter__footer .btn {
  width: 100%;
}

.cc-filters__footer {
  position: absolute;
  top: 100%;
  width: 100%;
}

.swatch-input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.swatch-input:checked + .swatch-label .swatch-sample {
  border-color: #000000;
}
.swatch-input[disabled] + label {
  opacity: 0.5;
}

.swatch-sample {
  flex-shrink: 0;
  position: relative;
  width: 18px;
  height: 18px;
  margin-top: calc(0.75em - 9px);
  margin-right: 0.625em;
  border-radius: 50%;
  background: no-repeat center/100%;
  background-size: cover;
}

.cc-sort-label {
  display: block;
  font-size: 0.75rem;
  line-height: 1.6;
  opacity: 0.6;
}

.cc-sort-selected {
  display: block;
  line-height: 1.3;
  white-space: nowrap;
}

.cc-active-filters {
  margin-bottom: 20px;
}

.cc-active-filters__items {
  display: flex;
  flex-shrink: 0;
  padding: 0 20px;
}

.cc-active-filter,
.cc-active-filter-reset {
  margin-right: 8px;
  padding: 6px 12px;
  transition: background-color 0.25s ease;
  border-radius: 4px;
  color: #000000;
  text-decoration: none;
  white-space: nowrap;
}

.cc-active-filter {
  display: flex;
  align-items: center;
  background: #f2f2f2;
}
.cc-active-filter:last-child {
  margin-right: 0;
}
.cc-active-filter:hover {
  background: #e6e6e6;
}
.cc-active-filter > svg {
  width: 16px;
  height: 16px;
  margin: 0 -3px 0 6px;
  fill: #000000;
  stroke: #000000;
}

.cc-active-filter-reset {
  background: #d9d9d9;
}
.cc-active-filter-reset:hover {
  background: #cccccc;
}

.swatch-input:focus + .swatch-label .swatch-sample {
  outline: auto;
}

.swatch-input:focus-visible + .swatch-label .swatch-sample {
  outline: auto Highlight;
  outline: auto -webkit-focus-ring-color;
}

.swatch-input:focus:not(:focus-visible) + .swatch-label .swatch-sample {
  outline: 0;
}

.cc-price-range__inputs {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.cc-price-range__input-container {
  flex: 1 1 auto;
  position: relative;
}

.cc-price-range__input-separator {
  margin: 0 6px;
}

.cc-price-range__input-currency {
  position: absolute;
  top: calc(50% - 0.5em);
  left: 1px;
  width: calc(13px + 1em);
  font-size: 16px;
  line-height: 1em;
  text-align: right;
}

.cc-price-range__input {
  width: 100%;
  height: auto;
  margin: 0;
  padding-right: 16px;
  padding-left: calc(16px + 1em);
  border-color: #bfbfbf;
  background: transparent;
  color: inherit;
  font-size: 16px;
}
.cc-price-range__input::placeholder {
  color: rgba(#000000, 0.5);
}

.cc-price-range__bar {
  position: relative;
  height: 2px;
  margin: 35px 10px 20px 12px;
}

.cc-price-range__bar-inactive {
  height: 100%;
  opacity: 0.2;
  background: #000000;
}

.cc-price-range__bar-active {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 100%;
  background: #000000;
}

.cc-price-range__control {
  position: absolute;
  top: -21px;
  left: 0;
  width: 44px;
  height: 44px;
  margin-left: -23px;
  padding: 11px;
  cursor: grab;
}
.cc-price-range__control::after {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  transition: 0.3s ease-out;
  transition-property: transform, box-shadow;
  border: 2px solid #000000;
  border-radius: 22px;
  background: #ffffff;
}
.cc-price-range__control:hover::after {
  transform: scale(1.08);
  box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.15);
}
.cc-filters-results {
    width: 100%;
}
.cc-filters-results {
  transition: opacity 0.5s ease;
}
.cc-filters-results.is-loading {
  opacity: 0.5;
}

.cc-filters-results__summary {
  margin: 0;
  opacity: 0.7;
  text-align: center;
}

@media (max-width: 767.98px) {
  .filters-open {
    overflow: hidden;
  }

  .cc-filters-container {
    position: fixed;
    
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background: #ffffff;
  }
  .filters-open .cc-filters-container {
    transform: translate3d(-100%, 0, 0);
  }

  .cc-filters-container,
.cc-filters,
.cc-filter__panel {
    display: flex;
    flex-direction: column;
    color: #000000;
  }

  .cc-filters {
    position: relative;
    width: 100%;
    height: 100%;
    transition: height 0.2s ease;
  }

  .cc-filters__items,
.cc-filter__content {
    flex: 1 1 auto;
    overflow: auto;
  }

  .cc-filters__items {
    margin-bottom: -1px;
    padding: 0 20px;
  }

  .cc-filter--sort {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
  }
.cc-filter__panel{
  
}
  .cc-filters-container,
.cc-filter__panel {
    transition: transform 0.3s cubic-bezier(0.78, 0.13, 0.15, 0.85);
  }

  .cc-filter:not(.cc-filter--sort) {
    border-bottom: 1px solid #bfbfbf;
  }

  .cc-filter__toggle {
    padding: 16px 35px 16px 0;
    border: 0;
  }
  .cc-filter__toggle::after {
    right: -4px;
    transform: rotate(-90deg);
  }

  .cc-filters .cc-filter__panel {
    left: 100%;
    transition-delay: 0.3s;
  }
  .filters-open .cc-filters .cc-filter__panel {
    transition-delay: 0s;
  }
  .cc-filters .cc-filter.is-open .cc-filter__panel {
    /* transform: translate3d(-100%, 0, 0); */
    transform: none;
  }

  .cc-filter-clear-btn {
    position: absolute;
    right: 20px;
  }

  .cc-filter--sort {
    visibility: hidden;
    transition: visibility 0s 0.3s;
  }
  .cc-filter--sort.is-open {
    visibility: visible;
    transition: none;
  }

  .cc-active-filters {
    overflow: hidden;
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }

  .cc-active-filters__scroller {
    display: flex;
    margin-bottom: -30px;
    padding-bottom: 30px;
    overflow: auto;
  }

  .cc-price-range {
    padding: 20px 0;
  }
}
@media (min-width: 768px) {
  .cc-filters-container {
    /* display: flex; */
    /* align-items: flex-start; */
  }
  .no-js .cc-filters-container {
    display: block;
  }

  .cc-filters {
    background: none;
  }
  .no-js .cc-filters {
    display: inline-block;
    vertical-align: top;
  }

  .cc-filters__items {
    /* display: flex; */
    /* flex-wrap: wrap; */
  }
  .js .cc-filters__items {
    margin-bottom: -15px;
  }

  .cc-filter {
    position: relative;
    margin: 0 15px 15px 0;
  }
  .js .cc-filter.cc-filter--sort {
    margin: 0 0 0 auto;
  }
  .no-js .cc-filter.cc-filter--sort {
    display: inline-block;
  }
  .cc-filter li:not(:last-child) {
    margin-bottom:5px;
  }

  .cc-filter__toggle {
    min-width: 9em;
    padding: 12px 45px 12px 15px;
    /* border: 1px solid #bfbfbf; */
    /* border-radius: 4px; */
    background: right 10px center no-repeat;
  }
  .cc-filter--sort .cc-filter__toggle {
    min-width: 11.7em;
    padding: 5px 15px 5px 15px;
  }
  .cc-filter.is-open .cc-filter__toggle::after, .no-js .cc-filter[open] .cc-filter__toggle::after,
    .cc-filter .cc-filter__toggle::after{
    transform: scaleY(-1);
  }

  .cc-filter__panel {
    /* position: absolute; */
    /* top: calc(100% + 10px); */
    left: 0;
    /* width: 340px; */
    transition: transform 0.2s ease-out, opacity 0.2s ease-out;
    transform: translate3d(0, -10px, 0);
    /* box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15); */
    /* border-radius: 4px; */
    color: #000000;
    opacity: 1;
    /*overflow: hidden;*/
    overflow-y: auto;
  }
  .cc-filter.cc-filter--sort .cc-filter__panel {
     position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 340px;
    transition: transform 0.2s ease-out, opacity 0.2s ease-out;
    transform: translate3d(0, -10px, 0);
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    color: #000000;
    opacity: 0;
    overflow: hidden;
  }
    .cc-filter.cc-filter--sort[open] .cc-filter__panel{
       opacity: 1;
    }
  .js .cc-filter--sort .cc-filter__panel {
    right: 0;
    left: auto;
  }
  .is-open .cc-filter__panel, .no-js .cc-filter[open] .cc-filter__panel,
 .cc-filter .cc-filter__panel, .cc-filter__panel{
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .cc-filter__header {
    justify-content: space-between;
    padding: 15px 20px;
  }

  .cc-filter-clear-btn {
    margin-left: auto;
  }

  .cc-filter__content {
    position: relative;
    max-height: 15em;
    padding: 10px 0px 0 20px;
    /* overflow: auto; */
  }
  .cc-filter--sort .cc-filter__content {
    max-height: none;
  }

  .cc-active-filters__items {
    flex-wrap: wrap;
    margin: 15px -8px -8px 0;
    padding: 0;
  }

  .cc-active-filter,
.cc-active-filter-reset {
    margin-bottom: 8px;
  }

  .cc-filters-results__summary {
    margin: 25px 0 -10px;
  }

  .no-js-apply-filters {
    display: inline-block;
    vertical-align: top;
  }
}
body.cc-popup-no-scroll {
  overflow: hidden;
}

.popup-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
  pointer-events: none;
}

.cc-popup {
  position: fixed;
  display: flex;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 997;
  transition: opacity 0.15s, visibility 0.15s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.cc-popup.cc-popup--center {
  justify-content: center;
  align-items: center;
}
.cc-popup.cc-popup--center .cc-popup-modal {
  transform: translate3d(0, 60px, 0);
}
.cc-popup.cc-popup--bottom-left, .cc-popup.cc-popup--bottom-right {
  align-items: flex-end;
}
.cc-popup.cc-popup--bottom-left {
  justify-content: flex-start;
}
.cc-popup.cc-popup--bottom-left .cc-popup-modal {
  transform: translate3d(-60px, 0, 0);
}
.cc-popup.cc-popup--bottom-right {
  justify-content: flex-end;
}
.cc-popup.cc-popup--bottom-right .cc-popup-modal {
  transform: translate3d(60px, 0, 0);
}
.cc-popup.cc-popup--right {
  justify-content: flex-end;
}
.cc-popup.cc-popup--right .cc-popup-modal {
  transform: translate3d(60px, 0, 0);
  width: 100%;
  min-width: 0;
  overflow: auto;
}
@media (min-width: 768px) {
  .cc-popup.cc-popup--right .cc-popup-modal {
    width: 400px;
  }
}
.cc-popup.cc-popup--visible {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.cc-popup.cc-popup--visible .cc-popup-modal {
  transform: translate3d(0, 0, 0);
}
.cc-popup .cc-popup-background {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 998;
}
.cc-popup .cc-popup-modal {
  position: relative;
  z-index: 999;
  transition: transform 0.25s;
  overflow: hidden;
  background-color: #ffffff;
  color: #000000;
}
.cc-popup .cc-popup-container {
  display: flex;
}
.cc-popup .cc-popup-container .cc-popup-title {
  color: #000000;
}
.cc-popup .cc-popup-close {
  position: absolute;
  right: 3px;
  top: 3px;
  width: 44px;
  height: 44px;
  padding: 7px;
  min-width: auto;
  background-color: transparent;
  border: none;
  box-shadow: none;
}
.cc-popup .cc-popup-close svg {
  stroke: #000000;
  stroke-width: 2px;
}
[dir=rtl] .cc-popup .cc-popup-close {
  left: 3px;
  right: auto;
}
.cc-popup .cc-popup-image .rimage-background {
  height: 100%;
}
.cc-popup .cc-popup-column {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cc-rating {
  display: inline-block;
  margin: 0;
  font-size: 14px;
  line-height: 1.2em;
  white-space: nowrap;
  vertical-align: middle;
}

.cc-rating-stars {
  display: block;
  position: relative;
}

.cc-rating-stars--active {
  position: absolute;
  top: 0;
  left: 0;
  color: rgb(247, 219, 94);
}

.cc-rating-stars--inactive {
  display: block;
  color: rgba(247, 219, 94, 0.2);
}

.cc-rating-stars__svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
  vertical-align: top;
}
.cc-rating-stars__svg:not(:first-child) {
  margin-left: 1px;
}

.cc-rating[data-rating-decimal="0.5"] .cc-rating-stars--active .cc-rating-stars__svg:last-child {
  clip-path: polygon(0 0, 52% 0, 52% 100%, 0% 100%);
}

.cc-rating-text {
  display: none;
}

.cc-rating-count {
  display: inline-block;
  margin: 0;
}

.store-availability-container-outer.store-availability-initialized {
  transition: height 0.3s;
  overflow: hidden;
}

.store-availability-container {
  padding: 1em 0;
  transition: opacity 0.3s;
}
.store-availability-loading .store-availability-container {
  pointer-events: none;
  opacity: 0.4;
  transition-delay: 0.4s;
}
.payment-and-quantity--buttons-active ~ [data-store-availability-container] .store-availability-container {
  padding-bottom: 1.5em;
}
.store-availability-container small {
  font-size: 0.85em;
}
.store-availability-container .store-availability-small-text {
  margin-bottom: 0.85em;
}
.store-availability-container .store-availability-information {
  display: flex;
}
.store-availability-container .store-availability-information .store-availability-icon {
  padding-inline-end: 10px;
  position: relative;
  top: -1px;
}
.store-availability-container .store-availability-information .store-availability-icon svg {
  height: 16px;
  width: 16px;
}
.store-availability-container .store-availability-information .store-availability-icon.store-availability-icon--available {
  color: #108043;
}
.store-availability-container .store-availability-information .store-availability-icon.store-availability-icon--unavailable {
  color: #de3618;
}
.store-availability-container .store-availability-information .store-availability-information__stores {
  margin-top: 0.5em;
}
.store-availability-container .store-availability-information .store-availability-information__title,
.store-availability-container .store-availability-information .store-availability-information__stores,
.store-availability-container .store-availability-information .store-availability-information__stock {
  margin-bottom: 0;
}
.store-availability-container .store-availability-information .store-availability-information__title,
.store-availability-container .store-availability-information .store-availability-information__stock {
  margin-top: 0;
}
.store-availability-container .store-availability-information .store-availability-information__title strong {
  font-weight: 600;
}

.store-availabilities-modal {
  z-index: 99999;
}
.store-availabilities-modal small {
  font-size: 0.85em;
}
.store-availabilities-modal .store-availability-small-text {
  margin-bottom: 0.85em;
}
.store-availabilities-modal .cc-icon-available {
  color: #108043;
}
.store-availabilities-modal .cc-icon-unavailable {
  color: #de3618;
}
.store-availabilities-modal .cc-popup-close {
  color: #000000 !important;
}
.store-availabilities-modal .cc-popup-close:hover {
  color: #000000 !important;
}
.store-availabilities-modal .cc-popup-close svg {
  stroke: #000000 !important;
}
.store-availabilities-modal .cc-popup-close svg:hover {
  stroke: #000000 !important;
}
.store-availabilities-modal .cc-popup-modal {
  background-color: #ffffff;
  color: #000000;
}
.store-availabilities-modal .cc-popup-modal .cc-popup-content {
  text-align: start;
}
.store-availabilities-modal .cc-popup-modal .cc-popup-content button {
  white-space: nowrap;
}
.store-availabilities-modal .cc-popup-modal .cc-popup-content .cc-popup-text {
  margin-bottom: 1em;
  padding-inline-end: 20px;
}
.store-availabilities-modal .cc-popup-modal .cc-popup-content .cc-popup-text .store-availabilities-modal__product-title {
  margin-bottom: 0;
  text-align: start;
  color: #000000;
}
.store-availabilities-modal .cc-popup-modal .cc-popup-content .store-availability-list__item {
  margin-top: 1em;
}
.store-availabilities-modal .cc-popup-modal .cc-popup-content .store-availability-list__item:before {
  content: "";
  display: inline-block;
  background-color: #f0f0f0;
  width: 100%;
  height: 1px;
  margin-bottom: 1em;
  margin-top: 0.5em;
}
.store-availabilities-modal .cc-popup-modal .cc-popup-content .store-availability-list__item address {
  font-style: normal;
}
.store-availabilities-modal .cc-popup-modal .cc-popup-content .store-availability-list__item a {
  color: #000000;
}
.store-availabilities-modal .cc-popup-modal .cc-popup-content .store-availability-list__item .store-availability-list__location {
  display: flex;
}
.store-availabilities-modal .cc-popup-modal .cc-popup-content .store-availability-list__item .store-availability-list__location .store-availability-list__location__text {
  flex: 1;
  margin-bottom: 0.2em;
}
.store-availabilities-modal .cc-popup-modal .cc-popup-content .store-availability-list__item .store-availability-list__location .store-availability-list__location__text strong {
  font-weight: 600;
}
.store-availabilities-modal .cc-popup-modal .cc-popup-content .store-availability-list__item .store-availability-list__location .store-availability-list__location__distance {
  visibility: hidden;
  opacity: 0;
  margin-bottom: 0;
  transition: visibility 0.4s, opacity 0.4s;
}
.store-availabilities-modal .cc-popup-modal .cc-popup-content .store-availability-list__item .store-availability-list__location .store-availability-list__location__distance.-in {
  opacity: 1;
  visibility: visible;
}
.store-availabilities-modal .cc-popup-modal .cc-popup-content .store-availability-list__item .store-availability-list__location .store-availability-list__location__distance svg {
  position: relative;
  height: 11px;
  width: 11px;
}
.store-availabilities-modal .cc-popup-modal .cc-popup-content .store-availability-list__item .store-availability-list__invalid_address svg {
  height: 14px;
  width: 14px;
}
.store-availabilities-modal .cc-popup-modal .cc-popup-content .store-availability-list__item .cc-icon-available, .store-availabilities-modal .cc-popup-modal .cc-popup-content .store-availability-list__item .cc-icon-unavailable {
  display: inline-block;
}
.store-availabilities-modal .cc-popup-modal .cc-popup-content .store-availability-list__item .cc-icon-available svg, .store-availabilities-modal .cc-popup-modal .cc-popup-content .store-availability-list__item .cc-icon-unavailable svg {
  height: 13px;
  width: 13px;
}
@media (min-width: 768px) {
  .store-availabilities-modal .cc-popup-modal .cc-popup-content .store-availability-list__item .store-availability-list__phone--mobile {
    display: none;
  }
}
.store-availabilities-modal .cc-popup-modal .cc-popup-content .store-availability-list__item .store-availability-list__phone--desktop {
  display: none;
}
@media (min-width: 768px) {
  .store-availabilities-modal .cc-popup-modal .cc-popup-content .store-availability-list__item .store-availability-list__phone--desktop {
    display: block;
  }
}

.store-availability-list__phone {
  direction: ltr;
}
[dir=rtl] .store-availability-list__phone {
  text-align: right;
}

/*================ TOOLS ================*/
/*================ Mixins ================*/
/*============================================================================
  Prefix mixin for generating vendor prefixes.
  Based on https://github.com/thoughtbot/bourbon/blob/v4-stable/app/assets/stylesheets/addons/_prefixer.scss

  Usage:
    // Input:
    .element {
      @include prefix(transform, scale(1), ms webkit spec);
    }

    // Output:
    .element {
      -ms-transform: scale(1);
      -webkit-transform: scale(1);
      transform: scale(1);
    }
==============================================================================*/
/*================ Media Query Mixin ================*/
/*================ Responsive Show/Hide Helper ================*/
/*================ Responsive Text Alignment Helper ================*/
/*============================================================================
  To use on elements with border radius that can transition, or contains
  elements that can transition.

  In Safari, transitioning elements will ignore 'overflow: hidden' on parent
  containers when rendering

  This hack gives the element a new stacking context
  ============================================================================*/
@keyframes onAutoFillStart {
  from {
    /**/
  }
  to {
    /**/
  }
}
@keyframes onAutoFillCancel {
  from {
    /**/
  }
  to {
    /**/
  }
}
@keyframes radius-corners {
  0% {
        border-radius: 0 15px 15px 0;
  }
  100% {
    border-radius: 0 0 0 0;
  }
}
/*================ GENERIC ================*/
/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}

/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Helvetica Neue, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  /* 1 */
  font-weight: 400;
  font-style: normal;
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: none;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block;
}

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

/*================ Slate specific reset ================*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
input,
textarea,
button,
select {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

img {
  max-width: 100%;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

/*================ Form element helpers ================*/
form {
  margin: 0;
}

@media only screen and (max-width: 767.98px) {
  input,
textarea,
select {
    font-size: 16px;
  }
}
button,
input[type=submit],
label[for] {
  cursor: pointer;
}

optgroup {
  font-weight: 500;
}

option {
  color: #000000;
  background-color: #ffffff;
}

[tabindex="-1"]:focus {
  outline: none;
}

/*============================================================================
  Fast Tap
  enables no-delay taps (FastClick-esque) on supporting browsers
==============================================================================*/
a,
button,
[role=button],
input,
label,
select,
textarea {
  touch-action: manipulation;
}

/*================ Helper Classes ================*/
.clearfix {
  *zoom: 1;
}
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

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

.js-focus-hidden:focus {
  outline: none;
}

.label-hidden {
  position: absolute !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}
.no-placeholder .label-hidden {
  position: inherit !important;
  overflow: auto;
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
}

.visually-shown {
  position: inherit !important;
  overflow: auto;
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
}

.hidden,
.js .js-hidden {
  display: none;
}

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

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

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

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

@media only screen and (max-width: 767.98px) {
  .md-down-hidden {
    display: none !important;
  }
}
/*============================================================================
  Skip to content button
    - Overrides .visually-hidden when focused
==============================================================================*/
.skip-link:focus {
  position: absolute !important;
  overflow: auto;
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
  color: #000000;
  background-color: #ffffff;
  padding: 15px;
  z-index: 10000;
  transition: none;
}

/*============================================================================
  Grid
    - Based on CSS Wizardry grid
==============================================================================*/
.grid,
.grid-no-gutter {
  *zoom: 1;
  list-style: none;
  margin: 0;
  padding: 0;
}
.grid::after,
.grid-no-gutter::after {
  content: "";
  display: table;
  clear: both;
}

.grid {
  margin-left: -30px;
}

.grid-flex {
  display: flex;
  flex-wrap: wrap;
  margin-left: -30px;
  margin-bottom: -30px;
}
.grid-flex.slick-slider {
  display: block;
  margin-bottom: 0;
}

.grid-flex__item {
  padding-left: 30px;
  padding-bottom: 30px;
  width: 100%;
}

.grid__item,
.grid__item-no-gutter {
  float: left;
  width: 100%;
}

.grid__item {
  padding-left: 30px;
}

@media only screen and (max-width: 767.98px) {
  .grid,
.grid-flex {
    margin-left: -20px;
  }

  .grid__item,
.grid-flex__item {
    padding-left: 20px;
  }
}
/*============================================================================
  Grid Columns
    - Create width classes, prepended by the breakpoint name.
==============================================================================*/
/*================ Clearfix helper on uniform grids ================*/
/*================ Spacing helper on uniform grids ================*/
/*================ Build Base Grid Classes ================*/
/** Whole */
.one-whole {
  width: 100%;
}

/* Halves */
.one-half {
  width: 50%;
}

/* Thirds */
.one-third {
  width: 33.3333333333%;
}

.two-thirds {
  width: 66.6666666667%;
}

/* Quarters */
.one-quarter {
  width: 25%;
}

.two-quarters {
  width: 50%;
}

.three-quarters {
  width: 75%;
}

/* Fifths */
.one-fifth {
  width: 20%;
}

.two-fifths {
  width: 40%;
}

.three-fifths {
  width: 60%;
}

.four-fifths {
  width: 80%;
}

/* Sixths */
.one-sixth {
  width: 16.6666666667%;
}

.two-sixths {
  width: 33.3333333333%;
}

.three-sixths {
  width: 50%;
}

.four-sixths {
  width: 66.6666666667%;
}

.five-sixths {
  width: 83.3333333333%;
}

/* Eighths */
.one-eighth {
  width: 12.5%;
}

.two-eighths {
  width: 25%;
}

.three-eighths {
  width: 37.5%;
}

.four-eighths {
  width: 50%;
}

.five-eighths {
  width: 62.5%;
}

.six-eighths {
  width: 75%;
}

.seven-eighths {
  width: 87.5%;
}

/* Tenths */
.one-tenth {
  width: 10%;
}

.two-tenths {
  width: 20%;
}

.three-tenths {
  width: 30%;
}

.four-tenths {
  width: 40%;
}

.five-tenths {
  width: 50%;
}

.six-tenths {
  width: 60%;
}

.seven-tenths {
  width: 70%;
}

.eight-tenths {
  width: 80%;
}

.nine-tenths {
  width: 90%;
}

/* Twelfths */
.one-twelfth {
  width: 8.3333333333%;
}

.two-twelfths {
  width: 16.6666666667%;
}

.three-twelfths {
  width: 25%;
}

.four-twelfths {
  width: 33.3333333333%;
}

.five-twelfths {
  width: 41.6666666667%;
}

.six-twelfths {
  width: 50%;
}

.seven-twelfths {
  width: 58.3333333333%;
}

.eight-twelfths {
  width: 66.6666666667%;
}

.nine-twelfths {
  width: 75%;
}

.ten-twelfths {
  width: 83.3333333333%;
}

.eleven-twelfths {
  width: 91.6666666667%;
}

/* Hide/show - when used for spacing */
.hide {
  display: none;
}

.show {
  display: block;
}

.grid--uniform .one-half:nth-child(2n+1),
.grid--uniform .one-third:nth-child(3n+1),
.grid--uniform .one-quarter:nth-child(4n+1),
.grid--uniform .one-fifth:nth-child(5n+1),
.grid--uniform .one-sixth:nth-child(6n+1),
.grid--uniform .two-sixths:nth-child(3n+1),
.grid--uniform .one-eighth:nth-child(8n+1),
.grid--uniform .one-twelfth:nth-child(12n+1) {
  clear: both;
}

.grid--uniform-row-gutters .one-whole:nth-child(n+2),
.grid--uniform-row-gutters .one-half:nth-child(n+3),
.grid--uniform-row-gutters .one-third:nth-child(n+4),
.grid--uniform-row-gutters .one-quarter:nth-child(n+5),
.grid--uniform-row-gutters .one-fifth:nth-child(n+6),
.grid--uniform-row-gutters .one-sixth:nth-child(n+7),
.grid--uniform-row-gutters .two-sixths:nth-child(n+4),
.grid--uniform-row-gutters .one-eighth:nth-child(n+9),
.grid--uniform-row-gutters .one-twelfth:nth-child(n+13) {
  margin-top: 30px;
}

.show {
  display: block !important;
}

.hide {
  display: none !important;
}

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

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

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

/*================ Build Responsive Grid Classes ================*/
@media only screen and (max-width: 1279.98px) {
  /** Whole */
  .large-down--one-whole {
    width: 100%;
  }

  /* Halves */
  .large-down--one-half {
    width: 50%;
  }

  /* Thirds */
  .large-down--one-third {
    width: 33.3333333333%;
  }

  .large-down--two-thirds {
    width: 66.6666666667%;
  }

  /* Quarters */
  .large-down--one-quarter {
    width: 25%;
  }

  .large-down--two-quarters {
    width: 50%;
  }

  .large-down--three-quarters {
    width: 75%;
  }

  /* Fifths */
  .large-down--one-fifth {
    width: 20%;
  }

  .large-down--two-fifths {
    width: 40%;
  }

  .large-down--three-fifths {
    width: 60%;
  }

  .large-down--four-fifths {
    width: 80%;
  }

  /* Sixths */
  .large-down--one-sixth {
    width: 16.6666666667%;
  }

  .large-down--two-sixths {
    width: 33.3333333333%;
  }

  .large-down--three-sixths {
    width: 50%;
  }

  .large-down--four-sixths {
    width: 66.6666666667%;
  }

  .large-down--five-sixths {
    width: 83.3333333333%;
  }

  /* Eighths */
  .large-down--one-eighth {
    width: 12.5%;
  }

  .large-down--two-eighths {
    width: 25%;
  }

  .large-down--three-eighths {
    width: 37.5%;
  }

  .large-down--four-eighths {
    width: 50%;
  }

  .large-down--five-eighths {
    width: 62.5%;
  }

  .large-down--six-eighths {
    width: 75%;
  }

  .large-down--seven-eighths {
    width: 87.5%;
  }

  /* Tenths */
  .large-down--one-tenth {
    width: 10%;
  }

  .large-down--two-tenths {
    width: 20%;
  }

  .large-down--three-tenths {
    width: 30%;
  }

  .large-down--four-tenths {
    width: 40%;
  }

  .large-down--five-tenths {
    width: 50%;
  }

  .large-down--six-tenths {
    width: 60%;
  }

  .large-down--seven-tenths {
    width: 70%;
  }

  .large-down--eight-tenths {
    width: 80%;
  }

  .large-down--nine-tenths {
    width: 90%;
  }

  /* Twelfths */
  .large-down--one-twelfth {
    width: 8.3333333333%;
  }

  .large-down--two-twelfths {
    width: 16.6666666667%;
  }

  .large-down--three-twelfths {
    width: 25%;
  }

  .large-down--four-twelfths {
    width: 33.3333333333%;
  }

  .large-down--five-twelfths {
    width: 41.6666666667%;
  }

  .large-down--six-twelfths {
    width: 50%;
  }

  .large-down--seven-twelfths {
    width: 58.3333333333%;
  }

  .large-down--eight-twelfths {
    width: 66.6666666667%;
  }

  .large-down--nine-twelfths {
    width: 75%;
  }

  .large-down--ten-twelfths {
    width: 83.3333333333%;
  }

  .large-down--eleven-twelfths {
    width: 91.6666666667%;
  }

  /* Hide/show - when used for spacing */
  .large-down--hide {
    display: none;
  }

  .large-down--show {
    display: block;
  }

  .grid--uniform .large-down--one-half:nth-child(2n+1),
.grid--uniform .large-down--one-third:nth-child(3n+1),
.grid--uniform .large-down--one-quarter:nth-child(4n+1),
.grid--uniform .large-down--one-fifth:nth-child(5n+1),
.grid--uniform .large-down--one-sixth:nth-child(6n+1),
.grid--uniform .large-down--two-sixths:nth-child(3n+1),
.grid--uniform .large-down--one-eighth:nth-child(8n+1),
.grid--uniform .large-down--one-twelfth:nth-child(12n+1) {
    clear: both;
  }

  .grid--uniform-row-gutters .large-down--one-whole:nth-child(n+2),
.grid--uniform-row-gutters .large-down--one-half:nth-child(n+3),
.grid--uniform-row-gutters .large-down--one-third:nth-child(n+4),
.grid--uniform-row-gutters .large-down--one-quarter:nth-child(n+5),
.grid--uniform-row-gutters .large-down--one-fifth:nth-child(n+6),
.grid--uniform-row-gutters .large-down--one-sixth:nth-child(n+7),
.grid--uniform-row-gutters .large-down--two-sixths:nth-child(n+4),
.grid--uniform-row-gutters .large-down--one-eighth:nth-child(n+9),
.grid--uniform-row-gutters .large-down--one-twelfth:nth-child(n+13) {
    margin-top: 30px;
  }

  .large-down--show {
    display: block !important;
  }

  .large-down--hide {
    display: none !important;
  }

  .large-down--text-left {
    text-align: left !important;
  }

  .large-down--text-right {
    text-align: right !important;
  }

  .large-down--text-center {
    text-align: center !important;
  }
}
@media only screen and (max-width: 1023.98px) {
  /** Whole */
  .medium-down--one-whole {
    width: 100%;
  }

  /* Halves */
  .medium-down--one-half {
    width: 50%;
  }

  /* Thirds */
  .medium-down--one-third {
    width: 33.3333333333%;
  }

  .medium-down--two-thirds {
    width: 66.6666666667%;
  }

  /* Quarters */
  .medium-down--one-quarter {
    width: 25%;
  }

  .medium-down--two-quarters {
    width: 50%;
  }

  .medium-down--three-quarters {
    width: 75%;
  }

  /* Fifths */
  .medium-down--one-fifth {
    width: 20%;
  }

  .medium-down--two-fifths {
    width: 40%;
  }

  .medium-down--three-fifths {
    width: 60%;
  }

  .medium-down--four-fifths {
    width: 80%;
  }

  /* Sixths */
  .medium-down--one-sixth {
    width: 16.6666666667%;
  }

  .medium-down--two-sixths {
    width: 33.3333333333%;
  }

  .medium-down--three-sixths {
    width: 50%;
  }

  .medium-down--four-sixths {
    width: 66.6666666667%;
  }

  .medium-down--five-sixths {
    width: 83.3333333333%;
  }

  /* Eighths */
  .medium-down--one-eighth {
    width: 12.5%;
  }

  .medium-down--two-eighths {
    width: 25%;
  }

  .medium-down--three-eighths {
    width: 37.5%;
  }

  .medium-down--four-eighths {
    width: 50%;
  }

  .medium-down--five-eighths {
    width: 62.5%;
  }

  .medium-down--six-eighths {
    width: 75%;
  }

  .medium-down--seven-eighths {
    width: 87.5%;
  }

  /* Tenths */
  .medium-down--one-tenth {
    width: 10%;
  }

  .medium-down--two-tenths {
    width: 20%;
  }

  .medium-down--three-tenths {
    width: 30%;
  }

  .medium-down--four-tenths {
    width: 40%;
  }

  .medium-down--five-tenths {
    width: 50%;
  }

  .medium-down--six-tenths {
    width: 60%;
  }

  .medium-down--seven-tenths {
    width: 70%;
  }

  .medium-down--eight-tenths {
    width: 80%;
  }

  .medium-down--nine-tenths {
    width: 90%;
  }

  /* Twelfths */
  .medium-down--one-twelfth {
    width: 8.3333333333%;
  }

  .medium-down--two-twelfths {
    width: 16.6666666667%;
  }

  .medium-down--three-twelfths {
    width: 25%;
  }

  .medium-down--four-twelfths {
    width: 33.3333333333%;
  }

  .medium-down--five-twelfths {
    width: 41.6666666667%;
  }

  .medium-down--six-twelfths {
    width: 50%;
  }

  .medium-down--seven-twelfths {
    width: 58.3333333333%;
  }

  .medium-down--eight-twelfths {
    width: 66.6666666667%;
  }

  .medium-down--nine-twelfths {
    width: 75%;
  }

  .medium-down--ten-twelfths {
    width: 83.3333333333%;
  }

  .medium-down--eleven-twelfths {
    width: 91.6666666667%;
  }

  /* Hide/show - when used for spacing */
  .medium-down--hide {
    display: none;
  }

  .medium-down--show {
    display: block;
  }

  .grid--uniform .medium-down--one-half:nth-child(2n+1),
.grid--uniform .medium-down--one-third:nth-child(3n+1),
.grid--uniform .medium-down--one-quarter:nth-child(4n+1),
.grid--uniform .medium-down--one-fifth:nth-child(5n+1),
.grid--uniform .medium-down--one-sixth:nth-child(6n+1),
.grid--uniform .medium-down--two-sixths:nth-child(3n+1),
.grid--uniform .medium-down--one-eighth:nth-child(8n+1),
.grid--uniform .medium-down--one-twelfth:nth-child(12n+1) {
    clear: both;
  }

  .grid--uniform-row-gutters .medium-down--one-whole:nth-child(n+2),
.grid--uniform-row-gutters .medium-down--one-half:nth-child(n+3),
.grid--uniform-row-gutters .medium-down--one-third:nth-child(n+4),
.grid--uniform-row-gutters .medium-down--one-quarter:nth-child(n+5),
.grid--uniform-row-gutters .medium-down--one-fifth:nth-child(n+6),
.grid--uniform-row-gutters .medium-down--one-sixth:nth-child(n+7),
.grid--uniform-row-gutters .medium-down--two-sixths:nth-child(n+4),
.grid--uniform-row-gutters .medium-down--one-eighth:nth-child(n+9),
.grid--uniform-row-gutters .medium-down--one-twelfth:nth-child(n+13) {
    margin-top: 30px;
  }

  .medium-down--show {
    display: block !important;
  }

  .medium-down--hide {
    display: none !important;
  }

  .medium-down--text-left {
    text-align: left !important;
  }

  .medium-down--text-right {
    text-align: right !important;
  }

  .medium-down--text-center {
    text-align: center !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023.98px) {
  /** Whole */
  .medium--one-whole {
    width: 100%;
  }

  /* Halves */
  .medium--one-half {
    width: 50%;
  }

  /* Thirds */
  .medium--one-third {
    width: 33.3333333333%;
  }

  .medium--two-thirds {
    width: 66.6666666667%;
  }

  /* Quarters */
  .medium--one-quarter {
    width: 25%;
  }

  .medium--two-quarters {
    width: 50%;
  }

  .medium--three-quarters {
    width: 75%;
  }

  /* Fifths */
  .medium--one-fifth {
    width: 20%;
  }

  .medium--two-fifths {
    width: 40%;
  }

  .medium--three-fifths {
    width: 60%;
  }

  .medium--four-fifths {
    width: 80%;
  }

  /* Sixths */
  .medium--one-sixth {
    width: 16.6666666667%;
  }

  .medium--two-sixths {
    width: 33.3333333333%;
  }

  .medium--three-sixths {
    width: 50%;
  }

  .medium--four-sixths {
    width: 66.6666666667%;
  }

  .medium--five-sixths {
    width: 83.3333333333%;
  }

  /* Eighths */
  .medium--one-eighth {
    width: 12.5%;
  }

  .medium--two-eighths {
    width: 25%;
  }

  .medium--three-eighths {
    width: 37.5%;
  }

  .medium--four-eighths {
    width: 50%;
  }

  .medium--five-eighths {
    width: 62.5%;
  }

  .medium--six-eighths {
    width: 75%;
  }

  .medium--seven-eighths {
    width: 87.5%;
  }

  /* Tenths */
  .medium--one-tenth {
    width: 10%;
  }

  .medium--two-tenths {
    width: 20%;
  }

  .medium--three-tenths {
    width: 30%;
  }

  .medium--four-tenths {
    width: 40%;
  }

  .medium--five-tenths {
    width: 50%;
  }

  .medium--six-tenths {
    width: 60%;
  }

  .medium--seven-tenths {
    width: 70%;
  }

  .medium--eight-tenths {
    width: 80%;
  }

  .medium--nine-tenths {
    width: 90%;
  }

  /* Twelfths */
  .medium--one-twelfth {
    width: 8.3333333333%;
  }

  .medium--two-twelfths {
    width: 16.6666666667%;
  }

  .medium--three-twelfths {
    width: 25%;
  }

  .medium--four-twelfths {
    width: 33.3333333333%;
  }

  .medium--five-twelfths {
    width: 41.6666666667%;
  }

  .medium--six-twelfths {
    width: 50%;
  }

  .medium--seven-twelfths {
    width: 58.3333333333%;
  }

  .medium--eight-twelfths {
    width: 66.6666666667%;
  }

  .medium--nine-twelfths {
    width: 75%;
  }

  .medium--ten-twelfths {
    width: 83.3333333333%;
  }

  .medium--eleven-twelfths {
    width: 91.6666666667%;
  }

  /* Hide/show - when used for spacing */
  .medium--hide {
    display: none;
  }

  .medium--show {
    display: block;
  }

  .grid--uniform .medium--one-half:nth-child(2n+1),
.grid--uniform .medium--one-third:nth-child(3n+1),
.grid--uniform .medium--one-quarter:nth-child(4n+1),
.grid--uniform .medium--one-fifth:nth-child(5n+1),
.grid--uniform .medium--one-sixth:nth-child(6n+1),
.grid--uniform .medium--two-sixths:nth-child(3n+1),
.grid--uniform .medium--one-eighth:nth-child(8n+1),
.grid--uniform .medium--one-twelfth:nth-child(12n+1) {
    clear: both;
  }

  .grid--uniform-row-gutters .medium--one-whole:nth-child(n+2),
.grid--uniform-row-gutters .medium--one-half:nth-child(n+3),
.grid--uniform-row-gutters .medium--one-third:nth-child(n+4),
.grid--uniform-row-gutters .medium--one-quarter:nth-child(n+5),
.grid--uniform-row-gutters .medium--one-fifth:nth-child(n+6),
.grid--uniform-row-gutters .medium--one-sixth:nth-child(n+7),
.grid--uniform-row-gutters .medium--two-sixths:nth-child(n+4),
.grid--uniform-row-gutters .medium--one-eighth:nth-child(n+9),
.grid--uniform-row-gutters .medium--one-twelfth:nth-child(n+13) {
    margin-top: 30px;
  }

  .medium--show {
    display: block !important;
  }

  .medium--hide {
    display: none !important;
  }

  .medium--text-left {
    text-align: left !important;
  }

  .medium--text-right {
    text-align: right !important;
  }

  .medium--text-center {
    text-align: center !important;
  }
}
@media only screen and (max-width: 767.98px) {
  /** Whole */
  .small-down--one-whole {
    width: 100%;
  }

  /* Halves */
  .small-down--one-half {
    width: 50%;
  }

  /* Thirds */
  .small-down--one-third {
    width: 33.3333333333%;
  }

  .small-down--two-thirds {
    width: 66.6666666667%;
  }

  /* Quarters */
  .small-down--one-quarter {
    width: 25%;
  }

  .small-down--two-quarters {
    width: 50%;
  }

  .small-down--three-quarters {
    width: 75%;
  }

  /* Fifths */
  .small-down--one-fifth {
    width: 20%;
  }

  .small-down--two-fifths {
    width: 40%;
  }

  .small-down--three-fifths {
    width: 60%;
  }

  .small-down--four-fifths {
    width: 80%;
  }

  /* Sixths */
  .small-down--one-sixth {
    width: 16.6666666667%;
  }

  .small-down--two-sixths {
    width: 33.3333333333%;
  }

  .small-down--three-sixths {
    width: 50%;
  }

  .small-down--four-sixths {
    width: 66.6666666667%;
  }

  .small-down--five-sixths {
    width: 83.3333333333%;
  }

  /* Eighths */
  .small-down--one-eighth {
    width: 12.5%;
  }

  .small-down--two-eighths {
    width: 25%;
  }

  .small-down--three-eighths {
    width: 37.5%;
  }

  .small-down--four-eighths {
    width: 50%;
  }

  .small-down--five-eighths {
    width: 62.5%;
  }

  .small-down--six-eighths {
    width: 75%;
  }

  .small-down--seven-eighths {
    width: 87.5%;
  }

  /* Tenths */
  .small-down--one-tenth {
    width: 10%;
  }

  .small-down--two-tenths {
    width: 20%;
  }

  .small-down--three-tenths {
    width: 30%;
  }

  .small-down--four-tenths {
    width: 40%;
  }

  .small-down--five-tenths {
    width: 50%;
  }

  .small-down--six-tenths {
    width: 60%;
  }

  .small-down--seven-tenths {
    width: 70%;
  }

  .small-down--eight-tenths {
    width: 80%;
  }

  .small-down--nine-tenths {
    width: 90%;
  }

  /* Twelfths */
  .small-down--one-twelfth {
    width: 8.3333333333%;
  }

  .small-down--two-twelfths {
    width: 16.6666666667%;
  }

  .small-down--three-twelfths {
    width: 25%;
  }

  .small-down--four-twelfths {
    width: 33.3333333333%;
  }

  .small-down--five-twelfths {
    width: 41.6666666667%;
  }

  .small-down--six-twelfths {
    width: 50%;
  }

  .small-down--seven-twelfths {
    width: 58.3333333333%;
  }

  .small-down--eight-twelfths {
    width: 66.6666666667%;
  }

  .small-down--nine-twelfths {
    width: 75%;
  }

  .small-down--ten-twelfths {
    width: 83.3333333333%;
  }

  .small-down--eleven-twelfths {
    width: 91.6666666667%;
  }

  /* Hide/show - when used for spacing */
  .small-down--hide {
    display: none;
  }

  .small-down--show {
    display: block;
  }

  .grid--uniform .small-down--one-half:nth-child(2n+1),
.grid--uniform .small-down--one-third:nth-child(3n+1),
.grid--uniform .small-down--one-quarter:nth-child(4n+1),
.grid--uniform .small-down--one-fifth:nth-child(5n+1),
.grid--uniform .small-down--one-sixth:nth-child(6n+1),
.grid--uniform .small-down--two-sixths:nth-child(3n+1),
.grid--uniform .small-down--one-eighth:nth-child(8n+1),
.grid--uniform .small-down--one-twelfth:nth-child(12n+1) {
    clear: both;
  }

  .grid--uniform-row-gutters .small-down--one-whole:nth-child(n+2),
.grid--uniform-row-gutters .small-down--one-half:nth-child(n+3),
.grid--uniform-row-gutters .small-down--one-third:nth-child(n+4),
.grid--uniform-row-gutters .small-down--one-quarter:nth-child(n+5),
.grid--uniform-row-gutters .small-down--one-fifth:nth-child(n+6),
.grid--uniform-row-gutters .small-down--one-sixth:nth-child(n+7),
.grid--uniform-row-gutters .small-down--two-sixths:nth-child(n+4),
.grid--uniform-row-gutters .small-down--one-eighth:nth-child(n+9),
.grid--uniform-row-gutters .small-down--one-twelfth:nth-child(n+13) {
    margin-top: 20px;
  }

  .small-down--show {
    display: block !important;
  }

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

  .small-down--text-left {
    text-align: left !important;
  }

  .small-down--text-right {
    text-align: right !important;
  }

  .small-down--text-center {
    text-align: center !important;
  }
}
@media only screen and (max-width: 479.98px) {
  /** Whole */
  .extra-small--one-whole {
    width: 100%;
  }

  /* Halves */
  .extra-small--one-half {
    width: 50%;
  }

  /* Thirds */
  .extra-small--one-third {
    width: 33.3333333333%;
  }

  .extra-small--two-thirds {
    width: 66.6666666667%;
  }

  /* Quarters */
  .extra-small--one-quarter {
    width: 25%;
  }

  .extra-small--two-quarters {
    width: 50%;
  }

  .extra-small--three-quarters {
    width: 75%;
  }

  /* Fifths */
  .extra-small--one-fifth {
    width: 20%;
  }

  .extra-small--two-fifths {
    width: 40%;
  }

  .extra-small--three-fifths {
    width: 60%;
  }

  .extra-small--four-fifths {
    width: 80%;
  }

  /* Sixths */
  .extra-small--one-sixth {
    width: 16.6666666667%;
  }

  .extra-small--two-sixths {
    width: 33.3333333333%;
  }

  .extra-small--three-sixths {
    width: 50%;
  }

  .extra-small--four-sixths {
    width: 66.6666666667%;
  }

  .extra-small--five-sixths {
    width: 83.3333333333%;
  }

  /* Eighths */
  .extra-small--one-eighth {
    width: 12.5%;
  }

  .extra-small--two-eighths {
    width: 25%;
  }

  .extra-small--three-eighths {
    width: 37.5%;
  }

  .extra-small--four-eighths {
    width: 50%;
  }

  .extra-small--five-eighths {
    width: 62.5%;
  }

  .extra-small--six-eighths {
    width: 75%;
  }

  .extra-small--seven-eighths {
    width: 87.5%;
  }

  /* Tenths */
  .extra-small--one-tenth {
    width: 10%;
  }

  .extra-small--two-tenths {
    width: 20%;
  }

  .extra-small--three-tenths {
    width: 30%;
  }

  .extra-small--four-tenths {
    width: 40%;
  }

  .extra-small--five-tenths {
    width: 50%;
  }

  .extra-small--six-tenths {
    width: 60%;
  }

  .extra-small--seven-tenths {
    width: 70%;
  }

  .extra-small--eight-tenths {
    width: 80%;
  }

  .extra-small--nine-tenths {
    width: 90%;
  }

  /* Twelfths */
  .extra-small--one-twelfth {
    width: 8.3333333333%;
  }

  .extra-small--two-twelfths {
    width: 16.6666666667%;
  }

  .extra-small--three-twelfths {
    width: 25%;
  }

  .extra-small--four-twelfths {
    width: 33.3333333333%;
  }

  .extra-small--five-twelfths {
    width: 41.6666666667%;
  }

  .extra-small--six-twelfths {
    width: 50%;
  }

  .extra-small--seven-twelfths {
    width: 58.3333333333%;
  }

  .extra-small--eight-twelfths {
    width: 66.6666666667%;
  }

  .extra-small--nine-twelfths {
    width: 75%;
  }

  .extra-small--ten-twelfths {
    width: 83.3333333333%;
  }

  .extra-small--eleven-twelfths {
    width: 91.6666666667%;
  }

  /* Hide/show - when used for spacing */
  .extra-small--hide {
    display: none;
  }

  .extra-small--show {
    display: block;
  }

  .grid--uniform .extra-small--one-half:nth-child(2n+1),
.grid--uniform .extra-small--one-third:nth-child(3n+1),
.grid--uniform .extra-small--one-quarter:nth-child(4n+1),
.grid--uniform .extra-small--one-fifth:nth-child(5n+1),
.grid--uniform .extra-small--one-sixth:nth-child(6n+1),
.grid--uniform .extra-small--two-sixths:nth-child(3n+1),
.grid--uniform .extra-small--one-eighth:nth-child(8n+1),
.grid--uniform .extra-small--one-twelfth:nth-child(12n+1) {
    clear: both;
  }

  .grid--uniform-row-gutters .extra-small--one-whole:nth-child(n+2),
.grid--uniform-row-gutters .extra-small--one-half:nth-child(n+3),
.grid--uniform-row-gutters .extra-small--one-third:nth-child(n+4),
.grid--uniform-row-gutters .extra-small--one-quarter:nth-child(n+5),
.grid--uniform-row-gutters .extra-small--one-fifth:nth-child(n+6),
.grid--uniform-row-gutters .extra-small--one-sixth:nth-child(n+7),
.grid--uniform-row-gutters .extra-small--two-sixths:nth-child(n+4),
.grid--uniform-row-gutters .extra-small--one-eighth:nth-child(n+9),
.grid--uniform-row-gutters .extra-small--one-twelfth:nth-child(n+13) {
    margin-top: 20px;
  }

  .extra-small--show {
    display: block !important;
  }

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

  .extra-small--text-left {
    text-align: left !important;
  }

  .extra-small--text-right {
    text-align: right !important;
  }

  .extra-small--text-center {
    text-align: center !important;
  }
}
/*================ Build Grid Push Classes ================*/
/*================ Rich Text Editor ================*/
.rte {
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.rte h1 {
  font-size: calc(23px * 1.413);
}
.rte h2 {
  font-size: calc(23px * 1.18);
}
.rte h3 {
  font-size: 23px;
}
.rte h4 {
  font-size: calc(23px * 0.825);
}
.rte h5 {
  font-size: calc(23px * 0.706);
}
.rte h6 {
  font-size: calc(23px * 0.6);
}
.rte h1, .rte h2, .rte h3, .rte h4, .rte h5, .rte h6 {
  line-height: 1.4em;
  margin: 30px 0 15px;
}
.rte img {
  height: auto;
}
.rte table {
  table-layout: fixed;
}
.rte blockquote {
  font-size: 1.25rem;
}
.rte ul,
.rte ol {
  margin: 15px 0 15px 30px;
  padding: 0;
}
.rte li {
  list-style: inherit;
}
.rte ul {
  list-style: disc outside;
}
.rte ul ul {
  list-style: circle outside;
}
.rte ul ul ul {
  list-style: square outside;
}
.rte cite {
  font-size: 1rem;
}
.rte input,
.rte textarea,
.rte select {
  margin: 5px 5px 5px 0;
}
.text-center.rte ul,
.text-center.rte ol,
.text-center .rte ul,
.text-center .rte ol,
.center.rte ul,
.center.rte ol,
.center .rte ul,
.center .rte ol {
  margin-left: 0;
  list-style-position: inside;
}

.expanded-width {
  margin-left: -30px;
  margin-right: -30px;
}

@media only screen and (max-width: 767.98px) {
  .expanded-width {
    margin-left: -20px;
    margin-right: -20px;
  }
}
.rte .embed-container {
  overflow: initial;
  max-width: initial;
  padding-bottom: 0;
  height: auto;
}

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

.rte__video-wrapper {
  position: relative;
  height: 0;
  margin-left: -30px;
  margin-right: -30px;
  overflow: hidden;
  padding-bottom: calc(56.25% + (30px * 2) * 0.5625);
  border-radius: 15px;
}
.rte__video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

@media only screen and (max-width: 767.98px) {
  .rte__video-wrapper {
    margin-left: -20px;
    margin-right: -20px;
    border-radius: 0;
  }
}
@media only screen and (max-width: 479.98px) {
  .rte .expanded-width img {
    border-radius: 0;
  }

  .rte__video-wrapper {
    border-radius: 0;
  }
}
/*============================================================================
  Responsive tables, defined with .responsive-table on table element.
==============================================================================*/
@media only screen and (max-width: 767.98px) {
  .responsive-table {
    width: 100%;
  }
  .responsive-table thead {
    display: none;
  }
  .responsive-table tr {
    display: block;
  }
  .responsive-table th,
.responsive-table td {
    display: block;
    text-align: right !important;
    padding: 15px;
    margin: 0;
  }
  .responsive-table td::before {
    content: attr(data-label);
    float: left;
    text-align: left;
    padding-right: 10px;
  }
  .responsive-table td:empty::after {
    content: "-";
    opacity: 0;
  }

  .responsive-table-row + .responsive-table-row,
tfoot > .responsive-table-row:first-child {
    position: relative;
    margin-top: 10px;
    padding-top: 15px;
  }
  .responsive-table-row + .responsive-table-row::after,
tfoot > .responsive-table-row:first-child::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    border-bottom: 1px solid #f0f0f0;
  }
}
/*============================================================================
  Form scaffolding
    - Selectors setup for you to style form elements how you want
    - Focus, error, and disabled states are set to be extended
==============================================================================*/
input,
textarea,
select {
  background-color: transparent;
  color: inherit;
  border: 1px solid #bfbfbf;
  border-radius: 8px;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Helvetica Neue, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4em;
  max-width: 100%;
  padding: 12px 15px;
  margin: 5px 5px 5px 0;
}
input[disabled],
textarea[disabled],
select[disabled] {
  cursor: default;
  background-color: #000;
  border-color: #000;
}

textarea {
  min-height: 100px;
}

input[type=text],
input[type=number],
input[type=email],
input[type=password],
input[type=search] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/*================ Custom select style ================*/
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-position: right center;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' stroke='rgb(0, 0, 0)' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-color: transparent;
  background-size: 18px;
  padding-right: 28px;
  text-indent: 0.01px;
  text-overflow: "";
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/*================ Error styles ================*/
input.input-error,
select.input-error,
textarea.input-error {
  border-color: #000;
  background-color: transparent;
  color: #000;
}

.errors {
  background-color: #fce1e1;
  color: #f05c5d;
  padding: 5px 10px;
}

.error-message {
  background-color: #fce1e1;
  color: #f05c5d;
  padding: 5px 10px 0;
}

.form-success {
  background-color: #dfefdf;
  color: #5ead60;
  padding: 5px 10px;
}

/*================ Wrapper for input style ================*/
.input-wrapper {
  position: relative;
  border: 1px solid #bfbfbf;
  border-radius: 8px;
}
.input-wrapper label {
  position: absolute;
  left: 15px;
  top: 1.05em;
  margin-top: -0.7em;
  font-size: 0.75rem;
  line-height: 1.4em;
  color: #666666;
  transition: all 100ms;
  cursor: text;
  pointer-events: none;
  letter-spacing: initial;
}
.input-wrapper input,
.input-wrapper textarea,
.input-wrapper select {
  margin: 0;
  border: 0;
  padding-top: calc(0.875rem * 1.6);
  padding-bottom: calc(0.875rem * 1);
  width: 100%;
  color: inherit;
  letter-spacing: initial;
}
.input-wrapper textarea {
  width: calc(100% - 5px);
}
.input-wrapper.is-empty:not(.in-focus) label, .input-wrapper:empty:not(.in-focus) label {
  top: calc((24px + 1.4em) / 2);
  font-size: 1rem;
}

.input-wrapper-with-overlay-link .input-overlay-link {
  display: block;
  margin-top: 15px;
  text-align: right;
}

@media only screen and (min-width: 480px) {
  .input-wrapper-with-overlay-link {
    position: relative;
    text-align: left;
  }
  .input-wrapper-with-overlay-link input {
    width: 50%;
  }
  .input-wrapper-with-overlay-link .input-overlay-link {
    font-size: 0.875rem;
    line-height: 1.2em;
    display: flex;
    align-items: center;
    position: absolute;
    right: 15px;
    top: 0;
    height: 100%;
    max-width: calc(50% - 15px);
    margin-top: 0;
  }
}
.form-row {
  margin: 15px 0;
}

.input-wrapper input:-webkit-autofill {
  animation-name: onAutoFillStart;
  transition: background-color 50000s ease-in-out 0s;
}
.input-wrapper input:not(:-webkit-autofill) {
  animation-name: onAutoFillCancel;
}

/* Do not use focus outline unless tabbing */
.js body:not(.tab-used) *:focus {
  outline: none;
}

.placeholder-svg {
  display: block;
  fill: #bfbfbf;
  background-color: #efefef;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}

.placeholder-svg--small {
  width: 480px;
}

.placeholder-noblocks {
  padding: 40px;
  text-align: center;
}

.placeholder-background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.placeholder-background .icon {
  border: 0;
}

.placeholder-landscape-container {
  position: relative;
  overflow: hidden;
  height: 0;
  padding: 66.6% 0 0 0;
}
.placeholder-landscape-container .placeholder-svg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .placeholder-svg {
    width: 100%;
    height: 500px;
  }
  .one-quarter .placeholder-svg {
    height: 275px;
  }
}
html,
body {
  background-color: #ffffff;
  color: #000000;
}

main {
  padding-bottom: 30px;
  background-color: #ffffff;
  /*position: relative;
  z-index: 1;*/
}
main::before {
  content: " ";
  display: table;
}
main .accent-background {
  position: absolute;
  content: "";
  width: 100%;
  left: 0;
  top: 0;
  background-color: #ffffff;
}
main .accent-background + .shopify-section {
  position: relative;
  margin-top: 60px;
}
main .accent-background + .shopify-section--with-padding {
  margin-top: 30px;
}
@media only screen and (max-width: 767.98px) {
  main .accent-background {
    max-height: 25vh;
  }
}
@media only screen and (max-width: 480px) {
  main .accent-background {
    display: none;
  }
  main .accent-background + .shopify-section,
main .section-banner + .shopify-section {
    margin-top: 0;
  }
  main .accent-background + .shopify-section .large-row,
main .section-banner + .shopify-section .large-row {
    margin-top: 0;
  }
}

.template-blog main,
.template-article main {
  padding-bottom: 0;
}

.template-password main {
  background-color: transparent;
}

.focus-tint {
  content: " ";
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 250ms, visibility 250ms;
}
.search-bar-in-focus .focus-tint, .search-bar-open .focus-tint {
  opacity: 1;
  pointer-events: auto;
  cursor: pointer;
  visibility: visible;
}

.page-width {
  max-width: 1300px;
  margin: 0 auto;
}

.template-index .shopify-section:first-child .featured-blog {
  margin-top: 0;
}

.section {
  padding-bottom: 15px;
  padding-top: 15px;
  width: 100%;
}

.large-section {
  padding-bottom: 60px;
  padding-top: 60px;
}

.container {
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
}

.reading-width {
  margin: 0 auto;
  max-width: 960px;
  padding-left: 0px;
  padding-right: 0px;
}

.row {
  margin-top: 15px;
  margin-bottom: 15px;
}

.large-row {
  margin-top: 30px;
  margin-bottom: 30px;
}

.large-row-over {
  margin-top: 30px;
}

.large-row-under {
  margin-bottom: 30px;
}

.very-large-row-under {
  margin-bottom: 60px;
}

.full-width {
  min-width: 100%;
}
.full-width .rimage-outer-wrapper {
  min-width: 100%;
}

.full-height {
  min-height: 100vh;
}

.global-border-radius, .image-two .rimage-background, .article__heading-image .rimage-outer-wrapper, .article-overlay, .article-page .single-column-layout .article-featured-image.mobile-only .rimage-outer-wrapper, .collection-list-plain .product-block__image .rimage-outer-wrapper, .blog-articles-list__image .rimage-outer-wrapper, .full-width-slideshow:not(.full-width-slideshow--banner) .js-slideshow-section:not(.slick-initialized),
.full-width-slideshow:not(.full-width-slideshow--banner) .slide, [data-product-media] .rimage__image, .rte img {
  border-radius: 15px;
  overflow: hidden;
  
  position: relative;
  z-index: 1;
  
}

.global-border-radius-medium {
  border-radius: 8px;
  overflow: hidden;
  
  position: relative;
  z-index: 1;
  
}

.global-border-radius-small {
  border-radius: 4px;
  overflow: hidden;
  
  position: relative;
  z-index: 1;
  
}

.global-border-radius-overlays {
  border-radius: 12px;
  overflow: hidden;
  
  position: relative;
  z-index: 1;
  
}

.relative {
  position: relative;
}

.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.mobile-menu-open {
  max-height: 100vh;
  overflow: hidden;
}

.shopify-policy__container {
  padding-top: 30px;
}

@media only screen and (max-width: 767.98px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .large-row {
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .large-row-over {
    margin-top: 20px;
  }

  .large-row-under {
    margin-bottom: 20px;
  }

  .very-large-row-under {
    margin-bottom: 40px;
  }

  .no-margin-bottom-mobile {
    margin-bottom: 0;
  }

  .large-section {
    padding-bottom: 15px;
    padding-top: 15px;
  }

  .full-height {
    min-height: initial;
  }

  .reading-width {
    padding-left: 20px;
    padding-right: 20px;
  }

  .reading-width--no-mobile-padding {
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (max-width: 479.98px) {
  .container--no-mobile-padding {
    padding-left: 0;
    padding-right: 0;
  }

  .global-border-radius--not-extra-small {
    border-radius: 0;
  }
}
html,
body {
  font-size: 14px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Helvetica Neue, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5em;
  letter-spacing: 0.0em;
}

h1, h2, h3, h4, h5, h6,
.title,
.large-title,
.giant-title,
.massive-title,
.biggest-title,
.standard-title,
.small-title,
.section-popup.cc-popup .cc-popup-title,
#shopify-product-reviews .spr-form-title,
#shopify-product-reviews .spr-header-title {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Helvetica Neue, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4em;
  letter-spacing: 0.0em;
  text-transform: none;
  word-break: break-word;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a,
.title a,
.large-title a,
.giant-title a,
.massive-title a,
.biggest-title a,
.standard-title a,
.small-title a,
.section-popup.cc-popup .cc-popup-title a,
#shopify-product-reviews .spr-form-title a,
#shopify-product-reviews .spr-header-title a {
  color: inherit;
  text-decoration: none;
}
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover,
.title a:hover,
.large-title a:hover,
.giant-title a:hover,
.massive-title a:hover,
.biggest-title a:hover,
.standard-title a:hover,
.small-title a:hover,
.section-popup.cc-popup .cc-popup-title a:hover,
#shopify-product-reviews .spr-form-title a:hover,
#shopify-product-reviews .spr-header-title a:hover {
  color: inherit;
  text-decoration: none;
}

h1, h2,
.giant-title {
  font-size: calc(23px * 1.18);
}

h3,
.large-title {
  font-size: 23px;
}

h4,
.title,
.standard-title {
  font-size: calc(23px * 0.825);
}

h5,
.small-title,
.section-popup.cc-popup .cc-popup-title,
#shopify-product-reviews .spr-form-title,
#shopify-product-reviews .spr-header-title {
  font-size: calc(23px * 0.706);
}

h6,
.tiny-title {
  font-size: calc(23px * 0.6);
}

.massive-title {
  font-size: calc(23px * 1.413);
}

.biggest-title {
  font-size: calc(23px * 1.765);
}

.extra-large-text {
  font-size: calc(23px * 0.706);
  line-height: 1.5em;
}

.large-text {
  font-size: 1.25rem;
  line-height: 1.5em;
}

.standard-text {
  font-size: 1rem;
  line-height: 1.5em;
}

.small-text, .cart-summary__total-quantity-row, th, small {
  font-size: 0.875rem;
  line-height: 1.5em;
}

.tiny-text, .cc-select--label-inside .label, .cart-summary__quantity, .article__meta, .breadcrumbs, .sharing-label, #shopify-product-reviews .spr-review-reportreview, #shopify-product-reviews .spr-review-header-byline, .theme-product-reviews-summary, .qty-actual__label, .option-selector .label, .product-detail__vendor,
.product-detail__sku,
.product-detail__type {
  font-size: 0.75rem;
  line-height: 1.5em;
}

blockquote {
  margin: 30px 30px 30px 0;
  padding: 0 0 0 30px;
  border-left: 4px solid #f0f0f0;
  text-transform: none;
}

hr {
  margin: 30px 0;
  padding: 0;
  border: 0;
  height: 0;
  border-bottom: 1px solid #f0f0f0;
}

p {
  margin: 15px 0;
}

a {
  text-decoration: underline;
  color: #000000;
  transition: color 150ms;
  -webkit-text-decoration-skip: ink;
  text-decoration-skip: ink;
}
a:hover {
  color: #000000;
}

button.standard-link,
.standard-link {
  color: #000000;
  font-size: 1rem;
  text-decoration: underline;
  -webkit-text-decoration-skip: ink;
  text-decoration-skip: ink;
}
button.standard-link.standard-link--inherit-color,
.standard-link.standard-link--inherit-color {
  color: inherit;
}

.animated-link {
  color: #000000;
  text-decoration: none;
  background-image: linear-gradient(#000, #000), linear-gradient(#00A9CA, #00A9CA);
  background-size: 100% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.25s linear;
}
.animated-link.standard-link--inherit-color {
  color: inherit;
}

.animated-link:hover {
  background-size: 0 1px, 100% 1px;
}

.plain-link, .breadcrumbs-list__link,
.breadcrumbs-prod-nav__link, .theme-product-reviews-summary {
  color: inherit;
  text-decoration: none;
  transition: opacity 150ms;
}
.plain-link:hover, .breadcrumbs-list__link:hover,
.breadcrumbs-prod-nav__link:hover, .theme-product-reviews-summary:hover {
  color: inherit;
  text-decoration: none;
  opacity: 0.8;
}

.center {
  text-align: center;
}

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

@media only screen and (max-width: 767.98px) {
  h1, h2,
.giant-title {
    font-size: 23px;
  }

  h3,
.large-title {
    font-size: calc(23px * 0.825);
  }

  h4,
.title,
.standard-title {
    font-size: calc(23px * 0.706);
  }

  h5, h6,
.small-title,
.section-popup.cc-popup .cc-popup-title,
#shopify-product-reviews .spr-form-title,
#shopify-product-reviews .spr-header-title {
    font-size: calc(23px * 0.706);
  }

  .large-text {
    font-size: 1rem;
  }

  .massive-title {
    font-size: calc(23px * 1.18);
  }

  .biggest-title {
    font-size: calc(23px * 1.18);
  }
}
.tag {
  display: inline-block;
  margin: 0 5px 15px 0;
  padding: 0.5em 1em;
  background: #f2f2f2;
  color: inherit;
  text-decoration: none;
  font-size: 0.875rem;
  line-height: 1.5;
}
.tag:hover {
  background: #ebebeb;
  color: inherit;
}

table {
  margin: 30px auto;
  width: 100%;
  border-collapse: collapse;
}

tr {
  border: none;
}

th,
td {
  padding: 15px;
  text-align: left;
  border-top: 1px solid #f0f0f0;
}

th {
  font-weight: normal;
}

/*================ TEMPLATES ================*/
.collection-header {
  margin-bottom: 25px;
}
.collection-header .product-block {
  width: 50%;
  margin: 120px auto;
}

.standout-collection-bg {
  background-color: #ffffff;
  color: #000;
}

.collection-header--split .collection-header__content-container {
  padding-left: 20px;
  padding-right: 20px;
}

.collection-header__container--align-center {
  align-self: center;
}

@media only screen and (min-width: 768px) {
  .collection-header--split {
    display: flex;
    align-items: center;
    width: 100%;
  }
  .collection-header--split .collection-header__container {
    width: 50%;
  }
  .collection-header--split .collection-header__container .overlay {
    width: calc(100% - 120px);
  }
  .collection-header--split .collection-header__image-container {
    height: auto;
  }
  .collection-header--split .collection-header__image-container .rimage-outer-wrapper {
    margin-left: 0;
    width: 100%;
  }
  .collection-header--split .collection-header__content-container {
    padding-left: 60px;
    padding-right: 60px;
    padding-bottom: 90px;
  }
  .collection-header--split.collection-header--with-product {
    align-items: initial;
  }
}
.collection-header__content-container {
  padding-top: 30px;
  padding-bottom: 30px;
}
.collection-header__content-container .large-title {
  margin-top: 0;
}
.collection-header__content-container .collection-header__description {
  margin-top: 15px;
}

.collection-header__container--padding-bottom {
  padding-bottom: 90px;
}

.collection-header__image-container .rimage-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.collection-header__image-container .desktop-only {
  display: block;
}

.collection-header__image-container .mobile-only {
  display: none !important;
}

@media only screen and (max-width: 767.98px) {
  ._BubbleLauncher_q5k3n_1{
    visibility: hidden !important;
  }
  #tidio-chat, #tidio-chat-iframe{
    visibility: hidden;
  }
  .return_top{
    visibility: hidden !important;
  }
  .collection-header__image-container .desktop-only {
    display: none !important;
  }

  .collection-header__image-container .mobile-only {
    display: block;
  }

  .collection-header__product-container {
    display: none;
  }

  .collection-header__image-container .rimage-background {
    position: static;
  }

  .collection-header__container--padding-bottom {
    padding-bottom: 30px;
  }
}
@media only screen and (max-width: 479.98px) {
  .collection-header {
    border-radius: 0;
  }
}
@media only screen and (min-width: 768px) {
  .collection-header {
    margin-bottom: 30px;
  }
}
.cart-item {
  border-bottom: 1px solid #f0f0f0;
  padding-top: 45px;
  padding-bottom: 45px;
  flex-wrap: nowrap;
      position: relative;
}
.cart-item.cart-item--titles {
  border-top: 1px solid #f0f0f0;
  margin-top: 30px;
  padding-bottom: 15px;
  padding-top: 0;
}
.cart-item.cart-item--titles .description,
.cart-item.cart-item--titles .price,
.cart-item.cart-item--titles .quantity,
.cart-item.cart-item--titles .total {
  padding-top: 15px;
  padding-left: 0;
}
.cart-item .image {
  width: 160px;
  display: block;
  flex: 0 0 auto;
}
@media only screen and (max-width: 1023.98px) {
  .cart-item .image {
    width: 100px;
  }
}
.cart-item .image img {
  display: block;
}
.cart-item .description {
  flex-grow: 1;
  padding-left: 30px;
  padding-top: 15px;
}
.cart-item .description .backorder {
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.875rem;
}
.cart-item .description__title {
  text-decoration: none;
  color: inherit;
  font-size: 1rem;
  text-transform: none;
}
.cart-item .description__variant,
.cart-item .description__vendor {
  color: rgba(0, 0, 0, 0.7);
  margin: 0;
}
.cart-item .description__variant {
  font-size: 0.875rem;
  line-height: 1.4;
}
.cart-item .subscription-description {
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.4;
}
.cart-item .price,
.cart-item .quantity,
.cart-item .total {
  min-width: 145px;
  flex: 0 0 auto;
}
.cart-item .price,
.cart-item .quantity {
  width: 16.6666666667%;
}
.cart-item .price {
  font-size: 1rem;
}
.cart-item .unit-price {
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.7);
}
@media only screen and (max-width: 1023.98px) {
  .cart-item .price {
    width: 120px;
    min-width: 120px;
  }
  .cart-item .total {
    width: 100px;
    min-width: 100px;
  }
}
.cart-item .quantity {
  padding-top: 5px;
}
.cart-item .quantity__change {
  justify-content: center;
}
.cart-item .quantity__plus,
.cart-item .quantity__minus,
.cart-item .quantity__number {
  height: 38px;
  width: 38px;
}
.cart-item .quantity__plus,
.cart-item .quantity__minus {
  border-radius: 15px;
  border: 1px solid #f0f0f0;
  padding: 3px;
  margin: 0 5px;
  position: relative;
}
.cart-item .quantity__plus .icon,
.cart-item .quantity__minus .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.cart-item .quantity__plus:hover,
.cart-item .quantity__minus:hover {
  border: 1px solid #f0f0f0;
}
.cart-item .quantity__unusable {
  opacity: 0.5;
  background: #f0f0f0;
  pointer-events: none;
}
.cart-item .quantity__number {
  border: 0;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
  color: inherit;
}
.cart-item .quantity__remove {
  color: inherit;
  /* text-decoration: none; */
  line-height: 1em;
}
.quantity__remove:hover{
  color:#FF4400;
}
.quantity__remove:hover svg{
  fill:#FF4400 !important;
}
.cart-item .quantity__remove-x {
  height: 14px;
  width: 14px;
  line-height: 1em;
  vertical-align: middle;
}
.cart-item .quantity__remove-x svg {
  height: 100%;
  width: 100%;
}
.cart-item .quantity__remove-x + .tiny-text, .cart-item .cc-select--label-inside .quantity__remove-x + .label, .cc-select--label-inside .cart-item .quantity__remove-x + .label, .cart-item .quantity__remove-x + .cart-summary__quantity, .cart-item .quantity__remove-x + .article__meta, .cart-item .quantity__remove-x + .breadcrumbs, .cart-item .quantity__remove-x + .sharing-label, .cart-item #shopify-product-reviews .quantity__remove-x + .spr-review-reportreview, #shopify-product-reviews .cart-item .quantity__remove-x + .spr-review-reportreview, .cart-item #shopify-product-reviews .quantity__remove-x + .spr-review-header-byline, #shopify-product-reviews .cart-item .quantity__remove-x + .spr-review-header-byline, .cart-item .quantity__remove-x + .theme-product-reviews-summary, .cart-item .quantity__remove-x + .qty-actual__label, .cart-item .option-selector .quantity__remove-x + .label, .option-selector .cart-item .quantity__remove-x + .label, .cart-item .quantity__remove-x + .product-detail__vendor,
.cart-item .quantity__remove-x + .product-detail__sku,
.cart-item .quantity__remove-x + .product-detail__type {
  vertical-align: middle;
}
.cart-item .price,
.cart-item .total {
  padding-top: 15px;
}
.cart-item .total {
  text-align: right;
}

.cart-mobile-image {
  display: none;
  max-width: 200px;
  flex: 0 0 auto;
}
.cart-mobile-image img {
  display: block;
}

.total__title {
  display: inline-block;
  margin-right: 2em;
}

.total__amount {
  display: inline-block;
}

@media only screen and (max-width: 767.98px) {
  .subtotal-row {
    display: flex;
    flex-direction: column-reverse;
  }
}
.shipping-title {
  padding-top: 1.2em;
}

.cart-terms__checkbox {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  cursor: pointer;
  user-select: none;
  line-height: 24px;
}
.cart-terms__checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  left: 0;
  top: 0;
  height: 24px;
  width: 24px;
}
.cart-terms__checkbox input:checked ~ .cart-terms__check svg {
  opacity: 1;
}

.cart-terms__check {
  position: absolute;
  top: 0;
  left: 0;
  height: 24px;
  width: 24px;
  border: 1px solid #bfbfbf;
  pointer-events: none;
}
.cart-terms__check svg {
  opacity: 0;
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.25s;
}

.cart-submit {
  margin-right: 0;
}

.cart-finish {
  text-align: right;
}
.cart-finish .cart-submit {
  width: 30%;
}
@media only screen and (max-width: 768px) {
  .cart-finish{
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
    z-index: 999;
    padding: 0 20px 10px 20px;
    background: #fff;
    box-shadow: 0px 3px 15px rgb(0 0 0 / 15%);
  }
}
.additional-checkout-buttons {
  margin-top: 15px;
}

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

.cart-continue {
}

.cart-continue-shopping {
  text-align: right;
  display: block;
  margin: 30px 0 0 auto;
}

.cart-notes {
  margin-top: 15px;
  width: 50%;
}

.shipping-calculator {
  display: none;
}

.cart-trigger,
.shipping-calculator,
.cart-notes {
  margin-bottom: 15px;
}

.shipping-calculator .shipping-calculator-form {
  margin-left: -30px;
}
.shipping-calculator .field {
  flex: 1 0 auto;
  margin: 15px 0 15px 30px;
}
.shipping-calculator .field.calculator-submit {
  margin-right: 0;
  margin-left: 0;
  text-align: right;
}

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

@media only screen and (min-width: 768px) {
  .cart-checks__titles label {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767.98px) {
  .cart-items {
    margin-top: 30px;
  }

  .cart-item-container {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 20px;
    margin-bottom: 30px;
    display: flex;
  }

  .cart-item {
    padding: 0;
    margin-top: 0;
    flex-direction: column;
    width: auto;
    border: 0;
    height: 100%;
  }
  .cart-item .image,
.cart-item .price {
    display: none;
  }
  .cart-item .description__title,
.cart-item .price,
.cart-item .quantity,
.cart-item .total {
    font-size: 1.15rem;
  }
  .cart-item .description__variant,
.cart-item .quantity__remove .tiny-text,
.cart-item .quantity__remove .cc-select--label-inside .label,
.cc-select--label-inside .cart-item .quantity__remove .label,
.cart-item .quantity__remove .cart-summary__quantity,
.cart-item .quantity__remove .article__meta,
.cart-item .quantity__remove .breadcrumbs,
.cart-item .quantity__remove .sharing-label,
.cart-item .quantity__remove #shopify-product-reviews .spr-review-reportreview,
#shopify-product-reviews .cart-item .quantity__remove .spr-review-reportreview,
.cart-item .quantity__remove #shopify-product-reviews .spr-review-header-byline,
#shopify-product-reviews .cart-item .quantity__remove .spr-review-header-byline,
.cart-item .quantity__remove .theme-product-reviews-summary,
.cart-item .quantity__remove .qty-actual__label,
.cart-item .quantity__remove .option-selector .label,
.option-selector .cart-item .quantity__remove .label,
.cart-item .quantity__remove .product-detail__vendor,
.cart-item .quantity__remove .product-detail__sku,
.cart-item .quantity__remove .product-detail__type {
    font-size: 1rem;
  }
  .cart-item .description,
.cart-item .price,
.cart-item .quantity,
.cart-item .total {
    padding-left: 60px;
  }
  .cart-item .price,
.cart-item .quantity,
.cart-item .total {
    text-align: left;
    width: auto;
  }
  .cart-item .description {
    padding-top: 0;
  }
  .cart-item .price {
    padding-bottom: 20px;
  }
  .cart-item .quantity {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .cart-item .quantity__change {
    justify-content: flex-start;
    margin-right: 30px;
    margin-bottom: 20px;
  }
  .cart-item .quantity__minus,
.cart-item .quantity__plus {
    margin: 0;
  }
  .cart-item .quantity__remove {
    display: block;
    margin-bottom: 20px;
  }

  .cart-mobile-image {
    display: block;
    width: 30%;
  }

  .cart-item--titles {
    display: none;
  }

  .cart-checks {
    margin-bottom: 30px;
  }

  .cart-checks__titles {
    display: block;
    text-align: center;
  }
  .cart-policies{text-align:left !important;}
  .cart-terms__checkbox {
    display: inline-block;
    margin-bottom: 20px;
  }

  .cart-trigger {
    margin: 0 auto 20px;
  }

  .shipping-calculator-container,
.cart-notes-container {
    text-align: center;
  }

  .cart-continue {
    margin-bottom: 40px;
  }

  .cart-notes {
    width: 100%;
  }

  .shipping-calculator .shipping-calculator-form {
    margin-left: 0;
    flex-direction: column;
  }
  .shipping-calculator .field {
    width: 100%;
    margin: 15px 0;
  }
  .shipping-calculator .field.calculator-submit,
.shipping-calculator .field .get-rates {
    width: 100%;
  }

  .shipping-calculator #wrapper-response {
    margin-bottom: 20px;
  }

  .cart-finish .cart-submit,
.cart-continue-shopping {
    width: 100%;
    text-align: center;
  }

  .shipping-title {
    text-align: center;
    padding-top: 0;
  }

  .subtotal-row .total {
    text-align: center;
    display:flex;
    justify-content: space-between;
    margin-top:0;
  }

  [data-shopify-buttoncontainer] {
    justify-content: center;
  }
}
@media only screen and (max-width: 479.98px) {
  .cart-item .description,
.cart-item .price,
.cart-item .quantity,
.cart-item .total {
    padding-left: 20px;
  }
}
/*================ Giftcard Template ================*/
.template-giftcard {
  background: #ffffff;
  text-align: center;
  padding: 15px 0;
}

.giftcard {
  margin: 15px auto;
  max-width: 500px;
  padding: 20px;
}
.giftcard h1 {
  font-size: calc(23px * 0.825);
}
.giftcard h2 {
  font-size: calc(23px * 0.706);
}

.giftcard__illustration {
  position: relative;
  margin: 20px 0;
  overflow: hidden;
  border-radius: 15px;
}
.giftcard__illustration img {
  display: block;
}

.giftcard__code {
  background: #fff;
  border-radius: 15px;
  color: #484848;
  position: absolute;
  bottom: 10%;
  right: 50%;
  transform: translateX(50%);
  padding: 10px 20px;
  font-size: 22px;
  line-height: 1em;
  white-space: nowrap;
}

.giftcard-qr-row {
  margin: 15px 0;
}

.giftcard-qr {
  display: inline-block;
  background: #fff;
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-radius: 15px;
}
.giftcard-qr img {
  display: block;
  margin: 0 auto;
}

.giftcard-apple-wallet {
  margin: 15px 0;
}

.apple-wallet-image {
  display: block;
  margin: 0 auto;
}

.giftcard-button-row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
  flex-wrap: wrap;
}
.giftcard-button-row .btn {
  margin: 10px;
}

/*================ Print Giftcard Styles ================*/
@media print {
  @page {
    margin: 0.5cm;
  }
  p {
    orphans: 3;
    widows: 3;
  }

  html,
body {
    background-color: #fff;
    color: #000;
  }

  .print-giftcard,
.apple-wallet {
    display: none;
  }
}
body.template-order .product-summary__fulfillment dt {
  font-weight: bold;
}
body.template-order .product-summary__fulfillment dd {
  margin: 0 0 10px 0;
}

/*================ SECTIONS ================*/
.site-header {
  position: relative;
}

.page-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 10px 0;
}
.page-header .burger-icon {
  display: none;
}
.page-header > .store-logo-desktop--center {
  display: none;
}

.header-content {
  background-color: #ffffff;
  color: #000000;
  position: relative;
  z-index: 102;
  padding:0;
      box-shadow: 0 2px 5px #0000000f;
}

.store-logo {
  margin-left: auto;
  max-width: 100%;
  margin-right: 30px;
  line-height: 1.3;
  text-transform: none;
}
.template-giftcard .store-logo {
  margin: 0;
}

.store-logo-desktop--center {
  margin: 0;
  flex-shrink: 1;
  text-align: center;
}

.site-logo {
  color: #000000;
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Helvetica Neue, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  letter-spacing: 0.0em;
  position: relative;
  text-decoration: none;
  z-index: 5;
  text-transform: none;
  word-break: break-word;
}
.site-logo img {
  display: block;
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.site-header__logo-image {
  display: block;
}

.docked-mobile-navigation-container {
  flex-grow: 1;
}

.docked-mobile-navigation-container__inner {
  background-color: #ffffff;
}

.utils {
  align-items: center;
  display: flex;
  flex-grow: 1;
  justify-content: flex-end;
}
.utils a:not(.btn):not(.site-logo) {
  color: inherit;
  text-decoration: none;
}
.utils .store-logo-desktop--left {
  display: none;
}
.utils ~ .settings-open-bar {
  display: none;
}

.utils--center {
  justify-content: space-between;
  /*padding:0 30px*/
}
.utils--center .utils__item--search-icon {
  margin: 0 auto 0 0;
}
.utils--center .utils__right {
  margin-left: 0;
  width: auto;
}
.utils--center .utils__right .utils__item--search-center {
  display: none;
}

.utils__item--search-icon.mobile-only {
  display: none;
}

.utils__right {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  margin-left: 30px;
}

.utils__item {
  color: inherit;
  margin: 0 6px;
  opacity: 1;
  position: relative;
  transition: opacity 0.25s;
}
.utils__item:last-child {
  margin-right: 0;
}

.utils__item--hidden {
  opacity: 0;
  pointer-events: none;
}

.mobile-menu-utils {
  display: none;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  padding: 0 20px;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.no-js .utils__item--currency {
  display: none;
}

.header-cart {
  position: relative;
}
.header-cart .icon {
  height: 34px;
}
.header-cart .cart-summary {
  display: none;
  position: absolute;
  z-index: 3;
  top: 100%;
  right: 0;
  width: 412px;
  padding: 15px 30px 30px;
  background-color: #ffffff;
  border-bottom: 3px solid #000000;
      border-left: 1px solid rgba(0, 0, 0, 0.1);
      border-right: 1px solid rgba(0, 0, 0, 0.1);
      border-top: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.15);
}
@media only screen and (min-width: 940px) {
  .header-cart:hover .cart-summary {
    display: block;
  }
}

.header-cart__count {
  position: absolute;
  top: 61%;
  left: 0;
  width: 100%;
  margin-top: -0.5em;
  font-size: 14px;
  line-height: 1em;
  text-align: center;
  letter-spacing: initial;
}

.header-social-icons {
  display: none;
  margin: 0 20px 20px;
}
.header-social-icons .social-link {
  margin: 0 15px 15px 0;
  color: #000000;
}

.docking-header__utils {
  display: none;
  margin-top: -12px;
  color: #000000;
}
.docking-header__utils .search-bar__container {
  margin-left: auto;
  margin-right: auto;
  max-width: 700px;
}
.docking-header__utils .search-form__input {
  margin: 2px 0;
  color: inherit;
}
.docking-header__utils .search-form__input::placeholder {
  color: inherit;
}
.docking-header__utils .search-bar__results {
  color: #212B36;
  background: #fff;
}

@media only screen and (max-width: 939.98px) {
  .docked-header--dock .docked-mobile-navigation-container__inner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.75);
    z-index: 101;
  }
}
@media only screen and (min-width: 940px) {
  .docked-header--dock .docked-navigation-container__inner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.75);
    z-index: 101;
  }
  .docked-navigation-container.docked-navigation-container--center {
    width: 70%;
}
  .docked-header--dock .page-header .search-bar {
    display: none;
  }
  .docked-header--dock .docked-navigation-container .docking-header__utils {
    display: flex;
    flex-wrap: nowrap;
    min-width: 150px;
  }
  .docked-header--dock .docked-navigation-container .docking-header__utils.docking-header__center-layout-search {
    min-width: 150px;
    display: block;
  }
  .search-bar-open .docked-header--dock .docked-navigation-container .site-nav {
    opacity: 0;
    pointer-events: none;
  }
  .search-bar-open .docked-header--dock .docked-navigation-container .header-navigation {
    z-index: 101;
  }
  .docked-header--dock .docked-navigation-container.docked-navigation-container--center .docking-header__left-layout-search {
    display: none;
  }
}

.site-header--logo-only {
  margin-bottom: 30px;
}
.site-header--logo-only .page-header {
  justify-content: space-around;
}

@media only screen and (max-width: 939.98px) {
  .header-content {
    padding: 0;
  }

  .page-header {
    display: block;
    padding: 0;
  }
  .page-header .burger-icon {
    display: block;
    z-index: 2;
    margin-left: -8px;
    padding: 8px;
  }
  .page-header > .store-logo-mobile--inline {
    display: none;
  }
  .page-header > .store-logo-mobile--own_row {
    display: block;
    padding-bottom: 0;
  }
  .page-header > .store-logo-mobile--own_row.hide-for-search {
    opacity: 1;
  }

  .store-logo {
    padding: 20px;
  }
  .store-logo.store-logo--image .rimage-outer-wrapper {
    max-height: 80px;
    width: auto;
  }

  .utils {
    padding: 15px 20px;
  }

  .store-logo {
    text-align: center;
    margin: 0 auto;
  }

  .site-logo {
    font-size: calc(24px / 1.5 );
  }
  .site-logo img {
    width: 100px;
    /* margin-left:0; */
  }
  .utils__right .utils__item{margin:0 3px;}
.utils__right .utils__item img{width:24px;height:24px;margin-right:6px !important;}
.utils__right .utils__item svg{width:20px !important;height:20px !important;}
  .utils {
    position: relative;
    width: 100%;
    justify-content: space-between;
  }
  .utils .store-logo-mobile--own_row {
    display: none;
  }
  .utils .store-logo.store-logo-mobile--inline {
    display: block;
    padding: 0;
    margin-right: auto;
    flex-grow: 1;
    text-align: center;
  }
  .utils ~ .settings-open-bar {
    display: block;
  }
  .utils .utils__right {
    width: auto;
    margin-left: 0;
  }
  .utils .utils__right > .utils__item--search-icon {
    display: none;
    margin: 0 6px;
    width: auto;
  }

  .utils--center {
    justify-content: space-between;
  }
  .utils--center > .utils__item--search-icon {
    display: none;
  }

  .utils__item--desktop-search {
    display: none;
  }

  .utils__item--search-icon.desktop-only {
    display: none;
  }

  .utils__item--search-icon.mobile-only {
    display: block;
  }

  .social-link {
    margin: 0 10px;
  }

  .mobile-menu-utils {
    align-items: center;
    display: flex;
  }
  .mobile-menu-utils .utils__item {
    min-width: 50px;
  }

  .header-social-icons {
    display: block;
    margin-bottom: 60px;
  }

  .header-content .utils__item--currency {
    display: none;
  }

  .mobile-menu-search-bar .search-form__input {
    color: #000000;
  }
  .mobile-menu-search-bar .search-form__input::placeholder {
    color: #000000;
  }
}
@media only screen and (min-width: 940px) {
  .utils__item > a {
    display: inline-block;
  }
}
.page-footer__inner {
  padding-bottom: 45px;
  background-color: #f7db5e;
  color: #000000;
}

.page-footer__subscribe {
  padding: 30px 0;
}
.page-footer__subscribe a {
  color: inherit;
}

.subscribe-form__heading,
.subscribe-form__text {
  margin-bottom: 0;
}

.subscribe-form__text p {
  margin-top: 0;
}

.subscribe-form__heading {
  margin-bottom: 1em;
  font-weight: 500;
}

.subscribe-form__heading + .subscribe-form__text p {
  margin-top:15px;
}

.subscribe-form__inputs .input-wrapper {
  border-top-color: transparent;
  border-left: 0;
  border-right: 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 0;
  padding-left: 0;
}
.subscribe-form__inputs .input-wrapper label {
        color: rgba(0, 0, 0, 0.7);
  left: 0;
  top: 0;
}
.subscribe-form__inputs .subscribe-form__email {
  border: 0;
  border-radius: 0;
  color: #000000;
  margin: 0;
  padding-left: 0;
  transition: background-color 0.25s;
}
.subscribe-form__inputs .subscribe-form__email:focus {
  outline: 0;
}
.subscribe-form__inputs .subscribe-form__email::placeholder {
  color: #000000;
  opacity: 0.75;
}

.subscribe-form__response {
  display: flex;
  justify-content: center;
}

.page-footer__hr {
  margin: 0;
    border-color: rgba(0, 0, 0, 0.15);
}

.page-footer__blocks {
  padding-top: 30px;
}
.page-footer__blocks .icon {
  fill: #000000;
}

.footer-block__heading {
  margin: 0 0 15px;
  color: #000000;
  font-weight: 500;
}

.footer-block .nav__item {
  padding: 0.3em 20px 0.3em 0;
}
.footer-block .nav__link {
  display: inline;
      color:#333;
  font-size: 14px;
  font-weight: 400;
}

.page-footer__end {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  margin-top: 90px;
}

.payment-icons {
  margin-top: 8px;
  text-align: right;
}

.payment-icon {
  display: inline-block;
  margin-right: 2px;
  margin-bottom: 6px;
}

.payment-icon-svg {
  height: 24px;
  width: 38px;
  vertical-align: top;
}

.copyright-text {
  display: block;
  font-size: 10.5px;
  margin-top: 8px;
}
.copyright-text a {
  color: #000000;
  fill: #000000;
  text-decoration: none;
}
.foot_tops {
    background: #3e3e3e;
    color: #f7db5e;
}
@media only screen and (min-width: 768px) {
  .page-footer__subscribe {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  .page-footer__subscribe .input-wrapper {
    flex: 1 1 auto;
    border-bottom: 0;
  }

  .subscribe-form__heading,
.subscribe-form__text {
    text-align: left;
  }

  .subscribe-form__inputs {
    display: flex;
    align-items: flex-start;
        border-bottom: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .sticky-footer-partly-visible main,
.sticky-footer-fully-visible main {
    border-bottom: 0;
  }

  .sticky-footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
  }
  .no-js .sticky-footer {
    position: static;
  }

  .sticky-footer-taller-than-page .sticky-footer {
    top: 0;
    bottom: auto;
  }

  .sticky-footer-scrolled-into.sticky-footer-taller-than-page .sticky-footer,
.sticky-footer-partly-visible .sticky-footer {
    position: static;
  }

  .page-footer__subscribe {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
@media only screen and (max-width: 767.98px) {
  .page-footer__blocks.grid {
    margin-left: 0;
  }

  .footer-block {
    padding-left: 0;
  }
  .footer-block:not(:last-child) {
    margin-bottom: 0;
    padding-bottom: 0;
          border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  }

  .page-footer__end {
    margin-top: 30px;
    flex-direction: column;
    align-items: flex-start;
  }
  .page-footer__end > div:first-child {
    order: 1;
  }

  .subscribe-form {
    padding-bottom: 30px;
  }
  .subscribe-form:after {
    left: -20px;
    width: calc(100% + (20px * 2));
  }
  .subscribe-form .input-wrapper {
    margin-bottom: 0;
  }

  .subscribe-form__heading {
    font-size: 14px;
  }

  .payment-icons {
    margin-bottom: 30px;
    text-align: left;
  }
}
@media only screen and (max-width: 479.98px) {
  .subscribe-form::after {
    left: 0;
    width: 100%;
  }

  .subscribe-form__email {
    margin-bottom: 15px;
    width: 100%;
  }

  .subscribe-form__submit {
    margin-left: 0;
  }
}
.product-layout-grid__images,
.product-layout-grid__detail {
  padding-top: 30px;
}

.product-detail__thumbnails {
  display: none;
}

.product-detail__thumbnail {
  position: relative;
}
.product-detail__thumbnail::after {
  opacity: 0;
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: #000000;
  transition: opacity 0.25s;
}

@media only screen and (min-width: 768px) {
  .product-layout-grid {
    display: flex;
    justify-content: center;
  }

  .product-layout-grid__images {
    width: 56%;
  }
  .product-layout-grid__images .sticky-element {
    top: 30px;
  }
  .product-layout-grid__images.layout--thumbnails-left.has-multiple-images .product-layout-grid__images-and-thumbs {
    display: flex;
  }
  .product-layout-grid__images.layout--thumbnails-left.has-multiple-images .product-layout-grid__images-and-thumbs .product-detail__images-container {
    order: 1;
    width: 83%;
    align-self: flex-start;
  }
  .product-layout-grid__images.layout--thumbnails-left.has-multiple-images .product-layout-grid__images-and-thumbs .product-detail__thumbnails {
    width: 17%;
    flex: 0 0 auto;
    display: block;
    margin: 0;
    padding: 0 15px 0 0;
  }
  .product-layout-grid__images.layout--thumbnails-left.has-multiple-images .product-layout-grid__images-and-thumbs .product-detail__thumbnail {
    display: block;
    width: auto;
    margin: 0 0 15px;
  }

  .product-layout-grid__detail {
    padding-left: 60px;
    width: 44%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279.98px) {
  .product-layout-grid--small {
    margin: 0 auto;
    width: 85%;
  }
  .product-layout-grid--small .product-layout-grid__images {
    width: 50%;
  }
  .product-layout-grid--small .product-layout-grid__detail {
    width: 50%;
  }
}
@media (min-width: 1280px) {
  .product-layout-grid--small {
    margin: 0 auto;
    width: 75%;
  }
  .product-layout-grid--small .product-layout-grid__images {
    width: 50%;
  }
  .product-layout-grid--small .product-layout-grid__detail {
    width: 50%;
  }

  .product-layout-grid--medium {
    margin: 0 auto;
    width: 83.3%;
  }

  .product-layout-grid--large .product-detail__thumbnail {
    border-radius: 12px;
  }
}
[data-product-media] {
  display: block;
  margin: 0 0 15px;
  transition: opacity 250ms;
}
@media only screen and (max-width: 767.98px) {
  [data-product-media] {
    margin-bottom: 0;
  }
}
.pswp__bg {
  background-color: #266070;
}

@media only screen and (min-width: 768px) {
  .product-detail__thumbnails {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-left: -15px;
  }

  .product-detail__thumbnail {
    margin: 0 0 15px 15px;
    width: calc(25% - 15px);
  }
}
@media (min-width: 1000px) {
  .product-detail__thumbnail {
    width: calc(20% - 15px);
  }
}
.thumb-active::after {
  opacity: 1;
}

.variant-dim {
  opacity: 0.5;
}

.product-detail .grid__item {
  padding-top: 30px;
}

.product-detail__title-area {
  margin-bottom: 15px;
}
@media only screen and (max-width: 767.98px) {
  .product-detail__title-area {
    margin: 0 0 30px;
    text-align: center;
  }
}

.product-detail__title {
  text-transform: none;
  font-size:35px;
}

@media only screen and (min-width: 768px) {
  .product-description__no-expand .rte__video-wrapper,
.product-description__no-expand .expanded-width {
    margin-left: 0;
    margin-right: 0;
  }
}
.product-detail__type,
.product-detail__sku {
  margin-top: 5px;
}

.product-detail__price {
  margin-bottom: 15px;
  margin-top: 15px;
}

.option-selector {
  padding: 0;
  border: 0;
}
.option-selector .label {
  margin-bottom: 0.5em;
}

.option-selector__btns {
  display: flex;
  flex-wrap: wrap;
  margin-top: -10px;
}

.opt-btn {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.opt-label {
  min-width: 44px;
  margin: 10px 10px 0 0;
  padding: 9px 14px;
  border: 1px solid #bfbfbf;
  border-radius: 8px;
  text-align: center;
}
.opt-label:hover {
  background: rgba(0, 0, 0, 0.05);
  cursor: pointer;
}
.tab-used .opt-btn:focus + .opt-label {
  outline: auto Highlight;
  outline: auto -webkit-focus-ring-color;
}

.opt-btn:checked + .opt-label {
  background-color: #f7db5e;
  border-color: #f7db5e;
  color: #000000;
  cursor: default;
}

.opt-swatch--image,
.opt-swatch--dot {
  padding: 2px;
  background: none;
  border: 2px solid rgba(0, 0, 0, 0.12);
  font-size: 0;
  min-width: 0;
  margin-right: 10px;
}

.opt-swatch--image {
  width: 44px;
  height: 44px;
  border-radius: 4px;
}
.opt-swatch--image::before {
  border-radius: calc(4px - 2px);
}

.opt-swatch--dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.opt-swatch--dot::before {
  border-radius: 50%;
}

.opt-btn:checked + .opt-label[data-swatch] {
  border-color: #000000;
  background: none;
}

.is-unavailable + .opt-label {
  position: relative;
  overflow: hidden;
}
.is-unavailable + .opt-label::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  left: -10px;
  width: calc(100% + 20px);
  border-top: 2px solid #000000;
  opacity: 0.12;
  transform: rotate(-30deg);
}

.opt-btn:checked.is-unavailable + .opt-label::after {
  border-color: #000000;
  opacity: 0.8;
}

.opt-btn:checked.is-unavailable + .opt-label[data-swatch]::after {
  border-color: #000000;
  opacity: 0.12;
}

[data-swatch]::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-color: var(--swatch-background-color);
  background-image: var(--swatch-background-image);
  position: relative;
}

.cc-select__btn[data-swatch]::before,
.cc-select__option[data-swatch]::before {
  height: 16px;
  width: 16px;
  margin-right: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.product-inventory {
  color: #3f8545;
}
.product-inventory.product-inventory--low {
  color: #cd201a;
}
.product-inventory:not(.product-inventory--none) {
  margin-bottom: 15px;
}

.product-inventory__status {
  font-weight: 400;
}

.product-detail .qty-wrapper + .payment-buttons {
  margin-top: 15px;
}

.option-selector-fieldset {
  border: none;
  padding: 0;
}

.qty-actual {
  display: none;
  position: relative;
}

.qty-actual__label {
  position: absolute;
  top: 8px;
  left: 14px;
  line-height: 1;
  letter-spacing: initial;
  opacity: 0.6;
}

.qty-actual__input {
  width: 100%;
  margin: 0;
  padding: 22px 14px 5px 14px;
  line-height: 1.2;
}

.qty-wrapper.hide-proxy > .cc-select,
.no-js .qty-wrapper > .cc-select {
  display: none;
}
.qty-wrapper.hide-proxy .qty-actual,
.no-js .qty-wrapper .qty-actual {
  display: block;
}

.payment-buttons .btn {
  width: calc(100% - 2px);
  min-height: 44px;
}
.payment-buttons .shopify-payment-button__button {
  margin: 1px;
  border: 0;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: normal;
  overflow: hidden;
  border-radius: 5px;
  min-height: 44px;
}
.payment-buttons .shopify-payment-button {
  margin-top: 15px;
  transition: opacity 0.25s;
}
.payment-buttons .shopify-payment-button .shopify-payment-button__button {
  width: calc(100% - 2px);
}
.payment-buttons .shopify-payment-button .shopify-payment-button__button--unbranded {
  padding: 11px 39px;
  padding-left: 30px;
  padding-right: 30px;
  background-color: #f7db5e;
  border: 0;
  box-shadow: 0 0 0 1px #f7db5e;
  color: #000000;
  transition: background-color 0.25s, border-color 0.25s, box-shadow 0.25s, color 0.25s, opacity 0.25s;
}
.payment-buttons .shopify-payment-button .shopify-payment-button__button--unbranded:hover {
  background-color: #fcf1bf;
  box-shadow: 0 0 0 1px #fcf1bf;
  color: #000000;
}
.payment-buttons .shopify-payment-button .shopify-payment-button__more-options {
  margin-top: 16px;
  margin-bottom: 12px;
  font-size: 0.875rem;
  transition: opacity 0.25s;
}
.payment-buttons .shopify-payment-button .shopify-payment-button__more-options.shopify-payment-button__button--hidden {
  display: none;
}

.variant--unavailable .shopify-payment-button {
  opacity: 0;
}

.product-detail__detail.sticky-element {
  top: 30px;
}
.product-detail__detail > .row:first-of-type,
.product-detail__detail > .sharing:first-of-type {
  margin-top: 0;
}
.product-detail__detail .tabs li {
  margin:0;
}
.product-detail__detail .tabs li:first-child {
  margin-left: 0;
}
.product-detail__detail .tabs li:last-child {
  margin-right: 0;
}
.product-detail__detail button {
  padding-left: 30px;
  padding-right: 30px;
}

.theme-product-reviews-summary {
  display: block;
  margin-top: 0.8em;
  margin-bottom: 15px;
}
.theme-product-reviews-summary a {
  text-decoration: none;
}
.theme-product-reviews-summary a .cc-rating-custom-caption {
  text-decoration: underline;
}
.theme-product-reviews-summary .cc-rating-custom-caption {
  margin-left: 0.5em;
  white-space: nowrap;
}

#shopify-product-reviews {
  margin: 1em 0 2em;
}
#shopify-product-reviews .spr-container {
  padding: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}
#shopify-product-reviews .spr-header {
  padding: 30px 0;
}
#shopify-product-reviews .spr-header .spr-icon {
  width: 16px;
  height: 16px;
}
#shopify-product-reviews .spr-form-title {
  margin: 0 0 0.5em;
}
#shopify-product-reviews .spr-form {
  margin: 0;
  padding: 15px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
#shopify-product-reviews .spr-reviews {
  margin: 0;
  padding: 0 0 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
#shopify-product-reviews .spr-review {
  margin: 0;
  padding: 30px 0 0;
  border: 0;
}
#shopify-product-reviews .spr-review .spr-review-header-starratings {
  margin-bottom: 0.9em;
}
#shopify-product-reviews .spr-review .spr-icon {
  font-size: 100%;
}
#shopify-product-reviews .spr-review:first-child {
  margin-top: 0;
}
#shopify-product-reviews .spr-review-header-title {
  font-size: 1.25rem;
}
#shopify-product-reviews .spr-review-header-byline {
  display: block;
  margin: 0.3em 0 1em;
  font-style: normal;
  opacity: 0.6;
}
#shopify-product-reviews .spr-review-header-byline strong {
  font-weight: normal;
}
#shopify-product-reviews .spr-review-content {
  margin: 0 0 15px;
}
#shopify-product-reviews .spr-review-content-body {
  font-size: 1rem;
}
#shopify-product-reviews .spr-review-reportreview {
  float: none;
}
#shopify-product-reviews .spr-pagination {
  margin-top: 30px;
  padding-top: 30px;
  width: 100%;
}
#shopify-product-reviews .spr-pagination a {
  color: inherit;
  text-decoration: none;
}
#shopify-product-reviews .spr-pagination .spr-pagination-next,
#shopify-product-reviews .spr-pagination .spr-pagination-prev {
  position: static;
}
#shopify-product-reviews .spr-pagination .spr-pagination-next,
#shopify-product-reviews .spr-pagination .spr-pagination-prev,
#shopify-product-reviews .spr-pagination .spr-pagination-page {
  margin: 0 8px;
  padding: 0 2px;
}
#shopify-product-reviews .spr-pagination .spr-pagination-page.is-active {
  font-weight: normal;
  border-bottom: 2px solid;
}
#shopify-product-reviews .spr-summary-actions {
  margin-top: 1em;
}
#shopify-product-reviews .spr-icon {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 1px;
}
#shopify-product-reviews .spr-icon::before,
#shopify-product-reviews .spr-icon-star::after,
#shopify-product-reviews .spr-icon-star-half-alt::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 100% 100%;
}
#shopify-product-reviews .spr-icon::before {
  background-image: url("data:image/svg+xml,%3Csvg fill='rgba(247, 219, 94, 0.2)' width='13' height='13' viewBox='0 0 13 13' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M 6.4993297,0.90857825 8.3037181,4.5640706 12.338775,5.1538548 9.4190517,7.9976636 10.108106,12.015203 6.4993297,10.117382 2.890553,12.015203 3.5796075,7.9976636 0.65988518,5.1538548 4.6949414,4.5640706 Z'%3E%3C/path%3E%3C/svg%3E");
}
#shopify-product-reviews .spr-icon-star::after,
#shopify-product-reviews .spr-icon-star-half-alt::after {
  background-image: url("data:image/svg+xml,%3Csvg fill='rgb(247, 219, 94)' width='13' height='13' viewBox='0 0 13 13' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M 6.4993297,0.90857825 8.3037181,4.5640706 12.338775,5.1538548 9.4190517,7.9976636 10.108106,12.015203 6.4993297,10.117382 2.890553,12.015203 3.5796075,7.9976636 0.65988518,5.1538548 4.6949414,4.5640706 Z'%3E%3C/path%3E%3C/svg%3E");
}
#shopify-product-reviews .spr-icon-star-half-alt::after {
  clip: rect(0px, 7.5px, 14px, 0px);
}
@media (min-width: 800px) {
  #shopify-product-reviews .spr-reviews {
    display: flex;
    flex-wrap: wrap;
  }
  #shopify-product-reviews .spr-reviews .spr-review {
    width: 50%;
  }
  #shopify-product-reviews .spr-review:nth-child(2n) {
    padding-left: 15px;
  }
  #shopify-product-reviews .spr-review:nth-child(2n-1) {
    padding-right: 15px;
  }
}
@media (min-width: 481px) {
  #shopify-product-reviews .spr-summary-actions-newreview {
    margin-top: -1.5em;
  }
}
@media (max-width: 480px) {
  #shopify-product-reviews .spr-summary-actions {
    display: block;
  }
}

.add-in-progress .option-selector a, .add-in-progress .option-selector select, .add-in-progress .option-selector input {
  pointer-events: none;
}

.full-width-slideshow .slick-dots {
    position: absolute;
    margin: 0 auto;
    bottom: 20px;
}

.full-width-slideshow-controls {
    width: 40px;
    height: 40px;
    background: #fffbf4;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    box-shadow:1px 4px 8px rgba(0,0,0,.15)
}
.full-width-slideshow-controls .icon {
  transition: opacity 0.25s;
}
.full-width-slideshow-controls .icon:hover {
  opacity: 0.7;
}

.full-width-slideshow-controls--prev {
  left: 0;
}

.full-width-slideshow-controls--next {
  right: 0;
}

.full-width-slideshow .slide {
  display: none;
}
.full-width-slideshow .slide:first-child {
  display: block;
}
.full-width-slideshow .slide .placeholder-svg {
  position: absolute;
  top: 0;
  left: 0;
}
.full-width-slideshow .slick-initialized .slide {
  display: block;
}

.full-width-slideshow--banner.large-row {
  margin-top: 0;
}

@media only screen and (max-width: 767.98px) {
  .full-width-slideshow {
    margin-bottom: 0;
    margin-top: 0;
  }
  .full-width-slideshow .slide .overlay {
    margin-bottom: -30px;
  }
  .full-width-slideshow .overlay {
    padding: 45px 30px;
  }
  .full-width-slideshow .overlay--bg-matches-page-bg,
.full-width-slideshow .overlay--use-body-colours-mobile {
    padding-bottom: 20px;
  }

  .full-width-slideshow:not(.full-width-slideshow--banner) .slide .rimage-outer-wrapper,
.full-width-slideshow:not(.full-width-slideshow--banner) .slide .placeholder-svg {
    border-radius: 15px;
    overflow: hidden;
  }

  .full-width-slideshow--banner .container {
    padding: 0;
  }

  .full-width-slideshow-controls--prev {
    left: 20px;
  }

  .full-width-slideshow-controls--next {
    right: 20px;
  }
}
@media only screen and (max-width: 479.98px) {
  .full-width-slideshow,
.full-width-slideshow:not(.full-width-slideshow--banner) {
    padding-top: 0;
    border-radius: 0;
  }
  .full-width-slideshow .slide,
.full-width-slideshow:not(.full-width-slideshow--banner) .slide {
    border-radius: 0;
  }
  .full-width-slideshow .slide .rimage-outer-wrapper,
.full-width-slideshow .slide .placeholder-svg,
.full-width-slideshow:not(.full-width-slideshow--banner) .slide .rimage-outer-wrapper,
.full-width-slideshow:not(.full-width-slideshow--banner) .slide .placeholder-svg {
    border-radius: 0;
  }
  .full-width-slideshow .slick-list,
.full-width-slideshow:not(.full-width-slideshow--banner) .slick-list {
    border-radius: 0;
  }
}
.rich-text-section {
  padding-left: 60px;
  padding-right: 60px;
}
.rich-text-section .rte {
  margin-top: 15px;
  margin-bottom: 15px;
}

.rich-text-section__title {
  margin-bottom: 15px;
}

.rich-text-section__btn-row .btn {
  margin-top: 15px;
}

@media only screen and (max-width: 767.98px) {
  .rich-text-section {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media only screen and (max-width: 479.98px) {
  .rich-text-section,
.rich-text {
    border-radius: 0;
  }
}
.split-image-section {
  overflow: hidden;
}

.split-image {
  width: 100%;
}

@media only screen and (max-width: 767.98px) {
  .split-image-section .split-image {
    border-radius: 15px;
    overflow: hidden;
  }
  .split-image-section .split-image__content-container {
    border-radius: 0;
  }
  .split-image-section .block-2 .overlay {
    margin-bottom: -20px;
  }
}
@media only screen and (max-width: 479.98px) {
  .split-image-section .split-image {
    border-radius: 0;
  }
}
.featured-product-section {
  align-items: center;
}
.featured-product-section .btn {
  margin-top: 15px;
}
.featured-product-section .product-price {
  margin: 15px 0;
}

.featured-product-section--reverse {
  flex-direction: row-reverse;
}

.featured-product-image {
  position: relative;
}

.featured-product-image-link {
  position: relative;
  overflow: hidden;
  backface-visibility: hidden;
  display: block;
}
.featured-product-image-link .rimage-background {
  border-radius: 0;
}

.featured-product__title-container {
  margin-bottom: 15px;
}

@media only screen and (min-width: 768px) {
  .featured-product-image--inset {
    padding-left: 30px;
  }

  .featured-product-section--reverse .featured-product-image--inset {
    padding-left: 0;
    padding-right: 30px;
  }
}
.featured-product-content-container {
  height: 100%;
  min-height: 100%;
}

.featured-product-content {
  padding: 60px;
}
.featured-product-content .featured-product-link-mobile-only {
  display: none;
}

@media only screen and (max-width: 767.98px) {
  .featured-product-content {
    padding: 45px 30px;
  }
  .featured-product-content .featured-product-link-mobile-only {
    display: inline-block;
  }
  .featured-product-content .featured-product-link-desktop-only {
    display: none;
  }

  .featured-product-image-link {
    background-color: initial;
  }
}
.featured-blog {
  margin-top: -30px;
}

.accent-background + .shopify-section .featured-blog,
.section-banner + .shopify-section .featured-blog {
  margin-top: 0;
}

.featured-blog .article__title {
  margin: 12px 0 10px;
  font-size: 24px;
    line-height: 1;
    display: -webkit-box; /* Safari */
   -webkit-line-clamp: 2; /* number of lines to show */
   -webkit-box-orient: vertical;
   overflow: hidden;
}

.featured-blog__header {
  padding-top: 30px;
      display: flex;
    align-items: flex-end;
}

.featured-blog__header-image {
  height: calc(100vh - 60px);
}

.featured-blog__article:first-child {
  margin-top: 30px;
}
.featured-blog__article-content p{
      color: #303c43;
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
    margin-bottom: 20px;
    display: -webkit-box; /* Safari */
   -webkit-line-clamp: 3; /* number of lines to show */
   -webkit-box-orient: vertical;
   overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .featured-blog__article-content {
    padding: 0 30px;
  }
}

.featured-blog__article-image {
  display: block;
}

@media only screen and (max-width: 767.98px) {
  .featured-blog {
    margin-top: 0;
  }
  .featured-blog .featured-blog__header {
    margin-top: -30px;
  }
  .featured-blog .article {
    padding-bottom: 20px;
  }
  .featured-blog .article__title {
    margin-top: 20px;
  }
  .featured-blog .featured-blog__article {
    margin-top: 0;
    margin-bottom: 20px;
    padding-top: 20px;
  }

  .featured-blog__header-image {
    height: 55vh;
    min-height: 340px;
  }
}
@media only screen and (max-width: 479.98px) {
  .featured-blog__article {
    padding-left: 0px;
    padding-right: 0px;
  }
  .featured-blog__article .content-products {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 40px;
    padding-right: 20px;
  }

  .featured-blog__header-image {
    border-radius: 0;
  }
}
.section-featured-collection .product-carousel-peek,
.section-product-template-product-list .product-carousel-peek,
.section-product-list .product-carousel-peek {
  position: relative;
}

.featured-collection--title {
  margin-bottom: 5px;
}
.discounts_section .head_sections h2{
   font-weight: bold;
}
.featured-collection-controls {
  position: absolute;
  top: 30%;
  z-index: 2;
  color: #000;
  background: #f7db5e;
  
  border-radius: 100%;
  padding: 5px;
  height: 50px;
  width: 50px;
  transition: all 300ms ease-in;
  opacity: 1;
      display: flex;
    align-items: center;
    justify-content: center;
}
.featured-collection-controls:hover {
  opacity: 1;
}
.featured-collection-controls .feather-icon {
  display: block;
}
.featured-collection-controls .icon {
  display: inline-block;
  vertical-align: top;
  width: 24px;
  height: 24px;
}

.featured-collection-controls--prev {
  left: -100px;
}

.featured-collection-controls--next {
  right: -100px;
}

.featured-collection--product .product-block {
  padding: 0;
  width: 100%;
}

@media only screen and (max-width: 767.98px) {
  .featured-collection-controls {
    display: none;
  }
}
.standout-collection-section .slider-container {
  height: 100%;
}

.standout-collection-flex {
  display: flex;
  flex-wrap: wrap;
}
.standout-collection-flex .rimage-background {
  min-height: 100%;
}
.standout-collection-flex .slider-container {
  align-self: center;
}
.standout-collection-flex .desktop-background-image,
.standout-collection-flex .standout-collection__image--svg-placeholder {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

@media only screen and (min-width: 768px) {
  .standout-collection-flex--reverse > *:first-child {
    order: 1;
  }
}
.standout-collection__overlay-container {
  position: relative;
  width: 100%;
}

.standout-collection__image {
  display: none;
}

.standout-collection-slider {
  width: 280px;
  height: auto;
  margin: 180px auto;
  z-index: 1;
}
.standout-collection-slider .standout-collection__image-placeholder {
  display: block;
}

.standout-collection__price-placeholder {
  text-align: center;
}

.standout-collection-slider__controls {
  display: flex;
  justify-content: space-between;
  position: absolute;
  width: 380px;
  top: calc(50% - 40px);
  right: 50%;
  transform: translate(50%, -50%);
  z-index: 0;
}
.standout-collection-slider__controls .icon {
  transition: opacity 0.25s;
}
.standout-collection-slider__controls .icon:hover {
  color: inherit;
  opacity: 0.7;
}

@media only screen and (max-width: 1180px) {
  .standout-collection-slider__controls {
    width: 360px;
  }
}
@media only screen and (max-width: 1080px) {
  .standout-collection-slider {
    width: 220px;
  }

  .standout-collection-slider__controls {
    width: 280px;
  }
}
@media only screen and (max-width: 880px) {
  .standout-collection-slider {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 767.98px) {
  .standout-collection-section .slider-container {
    margin-left: 0;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden;
  }
  .standout-collection-section .slider-container .btn--quicklook {
    display: none;
  }
  .standout-collection-section .slick-track {
    display: block;
  }
  .standout-collection-section .desktop-background-image {
    display: none;
  }
  .standout-collection-section .standout-collection__image--svg-placeholder {
    position: static;
  }

  .standout-collection-slider {
    width: auto;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .standout-collection-slider__controls {
    display: none;
  }

  .standout-collection__image {
    display: block;
  }
}
@media only screen and (max-width: 479.98px) {
  .standout-collection-flex {
    border-radius: 0;
  }
}
.get-the-look {
  margin-top: -30px;
}

.get-the-look__image-container {
  margin-top: 30px;
}

.get-the-look__products-container {
  margin-top: 30px;
}

.get-the-look__product {
  margin: 30px 18% 0;
  height: 100%;
  display: block;
  padding-bottom: 90px;
}
.get-the-look__product:first-child {
  padding-top: 18%;
}
.get-the-look__product:last-child {
  padding-bottom: 18%;
}

@media only screen and (min-width: 768px) {
  .get-the-look__image-container .rimage-outer-wrapper {
    height: calc(100vh - 60px);
  }
  .get-the-look__image-container .rimage-wrapper {
    padding: 0 !important;
    height: 100%;
  }
  .get-the-look__image-container .rimage-wrapper .rimage__image {
    object-fit: cover;
  }
}
@media only screen and (max-width: 767.98px) {
  .get-the-look {
    border-radius: 15px;
    margin-top: 0;
    margin-left: 0;
  }
  .get-the-look .grid__item {
    padding-left: 0;
  }
  .get-the-look .get-the-look__image-container {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .get-the-look .get-the-look__products-container {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .get-the-look__products-container,
.get-the-look__image-container {
    margin-top: 0;
  }

  .get-the-look__products-container--margin-top {
    padding-top: 20px;
  }

  .get-the-look__product {
    padding-bottom: 20px;
    width: auto;
    margin-left: 0;
    margin-right: 0;
  }
  .get-the-look__product:last-child {
    padding-bottom: 0;
  }
  .get-the-look__product:first-child {
    padding-top: 0;
  }
}
@media only screen and (max-width: 479.98px) {
  .get-the-look {
    border-radius: 0;
  }
  .get-the-look .get-the-look__image-container,
.get-the-look .get-the-look__products-container {
    border-radius: 0;
  }
}
.image-with-text {
  align-items: center;
}
.image-with-text .image-with-text__content {
  padding: 60px;
}
.image-with-text .image-with-text__title {
  margin-bottom: 15px;
}
.image-with-text .image-with-text__link {
  margin-top: 15px;
  display: inline-block;
}
.image-with-text .image-with-text__image-size .rimage-outer-wrapper {
  overflow: hidden;
}

.image-with-text--reverse {
  flex-direction: row-reverse;
}

@media only screen and (min-width: 768px) {
  .image-with-text--full .image-with-text__image--inset {
    padding-left: 30px;
  }

  .image-with-text--reverse.image-with-text--full .image-with-text__image--inset {
    padding-left: 0;
    padding-right: 30px;
  }
}
@media only screen and (max-width: 767.98px) {
  .image-with-text__content {
    padding: 45px 30px;
  }

  .image-with-text .image-with-text__image .image-with-text__image-size {
    padding-bottom: 0;
  }

  .image-with-text__image-size .rimage-outer-wrapper {
    border-radius: 15px 15px 0 0;
    overflow: hidden;
  }

  .image-with-text__mobile-radius .rimage-outer-wrapper {
    border-radius: 15px;
  }
}
@media only screen and (max-width: 479.98px) {
  .image-with-text {
    border-radius: 0;
  }

  .image-with-text__image-size:not(.image-with-text__mobile-radius) .rimage-outer-wrapper {
    border-radius: 0;
  }
}
.video-container {
  position: relative;
}
.video-container .overlay {
  z-index: 2;
}

.video-container__video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  opacity: 0;
}
.video-container__video iframe,
.video-container__video object,
.video-container__video embed,
.video-container__video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-container--background {
  overflow: hidden;
}
.video-container--background.video--play-started .video-container__video {
  opacity: 1 !important;
}
.video-container--background .video-container__video {
  position: relative;
  height: 100%;
  max-width: none;
  padding: 0 !important;
  pointer-events: none;
}
.video-container--background .video-container__video-element {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.video-container--background video {
  object-fit: cover;
  object-position: 50% 50%;
}

.video-container__cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #eee;
}
.video-container__cover .rimage-outer-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video-container__cover::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.video-container--playing .video-container__video {
  opacity: 1;
}
.video-container--playing .video-container__cover,
.video-container--playing .overlay,
.video-container--playing .overlay__bg {
  opacity: 0 !important;
  pointer-events: none;
}

.video-container__play.feather-icon {
  display: block;
  margin-top: 15px;
}
.video-container__play.feather-icon svg {
  width: 60px;
  height: 60px;
  fill: transparent;
  stroke-width: 1px;
}
@media only screen and (max-width: 767.98px) {
  .video-container__play.feather-icon svg {
    width: 40px;
    height: 40px;
  }
}

.video-container__stop {
  display: none;
}

.video-container__fallback.fade-in.lazyloaded {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 1;
}
.video--play-started .video-container__fallback.fade-in.lazyloaded {
  opacity: 0;
  transition: opacity 500ms;
}

@media (max-width: 767.98px) {
  .video-container__player {
    min-height: 340px;
  }

  .video-container--modal-mobile {
    padding-bottom: 0 !important;
    height: auto;
    z-index: 3;
  }
  .video-container--modal-mobile::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    pointer-events: none;
    background: #000;
    opacity: 0;
    transition: opacity 350ms;
  }
  .video-container--modal-mobile .video-container__video {
    position: fixed;
    z-index: 10001;
    top: 50%;
    left: 20px;
    width: calc(100% - 40px);
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    background: #000;
    transition: opacity 350ms;
  }
  .video-container--modal-mobile .video-container__stop {
    display: block;
    position: fixed;
    bottom: 0;
    left: 50%;
    color: #fff;
    z-index: 10002;
    padding: 20px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 350ms;
    transform: translateX(-50%);
  }
  .video-container--modal-mobile .video-container__stop svg {
    stroke: currentColor;
  }
  .video-container--modal-mobile.video-container--playing {
    position: fixed;
    z-index: 4;
  }
  .video-container--modal-mobile.video-container--playing::before,
.video-container--modal-mobile.video-container--playing .video-container__video,
.video-container--modal-mobile.video-container--playing .video-container__stop {
    opacity: 1;
    pointer-events: auto;
  }
}
@media (max-width: 560px) {
  .video-container__player {
    min-height: 240px;
  }
}
.subscribe-section {
  padding-left: 30px;
  padding-right: 30px;
  text-align: center;
}
.subscribe-section .subscribe-form::after {
  display: none;
}
.subscribe-section .subscribe-form__email {
  color: currentColor;
  margin: 0;
  padding-left: 0;
  transition: background-color 0.25s;
}
.subscribe-section a {
  color: inherit;
}

.subscribe-content__title {
  margin-bottom: 15px;
}

.subscribe-form-lightbox-response {
  width: 500px;
  max-width: 90vw;
  padding: 30px;
  text-align: center;
}

@media only screen and (min-width: 768px) {
  .subscribe-section .subscribe-form__inputs {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid;
  }
  .subscribe-section .input-wrapper {
    border-bottom: 0;
  }
  .subscribe-section .subscribe-form__btn-wrapper {
    text-align: right;
  }
}
@media only screen and (max-width: 767.98px) {
  .subscribe-section {
    padding: 45px 30px;
  }
  .subscribe-section .subscribe-form {
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 479.98px) {
  .subscribe-section {
    border-radius: 0;
  }
  .subscribe-section .subscribe-form__submit {
    margin: 20px 0 0 0;
  }
}
.blog-featured-image {
  border-radius: 0 15px 0 0;
  overflow: hidden;
  transition: border-radius 3s;
}
.blog-featured-image .placeholder-svg {
  width: auto;
  max-width: none;
  position: absolue;
  left: 50%;
  transform: translateX(-50%);
}

.blog-image {
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
}

.blog-tags {
  margin-top: 15px;
}

.blog .blog-rsslink {
  color: currentColor;
  display: block;
  margin-bottom: 15px;
  margin-top: -10px;
}

.blog-articles-list {
  max-width: calc((1300px / 2) + (30px * 2));
  margin: 0 auto;
  padding: 0 30px;
}

.blog-articles-list__image {
  display: block;
  margin: 0 0 0;
}
.blog-articles-list__image .rimage-outer-wrapper .rimage-wrapper {
  transform: scale(1);
  transition: transform 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.blog-articles-list__image:hover .rimage-outer-wrapper .rimage-wrapper {
  transform: scale(1.05);
}

.blog .single-column-layout {
  display: flex;
  justify-content: center;
}
.blog .single-column-layout .one-half {
  max-width: calc(100% - (30px * 2));
  width: 960px;
}
.blog .single-column-layout .blog-articles-list {
  max-width: initial;
  width: 100%;
  margin: 0;
      display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}
.blog .single-column-layout .blog-rsslink {
  display: inline-block;
  position: absolute;
  right: 0;
  top: 30px;
}

.is_stuck .blog-featured-image {
  animation: radius-corners 0.3s ease-in-out 1 forwards;
}

@media only screen and (max-width: 767.98px) {
  .blog-image {
    height: 55vh;
  }

  .blog-featured-image {
    border-radius: 0;
    margin-bottom: 15px;
  }

  .blog .blog-articles-list {
    padding: 0;
  }

  .blog .article-block .content-products {
    margin-left: 0;
    margin-right: 0;
    padding: 0 20px;
  }

  .blog .single-column-layout .one-half {
    max-width: 100%;
  }
  .blog .single-column-layout .blog-rsslink {
    top: 0;
    right: 20px;
  }

  .blog-rsslink {
    top: -15px;
  }

  .blog .overlay {
    bottom: 30px;
    transform: translate(-50%, 0);
    min-width: 0;
  }
}
@media only screen and (max-width: 479.98px) {
  .single-column-layout .blog-articles-list__image {
    border-radius: 0;
  }
}
.promotional-row .image_before,
.promotional-row .image_after {
  flex-direction: column;
  flex-wrap: nowrap;
}
.promotional-row .image_before .promotional-row__container,
.promotional-row .image_before .promotional-image,
.promotional-row .image_after .promotional-row__container,
.promotional-row .image_after .promotional-image {
  overflow: hidden;
  
  position: relative;
  z-index: 1;
  
}
.promotional-row .image_before .promotional-row__container {
  border-radius: 0 0 15px 15px;
}
.promotional-row .image_before .promotional-image {
  border-radius: 15px 15px 0 0;
}
.promotional-row .image_after .promotional-row__container {
  border-radius: 15px 15px 0 0;
}
.promotional-row .image_after .promotional-image {
  border-radius: 0 0 15px 15px;
}
.promotional-row .text_over_image .promotional-row__content {
  width: calc(100% - (150px));
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
.promotional-row .text_over_image .promotional-row__container {
  position: relative;
  z-index: 1;
  min-height: initial;
}
.promotional-row .text_over_image .promotional-image {
  border-radius: 15px;
  overflow: hidden;
}
.promotional-row .promotional-image--desktop {
  position: absolute;
  left: 30px;
  top: 0;
  right: 0;
  height: 100%;
  width: auto;
}
.promotional-row .single-block {
  flex-direction: row;
  width: 100%;
}
.promotional-row .single-block .promotional-image {
  width: 50%;
}
.promotional-row .single-block.text_over_image {
  width: 50%;
}
.promotional-row .single-block.text_over_image .promotional-image {
  width: 100%;
}
.promotional-row .promotional-image img {
  display: block;
}
.promotional-row .promotional-image .rimage-background {
  height: 100%;
}
.promotional-row .promotional-image .placeholder-svg {
  width: auto;
}
.promotional-row .promotional-image.mobile-only {
  display: none;
}
.promotional-row .promotional-row__container {
  flex-grow: 1;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.promotional-row .promotional-row__content {
  padding: 60px;
  pointer-events: none;
}
.promotional-row .promotional-row__content a,
.promotional-row .promotional-row__content button {
  pointer-events: auto;
}
.promotional-row .promotional-row__title {
  margin: 15px 0;
}
.promotional-row .promotional-row__text {
  margin-bottom: 15px;
}
.promotional-row .promotional-row__content--link {
  display: inline-block;
  margin-top: 15px;
}

@media only screen and (max-width: 1080px) and (min-width: 768px) {
  .promotional-row .promotional-row__content {
    padding: 40px 20px;
  }
  .promotional-row .promotional-row__title {
    font-size: 1.75rem;
  }
  .promotional-row .promotional-row__text {
    font-size: 1.2rem;
  }
  .promotional-row .text_over_image .promotional-row__content {
    width: calc(100% - (15px * 7));
  }
}
@media only screen and (max-width: 767.98px) {
  .promotional-row {
    flex-direction: column;
  }
  .promotional-row .promotional-image {
    width: 100%;
  }
  .promotional-row .extra-container {
    width: 100%;
  }
  .promotional-row .single-block {
    flex-direction: column;
  }
  .promotional-row .single-block .promotional-image {
    width: 100%;
  }
  .promotional-row .single-block.text_over_image {
    width: 100%;
  }
  .promotional-row .promotional-row__container {
    min-height: initial;
  }
  .promotional-row .promotional-row__content {
    position: static;
    transform: translate(0, 0);
    padding: 45px 30px;
    width: 100%;
    left: 50%;
  }
  .promotional-row .text_over_image .promotional-row__content--transparent-bg .standard-link {
    color: #000000;
  }
  .promotional-row .text_over_image .promotional-row__content--transparent-bg .standard-link:hover {
    color: #000000;
  }
  .promotional-row .text_over_image {
    margin-bottom: 0;
  }
  .promotional-row .text_over_image .promotional-row__container {
    height: auto;
    min-height: initial;
    max-height: initial;
    transform: translate(0, -30px);
  }
  .promotional-row .text_over_image .promotional-row__content {
    left: 0;
    position: static;
    transform: translate(0, 0);
    width: calc(100% - (30px * 2));
    margin: 0 auto;
  }
  .promotional-row .promotional-image.mobile-only {
    display: block;
  }
  .promotional-row .promotional-image--desktop {
    display: none;
  }

  .promotional-images .promotional-row .text_over_image .promotional-row__container {
    background-color: transparent;
  }
  .promotional-images .grid {
    margin-left: 0;
  }
  .promotional-images .grid__item {
    margin-bottom: 20px;
    padding-left: 0;
  }
  .promotional-images .grid__item.text_over_image {
    margin-bottom: 0;
  }
  .promotional-images.large-row {
    margin-top: 0;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 479.98px) {
  .promotional-row .text_over_image .promotional-row__content {
    left: 0;
    position: static;
    transform: translate(0, 0);
    width: calc(100% - (20px * 2));
  }
  .promotional-row .promotional-row__content {
    padding: 40px 20px;
  }
}
.map-section--load-error {
  height: auto;
}

.map-section__error {
  position: relative;
  z-index: 3;
}

.map-section__content-wrapper {
  margin: -50px auto 0;
}

.map-section__content {
  position: relative;
  background-color: #ffffff;
  padding: 30px;
  text-align: center;
  z-index: 3;
}
.map-section__content .map-section__title {
  margin-bottom: 15px;
}
.map-section__content .btn {
  margin-top: 15px;
}

.map-section__link {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  max-width: none;
  width: 100%;
  height: 100%;
  z-index: 2;
  transform: translateX(-50%);
}

.map-section__container {
  position: relative;
  height: 440px;
  width: 100%;
}
.map-section__container button {
  min-width: auto;
}

.map_section__directions-btn > span {
  vertical-align: middle;
}
.map_section__directions-btn .feather-icon {
  display: inline-block;
  margin-right: 0.3em;
}

.map-section__background-wrapper {
  height: 440px;
  overflow: hidden;
  position: relative;
}
.map-section__background-wrapper .placeholder-background {
  height: 100%;
}
.no-js .map-section__background-wrapper .js {
  visibility: hidden;
}

.map-section__image {
  height: 100%;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.map-section__image .rimage-background {
  width: 100%;
  height: 100%;
}
.map-section--display-map .map-section__image {
  display: none !important;
}
.map-section--load-error .map-section__image {
  display: block !important;
}

.gm-style-cc,
.gm-style-cc + div {
  visibility: hidden;
}

@media only screen and (max-width: 1279.98px) {
  .map-section__content-wrapper {
    margin: -30px auto 0;
  }
}
@media only screen and (max-width: 479.98px) {
  .map-section__background-wrapper {
    border-radius: 0;
  }
}
.testimonials .testimonials--title {
  margin-bottom: 30px;
}
.testimonials .testimonial {
  text-align: center;
}
.testimonials .testimonial-content {
  margin: 0;
  padding: 0;
  border: none;
    padding: 30px;
    background: #fffbf4;
      text-align: left;
}
footer.testimonial-author-info {
    display: flex;
    align-items: center;
      gap: 15px;
}
blockquote.testimonial-content.rte.standard-text p {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 20px;
    margin-top: 8px;
}
.testimonials .testimonial-content a {
  text-decoration: none;
}
.testimonials .testimonial-star .feather-star {
  height: 20px;
  width: 20px;
}
.testimonials .testimonial-author-image {
  height: 32px;
  width: 32px;
  margin: 0;
}
.testimonials .testimonial-author-name {
  font-size: 0.875rem;
  padding-left: 20px;
  position: relative;
  display: inline-block;
}
.testimonials .testimonial-author-name::before {
  position: absolute;
  content: "--";
  left: 0;
}
.testimonials .slick-dots {
  margin-left: 15px;
}

@media only screen and (max-width: 1023.98px) {
  .testimonials .testimonial-content {
    padding: 0 30px;
  }
  .testimonials .slick-dots {
    margin-left: 0;
    width: 100%;
    padding: 0 20px;
  }
}
@media only screen and (max-width: 479.98px) {
  .testimonials {
    border-radius: 0;
  }
}
.gallery.slick-slider {
  margin-top: 0;
  padding-top: 0;
  margin-bottom: 0;
  width: auto;
}
.gallery.slick-slider .gallery__item {
  margin-bottom: 0;
}
.gallery.slick-slider .slick-dots {
  padding-left: 20px;
}

.gallery-slideshow-controls {
  position: absolute;
  bottom: -5px;
}

.gallery-slideshow-controls--next {
  right: 20px;
}

.gallery-slideshow-controls--prev {
  left: 20px;
}

.gallery--with-margins {
  margin-left: -20px;
  width: 100%;
}

.gallery__item {
  position: relative;
  flex: 1 1 320px;
  width: 100%;
  transition: background-color 150ms;
}
.gallery__item .large-title {
  margin-bottom: 10px;
}
.gallery__item .gallery__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.gallery--with-vertical-outer-padding {
  padding-top: 20px;
  padding-bottom: 20px;
}

.gallery--with-margins .gallery__item {
  margin-left: 20px;
  margin-bottom: 20px;
}

@media only screen and (min-width: 768px) {
  .gallery--with-margins {
    margin-left: -30px;
    width: auto;
  }

  .gallery:not(.gallery--with-margins) {
    border-radius: 15px;
    overflow: hidden;
  }

  .gallery-slideshow-controls {
    display: none;
  }

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

  .gallery--grid-2 .gallery__item.gallery__item--enlarged {
    flex-grow: 2;
  }

  .gallery--grid-3 .gallery__item.gallery__item--enlarged {
    flex-grow: 3;
  }

  .gallery--grid-4 .gallery__item {
    flex-basis: 40%;
  }
  .gallery--grid-4 .gallery__item.gallery__item--enlarged {
    flex-grow: 4;
  }

  .gallery--with-margins .gallery__row:last-child {
    margin-bottom: -30px;
  }

  .gallery--with-vertical-outer-padding {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .gallery--with-margins .gallery__item {
    margin-left: 30px;
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 1024px) {
  .gallery--grid-4 .gallery__item {
    flex-basis: 20%;
  }
}
@media only screen and (max-width: 767.98px) {
  .gallery--mobile-container {
    overflow: hidden;
  }

  .gallery--mobile-carousel {
    margin-left: -20px;
  }
  .gallery--mobile-carousel .gallery__item {
    border-radius: 15px;
    overflow: hidden;
    margin-left: 20px;
  }
}
.logo-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: -20px;
  padding: 20px;
}
@media only screen and (min-width: 768px) {
  .logo-list {
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: -30px;
    padding: 30px;
  }
}

.logo-list__logo {
  display: flex;
  flex-direction: column;
  flex: 0 0 calc(50% - 20px);
  margin: 0 10px 20px;
}
@media only screen and (min-width: 480px) {
  .logo-list__logo {
    flex: 0 0 calc(33.3% - 20px);
  }
}
@media only screen and (min-width: 768px) {
  .logo-list__logo {
    flex: 0 0 calc(25% - 30px);
    margin: 0 15px 30px;
  }
}
@media only screen and (min-width: 1024px) {
  .logo-list__logo {
    flex: 0 0 calc(20% - 30px);
  }
}
@media only screen and (min-width: 1280px) {
  .logo-list__logo {
    flex: 0 0 calc(16.6% - 30px);
  }
}

@media (min-width: 400px) and (max-width: 767.98px) {
  .logo-list--count-4 .logo-list__logo {
    flex: 0 0 calc(50% - 20px);
  }
}
.logo-list__logo-image {
  display: flex;
  align-items: center;
  flex: 1 1 100%;
  margin: 0 auto;
  width: 100%;
  transition: opacity 200ms;
}
.logo-list__logo-image > .rimage-outer-wrapper {
  flex: 1 1 100%;
}
.logo-list__logo-image .placeholder-image {
  width: 100%;
}

.logo-list__logo-text {
  margin-top: 10px;
  text-decoration: none;
}

@media only screen and (max-width: 479.98px) {
  .logo-list-section {
    border-radius: 0;
  }
}
.shopify-challenge__container {
  padding: 30px;
}

.grid__item .contact-form__submit {
  width: 100%;
}

@media only screen and (max-width: 767.98px) {
  .contact-page__container .page-width {
    padding-left: 20px;
    padding-right: 20px;
  }

  .contact-form__submit.btn {
    width: 100%;
  }
}
.template-password {
  *zoom: 1;
  text-align: center;
}
.template-password::after {
  content: "";
  display: table;
  clear: both;
}
.template-password #cboxContent {
  background-color: #ffffff;
}

.password-page-container {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1;
  height: 100%;
  padding-bottom: 90px;
}

.password-background-image {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
}
.password-background-image::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.password-background-image .rimage-background {
  height: 100%;
}

.password-login-link {
  color: inherit;
  text-align: right;
  position: absolute;
  padding: 30px;
  top: 0;
  right: 0;
  z-index: 3;
}

.password-page-container .store-logo {
  margin-top: 85px;
}
.password-page-container .site-logo {
  color: inherit;
}

.password-page-content {
  padding-bottom: 15px;
  position: relative;
}
.password-page-content::after {
  content: "";
  position: absolute;
  background-color: currentColor;
  height: 1px;
  width: 30%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.password-form-title {
  margin-bottom: 15px;
}

.password-form-subtitle a,
.password-form-subtitle a:hover {
  color: inherit;
}

.password-form-container {
  display: flex;
  justify-content: center;
}
.password-form-container .password-form-label {
  color: inherit;
}
.password-form-container .password-form-submit {
  margin-left: 15px;
}

.password-social-icons .social-links__list {
  display: flex;
  justify-content: center;
}
.password-social-icons .social-links__list a {
  color: inherit;
}

.password-social-icons-title {
  margin-bottom: 10px;
}

.password-footer {
  display: block;
  line-height: 1.5;
}

.password-shopify-link {
  color: inherit;
  display: inline-block;
  vertical-align: bottom;
}

#password-login {
  max-width: 500px;
  padding: 30px;
}

@media only screen and (max-width: 767.98px) {
  .password-page-container {
    padding: 60px 20px 20px;
    height: auto;
  }
  .password-page-container main,
.password-page-container .page-width {
    width: 100%;
  }
  .password-page-container .contact-form {
    max-width: 100%;
  }

  .password-page-container .store-logo {
    margin-top: 0;
    max-width: 100%;
  }

  .password-login-link {
    padding: 20px;
  }

  .password-form-container .password-form-submit {
    padding-left: 20px;
    padding-right: 20px;
    min-width: auto;
    width: 150px;
  }

  #password-login {
    max-width: 300px;
  }
}
.section-popup.cc-popup {
  padding: 30px;
}
.section-popup.cc-popup.cc-popup--visible.cc-popup--bottom-left, .section-popup.cc-popup.cc-popup--visible.cc-popup--bottom-right {
  align-items: flex-end;
}
.section-popup.cc-popup .cc-popup-modal {
  border-radius: 15px;
  max-width: 800px;
}
.section-popup.cc-popup .cc-popup-modal--has-image {
  width: 65vw;
}
.section-popup.cc-popup .cc-popup-image {
  min-width: 50%;
  width: 50%;
}
.section-popup.cc-popup .cc-popup-image .rimage-outer-wrapper,
.section-popup.cc-popup .cc-popup-image .rimage-wrapper {
  height: 100%;
}
.section-popup.cc-popup .cc-popup-image .rimage-wrapper img {
  object-fit: cover;
}
.section-popup.cc-popup .cc-popup-content {
  padding: 60px 45px;
  text-align: center;
  max-width: 460px;
  margin: 0 auto;
}
.section-popup.cc-popup .social-links__list {
  justify-content: center;
}
.section-popup.cc-popup .social-links__list a {
  color: inherit;
}
.section-popup.cc-popup .cc-popup-form-input,
.section-popup.cc-popup .cc-popup-form-submit {
  width: 100%;
  margin-bottom: 30px;
}
.section-popup.cc-popup .cc-popup-form-input {
  border-width: 0 0 1px 0;
  border-color: currentColor;
  text-align: center;
  border-radius: 0;
}
.section-popup.cc-popup .cc-popup-close svg {
  color: #000000;
}
@media only screen and (max-width: 1080px) {
  .section-popup.cc-popup .cc-popup-modal--has-image {
    width: 80vw;
  }
}
@media only screen and (max-width: 767.98px) {
  .section-popup.cc-popup .cc-popup-image {
    display: none;
  }
  .section-popup.cc-popup .cc-popup-content {
    width: 100%;
  }
}
@media only screen and (max-width: 767.98px) {
  .section-popup.cc-popup .cc-popup-modal {
    max-width: 460px;
  }
  .section-popup.cc-popup .cc-popup-image {
    display: none;
  }
  .section-popup.cc-popup .cc-popup-content {
    width: 100%;
  }
}
@media only screen and (max-width: 479.98px) {
  .section-popup.cc-popup.cc-popup--center, .section-popup.cc-popup.cc-popup--bottom-left, .section-popup.cc-popup.cc-popup--bottom-right {
    justify-content: center;
    align-items: center;
    padding: 20px;
  }
  .section-popup.cc-popup .cc-popup-modal {
    width: 100%;
  }
  .section-popup.cc-popup .cc-popup-content {
    padding: 60px 20px 30px;
  }
}

.cc-popup-form__response--success + .cc-popup-social {
  display: none;
}

.product-recommendations-container {
  flex-wrap: nowrap;
}

/*================ COMPONENTS ================*/
/*================ Icons ================*/
.icon {
  display: inline-block;
  fill: currentColor;
  height: 24px;
  vertical-align: text-top;
  width: 24px;
}
.no-svg .icon {
  display: none;
}

.icon--header .icon {
  height: 30px;
  width: 30px;
  margin: 5px;
  vertical-align: top;
}

.feather-icon .icon,
.feather-icon.icon {
  fill: transparent;
  stroke: currentColor;
  stroke-width: 2px;
}

.icon--wide {
  width: 40px;
}

.icon-beside-text {
  display: inline-block;
  vertical-align: middle;
}

.text-beside-icon {
  vertical-align: middle;
}

svg.icon:not(.icon--full-color) circle,
svg.icon:not(.icon--full-color) ellipse,
svg.icon:not(.icon--full-color) g,
svg.icon:not(.icon--full-color) line,
svg.icon:not(.icon--full-color) path,
svg.icon:not(.icon--full-color) polygon,
svg.icon:not(.icon--full-color) polyline,
svg.icon:not(.icon--full-color) rect,
symbol.icon:not(.icon--full-color) circle,
symbol.icon:not(.icon--full-color) ellipse,
symbol.icon:not(.icon--full-color) g,
symbol.icon:not(.icon--full-color) line,
symbol.icon:not(.icon--full-color) path,
symbol.icon:not(.icon--full-color) polygon,
symbol.icon:not(.icon--full-color) polyline,
symbol.icon:not(.icon--full-color) rect {
  fill: inherit;
  stroke: inherit;
  stroke-linecap: round;
}

/*============================================================================
  A generic way to visually hide content while
  remaining accessible to screen readers (h5bp.com)
==============================================================================*/
.icon-fallback-text {
  position: absolute !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}
.no-svg .icon-fallback-text {
  position: static !important;
  overflow: auto;
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
}

/*================ Payment Icons ================*/
.payment-icons {
  -moz-user-select: "none";
  -ms-user-select: "none";
  -webkit-user-select: "none";
  user-select: "none";
  cursor: default;
}

/*================ Shopify icon on password page ================*/
.icon-shopify-logo {
    width: 72.0px;
    height: 21.0px;
}

/*================ Links & Buttons ================*/
button,
input[type=submit],
.btn,
.btn--primary {
  -moz-user-select: "none";
  -ms-user-select: "none";
  -webkit-user-select: "none";
  user-select: "none";
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 1px;
  display: inline-block;
  font-size: 1rem;
  line-height: 1.4em;
  min-width: 148px;
  padding: 11px 39px;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  width: auto;
  border-radius: 5px;
  border: 0;
  text-transform: none;
  letter-spacing: inherit;
  white-space: normal;
  box-shadow: 0 0 0 0px #f7db5e;
  background-color: #f7db5e;
  color: #000000;
  transition: background-color 0.25s, color 0.25s, box-shadow 0.25s;
}
button:hover,
input[type=submit]:hover,
.btn:hover,
.btn--primary:hover {
  background-color: #000000;
  box-shadow: 0 0 0 0px #000000;
  color: #f7db5e;
}
button[disabled],
input[type=submit][disabled],
.btn[disabled],
.btn--primary[disabled] {
  opacity: 0.5;
}

button.btn--secondary, button.btn--quicklook,
input[type=submit].btn--secondary,
input[type=submit].btn--quicklook,
.btn.btn--secondary,
.btn.btn--quicklook {
  box-shadow: 0 0 0 1px #000000;
  background-color: #000000;
  color: #f7db5e;
}
button.btn--secondary:hover, button.btn--quicklook:hover,
input[type=submit].btn--secondary:hover,
input[type=submit].btn--quicklook:hover,
.btn.btn--secondary:hover,
.btn.btn--quicklook:hover {
  box-shadow: 0 0 0 1px #f7db5e;
  background-color: #f7db5e;
  color: #000000;
}
button.btn--subtle-hover:hover,
input[type=submit].btn--subtle-hover:hover,
.btn.btn--subtle-hover:hover {
  box-shadow: 0 0 0 1px #fcf1bf;
  background-color: #fcf1bf;
  color: #000000;
}

.btn--wide {
  min-width: 204px;
}

.btn.btn--fullwidth {
  width: calc(100% - 2px);
}

.btn--plain, .payment-buttons .shopify-payment-button__more-options {
  margin: 0;
  padding: 0;
  background-color: transparent;
  border: 0;
  box-shadow: none;
  color: inherit;
  min-width: 0;
}
.btn--plain:hover, .payment-buttons .shopify-payment-button__more-options:hover {
  background-color: transparent;
  border: 0;
  box-shadow: none;
  color: inherit;
}

.btn--quicklook {
  margin-top: 30px;
}

.pswp__button {
  min-width: 0;
  box-shadow: none;
}
.pswp__button:hover {
  background-color: transparent;
  border: 0;
  box-shadow: none;
}

@media only screen and (min-width: 768px) {
  .btn.btn--small {
    padding: 8px 14px;
    min-width: 118px;
  }
}
@media only screen and (max-width: 767.98px) {
  .btn {
    font-size: 1rem;
  }
}
.announcement-bar {
  position: relative;
  z-index: 1;
}

.announcement-bar__content {
  display: block;
  text-decoration: none;
  padding-bottom: 4px;
  padding-top: 4px;
  font-size: 0.875rem;
  text-align: center;
  transition: background-color 0.25s;
  background-color: #f7db5e;
  color: #000000;
}
.announcement-bar__content:hover {
  background-color: #f5d02d;
  color: #000000;
}

.social-links__list {
  display: flex;
  flex-wrap: wrap;
  line-height: 0em;
}
.social-links__list li {
  display: block;
  margin: 0 6px 6px 0;
  padding: 0 4px 4px 0;
}
.social-links__list a {
  display: block;
}
.social-links__list img {
  max-width: 24px;
  height: auto;
  vertical-align: middle;
}

.sharing {
  margin: 30px 0;
}

.sharing-link {
  text-decoration: none;
  color: inherit;
  margin: 0 20px 0 0;
}

.sharing-list {
  display: flex;
}

.article .sharing-label {
  display: none;
}

.social-custom {
  width: 24px;
  height: 24px;
  display: block;
}

@media only screen and (min-width: 768px) {
  .social-links svg,
.sharing-link svg {
    transition: transform 0.25s;
  }
  .social-links svg:hover,
.sharing-link svg:hover {
    transform: scale(1.1);
  }
}
@media only screen and (max-width: 767.98px) {
  .footer-block .social-links {
    padding: 15px 0 10px;
  }
}
.navigation__container {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.nav {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Helvetica Neue, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-weight: 400;
  font-style: normal;
}

.nav__link {
  display: block;
  text-decoration: none;
  transition: color 0.25s;
}

.header-navigation {
  background-color: #ffffff;
  padding-top: 0;
  /* position: relative; */
  z-index: 3;
}

.site-nav {
  margin: 0 0 0 -15px;
  padding: 0;
  width: calc(100% + 15px);
  white-space: nowrap;
  /* overflow-x: hidden; */
  letter-spacing: 0.0em;
  text-transform: none;
}
.no-js .site-nav {
  padding: 0 30px;
  overflow-x: auto;
}
.site-nav .site-nav__item {
  text-align: left;
  line-height: 1.5em;
}
.site-nav > .site-nav__item {
  display: inline-block;
  font-size: 14px;
}
.site-nav .site-nav__link {
  display: block;
  text-decoration: none;
}
.site-nav > .site-nav__item > .site-nav__link {
  position: relative;
  padding: 0 15px 12px 15px;
  color: #000000;
  font-weight: bold;
}
.site-nav > .site-nav__item > .site-nav__link:hover {
  color: #000000;
}
.site-nav .site-nav__invisible {
  right: 0;
}
.site-nav > .site-nav__item.new-users,.site-nav > .site-nav__item.brand-lens{
  position:relative;
  padding-top:1.5em;
}
    .site-nav > .site-nav__item.new-users::before,.site-nav > .site-nav__item.brand-lens::before{
      position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 200px;
    height: 1.5em;
    z-index: 99999;
    background-repeat: no-repeat;
    background-size: contain;
    }
    .site-nav > .site-nav__item.new-users::before{
      background-image:url("https://cdn.shopify.com/s/files/1/0607/9224/2416/files/hot50off.svg?v=1679560905");
    }
    .site-nav > .site-nav__item.brand-lens::before{
      background-image:url("https://cdn.shopify.com/s/files/1/0607/9224/2416/files/40off.svg?v=1681893696");
    }

.site-nav--center {
  text-align: center;
  margin-left: 0;
}

.site-nav > .site-nav__item > .site-nav__link::after {
  background-color: #000000;
  bottom: 0;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  transform: scaleY(0);
  transition: transform 0.25s;
  transform-origin: bottom;
  width: 100%;
}

.site-nav .site-nav__link:focus:after,
.site-nav__item:hover .site-nav__link:after,
.site-nav__item.site-nav--active .site-nav__link:after {
  transform: scaleY(1);
}

.site-nav__icon {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  margin-left: 0.1em;
  height: 1em;
  width: 18px;
}
.site-nav__icon .icon {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -9px;
  height: 18px;
  width: 18px;
}

.site-nav__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  z-index: 6;
  background-color: #ffffff;
  font-size: 12.25px;
  color: rgba(0, 0, 0, 0.7);
  white-space: normal;
  width: 240px;
  border-bottom: 3px solid #000000;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.15);
}

.site-nav__dropdown--with-promo {
  width: 480px;
}

.site-nav__item--has-dropdown.open > .site-nav__dropdown,
.no-js .site-nav__item--has-dropdown:hover > .site-nav__dropdown {
  display: block;
}

.site-nav .site-nav__dropdown-heading,
.site-nav .site-nav__dropdown-link[href="#"] {
  margin: 0 0 0.25em;
  font-size: 14px;
  color: #000000;
}
.site-nav .site-nav__dropdown-heading:hover,
.site-nav .site-nav__dropdown-link[href="#"]:hover {
  color: #000000;
}

.mega-dropdown__subitem:not(:first-child) .site-nav__dropdown-link[href="#"],
.small-dropdown__item:not(:first-child) .site-nav__dropdown-link[href="#"],
.site-nav__promo .site-nav__dropdown-heading {
  margin-top: 0.5em;
}

.site-nav__dropdown-link {
  margin: 0.25em 0;
  color: rgba(0, 0, 0, 0.7);
}
.site-nav__dropdown-link:hover {
  color: #000000;
}

.small-dropdown {
  padding: 15px;
  max-height: 80vh;
  overflow-y: auto;
}
.small-dropdown .small-dropdown__item:not(:first-child) .site-nav__dropdown-heading {
  margin-top: 15px;
}
.small-dropdown .small-dropdown__item:not(:last-child) .site-nav__submenu {
  margin-bottom: 15px;
}

.mega-dropdown {
  /*left: 0;
  width: 100%;*/
  width: 500px;
  padding-bottom: 15px;
  padding-top: 15px;
}

.mega-dropdown__item {
  padding-bottom: 15px;
  padding-left:15px;
}

.site-nav__more-links > .site-nav__dropdown > .small-dropdown__container > .site-nav__item > .site-nav__link {
  margin: 0.25em 0;
  color: rgba(0, 0, 0, 0.7);
}
.site-nav__more-links > .site-nav__dropdown > .small-dropdown__container > .site-nav__item > .site-nav__link:hover {
  color: #000000;
}

.site-nav__invisible {
  position: absolute !important;
  pointer-events: none !important;
  opacity: 0 !important;
}

.more-links--with-dropdown > .site-nav__dropdown {
  left: 0;
  width: 100%;
  padding: 15px 30px;
}
.more-links--with-dropdown > .site-nav__dropdown > .page-width > .small-dropdown__container {
  width: 25%;
}
.more-links--with-dropdown > .site-nav__dropdown > .page-width > .small-dropdown__container > .site-nav__item {
        border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.more-links--with-dropdown > .site-nav__dropdown > .page-width > .small-dropdown__container > .site-nav__item > .site-nav__link {
  position: relative;
  margin: 0;
  padding: 15px 33px 15px 0;
  font-size: 14px;
  color: #000000;
}
.more-links--with-dropdown > .site-nav__dropdown > .page-width > .small-dropdown__container > .site-nav__item > .site-nav__link > .site-nav__icon {
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -9px;
  transform: rotate(-90deg);
}
.more-links--with-dropdown > .site-nav__dropdown > .page-width > .small-dropdown__container > .site-nav__item:last-child {
  border-bottom: none;
}
.more-links--with-dropdown > .site-nav__dropdown > .page-width > .small-dropdown__container > .site-nav__item.open > .site-nav__dropdown, .more-links--with-dropdown > .site-nav__dropdown > .page-width > .small-dropdown__container > .site-nav__item:hover > .site-nav__dropdown {
  display: none;
}

.more-links__dropdown-container {
  position: absolute;
  left: 25%;
  right: 30px;
  top: 0;
  padding-top: 15px;
  padding-left: 30px;
}
.more-links__dropdown-container .site-nav__dropdown {
  position: static;
  display: block !important;
  border: none;
  box-shadow: none;
  background: transparent;
  padding: 0;
}
.more-links__dropdown-container .site-nav__link::after {
  display: none;
}
.more-links__dropdown-container .page-width {
  max-width: none;
}

.more-links__parent--inactive > .site-nav__link {
  opacity: 0.5;
}

.small-nav {
  display: flex;
  font-size: 0.75rem;
  flex-wrap: wrap;
}

.small-nav__link {
  color: #000000;
  fill: #000000;
  position: relative;
  padding-right: 15px;
  text-decoration: none;
}

.small-nav__item:not(:last-child) .small-nav__link:after {
    background-color: rgba(0, 0, 0, 0.3);
  content: "";
  height: 100%;
  position: absolute;
  right: 7.5px;
  top: 0;
  width: 1px;
}

@media only screen and (min-width: 940px) {
  .no-js .header-navigation.container {
    padding-right: 0;
    padding-left: 0;
  }

  .footer-nav__link,
.small-nav__link {
    transition: opacity 0.25s;
  }
  .footer-nav__link:hover,
.small-nav__link:hover {
    color: #000000;
    opacity: 0.7;
  }
}
.mobile-site-nav {
  display: none;
  margin: 70px 20px 20px;
}

.mobile-nav-no-margin-top .mobile-site-nav {
  margin-top: 0;
}

.mobile-site-nav__item {
  display: flex;
  flex-wrap: wrap;
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}

.mobile-site-nav__link {
  position: relative;
  display: block;
  flex-grow: 1;
  padding: 15px 7.5px;
  color: #000000;
  text-decoration: none;
}
.mobile-site-nav__link:hover {
  color: #000000;
}
.mobile-site-nav>.mobile-site-nav__item>.mobile-site-nav__link{font-weight:bold;}

.mobile-site-nav .mobile-site-nav__icon {
  padding: 0 25px;
  margin: 12px 0;
    border-left: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 0;
}
.mobile-site-nav .mobile-site-nav__icon .icon {
  width: 18px;
  height: 18px;
  vertical-align: top;
  transition: transform 0.25s;
}
.mobile-site-nav .mobile-site-nav__icon.submenu-open .icon {
  transform: rotate(180deg);
}

.mobile-site-nav__menu {
  display: none;
  width: 100%;
  padding-left: 15px;
}
.mobile-site-nav__menu .mobile-site-nav__item {
  border-bottom: 0;
}

@media only screen and (max-width: 939.98px) {
  .mobile-site-nav {
    display: block;
  }

  .site-nav {
    display: none;
  }

  .header-navigation {
    display: block;
    padding: 0;
    position: static;
    pointer-events: none;
  }
  .header-navigation .navigation__container {
    opacity: 0;
    transition: all 150ms cubic-bezier(0.46, 0.03, 0, 1);
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    padding: 20px 0;
    background-color: #ffffff;
    color: #000000;
    z-index: 999;
    overflow: scroll;
  }
  .header-navigation .navigation__container .site-nav__item:first-child .site-nav__link {
    padding-left: 20px;
  }
  .header-navigation .mobile-menu-utils,
.header-navigation .mobile-menu-search-bar,
.header-navigation .mobile-site-nav,
.header-navigation .header-social-icons {
    opacity: 0;
    transform: translate3d(0, -10px, 0);
    transition: all 350ms cubic-bezier(0.46, 0.03, 0, 1);
  }
  .header-navigation .mobile-menu-search-bar {
    position: relative;
  }
  .header-navigation .mobile-menu-utils {
    transition-delay: 100ms;
  }
  .header-navigation .mobile-menu-search-bar {
    transition-delay: 200ms;
  }
  .header-navigation .mobile-site-nav {
    transition-delay: 300ms;
  }
  .header-navigation .header-social-icons {
    transition-delay: 400ms;
  }
  .header-navigation .mobile-menu-search-bar .mobile-menu-search {
    pointer-events: none;
  }

  .header-navigation--open {
    pointer-events: auto;
  }
  .header-navigation--open .navigation__container {
    opacity: 1;
  }
  .header-navigation--open .mobile-menu-utils,
.header-navigation--open .mobile-menu-search-bar,
.header-navigation--open .mobile-site-nav,
.header-navigation--open .header-social-icons {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  .header-navigation--open .mobile-menu-search-bar .mobile-menu-search {
    pointer-events: auto;
  }
}
.template-blog .store-messages-bar {
  margin-bottom: 0;
}

.store-messages-bar {
  background-color: #f7db5e;
  color: #000000;
  position: relative;
  z-index: 1;
      overflow: hidden;
    width: 100%;

      background: url(https://cdn.shopify.com/s/files/1/0607/9224/2416/files/shipping_bar.jpg?v=1739260993);
}

.store-messages {
  /* align-items: center;
  display: flex;
  justify-content: space-between; */
  text-align: center;
  /* overflow: hidden; */
}

.store-message {
  font-size: 0.875rem;
  /* flex: 1 0 33%; */
  padding: 8px;
  position: relative;
}
.js-messages-slider > .store-message {
  flex: 0 0 100%;
}

@media only screen and (max-width: 767.98px) {
  .js-mobile-messages-slider > .store-message {
    flex: 0 0 100%;
  }
}

.store-message--static:not(:first-child)::before {
  position: absolute;
  content: "";
  height: 15px;
  width: 1px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: ;
}

.store-message-link {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.25s;
    font-weight: bold;
      display: flex;
    align-items: center;
      color: #000;
}
.store-message-link:hover {
  color: #000;
  opacity:1
}

@media only screen and (max-width: 767.98px) {
  .store-message--static::before {
    display: none;
  }
}
.customer-account {
  position: relative;
}

.customer-account__menu {
  display:none;
      position: absolute;
    z-index: 3;
    top: 100%;
    right: 0;
  background-color: #ffffff;
  padding: 15px 30px 30px;
    background-color: #fffbf4;
    border-bottom: 3px solid #333333;
    border-left: 1px solid rgba(51, 51, 51, 0.1);
    border-right: 1px solid rgba(51, 51, 51, 0.1);
    border-top: 1px solid rgba(51, 51, 51, 0.1);
    box-shadow: 0px 2px 4px 0px rgb(0 0 0 / 15%);
  line-height: 1.5em;
}

.customer-account__link {
  color: #000000;
}

.customer-account__link a {
  color: #000000;
  font-weight: 500;
  transition: opacity 0.25s;
}
.customer-account__link a:hover {
  opacity: 0.6;
}

@media only screen and (min-width: 768px) {
  .customer-account:not(.customer-account--using-touch):hover .customer-account__menu,
.customer-account--reveal-menu .customer-account__menu {
    display: block;
  }
}
.cart-discount-list {
  margin: 1em 0;
}
.cart-discount-list:last-child {
  margin-bottom: 0;
      text-align: left;
}

.cart-discount {
  list-style: none;
}
.cart-discount:not(:last-child) {
  margin-bottom: 0.5em;
}

.cart-discount__amount::before {
  content: "-";
}

.cart-discount--inline .cart-discount__label {
  margin-right: 1em;
}

.search-bar {
  background-color: transparent;
  margin: 0 auto;
  opacity: 0;
  pointer-events: none;
  position: relative;
  z-index: 1;
  transition: opacity 0.25s;
  width: 70%;
}

.search-bar.mobile-only {
  display: none;
}

.search-bar-open .search-bar,
.search-bar--open {
  opacity: 1;
  pointer-events: auto;
  z-index: 102;
}
.search-bar-open .search-bar .search-form__icon,
.search-bar--open .search-form__icon {
  opacity: 1;
}

.search-bar__container {
  position: relative;
  display: flex;
      padding: 20px 10px 20px 30px;
    border-top: 1px solid #eee;
}

.search-form__icon {
  opacity: 0;
  transition: opacity 0.25s;
}

.search-form {
  padding: 0;
  width: 100%;
  border-bottom:1px solid #333
}

.search-form__input {
  color: #000000;
  margin: 0;
  padding: 10px 15px;
  width: 100%;
  border: 0;
  border-radius: 0;
}
.search-form__input:focus {
  outline: none;
}
.search-form__input::placeholder {
  color: #000000;
  opacity: 0.75;
}

.search-form__button {
  display: none;
}

.search-bar__results {
  display: block!important;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  color: #212B36;
  background: #fff;
  padding: 15px 0;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.15);
}
.search-bar--has-results .search-bar__results {
  display: block;
}
.search-bar--loading-results .search-bar__results {
  display: block;
}

.mobile-menu-search-bar .search-bar__results {
  background-color: #ffffff;
  color: #000000;
}

.hide-for-search {
  z-index: 1;
}

.search-bar-open .hide-for-search {
  opacity: 0;
  pointer-events: none;
}

.mobile-search,
.mobile-menu-search-bar {
  display: none;
}

.mobile-menu-search-bar {
  margin: 0;
  padding: 0 20px;
  width: 100%;
}

.mobile-menu-search {
  padding-bottom: 5px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  opacity: 1;
  width: auto;
}
.mobile-menu-search .search-form__icon {
  opacity: 1;
}

.mobile-menu-search-bar .mobile-menu-search {
  margin: 0 -5px 10px;
  padding: 5px;
}
.mobile-menu-search-bar .mobile-menu-search.search-bar--open {
  width: 100%;
}

.settings-open-bar.desktop-only {
  opacity: 1;
  min-width: 200px;
  flex: 1 1 0;
  display:none!important
}
.settings-open-bar.desktop-only .search-form__icon {
  opacity: 1;
  position: absolute;
  left: 0;
}
.settings-open-bar.desktop-only .search-form__input {
  padding-left: 50px;
}
.settings-open-bar.desktop-only + .store-logo--text + .utils__right {
  flex: 1 0 0;
}

.settings-open-bar--small {
  margin: 0 auto 0 0;
}

@media only screen and (min-width: 940px) {
  .search-bar--fadein {
    left: 15%;
    position: absolute;
    z-index: 0;
  }
  .search-bar--fadein.search-bar--open {
    z-index: 2;
  }

  .settings-close-bar--left {
    left: 0;
    width: 100%;
  }
}
.search-bar--open-mobile {
  display: none;
}
.search-bar--open-mobile .js-search-form-open {
  pointer-events: none;
}

@media only screen and (max-width: 939.98px) {
  .search-bar.desktop-only {
    display: none;
  }

  .search-bar.mobile-only {
    display: block !important;
    margin-left: 0;
    width: calc(100% - (20px * 2));
  }

  .mobile-menu-search-bar {
    display: block;
  }

  .mobile-search {
    display: block;
    z-index: 2;
  }

  .search-bar.mobile-search {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    margin: 0 20px;
    opacity: 0;
    transition: opacity 0.25s;
    width: calc(100% - (20px * 2));
    z-index: 0;
    pointer-events: none;
  }
  .search-bar-open .search-bar.mobile-search {
    opacity: 1;
    transition: opacity 0.25s;
    z-index: 3;
    pointer-events: auto;
  }
  .search-bar-open .search-bar.mobile-search .search-form__icon {
    opacity: 1;
  }

  .search-bar-open .hide-for-search-mobile {
    opacity: 0;
    pointer-events: none;
  }

  .search-bar--fadein {
    padding: 0;
    width: calc(100% - (30px * 2));
    margin-left: 10px;
    position: absolute;
  }

  .desktop-only,
.settings-closed-bar {
    display: none !important;
  }

  .search-bar--open.search-bar--open-mobile {
    display: block;
    padding: 10px 15px;
    width: 100%;
    margin: 0;
    text-align: left;
    background-color: #000000;
    color: #ffffff;
    z-index: 101;
  }
  .search-bar--open.search-bar--open-mobile .search-form__icon-close {
    display: none;
  }
  .search-bar--open.search-bar--open-mobile .search-form__input,
.search-bar--open.search-bar--open-mobile .search-form__input::placeholder {
    color: inherit;
  }

  .search-bar__results {
    left: 0;
    width: 100%;
  }
}
.breadcrumbs-container {
  position: relative;
  z-index: 2;
  background-color: #ffffff;
}

.breadcrumbs {
  display: flex;
  justify-content: space-between;
  /* To make up for extra padding at top of sticky columns */
}
.template-product .breadcrumbs,
.template-suffix-new-users-only .breadcrumbs{
  margin-bottom: -30px;
}
.breadcrumbs .icon {
  height: auto;
  opacity: 0.5;
}
.breadcrumbs .icon > svg {
  display: block;
  width: 1.5em;
  height: 1.5em;
  margin: auto;
}

.breadcrumbs-list {
  display: flex;
  flex-wrap: wrap;
  margin: 12px 0;
  padding: 0;
}
@media only screen and (min-width: 768px) {
  .breadcrumbs-list:not(:last-child) {
    margin-right: 15px;
  }
}

.breadcrumbs-list__item {
  padding: 3px 0;
}

.breadcrumbs-list__item,
.breadcrumbs-prod-nav,
.breadcrumbs-prod-nav__link {
  display: flex;
  align-items: center;
}

.breadcrumbs-prod-nav__link:nth-of-type(2)::before {
  content: "·";
  margin: 0 0.6em;
  font-size: 120%;
  line-height: 1em;
  opacity: 0.5;
}

@media only screen and (max-width: 767.98px) {
  .breadcrumbs-prod-nav {
    display: none;
  }
}
.rimage-outer-wrapper {
  margin-left: auto;
  margin-right: auto;
}

.rimage-wrapper {
  position: relative;
  transition: background 500ms;
}
.rimage-wrapper.lazyload--placeholder {
  background: #f4f4f4;
}
.rimage-wrapper .rimage__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.rimage-wrapper .rimage__image.blur-in {
  -webkit-filter: blur(10px);
  filter: blur(10px);
  transition: filter 400ms, -webkit-filter 400ms;
}
.rimage-wrapper .rimage__image.blur-in.lazyloaded {
  -webkit-filter: blur(0);
  filter: blur(0);
}
.rimage-wrapper .rimage__image.fade-in {
  opacity: 0;
  transition: opacity 500ms;
}
.rimage-wrapper .rimage__image.fade-in.lazyloaded {
  opacity: 1;
}
.rimage-wrapper .rimage__image.cover {
  object-fit: cover;
}

.rimage-background {
  background-size: cover;
  background-position: center center;
}
.rimage-background.fade-in {
  opacity: 0;
  
}
.rimage-background.fade-in.lazyloaded {
  opacity: 1;
}

.selectors-form__item {
  display: inline-block;
  margin: 15px 15px 0 0;
}
.selectors-form__item:last-of-type {
  margin-right: 0;
}

.disclosure {
  position: relative;
      width: 80px;
}

.disclosure__toggle {
  background-color: transparent;
  border: 1px solid currentColor;
  border-radius: 8px;
  box-shadow: none;
  color: currentColor;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Helvetica Neue, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4em;
  max-width: 100%;
  min-width: 0;
  padding: 9px 34px 9px 14px;
  position: relative;
  font-size: 0.875rem;
  text-align: left;
}
.disclosure__toggle .icon {
  width: 20px;
  position: absolute;
  right: 9px;
  top: 50%;
  transform: translateY(-50%);
}
.disclosure__toggle:hover {
  background-color: transparent;
  box-shadow: none;
  border: 1px solid currentColor;
  color: currentColor;
}
.disclosure__toggle[aria-expanded=true]::before, .disclosure__toggle[aria-expanded=true]::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 18px;
  top: 0;
  margin-top: -8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 8px 0 8px;
  z-index: 3;
}
.disclosure__toggle[aria-expanded=true]::before {
  border-color: #dde0e4 transparent transparent transparent;
}
.disclosure__toggle[aria-expanded=true]::after {
  margin-top: -9px;
  border-color: #fff transparent transparent transparent;
}
.disclosure__toggle[aria-controls=country-list-desktop-header] {
  max-width: 200px;
}

.disclosure-list {
  background: #fff;
  border: 1px solid #dde0e4;
  border-radius: 4px;
  color: #393939;
  bottom: 115%;
  margin: 0;
  padding: 0;
  position: absolute;
  display: none;
  min-height: 90px;
  max-height: 300px;
  width: max-content;
  max-width: 280px;
  overflow-y: auto;
  z-index: 1;
}
.disclosure-list:hover .disclosure-list__item--current .disclosure-list__option:not(:hover) {
  background: transparent;
}

.disclosure-list--visible {
  display: block;
}

.disclosure-list__item {
  text-align: left;
  white-space: initial;
}
.disclosure-list__item:not(:last-child) {
  border-bottom: 1px solid #f6f6f6;
}

.disclosure-list__option {
  display: block;
  padding: 9px 35px 9px 15px;
  color: #393939;
  text-decoration: none;
}
.disclosure-list__option:focus, .disclosure-list__option:hover {
  color: #393939;
  background-color: #f2f2f2;
}

.disclosure-list__item--current .disclosure-list__option {
  background: #f2f2f2;
}

.footer-localization {
  margin-bottom: 15px;
  text-align: right;
}

.header-localization .disclosure .disclosure-list {
  top: calc(100% + 8px);
  bottom: auto;
  z-index: 1;
}
.header-localization .disclosure .disclosure__toggle[aria-expanded=true]::before, .header-localization .disclosure .disclosure__toggle[aria-expanded=true]::after {
  top: auto;
  bottom: 0;
  margin-top: auto;
  margin-bottom: -10px;
  border-width: 0px 8px 8px 8px;
}
.header-localization .disclosure .disclosure__toggle[aria-expanded=true]::before {
  border-color: transparent transparent #dde0e4 transparent;
}
.header-localization .disclosure .disclosure__toggle[aria-expanded=true]::after {
  margin-bottom: -11px;
  border-color: transparent transparent #fff transparent;
}

.header-localization .selectors-form__item {
  margin: 0 15px 0 0;
}

.header-localization--desktop .selectors-form {
  white-space: nowrap;
}
.header-localization--desktop .disclosure .disclosure__toggle {
  border: none;
  padding: 0 24px 0 0;
  min-width: 0;
      font-size: 12px;
}
.header-localization--desktop .disclosure .disclosure__toggle .icon {
  right: 0;
}

.header-localization--mobile .selectors-form__item {
  margin-top: 10px;
  max-width: 100%;
}
.header-localization--mobile .selectors-form__item .disclosure__toggle {
  text-align: left;
}

@media only screen and (max-width: 767.98px) {
  .footer-localization {
    margin: 30px 0;
    text-align: left;
  }
}
.search-result {
  display: flex;
  align-items: center;
  padding: 7.5px 30px;
  color: inherit;
}
.search-result .search-result__title--product {
  text-transform: none;
}
.search-result .search-results__title:not(.search-result__title--product) {
  text-transform: none;
}
.search-result .search-result__image {
  width: 40px;
  height: 40px;
  margin-right: 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  overflow: hidden;
  text-align: center;
  flex-shrink: 0;
}
.search-result .search-result__image img {
  vertical-align: top;
}
.search-result .search-result__image .search-result__char {
  font-size: 27px;
  line-height: 40px;
  opacity: 0.3;
}
.search-result:hover {
  background: rgba(0, 0, 0, 0.05);
}

.search-result--empty,
.search-result--loading,
.search-result--more {
  padding: 15px 30px 15px 85px;
}

.search-page {
  margin-bottom: 52.5px;
}

.search-page-form {
  display: flex;
  justify-content: center;
}

.search-page-button {
  margin: 6px;
}

.search-result__price {
  font-size: 1.25rem;
}

.product-price__from {
  font-size: 1rem;
}

.search-result__vendor {
  font-size: 0.875rem;
}

@media only screen and (min-width: 768px) {
  .search-page {
    margin-bottom: 75px;
  }
}
@media only screen and (max-width: 479.98px) {
  .search-page-form {
    flex-wrap: wrap;
  }
  .search-page-form #Search,
.search-page-form .search-page-button {
    width: 100%;
    margin: 10px 0;
  }
}
.tabs {
  margin: 0 0 22.5px;
  padding: 0;
  text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.tabs li {
  padding: 0;
  display: inline-block;
  min-width: min-content;
  margin: 0 40px -1px;
}
@media only screen and (max-width: 767.98px) {
  .tabs li {
    margin: 0 10px -1px;
  }
}
.tabs li:first-child {
  margin-left: 0;
}
/* .tabs li:last-child {
  margin-left: 0;
  margin-right: 0;
} */
.tabs a {
    display: block;
    padding: 13px 0;
    color: #000000;
    text-decoration: none;
    position: relative;
    line-height: normal;
    /* text-transform: uppercase; */
  /* font-weight: bold; */
}
.tabs a:after {
  position: absolute;
  content: "";
  background-color: #000000;
  height: 3px;
  width: 100%;
  left: 0;
  transform-origin: bottom;
  transition: transform 0.25s;
  transform: scaleY(0);
  bottom: 0;
}
.tabs .tab--active:after {
  transform: scaleY(1);
}

.product-description__no-expand .tabs {
  justify-content: flex-start;
  gap: 30px;
}

.tab-content {
  display: none;
}

.tab-content--active,
.no-js .tab-content {
  display: block;
}
a.store-message-link img{
    width: 30px;
    vertical-align: middle;
    margin-right: 5px;
    margin-top: -6px;
}
.store-message-link img.turn-right{
  margin-left: 10px;
    margin-right: 0;
    position: absolute;
    top: 18px;
    width: 20px;
}
@media only screen and (min-width: 768px) {
  
  .tabs a:hover:after {
    transform: scaleY(1);
  }
}
.product-price__reduced {
  color: #ff4400;
}

.product-price__compare,
.product-price__compare-large {
  font-size: 70%;
  opacity: 0.5;
  text-decoration: line-through;
}
.product-detail__price .product-price__compare,
.product-detail__price .product-price__compare-large {
  font-size: inherit;
  margin-left: 0.5em;
}

.unit-price {
  font-size: 0.875rem;
}

.product-block {
  position: relative;
}
.product-block .product-price {
  font-size: 0.85rem;
  margin: 0;
}
.product-block .product-price__from,
.product-block .product-price__compare {
  font-size: 0.85rem;
}

.product-block__image {
  display: block;
  position: relative;
  overflow: hidden;
}
.product-block__image .image-one .rimage__image {
  object-fit: contain;
  object-position: bottom;
}

.product-block__image--crop-false:not(.product-block__image--shape-natural) .image-one .rimage__image {
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  transform: translate3d(-50%, -50%, 0);
  border-radius: 15px;
}
.product-block__image--crop-false:not(.product-block__image--shape-natural).product-block__image--valign-top .image-one .rimage__image {
  top: 0;
  transform: translate3d(-50%, 0, 0);
}
.product-block__image--crop-false:not(.product-block__image--shape-natural).product-block__image--valign-bottom .image-one .rimage__image {
  top: auto;
  bottom: 0;
  transform: translate3d(-50%, 0, 0);
}

.product-block__title {
  margin-top: 0.5em;
  text-transform: none;
}

.product-block__title-link {
  text-decoration: none;
  color: inherit;
  font-weight:bold;
  font-size:1.15em;
}

.product-block__vendor {
  margin-bottom: 0.1em;
  font-size: 0.875rem;
}

.product-label {
  font-size: 0.875rem;
  padding: 0.25em 0.75em;
  position: absolute;
}
@media only screen and (max-width: 1023.98px) {
  .product-label {
    font-size: 0.875rem;
  }
}

.product-label {
  
  top: 10px;
  right: 10px;
  
}

.product-label--on-sale {
  color: #fff;
  background: #ff4400;
}

.product-label--sold-out {
  color: #fff;
  background: #444649;
}

.product-block__swatches {
  padding: 0;
}

.product-swatch-inline__dot,
.product-swatch-inline__image {
  display: inline-block;
  margin: 4px 3px 2px;
  background-size: 100%;
  vertical-align: middle;
}
.product-swatch-inline__dot::before,
.product-swatch-inline__image::before {
  background-color: var(--swatch-background-color);
  background-image: var(--swatch-background-image);
}

.product-swatch-inline__dot {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  position: relative;
}
.product-swatch-inline__dot::before {
  border-radius: 5px;
}
.product-swatch-inline__dot::after {
  box-shadow: inset 0 3px 3px -2px rgba(0, 0, 0, 0.25);
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 5px;
  top: 0;
  left: 0;
}

.product-swatch-inline__image {
  width: 30px;
  height: 30px;
  border-radius: 4px;
}

.swatch-sample {
  background-color: var(--swatch-background-color);
  background-image: var(--swatch-background-image);
}

.product-block__swatches:not(:hover) .product-swatch-inline__image:nth-child(n+4),
.product-block__swatches:hover .product-block__swatches-more-label {
  display: none;
}

.product-block__swatches-more-label {
  display: inline-block;
  margin: 4px 3px 2px;
  vertical-align: middle;
}

@media only screen and (max-width: 767.98px) {
  .product-block__swatches-more-label {
    display: block;
    margin: 0;
  }
}
/**
* For use in cart, order, ajax-added notification
*/
.product-summary {
  display: flex;
}

.product-summary__image {
  width: 25%;
  margin-right: 15px;
}

.product-summary__content {
  margin: 15px 0;
}

.product-summary__variants,
.product-summary__subscription {
  color: #666666;
  font-size: 0.875rem;
}

.size-chart-link {
display: block;
    /* margin-top: 15px; */
    /* margin-bottom: 30px; */
    position: absolute;
    right: 0;
    top: 0;
      font-size: 14px;
}

.size-chart-container {
  background: rgb(0 0 0 / 0%);
  position: fixed;
  top: 0;

  left: 0;
width:100%;
  height:100%;
  z-index: 5000;
  overflow: auto;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s;
}
.sizeguide__mask{
   background: rgb(0 0 0 / 50%);
  position: fixed;
  top: 0;

  left: 0;
width:100%;
  height:100%;
  z-index: 5000;
}
.size-chart-is-open .header-content,
.size-chart-is-open .header-navigation,
.size-chart-is-open .docked-header--dock .docked-navigation-container__inner {
  z-index: 0;
}
.size-chart-is-open .breadcrumbs {
  display: none;
}
.size-chart-is-open .size-chart-container {
  pointer-events: auto;
  opacity: 1;
}

.size-chart-content {
    position: absolute;
    left: auto;
    top: 0;
    transform: none;
    max-width: 100%;
    width: 500px;
    background: #fff;
    right: 0;
    height: 100%;
    padding: 30px 40px;
  z-index:5001
}
.size-chart-content table {
  overflow: auto;
}
.size-chart-content tr {
  display: flex;
}

.size-chart-close {
  position: absolute;
  right: 30px;
  top: 30px;
  z-index:5002
}
.product-detail__options .row {
      position: relative;
}
@media only screen and (max-width: 767.98px) {
  .size-chart-close {
    right: 20px;
    top: 20px;
  }
  .size-chart-content{
        width: 100%;
    padding: 0;
  }
}
.overlay {
  padding: 30px 30px 35px;
  position: absolute;
  width: calc(50% - (30px * 4));
  pointer-events: none;
}
.overlay .large-title {
  margin-bottom: 15px;
}
.overlay a {
  margin: 15px 15px 0;
}
.overlay a,
.overlay button {
  pointer-events: auto;
}

.overlay__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.overlay__content {
  position: relative;
  z-index: 1;
}
.overlay__content > .large-title:last-child {
  margin-bottom: 0;
}

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

.overlay--wide {
  left: 50% !important;
  min-width: auto;
  transform: translateX(-50%);
  width: calc(100% - (30px * 4));
  margin-left: 0 !important;
}

.overlay--bottom-wide {
  bottom: 30px;
  left: 50% !important;
  min-width: auto;
  top: auto !important;
  transform: translateX(-50%);
  width: calc(100% - (30px * 4));
}

.overlay--low-wide {
  bottom: 90px;
  left: 50% !important;
  min-width: auto;
  top: auto !important;
  transform: translateX(-50%);
  width: calc(100% - (30px * 4));
  max-width: 516px;
}

.split-image-section .overlay {
  min-width: 0;
  width: calc(100% - (30px * 4));
}

.overlay--has-link .overlay-title {
  margin-bottom: 15px;
}

.overlay-text {
  margin: 15px 0 15px 0;
}
.overlay-text:first-child {
  margin-top: 0;
}
.overlay-text:last-child {
  margin-bottom: 0;
}

.overlay-footer {
  font-size: 1rem;
}

.overlay-tag {
  display: inline-block;
  margin: 0 6px;
  opacity: 0.8;
}
.overlay-tag.overlay-tag--inherit-color {
  opacity: 1;
}
.overlay-tag.overlay-tag--inherit-color a {
  color: inherit;
}

.overlay-position {
  position: absolute;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  z-index: 1;
}
.overlay-position.overlay-style--box {
  padding: 30px;
}
.overlay-position.overlay-style--box .overlay-container {
  position: relative;
}
.overlay-position.overlay-style--box .overlay__bg--empty {
  display: none;
}
.overlay-position.overlay-style--no_background .overlay__bg {
  display: none;
}
.overlay-position .overlay-container {
  position: static;
}

.overlay-position--top-left {
  align-items: flex-start;
  justify-content: flex-start;
}

.overlay-position--top-center {
  align-items: flex-start;
}

.overlay-position--top-right {
  align-items: flex-start;
  justify-content: flex-end;
}

.overlay-position--center-left {
  justify-content: flex-start;
}

.overlay-position--center-center {
  justify-content: center;
  align-items: center;
}

.overlay-position--center-right {
  justify-content: flex-end;
}

.overlay-position--bottom-left {
  align-items: flex-end;
  justify-content: flex-start;
}

.overlay-position--bottom-center {
  align-items: flex-end;
}

.overlay-position--bottom-right {
  align-items: flex-end;
  justify-content: flex-end;
}

.overlay-container {
  padding: 30px;
}
@media only screen and (max-width: 767.98px) {
  .overlay-container {
    padding: 20px;
  }
}

@media only screen and (max-width: 1080px) {
  .overlay-standard {
    padding: 20px 20px 24px;
    min-width: 0;
    width: calc(50% - (20px * 2));
  }
  .overlay-standard.overlay--bottom-wide, .overlay-standard.overlay--wide {
    min-width: 0;
    width: calc(100% - (20px * 2));
  }

  .split-image-section .overlay {
    width: calc(100% - (20px * 2));
  }
}
@media only screen and (max-width: 767.98px) {
  .overlay-standard {
    width: auto;
    max-width: calc(100% - (20px * 2));
  }
  .overlay-standard .extra-large-text {
    font-size: 1rem;
  }

  .mobile-overlay-under .overlay__bg {
    opacity: 1 !important;
  }

  .overlay-standard.mobile-overlay-under {
    bottom: 30px;
    left: 50% !important;
    min-width: auto;
    position: relative;
    top: auto !important;
    transform: translateX(-50%);
    width: calc(100% - (20px * 2));
    padding: 45px 30px;
    margin: 0 !important;
  }

  .split-image-section .overlay,
.standout-collection-section .overlay {
    padding: 45px 30px;
  }

  .overlay--use-body-colours-mobile .overlay__bg {
    background-color: #ffffff !important;
  }
  .overlay--use-body-colours-mobile .overlay__content {
    color: #000000 !important;
  }
  .overlay--use-body-colours-mobile .overlay__content .standard-link {
    color: #000000 !important;
  }
  .overlay--use-body-colours-mobile .overlay__content .standard-link:hover {
    color: #000000 !important;
  }
}
@media only screen and (max-width: 479.98px) {
  .overlay {
    min-width: 0;
    width: calc(100% - (40px));
  }

  .overlay.position.overlay-style--box {
    padding: 20px;
  }
}
.image-product-label {
  position: absolute;
  text-decoration: none;
  z-index: 2;
}
.image-product-label.chevron-left .image-product-label__content {
  padding-left: 36px;
}
.image-product-label.chevron-left .image-product-label__content .icon--image-product-label {
  left: 10px;
}
.image-product-label.chevron-left .image-product-label__content .icon--image-product-label .icon {
  transform: translate(-50%, -50%) rotate(180deg);
}
.image-product-label.chevron-right .image-product-label__content {
  padding-right: 36px;
}
.image-product-label.chevron-right .image-product-label__content .icon--image-product-label {
  right: 10px;
}
.image-product-label.is-overlapping {
  visibility: hidden;
  pointer-events: none;
}

.image-product-label-title {
  font-size: 0.75rem;
  line-height: 1.2;
  margin-bottom: 3px;
  max-width: 200px;
  text-transform: none;
}

.image-product-label-price {
  font-size: 1.25rem;
  line-height: 1;
  white-space: nowrap;
}

.image-product-label-price__from {
  font-size: 0.875rem;
}

.image-product-label-price__compare {
  font-size: 0.875rem;
}

.image-product-label .unit-price {
  margin-top: 3px;
}

.icon--image-product-label {
  height: 12px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
}
.icon--image-product-label .icon {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.image-product-label__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  z-index: 1;
}

.image-product-label__content {
  position: relative;
  z-index: 1;
  padding: 10px;
}

@media only screen and (max-width: 767.98px) {
  .image-product-label-title {
    font-size: 0.75rem;
  }

  .image-product-label-price {
    font-size: 1rem;
  }

  .image-product-label__content {
    padding: 8px;
  }

  .image-product-label.chevron-left .image-product-label__content {
    padding-left: 30px;
  }
  .image-product-label.chevron-left .image-product-label__content .icon--image-product-label {
    left: 8px;
  }
  .image-product-label.chevron-right .image-product-label__content {
    padding-right: 30px;
  }
  .image-product-label.chevron-right .image-product-label__content .icon--image-product-label {
    right: 8px;
  }

  .icon--image-product-label {
    height: 8px;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
  }
  .icon--image-product-label .icon {
    width: 18px;
    height: 18px;
  }

  .image-product-label__background--dark-mobile {
    background: #000;
    opacity: 0.5;
  }

  .image-product-label__background--light-mobile {
    background: #fff;
    opacity: 0.5;
  }
}
.article {
  /* border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding-top: 30px;
  padding-bottom: 37.5px; */
}
.article:first-child {
  border-top: 0;
  padding-top: 0;
}
.article:first-child .article__heading-image {
  margin-top: 0;
}

.article-page .split-column-layout .article-container {
  padding-left: 60px;
  padding-right: 60px;
  padding-top: 30px;
}
.article-page .split-column-layout .article__title {
  margin-bottom: 15px;
}

.article-page .single-column-layout {
  display: flex;
  justify-content: center;
  max-width: 960px;
}
.article-page .single-column-layout .one-half {
  width: 100%;
}
.article-page .single-column-layout .article-container {
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 30px;
}
.article-page .single-column-layout .article-featured-image {
  display: none;
}
.article-page .single-column-layout .article-featured-image.mobile-only {
  display: block;
}
.article-page .single-column-layout .blog-articles-list {
  max-width: initial;
  width: 100%;
  padding: 60px 0 0;
  margin: 0;
}
.article-page .single-column-layout .blog-rsslink {
  display: inline-block;
  position: absolute;
  right: 0;
  top: 30px;
}
.article-page .single-column-layout.with-image {
  flex-wrap: wrap;
}
.article-page .single-column-layout.with-image .article-overlay {
  display: block;
  bottom: 30px;
  left: 50% !important;
  min-width: auto;
  position: relative;
  top: auto !important;
  transform: translateX(-50%);
  width: calc(100% - (30px * 2));
  padding: 45px 30px 0 30px;
}
.article-page .single-column-layout.with-image .article-overlay .article__authordate {
  margin-top: 15px;
  justify-content: center;
}
.article-page .single-column-layout.with-image .article__title {
  display: none;
}
.article-page .single-column-layout.with-image .article-container {
  padding-top: 0;
}

.article__title {
  word-break: break-word;
  hyphens: auto;
      margin-top: 12px;
}

.article-content {
  padding: 30px 30px 0;
}

.article-container .content-products {
  margin-left: -30px;
}
@media (max-width: 960px) {
  .article-container .content-products {
    margin-right: -60px;
    padding-right: 60px;
  }
}
@media only screen and (max-width: 767.98px) {
  .article-container .content-products {
    margin-left: -20px;
    margin-right: -20px;
    padding-right: 20px;
  }
}

.article-overlay {
  background-color: #ffffff;
  display: none;
}

.template-article .article {
  border-top: 0;
  padding-bottom: 0;
}

.article__heading-image {
  display: block;
  margin: 30px 0;
}
.article-featured-image {
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  border-radius: 0 15px 0 0;
  overflow: hidden;
  transition: border-radius 3s;
}
.article-featured-image.mobile-only {
  display: none;
  height: auto;
}

.is_stuck .article-featured-image {
  animation: radius-corners 0.3s ease-in-out 1 forwards;
}

.article__title--no-image {
  padding-top: 30px;
}

.article__tags {
  margin-top: 15px;
}

.article__read-more {
  margin: 15px 0 30px 0;
}

.article__meta {
  display: flex;
}
.article__meta .article__authordate {
  flex-grow: 1;
}

.article__authordate {
  display: flex;
  align-items: center;
  line-height: 1.5em;
}
.article__authordate .article__avatar {
  margin: 0 15px 0 0;
  width: 48px;
  height: 48px;
  overflow: hidden;
  border-radius: 100%;
}
.article__authordate .article__avatar .rimage-background {
  width: 100%;
  height: 100%;
}
.article__authordate .article__date {
  color: #666666;
}

.article__comments-count {
  color: #666666;
}

.article-pagination {
  margin-top: 30px;
  padding: 30px 0;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}
.article-pagination .prev,
.article-pagination .next {
  color: inherit;
  line-height: 1;
  text-decoration: none;
  transition: opacity 0.25s;
}
.article-pagination .prev:hover,
.article-pagination .next:hover {
  opacity: 0.7;
}

.article__comments-summary {
  color: #666666;
  line-height: initial;
}
.article__comments-summary a {
  color: inherit;
  text-decoration: none;
}

.article__comments-title {
  margin: 60px 0 30px;
}

.article__comment {
  padding: 7.5px 0;
}
.article__comment p {
  margin-top: 0;
}
.article__comment .rte {
  margin-bottom: 5px;
}
.article__comment .rte p {
  margin-bottom: 5px;
}

.article__comment--author {
  font-size: 75%;
}
.article__comment--author time {
  color: #666666;
}

.article__comment-form-required {
  color: #666666;
  margin-bottom: 15px;
}

@media only screen and (max-width: 767.98px) {
  .article {
    padding-bottom: 40px;
  }
  .article .product-block.small-down--one-half {
    clear: none;
  }

  .article__title--split-layout {
    display: none;
  }

  .article-page .single-column-layout.with-image .article-overlay {
    padding-bottom: 20px;
  }

  .article-overlay--no-image {
    bottom: auto;
  }

  .article-content {
    padding: 20px;
  }

  .article-block .content-products {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 40px;
    padding-right: 20px;
  }

  .article-page .split-column-layout {
    padding-left: 20px;
    padding-right: 20px;
  }
  .article-page .split-column-layout .article-container {
    margin-top: -40px;
    padding-top: 0;
    padding-left: 20px;
    padding-right: 20px;
  }
  .article-page .single-column-layout {
    display: block;
  }
  .article-page .single-column-layout .article-container {
    margin-top: -20px;
    padding-top: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .article-container {
    overflow: hidden;
    padding: 0 20px;
  }
  .article-container .product-block.small-down--one-half {
    clear: none;
  }

  .article__heading-image {
    margin: 0 0 20px;
  }
  .article__heading-image .rimage-outer-wrapper {
    border-radius: 0;
  }

  .article__title.desktop-only {
    display: none;
  }

  .article-featured-image {
    display: none;
    border-radius: 15px;
    height: auto;
  }
  .article-featured-image.mobile-only {
    display: block;
  }

  .article__comments-title {
    margin: 40px 0 20px;
  }

  .mobile-only {
    display: block;
  }
  .mobile-only .article__authordate {
    margin-top: 10px;
    display: block;
  }
  .mobile-only .article__authordate .article__avatar {
    margin: 10px auto;
  }
}
@media only screen and (max-width: 479.98px) {
  .article-page .split-column-layout {
    padding-left: 0;
    padding-right: 0;
  }
  .article-page .article-featured-image {
    border-radius: 0;
  }
  .article-page .article-featured-image .rimage-outer-wrapper {
    border-radius: 0;
  }
  .article-page .single-column-layout .article-featured-image.mobile-only .rimage-outer-wrapper {
    border-radius: 0;
  }
}
.content-products {
  margin-top: 30px;
  overflow: hidden;
}
.content-products .grid {
  margin-left: 0;
}
.content-products .product-block.grid__item {
  clear: none;
}
.content-products .slick-track {
  margin: 0;
}
.content-products .product-block .product-block__title {
  font-size: 0.875rem;
}
.content-products .product-block .product-price {
  font-size: calc(0.875rem * 1.283);
  margin: 5px 0;
}
.content-products .product-block .product-label {
  font-size: 0.875rem;
}
.content-products .product-block .unit-price {
  font-size: 0.875rem;
}

.content-products__title {
  margin: 0 0 15px;
  color: #666666;
  word-break: break-word;
  hyphens: auto;
}

.content-products__title {
  padding: 0 30px;
}

.content-products-controls .prev,
.content-products-controls .next {
  transition: opacity 0.25s;
}
.content-products-controls .prev:hover,
.content-products-controls .next:hover {
  opacity: 0.7;
}

@media (max-width: 960px) {
  .content-products {
    margin-right: -30px;
    padding-right: 30px;
  }
}
@media only screen and (max-width: 767.98px) {
  .content-products {
    margin-right: -20px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .content-products-controls {
    display: none;
  }

  .content-products__title {
    padding: 0;
  }

  .content-products__products {
    margin-left: -20px;
  }

  .content-products__products .grid {
    margin-left: 0;
  }
}
@media only screen and (max-width: 479.98px) {
  .content-products {
    margin-right: 0;
  }
}
#colorbox {
  margin-top: 5px;
  border-radius: 15px;
  box-shadow: 0px 0px 4px 4px rgba(0, 0, 0, 0.15);
}

#colorbox,
#cboxWrapper {
  overflow: visible !important;
}

#cboxOverlay {
  background: rgba(0, 0, 0, 0.4);
}

#cboxContent {
  background-color: #ffffff;
  border-radius: 15px;
}

@media only screen and (max-width: 767.98px) {
  #colorbox {
    border-radius: 0;
  }
}
#cboxClose {
  position: absolute;
  top: 0;
  right: 0;
  width: 48px;
  height: 48px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: none;
  box-shadow: none;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' stroke='%23989898' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-x'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: 24px 24px;
  background-position: center center;
  overflow: hidden;
  text-indent: -100px;
  letter-spacing: 0em;
}
#cboxClose:hover {
  background-color: transparent;
  border: none;
}

.lightbox-content {
  width: 600px;
}
@media (max-width: 680px) {
  .lightbox-content {
    width: 90vw;
    padding-left: 20px;
    padding-right: 20px;
  }
  .lightbox-content .container {
    padding-left: 0;
    padding-right: 0;
  }
}

.quickbuy {
  background-color: #ffffff;
  border-radius: 15px;
  padding-top: 20px;
  position: relative;
  width: 720px;
}
.quickbuy a {
  color: inherit;
  transition: opacity 0.25s;
}
.quickbuy a:hover {
  opacity: 0.6;
}

.quickbuy-form.placeholder {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.quickbuy__product-media,
.quickbuy__toolbar,
.quickbuy__titlebar {
  display: flex;
  justify-content: space-between;
}

.quickbuy__toolbar {
  line-height: initial;
  padding-bottom: 5px;
}
.quickbuy__toolbar .feather-icon {
  vertical-align: middle;
  height: auto;
  width: auto;
}
.quickbuy__toolbar .feather-icon .icon {
  height: calc(1rem * 1.5);
  width: calc(1rem * 1.5);
}

.quickbuy__more {
  text-decoration: none;
}
.quickbuy__more .feather-icon {
  padding-left: 5px;
}

.quickbuy__close .feather-icon {
  margin: 0 0 -20px;
  width: 44px;
  height: 44px;
  text-align: right;
}

.quickbuy__product-media .rimage-outer-wrapper {
  max-height: 100%;
  max-width: initial;
}
.quickbuy__product-media.global-border-radius .slick-slide:last-child, .image-two .quickbuy__product-media.rimage-background .slick-slide:last-child, .rte img.quickbuy__product-media .slick-slide:last-child, [data-product-media] .quickbuy__product-media.rimage__image .slick-slide:last-child, .full-width-slideshow:not(.full-width-slideshow--banner) .quickbuy__product-media.js-slideshow-section:not(.slick-initialized) .slick-slide:last-child,
.full-width-slideshow:not(.full-width-slideshow--banner) .quickbuy__product-media.slide .slick-slide:last-child, .blog-articles-list__image .quickbuy__product-media.rimage-outer-wrapper .slick-slide:last-child, .collection-list-plain .product-block__image .quickbuy__product-media.rimage-outer-wrapper .slick-slide:last-child, .article-page .single-column-layout .article-featured-image.mobile-only .quickbuy__product-media.rimage-outer-wrapper .slick-slide:last-child, .quickbuy__product-media.article-overlay .slick-slide:last-child, .article__heading-image .quickbuy__product-media.rimage-outer-wrapper .slick-slide:last-child {
  overflow: hidden;
  border-radius: 0 15px 15px 0;
}

.quickbuy__product-media,
.quickbuy__titlebar {
  margin-top: 15px;
}

.quickbuy__titlebar {
  position: relative;
  padding-bottom: 15px;
}

.quickbuy__slider-controls {
  flex-shrink: 0;
  order: 1;
}

.quickbuy__media-container .product-label {
  right: auto;
  top: auto;
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.25s;
}

.quickbuy__media-container .product-label {
  
  left: 10px;
  bottom: 10px;
  
}

.quickbuy__media-container:not(.quickbuy__media-container--current-image) .product-label {
  opacity: 0;
}

.quickbuy__title {
  font-size: 0.875rem;
  text-transform: none;
}

.quickbuy__price {
  font-size: 1.25rem;
  min-height: 50px;
}

.quickbuy__form {
  padding-bottom: 30px;
  padding-top: 15px;
  border-radius: 0 0 15px 15px;
  background-color: #f7db5e;
  color: #000000;
}
.quickbuy__form .opt-btn:checked + .opt-label[data-swatch] {
  border-color: #000000;
}
.quickbuy__form input,
.quickbuy__form .opt-label,
.quickbuy__form .cc-select__btn,
.quickbuy__form .cc-select__btn:hover,
.quickbuy__form .cc-select__listbox,
.quickbuy__form .is-unavailable + .opt-label::after,
.quickbuy__form .opt-btn:checked.is-unavailable + .opt-label::after {
  border-color: #b9a447;
}
.quickbuy__form .is-unavailable + .opt-label::after {
  opacity: 1 !important;
}
.quickbuy__form .cc-select__listbox {
  background-color: #f6d84f;
}
.quickbuy__form .cc-select__option {
  color: #000000;
}
.quickbuy__form .cc-select__option.is-focused {
  color: #000000;
}
.quickbuy__form .input-wrapper {
  background-color: #f7db5e;
}
.quickbuy__form.has-dynamic-buttons {
  margin-bottom: 0;
}

.quickbuy__variants .row {
  margin-bottom: 0px;
  width: calc(50% - 15px);
}

.large-row.quickbuy__product-form--confirmation {
  margin-bottom: 0;
  display: flex;
}

.quickbuy__submit {
  width: 100%;
}

.quickbuy .quickbuy__product-media,
.quickbuy .slick-list,
.quickbuy .slick-track {
  height: 360px;
}
.quickbuy .slick-list {
  width: 100%;
}
.quickbuy .prev,
.quickbuy .next {
  margin: -15px 0;
  width: 44px;
  height: 44px;
  transition: opacity 0.25s;
}
.quickbuy .prev:hover,
.quickbuy .next:hover {
  opacity: 0.6;
}
.quickbuy .prev {
  text-align: right;
}
.quickbuy .next {
  margin-right: -22px;
  text-align: left;
}
@media (max-height: 750px) {
  .quickbuy .quickbuy__product-media,
.quickbuy .slick-list,
.quickbuy .slick-track {
    height: 280px;
  }
}
@media (max-height: 650px) {
  .quickbuy .quickbuy__product-media,
.quickbuy .slick-list,
.quickbuy .slick-track {
    height: 230px;
  }
}

.quickbuy .payment-buttons {
  display: flex;
  align-items: flex-start;
}
.quickbuy .payment-buttons .btn,
.quickbuy .payment-buttons .shopify-payment-button__button--unbranded {
  padding: 12px 39px;
  line-height: 1.4;
}
.quickbuy .payment-buttons > .btn,
.quickbuy .payment-buttons > .shopify-payment-button {
  width: 50%;
}
.quickbuy .payment-buttons > .btn {
  margin-right: 15px;
}
.quickbuy .payment-buttons > .shopify-payment-button {
  margin-left: 15px;
  margin-top: 0;
}

@media only screen and (min-width: 768px) {
  .product-block .btn--quicklook {
    position: absolute;
    bottom: 10px;
    padding: 11px 16px;
    width: calc(100% - 20px);
    max-width: 320px;
    min-width: auto;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 1px rgba(247, 219, 94, 0.25);
    opacity: 0;
    transition: opacity 0.25s;
  }
  .product-block:hover .btn--quicklook {
    opacity: 1;
  }
  .product-block:hover .btn--quicklook:hover {
    background-color: #000000;
    box-shadow: 0 0 0 1px rgba(247, 219, 94, 0.25);
    color: #f7db5e;
  }
  .product-block .btn--quicklook:focus {
    opacity: 1;
  }
}
@media only screen and (max-width: 768px) {
  .product-block .btn--quicklook {
    display: none;
  }
}
.slick-dots {
  position: static;
}

.slick-dots li button {
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid transparent;
  min-width: 0;
  height: 6px;
  width: 6px;
  box-shadow: none;
}

.slick-dots li.slick-active button {
  background-color: #ffffff;
  border: 2px solid rgba(0, 0, 0, 0.3);
  box-shadow: none;
  height: 10px;
  width: 10px;
}

.slick-disabled {
  opacity: 0.2;
}

.slick-next,
.slick-prev {
  min-width: 0;
  margin: 0;
}
.slick-next:before,
.slick-prev:before {
  display: none;
}
.slick-next > svg,
.slick-prev > svg {
  fill: currentColor;
}

.slick-prev {
  left: 0;
}

.slick-next {
  right: 0;
}

.slick-external-controls {
  position: relative;
  padding: 0 30px;
}
.slick-external-controls .slick-next,
.slick-external-controls .slick-prev {
  top: -4px;
  transform: none;
}
.slick-external-controls .slick-prev {
  left: -15px;
}
.slick-external-controls .slick-next {
  right: -15px;
}

.pagination {
  margin: 30px 0;
  text-align: center;
}
.pagination span {
  margin: 0 8px;
  padding: 0 2px;
}
.pagination a {
  color: inherit;
  text-decoration: none;
}
.pagination .current {
  border-bottom: 2px solid;
}

.added-notice {
  position: fixed;
  z-index: 1000;
  top: 65px;
  right: 30px;
  width: 412px;
  padding: 15px 30px 30px;
  background: #ffffff;
  color: #000000;
  border-bottom: 3px solid #000000;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 150ms;
}
@media (max-width: 560px) {
  .added-notice {
    top: 10px;
    right: 10px;
    left: 10px;
    width: auto;
    padding: 15px 20px 20px;
  }
}

.added-notice--pre-reveal {
  opacity: 0;
  transform: scale(0.95);
}

.added-notice--pre-destroy {
  transition: all 250ms;
  opacity: 0;
  transform: scale(0.95);
}

.added-notice__header {
  position: relative;
}

.added-notice__close {
  position: absolute;
  top: 0;
  right: 0;
  color: #000000;
}

.added-notice__checkout .btn {
  width: calc(100% - 2px);
}

.cart-summary__product-list {
  overflow: auto;
  max-height: calc(100vh - 300px);
}

.cart-summary__product {
  display: flex;
  padding-top: 15px;
}

.cart-summary__product-title {
  text-transform: none;
}

.cart-summary__product-image {
  padding-right: 15px;
  width: 74px;
  flex-shrink: 0;
}
.cart-summary__product-image img {
  vertical-align: top;
}

.cart-summary__product__variants {
  color: #666666;
  font-size: 0.875rem;
  line-height: 1.4;
}

.cart-summary__selling-plan {
  color: #666666;
  font-size: 0.875rem;
  line-height: 1.4;
}

.cart-summary__price-reduced {
  padding-right: 5px;
}

.cart-summary__unit-price {
  color: #666666;
  display: block;
  line-height: 1.4;
}

.cart-summary__quantity {
  color: #666666;
}
.cart-summary__quantity::before {
  content: "x";
  margin-left: 0.5em;
}

.cart-summary__footer {
  margin-top: 30px;
}

.cart-summary__total-quantity-row,
.cart-summary__total-price-row {
  display: flex;
  justify-content: space-between;
}

.cart-summary__total-quantity-row {
  margin-bottom: 5px;
  color: #666666;
}

.cart-summary__total-price-row {
  margin-bottom: 15px;
}

.cart-summary__total-price-row .money{
  
}

.account-form {
  margin: 60px auto;
  max-width: 420px;
  text-align: center;
}
.account-form .checkbox-wrapper {
  text-align: left;
}

.address-card {
  background-color: #f2f2f2;
  padding: 30px;
}
.address-card p {
  margin: 0;
}

.address-card__controls {
  float: right;
  margin: 0 0 10px 10px;
}

.address__name {
  font-weight: bold;
  margin-bottom: 0.75em;
}

.address__phone {
  margin-top: 0.75em;
}

.order-table tbody td {
  vertical-align: top;
  padding: 30px 15px;
}

.order-table .product-summary {
  margin: -15px 0;
}

@media only screen and (max-width: 767.98px) {
  .order-table td[data-label=Product]::before {
    display: none;
  }

  .order-table td[data-label=Product] .product-summary {
    text-align: left;
  }
}
.image-one,
.image-two {
  backface-visibility: hidden;
  display: block;
  transition: opacity 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.image-one {
  height: auto;
  width: 100%;
}

.image-two {
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  width: calc(100% + 1.5px);
  height: calc(100% + 1.5px);
  opacity: 0;
}
.image-two .rimage-background {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  height: 100%;
}

@media only screen and (min-width: 1024px) {
  .hover-images {
    overflow: hidden;
  }
  .hover-images .image-one,
.hover-images .image-two {
    transition: transform 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .hover-images:hover .image-one {
    transform: scale(1.05);
  }

  .hover-images--two .image-two {
    transform: scale(1.05);
  }
  .hover-images--two:hover .image-one {
    opacity: 0;
    transform: scale(1);
  }
  .hover-images--two:hover .image-two {
    opacity: 1;
    transform: scale(1);
  }

  .hover-images--two.same-aspect-ratio .image-one {
    transition: opacity 0ms 0ms;
  }

  .hover-images--two.same-aspect-ratio:hover .image-one {
    transition: opacity 50ms 400ms;
  }
}
.avoid-overlaps .avoid-overlaps__item {
  opacity: 0;
  transition: opacity ease-in 0.25s;
}

html:not(.no-js) .avoid-overlaps:not(.avoid-overlaps--processed) .avoid-overlaps__item {
  margin-left: -200px !important;
}

.no-js .avoid-overlaps__item,
.avoid-overlaps--processed .avoid-overlaps__item {
  opacity: 1;
}

@media only screen and (max-width: 767.98px) {
  .avoid-overlaps__mobile-container {
    position: relative;
  }
}
.no-js .avoid-overlaps .overlay {
  transform: translate(-50%, -50%);
}

.recently-viewed-product {
  text-align: center;
  font-size: 0.875rem;
}
.recently-viewed-product .product-title {
  margin-top: 15px;
}
.recently-viewed-product .product-vendor {
  margin-top: 0.2em;
}
.recently-viewed-product .product-price {
  margin-top: 0.3em;
  font-size: 14px;
  line-height: 1.5em;
}
.recently-viewed-product .image-two {
  background-position: center center;
  background-size: cover;
}
.recently-viewed-product a {
  color: inherit;
  text-decoration: none;
}
.recently-viewed-product img {
  vertical-align: top;
}


.recently-viewed-product .image-one {
  position: relative;
  height: 0;
  padding-top: 100%;
}
.recently-viewed-product .image-one img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  transform: translate3d(-50%, -50%, 0);
  object-fit: contain;
  object-position: bottom;
  border-radius: 15px;
}

.recently-viewed-product .image-two {
  background-position: bottom;
}

.recently-viewed[data-disable-single-hover-images] .hover-images:hover .image-one:last-child {
  transform: none;
}


.simple-popup {
  position: absolute;
  z-index: 100000;
  width: 200px;
  padding: 10px 15px;
  border: 1px solid #bfbfbf;
  color: #000000;
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0 0 3px -1px #bfbfbf;
  text-align: center;
}
.simple-popup:before {
  position: absolute;
  top: 100%;
  left: 50%;
  margin: 0 0 0 -10px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #bfbfbf transparent transparent transparent;
}
.simple-popup:after {
  position: absolute;
  top: 100%;
  left: 50%;
  margin: -2px 0 0 -10px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #ffffff transparent transparent transparent;
}

@media only screen and (min-width: 768px) and (max-width: 960px) {
  .split-column-layout .product-carousel-peek {
    overflow: hidden;
  }
  .split-column-layout .product-carousel-peek .slick-list {
    padding-right: 30%;
    overflow: visible;
  }
}
.product-carousel-peek {
  position: relative;
}

.product-carousel-peek__advice {
  display: none;
  cursor: pointer;
  text-align: right;
  position: absolute;
  z-index: 2;
  right: 15px;
  top: 110px;
  color: #000;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 100%;
  padding: 5px;
  height: 36px;
  width: 36px;
  transition: all 300ms ease-in;
}
.product-carousel-peek__advice .feather-icon {
  display: block;
}
.product-carousel-peek__advice .icon {
  display: inline-block;
  vertical-align: top;
  width: 24px;
  height: 24px;
}

@media only screen and (max-width: 767.98px) {
  .container:not(.container--no-mobile-padding) .product-carousel-peek {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .container:not(.container--no-mobile-padding) .product-carousel-peek .product-carousel-peek__advice {
    margin-right: 20px;
  }

  .product-carousel-peek {
    overflow: hidden;
  }
  .product-carousel-peek .slick-list {
    padding-right: 30%;
    overflow: visible;
  }
  .product-carousel-peek .slick-list .slick-slide .product-block {
    width: auto;
  }
  .product-carousel-peek .slick-list .slick-slide .grid-flex__item {
    width: auto;
    float: none;
  }
  .product-carousel-peek .slick-list .product-block {
    margin: 0 0 0 20px;
  }
  .product-carousel-peek .slick-list .grid-flex__item {
    clear: none;
    padding: 0;
  }

  .product-carousel-peek--show-advice .product-carousel-peek__advice {
    display: block;
  }

  .product-carousel-peek--dismiss-advice .product-carousel-peek__advice {
    opacity: 0;
    transform: translateX(-15px);
  }

  .no-js .product-carousel-peek__advice,
.product-carousel-peek--empty .product-carousel-peek__advice,
.product-carousel-peek--single .product-carousel-peek__advice {
    display: none;
  }
}
@media (min-width: 768px) {
  .sticky-element {
    position: -webkit-sticky;
    position: sticky;
    top: 0px;
  }
}
.product-policies:not(:first-child) {
  margin-top: 15px;
}
.product-policies:not(:last-child) {
  margin-bottom: 15px;
}

/* AR view in your space button */
.view-in-space {
  box-sizing: border-box;
  display: block;
  margin: 0 0 10px;
  width: 100%;
  color: #000000;
  border: none;
  box-shadow: none;
  background: rgba(0, 0, 0, 0.08);
}
.view-in-space:hover {
  color: #000000;
  border: none;
  box-shadow: none;
  background: rgba(0, 0, 0, 0.08);
}
.view-in-space[data-shopify-xr-hidden] {
  display: none;
}
.view-in-space .icon {
  margin: 0;
  height: 1.8em;
  width: 1.8em;
  fill: transparent;
  vertical-align: middle;
}
.view-in-space .icon .icon-3d-badge-full-color-outline,
.view-in-space .icon .icon-video-badge-full-color-outline {
  display: none;
}
.view-in-space .icon .icon-3d-badge-full-color-element,
.view-in-space .icon .icon-video-badge-full-color-element {
  fill: currentColor;
}
.view-in-space .view-in-space__text {
  vertical-align: middle;
}


.view-in-space {
  margin-top: 10px;
}


/* Any product media with a fixed aspect ratio */
.product-media--frame {
  position: relative;
  padding-top: 56.25%;
  height: 0;
  max-width: 100%;
}
.product-media--frame iframe,
.product-media--frame object,
.product-media--frame embed,
.product-media--frame video,
.product-media--frame model-viewer,
.product-media--frame .shopify-model-viewer-ui,
.product-media--frame .media-item,
.product-media--frame .plyr {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.product-media--frame .plyr__video-wrapper {
  height: 100%;
}

.media-thumbnail {
  position: relative;
}

.media-thumbnail__badge {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 6px;
  top: 6px;
  pointer-events: none;
}
.media-thumbnail__badge .icon {
  fill: #ffffff;
  width: 100%;
  height: 100%;
  vertical-align: baseline;
}
.media-thumbnail__badge .icon .icon-3d-badge-full-color-outline,
.media-thumbnail__badge .icon .icon-video-badge-full-color-outline {
  stroke: rgba(0, 0, 0, 0.05);
}
.media-thumbnail__badge .icon .icon-3d-badge-full-color-element,
.media-thumbnail__badge .icon .icon-video-badge-full-color-element {
  fill: #000000;
}
@media only screen and (min-width: 750px) {
  .media-thumbnail__badge .product-single__thumbnail-badge {
    width: 26px;
    height: 26px;
  }
}

@media only screen and (max-width: 767.98px) {
  .slick-slider .product-media--video[data-video-type=external]::before, .slick-slider .product-media--video[data-video-type=external]::after {
    content: "";
    position: absolute;
    top: 50px;
    bottom: 70px;
    width: calc(50% - 50px);
    z-index: 1;
  }
  .slick-slider .product-media--video[data-video-type=external]::before {
    left: 0;
  }
  .slick-slider .product-media--video[data-video-type=external]::after {
    right: 0;
  }
}
/* Plyr - used for playing product videos */
.plyr__control svg {
  margin: 0;
}

.plyr.plyr--full-ui.plyr--video {
  color: #000000;
  background-color: transparent;
  /* stylelint-disable-next-line */
  /* stylelint-disable-next-line */
  /* stylelint-disable-next-line */
}
.plyr.plyr--full-ui.plyr--video button {
  min-width: 0;
  box-shadow: none;
}
.plyr.plyr--full-ui.plyr--video .plyr__poster,
.plyr.plyr--full-ui.plyr--video .plyr__video-wrapper {
  background-color: transparent;
}
.plyr.plyr--full-ui.plyr--video:fullscreen .plyr__video-wrapper .plyr.plyr--full-ui.plyr--video:fullscreen .plyr__poster {
  background-color: #000;
}
.plyr.plyr--full-ui.plyr--video:-webkit-full-screen .plyr__video-wrapper, .plyr.plyr--full-ui.plyr--video:-webkit-full-screen .plyr__poster {
  background-color: #000;
}
.plyr.plyr--full-ui.plyr--video:-moz-full-screen .plyr__video-wrapper, .plyr.plyr--full-ui.plyr--video:-moz-full-screen .plyr__poster {
  background-color: #000;
}
.plyr.plyr--full-ui.plyr--video:-ms-fullscreen .plyr__video-wrapper, .plyr.plyr--full-ui.plyr--video:-ms-fullscreen .plyr__poster {
  background-color: #000;
}
.plyr.plyr--full-ui.plyr--video .plyr--fullscreen-fallback .plyr__video-wrapper,
.plyr.plyr--full-ui.plyr--video .plyr--fullscreen-fallback .plyr__poster {
  background-color: #000;
}
.plyr.plyr--full-ui.plyr--video .plyr__control.plyr__control--overlaid {
  background-color: #ffffff;
  border-color: rgba(0, 0, 0, 0.05);
}
.plyr.plyr--full-ui.plyr--video .plyr__control.plyr__control--overlaid.plyr__tab-focus, .plyr.plyr--full-ui.plyr--video .plyr__control.plyr__control--overlaid:hover {
  color: rgba(0, 0, 0, 0.55);
}
.plyr.plyr--full-ui.plyr--video .plyr__controls {
  background-color: #ffffff;
  border-color: rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}
.plyr.plyr--full-ui.plyr--video .plyr__progress input[type=range]::-moz-range-thumb {
  box-shadow: 2px 0 0 0 #ffffff;
}
.plyr.plyr--full-ui.plyr--video .plyr__progress input[type=range]::-ms-thumb {
  box-shadow: 2px 0 0 0 #ffffff;
}
.plyr.plyr--full-ui.plyr--video .plyr__progress input[type=range]::-webkit-slider-thumb {
  box-shadow: 2px 0 0 0 #ffffff;
}
.plyr.plyr--full-ui.plyr--video .plyr__progress input[type=range]::-webkit-slider-runnable-track {
  background-image: linear-gradient(to right, currentColor var(--value, 0), rgba(0, 0, 0, 0.6) var(--value, 0));
}
.plyr.plyr--full-ui.plyr--video .plyr__progress input[type=range]::-moz-range-track {
  background-color: rgba(0, 0, 0, 0.6);
}
.plyr.plyr--full-ui.plyr--video .plyr__progress input[type=range]::-ms-fill-upper {
  background-color: rgba(0, 0, 0, 0.6);
}
.plyr.plyr--full-ui.plyr--video .plyr__progress input[type=range].plyr__tab-focus::-webkit-slider-runnable-track {
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.25);
}
.plyr.plyr--full-ui.plyr--video .plyr__progress input[type=range].plyr__tab-focus::-moz-range-track {
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.25);
}
.plyr.plyr--full-ui.plyr--video .plyr__progress input[type=range].plyr__tab-focus::-ms-track {
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.25);
}
.plyr.plyr--full-ui.plyr--video .plyr__progress input[type=range]:active::-moz-range-thumb {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.25);
}
.plyr.plyr--full-ui.plyr--video .plyr__progress input[type=range]:active::-ms-thumb {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.25);
}
.plyr.plyr--full-ui.plyr--video .plyr__progress input[type=range]:active::-webkit-slider-thumb {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.25);
}
.plyr.plyr--full-ui.plyr--video .plyr__progress .plyr__tooltip {
  background-color: #000000;
  color: #ffffff;
}
.plyr.plyr--full-ui.plyr--video .plyr__progress .plyr__tooltip::before {
  border-top-color: #000000;
}
.plyr.plyr--full-ui.plyr--video.plyr--loading .plyr__progress__buffer {
  background-image: linear-gradient(-45deg, rgba(0, 0, 0, 0.6) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.6) 75%, transparent 75%, transparent);
}
.plyr.plyr--full-ui.plyr--video .plyr__volume input[type=range] {
  color: #ffffff;
}
.plyr.plyr--full-ui.plyr--video .plyr__volume input[type=range]::-moz-range-thumb {
  box-shadow: 2px 0 0 0 #000000;
}
.plyr.plyr--full-ui.plyr--video .plyr__volume input[type=range]::-ms-thumb {
  box-shadow: 2px 0 0 0 #000000;
}
.plyr.plyr--full-ui.plyr--video .plyr__volume input[type=range]::-webkit-slider-thumb {
  box-shadow: 2px 0 0 0 #000000;
}
.plyr.plyr--full-ui.plyr--video .plyr__volume input[type=range]::-webkit-slider-runnable-track {
  background-image: linear-gradient(to right, currentColor var(--value, 0), rgba(255, 255, 255, 0.6) var(--value, 0));
}
.plyr.plyr--full-ui.plyr--video .plyr__volume input[type=range]::-moz-range-track, .plyr.plyr--full-ui.plyr--video .plyr__volume input[type=range]::-ms-fill-upper {
  background-color: rgba(255, 255, 255, 0.6);
}
.plyr.plyr--full-ui.plyr--video .plyr__volume input[type=range].plyr__tab-focus::-webkit-slider-runnable-track {
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.25);
}
.plyr.plyr--full-ui.plyr--video .plyr__volume input[type=range].plyr__tab-focus::-moz-range-track {
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.25);
}
.plyr.plyr--full-ui.plyr--video .plyr__volume input[type=range].plyr__tab-focus::-ms-track {
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.25);
}
.plyr.plyr--full-ui.plyr--video .plyr__volume input[type=range]:active::-moz-range-thumb {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
}
.plyr.plyr--full-ui.plyr--video .plyr__volume input[type=range]:active::-ms-thumb {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
}
.plyr.plyr--full-ui.plyr--video .plyr__volume input[type=range]:active::-webkit-slider-thumb {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
}

/* Shopify's custom UI for the model-viewer component */
.shopify-model-viewer-ui button {
  min-width: 0;
  box-shadow: none;
}
.shopify-model-viewer-ui button svg {
  margin: 0;
}
.shopify-model-viewer-ui button[hidden] {
  display: none;
}
.shopify-model-viewer-ui .shopify-model-viewer-ui__controls-area {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}
.shopify-model-viewer-ui .shopify-model-viewer-ui__button {
  color: #000000;
}
.shopify-model-viewer-ui .shopify-model-viewer-ui__button--control:hover {
  color: rgba(0, 0, 0, 0.55);
}
.shopify-model-viewer-ui .shopify-model-viewer-ui__button--control:active, .shopify-model-viewer-ui .shopify-model-viewer-ui__button--control.focus-visible:focus {
  color: rgba(0, 0, 0, 0.55);
  background: rgba(0, 0, 0, 0.05);
}
.shopify-model-viewer-ui .shopify-model-viewer-ui__button--control:not(:last-child):after {
  border-color: rgba(0, 0, 0, 0.05);
}
.shopify-model-viewer-ui .shopify-model-viewer-ui__button--poster {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.05);
}
.shopify-model-viewer-ui .shopify-model-viewer-ui__button--poster:hover, .shopify-model-viewer-ui .shopify-model-viewer-ui__button--poster:focus {
  color: rgba(0, 0, 0, 0.55);
}
.shopify-model-viewer-ui .shopify-model-viewer-ui__button--poster {
  z-index: 2;
}
.shopify-model-viewer-ui .theme-event-proxy {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 1;
}
.shopify-model-viewer-ui .shopify-model-viewer-ui__controls-area--playing + .theme-event-proxy {
  display: none;
}

/* hack for some model-viewer component 'quirks' */
model-viewer {
  text-align: left;
}
model-viewer .container {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
model-viewer button,
model-viewer button:hover {
  background-color: transparent;
}

.tab-used .slick-slider model-viewer.focus-visible {
  outline: none;
}
.tab-used .slick-slider model-viewer.focus-visible + .shopify-model-viewer-ui__controls-overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  outline: none;
  pointer-events: none;
  z-index: 1;
  box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.5) inset;
  border-radius: 15px;
}

.store-availabilities-modal .cc-popup-container {
  display: block;
  padding: 30px;
}
.store-availabilities-modal .cc-popup-container .store-availabilities-modal__product-title {
  text-transform: none;
  font-size: calc(23px * 0.825);
}
.store-availabilities-modal .cc-popup-modal .cc-popup-content .store-availability-list__item .cc-icon-available,
.store-availabilities-modal .cc-popup-modal .cc-popup-content .store-availability-list__item .cc-icon-unavailable {
  vertical-align: text-top;
}
.store-availabilities-modal .store-availability-list__location__distance {
  text-decoration: none;
}
@media only screen and (max-width: 767.98px) {
  .store-availabilities-modal .cc-popup-container {
    padding: 30px 20px;
  }
}

.store-availability-container .store-availability-information .store-availability-icon {
  top: 3px;
}

.checkbox {
  position: absolute;
  opacity: 0;
}
.checkbox + label {
  display: inline-flex;
  vertical-align: top;
  position: relative;
  align-items: flex-start;
  margin: 0;
  font-size: 14px;
  line-height: 1.5em;
  cursor: pointer;
}
.checkbox + label::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  margin-top: calc(0.75em - 9px);
  margin-right: 10px;
  border-radius: 4px;
  border: 1px solid #000000;
}
.checkbox:focus + label::before {
  outline: auto;
}
.checkbox:focus-visible + label::before {
  outline: auto Highlight;
  outline: auto -webkit-focus-ring-color;
}
.checkbox:focus:not(:focus-visible) + label::before {
  outline: 0;
}
.checkbox:checked + label::before {
  border-color: #888;
  background-color: #888;
}
.checkbox:checked + label::after {
  content: "";
  position: absolute;
  top: calc(0.75em - 1px);
  left: 9px;
  width: 6px;
  height: 12px;
  transform: translate(-50%, -50%) rotate(45deg);
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
}
.checkbox[disabled] + label {
  opacity: 0.5;
  cursor: default;
}

.radio {
  position: absolute;
  opacity: 0;
}
.radio + label {
  display: inline-flex;
  vertical-align: top;
  position: relative;
  align-items: flex-start;
  margin: 0;
  font-size: 1em;
  line-height: 1.5em;
  cursor: pointer;
}
.radio + label::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  margin-top: calc(0.75em - 9px);
  margin-right: 10px;
  border-radius: 4px;
  border: 1px solid #000000;
}
.radio:focus + label::before {
  outline: auto;
}
.radio:focus-visible + label::before {
  outline: auto Highlight;
  outline: auto -webkit-focus-ring-color;
}
.radio:focus:not(:focus-visible) + label::before {
  outline: 0;
}
.radio + label::before {
  width: 18px;
  height: 18px;
  margin-top: calc(0.75em - 9px);
  border-radius: 50%;
}
.radio:checked + label::after {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 9px;
  width: 10px;
  height: 10px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: #888;
}

.cc-select {
  position: relative;
  width: 100%;
}
.cc-select.is-open::before {
  content: "";
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.cc-select__btn,
.cc-select__listbox {
  margin: 0;
  border: 1px solid #bfbfbf;
  font-size: inherit;
}

.cc-select__btn {
  display: flex;
  align-items: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
  padding: 8px 44px 8px 14px;
  background-color: transparent;
  color: #000000;
  font-weight: inherit;
  text-align: start;
  text-transform: none;
}

.cc-select__icon {
  position: absolute;
  top: calc(50% - 10px);
  right: 10px;
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.cc-select__listbox {
  list-style: none;
  visibility: hidden;
  position: absolute;
  top: 5px;
  left: -5px;
  z-index: 100;
  min-width: 100%;
  max-height: 20em;
  padding: 0;
  outline: 0;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.15);
  background-color: #f7f7f7;
  overflow-y: auto;
}
.cc-select__listbox[aria-hidden=false] {
  visibility: visible;
}

.cc-select__option {
  display: flex;
  align-items: center;
  padding: 9px 15px;
  color: #000000;
  cursor: pointer;
}
.cc-select__option > span {
  pointer-events: none;
}
.cc-select__option > em {
  display: none;
  margin-left: auto;
  font-style: normal;
  pointer-events: none;
}
.cc-select__option.is-unavailable > em {
  display: block;
}
.cc-select__option.is-focused {
  background-color: #f0f0f0;
  color: #000000;
}

.qty-wrapper.is-disabled .cc-select {
  pointer-events: none;
}

.cc-select--label-inside .label {
  position: absolute;
  top: 8px;
  left: 14px;
  line-height: 1;
  letter-spacing: initial;
  opacity: 0.6;
  pointer-events: none;
}
.cc-select--label-inside .cc-select__btn {
  padding: 22px 40px 5px 14px;
  line-height: 1.2;
}

.cc-select__btn,
.cc-select__btn:hover {
  box-shadow: none;
  border-radius: 4px;
  background-color: transparent;
  color: inherit;
}

.cc-select__listbox {
  max-height: 15em;
  top: 100%;
  left: 0;
  border-radius: 4px;
}
.quickbuy .cc-select__listbox {
  top: auto;
  bottom: 5px;
}

.cc-select__option {
  padding: 8px 14px;
}
.cc-select__option[hidden] {
  display: none;
}

.cc-filters-control__btn {
  min-width: 0;
  border-color: #bfbfbf;
  box-shadow: none;
  color: inherit;
  text-decoration: none;
}
.cc-filters-control__btn:hover {
  box-shadow: none;
}

.cc-filters,
.cc-filter__panel {
  z-index: 10;
}

.cc-filter__toggle {
  font-weight: 500;
}

.cc-filters__header,
.cc-filter__header {
  padding: 24px 20px;
}

.cc-filter-clear-btn,
.cc-filter-clear-btn:hover {
  color: inherit;
}

.cc-filter-close-btn,
.cc-filter-back-btn {
  left: 11px;
  margin: 0;
  box-shadow: none;
}
.cc-filter-close-btn:hover,
.cc-filter-back-btn:hover {
  box-shadow: none;
  background: none;
}

.cc-sort-selected {
  line-height: 1.2;
}

.swatch-input:checked + .swatch-label .swatch-sample {
  border-color: #ffffff;
  box-shadow: 0 0 0 2px #000000;
}

.swatch-label[data-swatch]::before {
  display: none;
}

.swatch-label.unavailable {
  opacity: 0.5;
}
.swatch-label.unavailable .swatch-sample::after {
  opacity: 1;
}

.swatch-sample {
  width: 20px;
  height: 20px;
  margin-top: calc(0.75em - 12px);
  margin-right: 0.75em;
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 2px #bfbfbf;
  background-color: var(--swatch-background-color);
  background-image: var(--swatch-background-image);
}

.swatch-input:focus + .swatch-label .swatch-sample {
  outline: auto;
}

.swatch-input:focus-visible + .swatch-label .swatch-sample {
  outline: auto Highlight;
  outline: auto -webkit-focus-ring-color;
}

.swatch-input:focus:not(:focus-visible) + .swatch-label .swatch-sample {
  outline: 0;
}

.no-js-apply-filters > button {
  padding: 12px 39px;
  border-radius: 4px;
  line-height: 1.5;
}

@media only screen and (max-width: 479.98px) {
  .cc-filters-control,
.cc-filters-results {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 767.98px) {
  .header-content,
.search-bar--open.search-bar--open-mobile,
main {
    transition: z-index 0s 0.3s;
  }
  .filters-open .header-content,
.filters-open .search-bar--open.search-bar--open-mobile,
.filters-open main {
    z-index: 10;
    transition: none;
  }

  .cc-filters-container,
.cc-filters,
.cc-filters__footer,
.cc-filter--sort,
.cc-filter__panel,
.cc-filter__footer,
.cc-price-range__control::after {
    background: #fff;
  }

  .cc-filters-container,
.cc-filters,
.cc-filter__panel {
    color: #393939;
  }

  .cc-filters-container {
    top: 100%;
    left: 0;
  }
  .filters-open .cc-filters-container {
    transform: translate3d(0, -100%, 0);
  }

  .cc-filter .radio + label::before,
.cc-filter .checkbox + label::before {
    border-color: #393939;
  }
  .cc-filter .radio:checked + label::after,
.cc-filter .checkbox:checked + label::before {
    border-color: #393939;
    background-color: #393939;
  }
  .cc-filter .checkbox:checked + label::after {
    border-color: #fff;
  }

  .cc-filter:not(.cc-filter--sort),
.cc-filters__header,
.cc-filter__header,
.cc-filters__footer,
.cc-filter__footer {
    border-color: #dde0e4;
  }

  .cc-filters-container svg,
.cc-active-filter > svg {
    color: rgb(51, 51, 51);
  }

  .cc-filter__toggle {
    padding: 16px 70px 16px 7px;
  }
  .cc-filter__toggle::after {
    right: 10px;
    top: calc(50% - 25px);
    width: 30px;
    height: 50px;
    border-top: 1px solid #dde0e4;
  }

  .cc-filters-control__btn.has-active-filters,
.cc-filter__toggle.has-active-filters,
.swatch-input:checked + .swatch-label .swatch-sample {
    border-color: #000000;
  }

  .cc-filter__content {
    padding: 10px 10px;
  }

  .cc-filter-clear-btn {
    right: 27px;
  }

  .swatch-sample {
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px #dde0e4;
  }

  .swatch-input:checked + .swatch-label .swatch-sample {
    box-shadow: 0 0 0 2px #393939;
    border-color: #fff;
  }

  .cc-price-range__bar-inactive,
.cc-price-range__bar-active {
    background: #393939;
  }

  .cc-price-range__control::after {
    border-color: #393939;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767.98px) {
  .cc-active-filters {
    margin-right: -20px;
    margin-left: -20px;
  }
}
@media only screen and (min-width: 768px) {
  .cc-filter__toggle::after {
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' stroke='rgb(0, 0, 0)' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  }

  .cc-filter__panel {
    border: 1px solid #bfbfbf;
  }

  .cc-filter__header {
    padding: 15px 20px;
  }
}

 .mobile-only{display:none !important;}
    .desktop-only{display:inline-block !important;}
    @media only screen and (max-width:768px){
      .mobile-only{display:inline-block !important;}
      .desktop-only{display:none !important;}
    }

    .nextpair-eyeque{
  background-color:#fff;
}
.nextpair-eyeque main{
  background-color:#fff;
  padding-bottom:0;
}

.nextpair-eyeque .section-rich-text,.nextpair-eyeque .section-newsletter,.nextpair-eyeque .locale-selectors__container{display:none;}

.nextpair-eyeque .custom-content{
  margin-bottom:0;
}
.nextpair-eyeque .eyeque-footer{
  margin-bottom:0;
  line-height:0;
}
.nextpair-eyeque .eyeque-footer .footer{
  line-height:1.5em;
}
.nextpair-eyeque .top-ad{
    padding: 10px;
    text-align: center;
    font-style: italic;
    background: #F7EBDD;
    font-weight: bold;
    letter-spacing: 0.1px;
}
.nextpair-eyeque .top-ad span{ font-weight:bolder;color:#f00;}
.nextpair-eyeque .top-logo{
 text-align: center;
    position: sticky;
    z-index: 999;
    width: 100%;
    background: #fff;
    left: 0;
    top: 0;
}
.nextpair-eyeque .top-logo img{
  height:80px;
    margin: 0 auto;
}

.nextpair-eyeque .eyeque-collection-header{
  display: flex;
  align-items: flex-end;
  margin-top:20px;
  margin-bottom:0 !important;
}
.nextpair-eyeque .eyeque-collection-header img{
  width:180px;
}
.nextpair-eyeque .eyeque-collection-header h3{
  padding: 20px 40px;
  margin:0;
    font-size: 56px;
    font-style: italic;
    border-bottom: solid 6px #000;
  flex:1;
  text-transform:none;
}
.nextpair-eyeque .text-center{
  text-align:center !important;
}
.nextpair-eyeque .btn{
  padding:11px 24px;
}
.nextpair-eyeque .text-center .standard-link,.eyeque-collection-footer .back-homepage a{
    font-size: 20px;
    text-transform: capitalize;
    padding-right: 48px;
    border-radius: 40px;
    background-image: url(https://cdn.shopify.com/s/files/1/0607/9224/2416/files/20220922174149.png?v=1663839719);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: auto 80%;
  margin-top:1em;
}
.nextpair-eyeque .footer{
  text-align:center;
  padding-top:50px;
  background-color:#f5da5b;
}
.nextpair-eyeque .footer h2{
  font-size: 24px;
  padding: 1em;
  text-transform: uppercase;
}
.nextpair-eyeque .footer p{
  font-size: 16px;
  font-weight:600;
  padding:4px;
}
.nextpair-eyeque .footer .link{
  padding:20px 0;
}
.nextpair-eyeque .footer .link .btn{
  font-size: 18px;
  font-weight:600;
  background-color:#fff;
  color:#f5da5b;
}
.nextpair-eyeque .footer .copyright{
  font-size:14px;
  padding:20px;
  text-align:left;
  margin-top:50px;
}
.eyeque-collection-footer h2{
  margin-top:40px;
  text-align:center;
  font-size:36px;
}
.eyeque-collection-footer .links{
  display:flex;
  justify-content: space-around;
  padding:2.5em 1em;
}
.eyeque-collection-footer .links >div{
  display:flex;
  align-items:center;
  flex:1;
}
.eyeque-collection-footer .links >div img{
  width:140px;
}
.eyeque-collection-footer .links >div h3{
  font-size: 48px;
  font-style: italic;
  text-transform:none;
  margin-bottom:0;
  margin-right:1em;
}
.eyeque-collection-footer .back-homepage{
  text-align:center;
  margin:2.5em auto 1em auto;
}
.head_sections {
    /*display: flex;*/
    align-items: flex-end;
    justify-content: space-between;
    position: relative;
}
.head_sections a{
      text-decoration: underline;
    background: #fff;
    line-height: 30px;
    border-radius: 50px;
    padding: 0 15px;
    font-size: 13px;
    height: 30px;
  display: flex;
    align-items: center;
    gap: 5px;
      min-width: auto;
}
.head_sections a svg{
  width: 15px;
}
.head_sections p{
      margin: 0;
    margin-top: 10px;
}
 @media only screen and (max-width:768px){
   
    .nextpair-eyeque{
   padding-top:50px;
   }
   .nextpair-eyeque .index-section{margin:20px 0;}
   .nextpair-eyeque .top-logo img{
   height:45px;
   }
   .nextpair-eyeque .eyeque-collection-header{
  display: flex;
  align-items: flex-end;
  margin-top:10px;
  margin-bottom:0 !important;
}
.nextpair-eyeque .eyeque-collection-header img{
  width:60px;
}
.nextpair-eyeque .eyeque-collection-header h3{
  padding: 10px 20px;
  margin:0;
    font-size: 24px;
    font-style: italic;
    border-bottom: solid 2px #000;
  flex:1;
  text-transform:none;
}
   .nextpair-eyeque .text-center{text-aign:center;margin-top:1em;}
   .nextpair-eyeque .text-center .standard-link{
    font-size: 14px;
    text-transform: capitalize;
    padding-right: 38px;
    border-radius: 20px;
    background-image: url(https://cdn.shopify.com/s/files/1/0607/9224/2416/files/20220922174149.png?v=1663839719);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: auto 80%;
}
   .nextpair-eyeque .footer{
  text-align:center;
  padding-top:30px;
  background-color:#f5da5b;
     margin-bottom:-60px;
}
.nextpair-eyeque .footer h2{
  font-size: 18px;
  padding: 1em;
  text-transform: uppercase;
}
.nextpair-eyeque .footer p{
  font-size: 12px;
  font-weight:400;
  padding:4px;
  line-height:1.2em;
  margin-bottom:5px;
}
.nextpair-eyeque .footer .link{
  padding:15px 0;
}
.nextpair-eyeque .footer .link .btn{
  font-size: 16px;
}
.nextpair-eyeque .footer .copyright{
  font-size:12px;
  padding:15px 0 20px 0;
  text-align:center;
  margin-top:30px;
}
   .eyeque-collection-footer h2{
  margin-top:20px;
  font-size:28px;
}
.eyeque-collection-footer .links{
  display:block;
  padding:2.5em 1em;
}
.eyeque-collection-footer .links >div{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding:1em 0;
}
.eyeque-collection-footer .links >div img{
  width:100px;
}
.eyeque-collection-footer .links >div h3{
  font-size: 28px;
  flex:1;
}
.eyeque-collection-footer .back-homepage{
  margin:2em auto 1em auto;
}
.eyeque-collection-footer .back-homepage a{
  font-size:16px;
  padding:8px 25px;
}
 }

.size-guide-summary{text-align:center;}
 .size-guide-items {
  display: flex;
  flex-wrap: wrap;
  border-radius: 6px;
}
.size-guide-split {
  width: 0;
  position: relative;
  margin-bottom: 20px;
}
.size-guide-split:after {
  display: block;
  content: "";
  position: absolute;
  bottom: 18px;
  left: 50%;
  margin-left: -6px;
  width: 12px;
  border-bottom: 3px solid #101010;
}
.size-guide-item {
  width: 33.33%;
  padding: 0 10px;
  text-align: center;
  margin-bottom: 20px;
}
.size-guide-item .item-image img {
  width: 100%;
      vertical-align: middle;
}
.size-guide-item .item-title {
  font-size: 14px;
  color: #101010;
  white-space: nowrap;
}
.size-guide-item .item-value {
  font-weight: 700;
  font-size: 23px;
  color: #101010;
}
.size-guide-item .item-image {
  width: 100%;
  max-width: 100px;
  max-height: 100px;
  margin: auto;
}
#tidio-chat iframe { bottom: calc(100px + env(safe-area-inset-bottom)) !important;}
#sub-container:hover .sub-container-div{display:block !important;}
@media only screen and (max-width:768px){
  #sub-container{position:inherit !important;}
  #sub-container:hover .sub-container-div{width: 94% !important;left: 3% !important;}
}
.cart--sale--notes > div {flex:1;}
.cart--sale--notes .cart--sales-point-list{position:relative;}
.cart--sale--notes .cart--sales-point-list .sales-points{}
.cart--sale--notes .cart--sales-point-list .sales-points .sales-point{padding:0.5em 0;display:inline-block;}
.cart--sale--notes .cart--sales-point-list .sales-points .sales-point .icon-and-text{display:flex;align-items:center;text-decoration: none;color: #000;cursor: pointer;}
.cart--sale--notes .cart--sales-point-list .sales-points .sales-point .icon-and-text .sales-point-img{width:32px;margin-right:1rem;}
.cart--sale--notes .cart--sales-point-list .sales-points .sales-point .detail{display: none;position: absolute;border-radius:5px;z-index: 9998;padding: 1em;text-align: center;box-shadow: 1px 1px 5px rgb(0 0 0 / 40%);top: 3em;left: 130px;background: #fff;font-size: 12px;width: 260px;margin-left: -130px;box-sizing: border-box;}
.cart--sale--notes .cart--sales-point-list .sales-points .sales-point .detail::after{content:"";border-bottom: solid 1px #c2c2c2;border-right: solid 1px #c2c2c2;height: 16px;width: 16px;display: block;z-index: 9999;bottom: -8px;position: absolute;left: 50%;margin-left: -8px;background: #fff;transform: rotate(45deg);}
.cart--sale--notes .cart--sales-point-list .sales-points .sales-point:hover .icon-and-text{text-decoration: underline;color: #2e5061;}
.cart--sale--notes .cart--sales-point-list .sales-points .sales-point:hover .detail{}
.cart--sale--notes .cart--sales-point-list .sales-points .sales-point .detail > span{cursor: pointer;display: block;z-index: 9999;top: -0.5em;position: absolute;right:-0.5em;color: #fff;background:#000;width: 1.2em;height: 1.2em;line-height:1.2em;border-radius: 1.2em;font-size:1.2em;overflow:hidden;}

@media only screen and (max-width:768px){
  .cart--sale--notes{flex-direction:column;}
  .cart--sale--notes .cart--sales-point-list{order:2;}
  .cart--sale--notes .cart--sales-point-list .sales-points{display: grid;grid-template-columns: 1fr 1fr;grid-template-rows: 1fr 1fr;}
  .cart--sale--notes .cart--sales-point-list .sales-points li{}
  .cart--sale--notes .cart--sales-point-list .sales-points .sales-point{}
  .cart--sale--notes .cart--sales-point-list .sales-points .sales-point .detail{left: 50%;}
  .cart--sale--notes .cart--sales-point-list .sales-points .sales-point .detail1{top:-8em !important;}
  .cart--sale--notes .cart--sales-point-list .sales-points .sales-point .detail2{top:-10em !important;}
  .cart--sale--notes .cart--sales-point-list .sales-points .sales-point .detail3,.cart--sale--notes .cart--sales-point-list .sales-points .sales-point .detail4{top:-6em !important;}
  .cart--sale--notes .cart--sales-point-list .sales-points .sales-point .detail::after{display:none;}
}
.product-description-tabs-content.small .size-guide-items {display: grid;display: grid;grid-template-columns: 1fr 1fr;grid-template-rows: 1fr 1fr;}
/* #laurence .product-description-tabs-content.small .size-guide-items {display: none;} */
#laurence .pro_dropdown .product-description-tabs-content.small .size-guide-items {display: grid;}
.product-description-tabs-content.small .size-guide-items .size-guide-item{width:auto;text-align:left;display:flex;align-items: center;margin-bottom:0;padding:0;}
.product-description-tabs-content.small .size-guide-items .size-guide-item > div{margin-right:5px;}
.product-description-tabs-content.small .size-guide-items .size-guide-item .item-image{width:45px;margin-right:10px;}
.product-description-tabs-content.small .size-guide-items .size-guide-item .item-value{font-size:1rem;color:#f5da5b;flex:1;}

@media only screen and (max-width:768px){
  .product-description-tabs-content.small .size-guide-items .size-guide-item > div{margin-right:2px;}
  .product-description-tabs-content.small .size-guide-items .size-guide-item .item-image{width:38px;margin-right:5px;}
}
.header-ad-small{}
.header-ad-small .header-ad-small-item{padding:7px;}
.header-ad-small .btn{cursor:pointer;padding:1px 8px;height:auto;min-width:auto;margin-left:0.5em;}
.header-ad-small .btn.btn--secondary:hover{background-color:#fff;}
@media only screen and (max-width:768px){
  .header-ad-small{font-size:80%;}
  .header-ad-small .btn{font-size:12px;padding:1px 5px;margin-left:0.25em;}
}

/* 20230825 */
header .utils--center .utils__right #sub-container{
  display: none;
}
#checkoutFlow .modal--checkout-container .fp-slidesContainer #slide1 .fp-tableCell .modal--slide-container [data-option-number='3']{
  display: none;
}
.smile-launcher-frame-container.smile-launcher-border-radius-circular{
   bottom: 210px;
}

/* 10.7 + */
  .return_top {
    position: fixed;
    width: 60px;
    height: 60px;
    background: #f7db5e;
    bottom: 190px;
    right: 25px;
    border-radius: 50%;
    box-shadow: 0px 2px 16px rgba(2,6,16,.2);
        z-index: 1;
}
  .return_top i {
    background: url(https://cdn.shopify.com/s/files/1/0607/9224/2416/files/top.png?v=1696731008);
    width: 60px;
    height: 60px;
    background-size: 20px 20px;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center center;
}
  .new-fixed-header-true.new-fixed-header{
        transition: box-shadow .8s ease;
  }
  @media only screen and (min-width: 940px){
.new-fixed-header-true.new-fixed-header {
   
    box-shadow: 0 -2px 10px rgb(0 0 0 / 32%)!important;
}
  }
@media only screen and (max-width: 768px) {
  .testimonials .testimonials--title {
    padding: 0 30px;
}
  .return_top {
    width: 50px;
    height: 50px;
    right: 15px;
  }
  .return_top i{
        width: 50px;
    height: 50px;
    background-size: 18px 18px;
  }
  .omnisend-form-650a5ef6da5e3686253341a1-teaser-btn-wrapper{
    zoom: .7;
  }
}


/* 卖点 */
.advan_list {
    grid-auto-rows: 266px;
    display: grid;
    -moz-column-gap: 0;
    column-gap: 0;
    row-gap: 13px;
}
.advan_i1{
      grid-row-start: 1;
    grid-row-end: 2;
    width: 446px;
    height: 546px;
}
.advan_i2{
  height: 546px;
    width: 350px;
    margin: 0 13px;
    
}
.advan_i1 img{
      object-fit: cover;
    object-position: right;
}
.advan_i3{
      grid-column-start: 4;
    grid-row-end: 2;
    width: 486px;
    height: 266px;
}
.advan_i4{
  grid-column-start: 4;
    grid-row-end: 3;
    width: 486px;
    height: 266px;
}
.advan_item img {
    height: 100%;
    width: 100%;
}
.advan_item {
    position: relative;
  border-radius: 20px;
    overflow: hidden;
}
.advan_over_content {
    position: absolute;
    top: 0;
    left: 0;
    padding: 30px;
}
.advan_over_content div p{
      color: #676767;
    font-size: 13px;
    line-height: 1.5;
    max-width: 220px;
}
.advan_i4 a{
      text-decoration: none;
    background: #F7DB5E;
    color: #000;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 40px;
  display:none
}
.advan_i2 .advan_over_content{
      top: auto;
    bottom: 0;
}
.advan_item .feather-icon{
  position: absolute;
    margin: auto;
    width: 100px;
    height: 100px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  color:#f7db5e;
  transition: all .4s ease;
}
.advan_item .video-container__play.feather-icon svg {
    width: 100px;
    height: 100px;
}
.advan_item.advan_i1 a,
.advan_item.advan_i1 .rimage-outer-wrapper,
.advan_item.advan_i1 .rimage-wrapper {
  height:100%
}
.videos_list{
  position:relative
}
.videos_list .swiper-button-next:after,
.videos_list .swiper-button-prev:after{
  display:none
} 
.video_item{
      overflow: hidden;
    border-radius: 20px;
      position: relative;
}
.video_item img{
    width: 100%;
    height: 100%;
   cursor: pointer;
  transition: all .6s ease;
  vertical-align: middle;
}
.video_item:hover img{
  /* transform: scale(1.1); */
}
.swiper-button-next.vn{
    right: -80px;
}
.swiper-button-prev.vp{
   left: -80px
}
.video_modal {
    position: fixed;
    inset: 0px;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2147483648;
  display:none
}
.pop__masks{
    position: fixed;
    inset: 0px;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2147483648;
  width:100%;
  height:100%;
  display:none
}
.modal_item video{
  display: block;
    margin: auto;
}
.videoSwiper2{
      position: absolute;
    height: 100%;
    width: 100%;
}
.video_modal .feather-icon.icon--videos{
  color: #999;
    position: absolute;
    right: 0;
    width: 50px;
    height: 50px;
    background: rgb(255 255 255 / 30%);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    z-index: 111;
    cursor: pointer;
}
 .advan_i4 .advan_over_content,
  .advan_i3 .advan_over_content{
      display: flex;
    flex-flow: column;
    justify-content: center;
    height: 100%;
  }
.vn2:after,
.vp2:after{
  display:none
}
.right__icon {
    position: absolute;
    right: 40px;
    top: 0;
    display: flex;
    flex-flow: column-reverse;
    gap: 30px;
    align-items: center;
    justify-content: center;
    height: 100%;
    bottom: 0;
}
.right__icon > div {
    position: relative;
    right: 0;
    left: 0;
    margin: 0;
    top: 0;
}

.fancybox__content .carousel__button{
  min-width:auto
}
.advan_i1:hover .feather-icon{
      transform: scale(1.1);
}
.new_blogs .sticky-element{
    position: relative;
    width: 100%;
}
.new_blogs .rimage-background.fade-in.lazyloaded{
  display: none;
}
.new_blogs .avoid-overlaps--processed .avoid-overlaps__item{
  margin-top: 0!important;
    position: relative;
}
.new_blogs .grid{
      margin-left: 0;
}
.new_blogs .featured-blog__articles-list{
      width: 100%;
    display: flex;
    padding: 0;
    gap: 30px;
}
.new_blogs .article {
    border-top: 0;
    padding-top: 0;
    padding-bottom: 0;
      box-shadow: 0 4px 6px #00000014;
    border-radius: 16px;
      overflow: hidden;
}
.new_blogs .featured-blog__article:first-child {
    margin-top: 0;
}
.subscribe_left .subscribe-form__heading{
   font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Helvetica Neue, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-size: 24px;
    margin-bottom: 0;
}
.subscribe_left .subscribe-form__text p{
  margin-bottom:0
}
.page-footer__subscribe .subscribe-form__inputs .subscribe-form__email{
    border: 1px solid #f7db5e;
    color: #f7db5e;
    padding: 15px;
    width: 400px;
    border-radius: 10px 0 0 10px;
    height: 50px;
}
.page-footer__subscribe .subscribe-form__inputs .subscribe-form__email::placeholder{
   color: #f7db5e;
}
.page-footer__subscribe .subscribe-form__submit{
    height: 50px;
    border-radius: 0 10px 10px 0;
      background: #f7db5e;
    color: #3e3e3e;
      margin-left: 0;
}
.page-footer__subscribe label.subscribe-form__label {
    display: none;
}
.featured-collection .head_sections{display:flex;}
.featured-collection .grid-flex__item{
  padding-bottom:0
}
.banner_np {
    position: absolute;
    right: 0;
    bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}
#shopify-section-template--16853232386288__25ac5fa2-1f79-4e34-a3e2-d1335080ba3d .relative.container{
  background: #fafafa;
    border-bottom: 1px solid #efeded;
}
.page-footer__subscribe .subscribe-form__submit:hover{
      background-color: #000;
    color: #f7db5e;
}
.featured-blog__article-content p{
  color: #676767;
}
.overlay__content .overlay-text{
      color: #676767;
}
.imgs-banner img,
.imgs-banner{
  width:100%;
      vertical-align: middle;
}
#etranslate-language-float-selector-theme2 {
    display: none;
}
 #halloween-sale-asian-fit-glasses-nextpair .hot_tagss{
    background: url(https://cdn.shopifycdn.net/s/files/1/0607/9224/2416/files/halloween-hot.png?v=1698303358);
    background-size: contain;
    position: absolute;
    top: 0!important;
    right: 10px;
    width: 110px;
    height: 104px;
    z-index: 1;
    animation: swing 3s infinite ease-in-out;
  }
  #halloween-sale-asian-fit-glasses-nextpair .tags img{
    display: none
  }
  @keyframes swing {
    0% {
      transform: rotate(-6deg);
    }
  
    50% {
      transform: rotate(6deg);
    }
  
    100% {
      transform: rotate(-6deg);
    }
}
.halloween_box {
    text-align: center;
    margin: 50px 0;
}
.halloween_box h2{
  /* color: #bf4830; */
    font-size: 50px;
}
.halloween_box p{
      font-size: 24px;
    margin-bottom: 30px;
        /* color: #bf4830; */
}
.halloween_box .code{
    text-decoration: underline;
    font-weight: bold;
    font-size: 20px;
    display: block;
    color: #000;
    margin-top: 20px;
  font-style: normal;
}
.two_btns a {
display: flex;
    font-size: 15px;
    text-decoration: none;
    width: auto;
    align-items: center;
    height: 50px;
    border-radius: 50px;
    color: #000;
    background: #f7db5e;
    justify-content: center;
    /* font-weight: bold; */
    padding: 0 30px;
}
.two_btns {
    display: flex;
    justify-content: center;
    text-decoration: none;
    gap: 30px;
}
#black-friday-sale-asian-fit-glasses-nextpair .product-block .product-price {
  
    color: #f7db5e;
    font-weight: bold;
}
#black-friday-sale-asian-fit-glasses-nextpair .product-block__swatches {
  
    background: rgb(255 225 92 / 53%);
    border-radius: 10px;
    display: inline-block;
}
#black-friday-sale-asian-fit-glasses-nextpair .featured-collection--title {
    color: #f7db5e;
}
#black-friday-sale-asian-fit-glasses-nextpair .breadcrumbs-container{
  display:none
}
#black-friday-sale-asian-fit-glasses-nextpair .faq_section {
    background: #2a2524;
    padding: 60px 0;
    margin-top: 80px;
    margin-bottom: -30px;
    color: #f7db5e;
    border-top: 1px solid #5a5a5a;
}
#black-friday-sale-asian-fit-glasses-nextpair .product-block__image-container:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    background: url(https://cdn.shopify.com/s/files/1/0607/9224/2416/files/auwvs-zxt4a.png?v=1699929986);
    width: 100%;
    height: 39px;
    z-index: 1;
    background-size: cover;
    border-radius: 10px;
}

#black-friday-sale-asian-fit-glasses-nextpair .product-block__image-container:before {
    content: '50% discount';
    position: absolute;
    z-index: 2;
    right: 60px;
    bottom: 8px;
    font-weight: bold;
    color: #f7db5e;
}
#black-friday-sale-asian-fit-glasses-nextpair .faq_txt h3:after, #black-friday-sale-asian-fit-glasses-nextpair .faq_item.active .faq_txt h3:after{
    background-size: 20px 20px;
    transition: all .4s ease;
    background-color: #f7db5e;
    border-radius: 20px;
    background-repeat: no-repeat;
    background-position: center center;
}
.payment-icon {
  
    width: 38px;
}
.payment-icon img{
  vertical-align: bottom;
}
.payment-icon:nth-child(6){
      margin-left: 4px;
}
.search-bar-in-focus .search-bar__results{
  display: block
}
.Populars {
    padding: 0 40px 20px;
}
.Populars a {
    display: inline-block;
    border: 1px solid #ccc;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 14px;
    margin-right: 10px;
}
.Populars div{
      font-size: 18px;
    margin-bottom: 15px
}
.Populars a img{
      width: 15px;
    vertical-align: sub;
    margin-right: 5px;
}
.Populars a.loyath_btn{
      background: #f7db5e;
    border-color: #f7db5e;
    color: #000;
}
.featured-collection-controls--prev, .featured-collection-controls--next{
    display: none;
}
.hji_1 .banner_contents{
    max-width: 730px;
}
.template-index .hji_1 .banner_title{
font-size: 54px;
    color: #cbfff8;
    font-weight: bold;
}
.template-index .hji_1 .banner_desc{
  
 margin: 20px 0;
 font-size: 17px;
 color: #cbfff8;
 font-size: 34px;
 line-height: 1.2;
}
.template-index .hji_1 .banner_desc li strong{
  /* color: #973a42; */
}
.template-index .hji_1 .banner_btn_a{
     background: #fff;
 color: #495356;
 font-size: 26px;
 font-weight: bold;
}
.ukol__info {
    font-size: 14px;
    color: #676869;
    line-height: 1.4;
}
.vvv__mask{
  opacity:0;
      position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgb(0 0 0 / 48%);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    transition: all .5s ease;
     cursor: pointer;
}
.video_item .vvv__mask img{
      width: 80px;
    height: auto;
}
.vvv__mask span{
      display: inline-block;
    border: 1px solid #fff;
    color: #fff;
    padding: 8px 15px;
    margin-top: 20px;
    font-size: 12px;
    border-radius: 50px;
}
.video_item:hover .vvv__mask{
 opacity:1;
}
@media (max-width: 768px) {
 .cc-filters-results {
    padding-top: 1px;
}
  .featured-blog__header {
    align-items: flex-start;
    flex-flow: column;
        padding: 30px 30px 0;
}
  .featured-blog__header p {
    margin-bottom: 10px;
}
  #black-friday-sale-asian-fit-glasses-nextpair .tag{
  display:none
}
  #black-friday-sale-asian-fit-glasses-nextpair .product-block__image-container:after{
        height: 20px;
    border-radius: 5px;
  }
  #black-friday-sale-asian-fit-glasses-nextpair .product-block__image-container:before {
  
    right: 10px;
       bottom: 3px;
    line-height: 1;
    font-size: 12px;
}
  .smile-launcher-frame-container{
    
}
  .Populars a {
    font-size: 12px;
    margin-right: 10px;
    margin-bottom: 10px;
}
  .halloween_box h2 {
    font-size: 30px;
}
  .halloween_box p {
    font-size: 14px;
  }
  .two_btns a {
    font-size: 14px;
  }
  .two_btns {
    gap: 10px;
}
  #halloween-sale-asian-fit-glasses-nextpair .hot_tagss{
        width: 55px;
    height: 52px;
  }
  .advan_list{
       display: flex;
       flex-wrap: wrap;
  }
  .advan_i1 {
    width: 50%;
    height: auto;
    padding-right: 6px;
}
  .advan_i2 {
    height: auto;
    max-width: 100%;
    margin: 0;
    width: 50%;
    padding-left: 6px;
}
  .new_blogs .featured-blog__articles-list {
    padding: 20px;
}
  .advan_i2 .advan_over_content p{
  overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-top: 5px;
    margin-bottom:0
  }
  .advan_i3 .advan_over_content p{
  overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-top: 5px;
    margin-bottom:0
  }
  .advan_i3 {
    max-width: 100%;
    height: auto;
}
  .advan_i4 {
    max-width: 100%;
    height: auto;
}
  .advan_over_content {
    padding: 20px;
}
  .advan_i4 a{
    display:none
  }
  .new_blogs .featured-blog__articles-list {
    flex-flow: column;
}
  .swiper-button-next.vn {
    right: 20px;
}
  .swiper-button-prev.vp {
    left: 20px;
}
  .section-featured-blog .grid{
        margin-left: 0;
  }
   .featured-blog .featured-blog__header {
    margin-top: 0;
  }
  .videos_list .featured-collection-controls{
    display:flex
  }
  .video_modal .feather-icon.icon--videos{
    top:10px;
    right:10px
  }
  advan_i2 {
    height: auto;
    max-width: 100%;
    margin: 0;
}
  .advan_item img {
    vertical-align: middle;
}
  .page-footer__subscribe .subscribe-form__inputs .subscribe-form__email {
    height: 40px;
        width: 100%;
}
  .page-footer__subscribe .subscribe-form__submit {
    height: 40px;
    min-width: auto;
}
  .page-footer__subscribe .subscribe-form__inputs {
    display: flex;
}
  .footer-block {
    text-align: left!important;
}
  .subscribe_left .subscribe-form__text p {
    margin-bottom: 10px
}
  .page-footer__blocks {
    padding-top: 0;
}
  .video_section .large-row{
    margin-bottom:0
  }
  .banner_np {
    display: none;
  }
  .advan_item .feather-icon, .advan_item .video-container__play.feather-icon svg{
    width:60px;
    height:60px
  }
  .advan_i1 .advan_over_content p{
  margin:0;
    line-height: 1.1;
  }
  .advan_over_content div p {
    line-height: 1.4;
    }
  .advan_i3 .advan_over_content{
        display: flex;
    flex-flow: column;
    justify-content: center;
    height: 100%;
  }
  .videos_list{
    /* margin-top:20px */
  }
  .advan_i1 img{
        object-fit: cover;
    object-position: right;
  }
  .new_blogs .avoid-overlaps--processed .avoid-overlaps__item{
  padding-bottom:0
  }
  .new_blogs .overlay__content .overlay-text {
        font-size: 14px;
    line-height: 1.4;
  }
  .new_blogs .featured-blog__article-content p {
    font-size: 14px;
    line-height: 1.4;
}
  .product-block--sales-point-list .sales-points {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    margin: 0;
    flex-wrap: wrap;
    row-gap: 10px;
}

  .sales-point .icon-and-text {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-flow: column;
    font-size: 12px;
    row-gap: 10px;
}
  .sales-point .sales-point-img {
    margin: 0;
}
  .top-reviews {
    display: none!important;
}
 #shopify-section-template--16906089332976__25ac5fa2-1f79-4e34-a3e2-d1335080ba3d .relative.container{
    padding:0
  }
  .payment-icon {
    width: 30px;
}
  .payment-icon-svg {
    width: 30px;
    vertical-align: top;
}
  .payment-icon img{
        vertical-align: middle;
  }
  .Populars a img {
    width: 15px!important;
    height: auto!important;
  }
  .optician_button {
        gap: 10px;
    flex-wrap: nowrap!important;
    width: 100%;
    justify-content: space-between;
    flex-flow: inherit;
}
  .product-detail__detail button {
    padding-left: 20px;
    padding-right: 20px;
  }
  button.tailor_my_lens {
    margin: 10px 0 0!important;
}
}
#new-users-only-eyeglasses-for-asians-nextpair .cc-filter[data-index="6"]{
  display:none
}
.review_news {
    position: relative;
      display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.vreviews_list {
    width: 58%;
      border-radius: 20px;
    overflow: hidden;
}
.vreviews_section .gallert_head {
    width: 42%;
}
.vreview_item {
    background: #F7DB5E;
    padding: 60px 60px 42px;
   
    border-radius: 20px;
}
.vreview_item p{
      margin: 0;
    line-height: 1.1;
    font-size: 32px;
}
.vreviews_section .giant-title{
  font-size: 48px;
    font-weight: bold;
}
.vreviews_section .rvp:after, .vreviews_section .rvn:after{
  display:none
}

.vreview_item p:before {
    content: '';
    background: url(https://cdn.shopify.com/s/files/1/0607/9224/2416/files/a38e20d2dafbcaafde5fe6f58cffcaf1.svg?v=1699261758);
    width: 30px;
    height: 30px;
    display: inline-block;
    background-size: contain;
   
    margin-right: 10px;
    position: relative;
    top: -8px;
}
.vreview_item p:after {
    content: '';
    background: url(https://cdn.shopify.com/s/files/1/0607/9224/2416/files/a38e20d2dafbcaafde5fe6f58cffcaf1.svg?v=1699261758);
    width: 30px;
    height: 30px;
    display: inline-block;
    background-size: contain;
    margin-left: 10px;
    position: relative;
   transform: rotate(180deg);
    bottom: -8px;
}
.mul_item img {
    width: 85px;
}
.mul_item {
    display: flex;
    gap: 34px;
}
.mul_list {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(2,1fr);
}
.mul_item {
    display: flex;
    gap: 34px;
    align-items: flex-start;
}
.mul_txt h4 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
      transition: all .3s ease;
}
.mul_item:hover h3{
      text-shadow: 2px 2px 4px rgb(0 0 0 / 50%);
}
.mul_txt div{
      font-size: 18px;
  
}
.faq_section{
  background: #FFFBF4;
      padding: 60px 0;
  margin-top:60px;
  margin-bottom: 60px;
}
.faq_boxs{
      display: flex;
}
.faq_boxs .giant-title{
      font-size: 48px;
}
.faq_boxs .gallert_head{
width:45%
}
.faq_list{
  width:55%
}
.faq_txt h3 {
    /*font-size: 20px;*/
  display: flex;
    align-items: center;
    justify-content: space-between;
}
.faq_txt div{
  display:none
}
.faq_txt {
    padding: 15px 0;
      cursor: pointer;
}
.faq_item.active div{
  display:block;
  opacity: .8;
}
.faq_txt h3:after {
    content: '';
    background: url(https://cdn.shopifycdn.net/s/files/1/0607/9224/2416/files/76d0f4f3875b18780cbb59f0deb5d172.png?v=1699334108);
    width: 30px;
    height: 30px;
    display: inline-block;
    background-size: cover;
      transition: all .4s ease;
}
.faq_item.active .faq_txt h3:after {
    content: '';
    background: url(https://cdn.shopifycdn.net/s/files/1/0607/9224/2416/files/5bf61d226dd40afb2f8ca2db9e6faf2f.png?v=1699334108);
    width: 30px;
    height: 30px;
    display: inline-block;
    background-size: cover;
}
#new-users-only-eyeglasses-for-asians-nextpair .giant-title{
      font-size: 48px;
  
    font-weight: bold;
}
.mul_section{
  margin:60px 0;
}
.mul_section .giant-title{
      margin-bottom: 100px
}
.vreviews_section{
  padding-bottom:5px
}
.vreview_item svg{
      stroke: #000!important;
    fill: #000!important;
}

.vreview_item .testimonial-stars {
    margin: 15px 0 35px;
}
.rev_user {
    font-size: 18px;
}
.review_btnss > div {
    position: relative;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: 0;
  width:60px;
      height: 60px;
    background: #f7db5e;
    border-radius: 50%;
    color: #000;
}
.review_btnss {
    display: flex;
    position: relative;
    gap: 20px;
      margin-top: 40px;
}

@media (max-width: 768px) {
  .vreview_item .testimonial-stars {
    margin: 15px 0 15px;
}
  #new-users-only-eyeglasses-for-asians-nextpair .giant-title {
    font-size: 26px;
}
  .vreview_item {
    padding: 30px;
}
  .vreview_item p {
    font-size: 15px;
}
  .rev_user{
     font-size: 15px;
  }
  .vreview_item p:before {
  width: 15px;
    height: 15px;
   ;
    margin-right: 5px;
    top: -4px;
  }
  .vreview_item p:after{
   width: 15px;
    height: 15px;
   ;
    margin-left: 5px;
    bottom: -4px;
  }
  .mul_section .giant-title {
    margin-bottom: 35px;
}
  .mul_list {
    gap: 20px;
    grid-template-columns: repeat(1,1fr);
}
  .mul_item {
    display: flex;
    gap: 10px;
}
  .mul_item img {
    width: 40px;
}
  .mul_txt h4 {
    font-size: 15px;
  }
  .mul_txt div {
    font-size: 13px;
        line-height: 1.4;
}
  .faq_section, .mul_section {
    padding: 15px 0;
    margin: 0px;
}
  .faq_boxs {
    display: block;
}
  .faq_boxs .gallert_head {
    width: 100%;
}
  .faq_list {
    width: 100%;
}
  .faq_txt h3 {
    font-size: 15px;
  }
  .swiper-button-next.rvn {
    width: 45px;
    height: 45px;
}
  .review_news .featured-collection-controls{
        display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 100%;
    height: 100%;
  }
  .swiper-button-prev.rvp {
  
    width: 45px;
    height: 45px;
}
  .vreview_item .icon{
      width: 15px;
    height: 15px;
  }
  .faq_txt h3:after,
  .faq_item.active .faq_txt h3:after{
        width: 20px;
    height: 20px;
  }
  .vreviews_section {
    padding-bottom: 0;
}
  .faq_list {
    margin-top: 10px;
}
  .cc-filters-control {
  
    margin-top: 20px;
}
  .faq_boxs .giant-title {
    font-size: 1.5em;
}
}
#black-friday-sale-asian-fit-glasses-nextpair main{
      background: #2a2524;
    color: #fff;
}
#shopify-section-template--16971049107696__c4fda6a3-2607-447b-a8bb-6e8b5f66e6b0{
      border: 1px solid #5e5c4f;
    border-left: 0;
    border-right: 0;
}
#shopify-section-template--16971049107696__c4fda6a3-2607-447b-a8bb-6e8b5f66e6b0 .sales-point .icon-and-text span {
    color: #fff;
}
#shopify-section-template--16971049107696__c4fda6a3-2607-447b-a8bb-6e8b5f66e6b0 .sales-point .sales-point-img {
  
    background-color: #fff;
    border-radius: 10px;
    padding: 4px;
}
#shopify-section-banner .btn{
      transition: all .35s ease;
  animation: swing 1s infinite
}
#shopify-section-banner .btn:hover{
  box-shadow: 0 0 20px 1px #efe8e8!important;
      background-color: #f7db5e;
    color: #000;
}
@keyframes shake {
    0%,to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    10%,30%,50%,70%,90% {
        -webkit-transform: translate3d(-10px,0,0);
        transform: translate3d(-10px,0,0)
    }

    20%,40%,60%,80% {
        -webkit-transform: translate3d(10px,0,0);
        transform: translate3d(10px,0,0)
    }
}
@keyframes swing {
    0% {
        -webkit-transform: none;
        transform: none
    }

    15% {
        -webkit-transform: translate3d(-25%,0,0) rotate(-5deg);
        transform: translate3d(-25%,0,0) rotate(-5deg)
    }

    30% {
        -webkit-transform: translate3d(20%,0,0) rotate(3deg);
        transform: translate3d(20%,0,0) rotate(3deg)
    }

    45% {
        -webkit-transform: translate3d(-15%,0,0) rotate(-3deg);
        transform: translate3d(-15%,0,0) rotate(-3deg)
    }

    60% {
        -webkit-transform: translate3d(10%,0,0) rotate(2deg);
        transform: translate3d(10%,0,0) rotate(2deg)
    }

    75% {
        -webkit-transform: translate3d(-5%,0,0) rotate(-1deg);
        transform: translate3d(-5%,0,0) rotate(-1deg)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}
   .cart_boxss .cart-finish .cart-submit {
    width: 100%;
    padding: 17px;
    border-radius: 60px;
    font-weight: bold;
    letter-spacing: 0;
     margin-top: 9px;
}
@media (min-width: 768px) {
  .cart-orders{
    display: flex;
    gap: 90px;
        align-items: flex-start;
  }
  .cart-order__recap {
    width: 380px;
    flex: none;
        position: sticky;
    top: 200px;
}
  .cart-orders .cart-items{
        width: calc(100% - 380px);
  }
   .hd_txts div{
        font-size: 12px;
    }
  .cart_boxss {
    background: #FDF7DA;
    border-radius: 20px;
    padding: 40px 48px;
    margin-top: 20px;
}
 .cart_boxss .total {
    /* display: flex;
    align-items: center;
    justify-content: space-between; */
}
  .cart-discount-list {
    margin: 0;
}
  .cart-policies.small-text.text-right {
    color: #666;
    font-size: 14px;
    margin-top: 10px;
}
  
  .cart-orders .cart--sale--notes {
    margin-top: 50px;
}
   .cart-orders ul.sales-points {
    display: flex;
    flex-flow: column;
    gap: 20px;
}
  .small-row.cart-notes-container .cart-trigger.btn {
    font-size: 14px;
    color: #666;
}
}
@media (max-width: 768px) {
  .faq_boxss h2.giant-title {
    font-size: 28px;
  }
  .faq_boxss .faq_list {
    padding: 20px 28px;
  }
  .hd_txts{
    margin-bottom:20px;
    flex-flow: column;
    align-items: self-end;
    text-align: right;
    gap: 10px;
    padding-bottom: 20px;
  }
 .cart-orders .sales-points li {
    text-align: center;
}
}
  .hd_txts span{
      transition: all .35s ease;
    animation: pulse 1s infinite;
  }
@keyframes pulse {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    50% {
        -webkit-transform: scale3d(1.15,1.15,1.15);
        transform: scale3d(1.15,1.15,1.15)
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}
.faq_boxss .faq_list {
  width:100%;
    max-width: 960px;
    background: #ececec;
    padding: 20px 48px;
    border-radius: 20px;
    margin: auto;
}
.faq_boxss h2.giant-title {
    font-size: 42px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 40px;
}
.faq_boxss {
    margin-top: 50px;
    margin-bottom: 70px;
}
.faq_boxss .faq_txt {
    padding: 20px 0;
    border-bottom: 1px solid rgb(26 26 26 / 12%);
}
.faq_item:last-child .faq_txt{
  border-bottom:0
}
.coupon_bos {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgb(229 229 229 / 30%);
  rgin-top: 20px;
}
.coupon_right {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: #000;
    color: #f7db5e;
}
.coupon_bos #code-copy-btn {
    background: #F7DB5E;
    color: #000;
    font-size: 14px;
    padding: 3px 15px;
    border-radius: 40px;
    margin-top: 6px;
}
.coupon_bos big{
      font-size: 18px;
    font-weight: bold;
}
.coupon_left > div:nth-child(1){
  font-size: 18px;
    font-weight: bold;
      margin-bottom: 5px;
}
.coupon_left > div:nth-child(2){
  font-size: 14px;
   color: #666
}
.coupon_left {
    padding: 0 25px;
}
.new_annce{
      display: flex;
    justify-content: center;
      align-items: center;
    gap: 30px;
}
.new_annce img{
      width: 50px;
   animation: pulse 2s infinite ease-in-out;
}
#countdown{
    /* position: absolute; */
    display: none;
    column-gap: 18px;
    right: 0;
    /* top: 8px; */
  position: relative;
    top: -4px;
  
}
 #countdown{
  display:flex
}
#countdown span {
    display: flex;
    width: 60px;
    height: 50px;
    background: #f7db5e;
    color: #000;
    /* border: 2px solid #333; */
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    font-weight: bold;
}
#countdown>div {
    /* display: flex; */
    /* flex-flow: column; */
    /* align-items: center; */
    font-size: 16px;
    line-height: 1;
    position: relative;
text-align: center
}
#countdown>div:after {
    /* content: ':'; */
    display: inline-block;
    position: absolute;
    top: 7px;
    right: -11px;
    font-size: 15px;
    font-weight: bold;
}
#countdown>div:last-child:after{
  display:none
}
.ann_left b {
    display: block;
    text-align: center;
    font-size: 16px;
}
.ann_left {
    font-size: 16px;
    line-height: 1.3;
    font-weight: bold;
}
.template-index .section-product-list .head_sections {
    justify-content: space-between;
    gap: 20px;
}
.hurry {
    font-size: 20px;
    font-weight: bold;
}
.blue_light-richtext {
    text-align: center;
}
.blue_light-richtext h2 {
    font-size: 48px;
}
.blue_light-richtext p{
      margin: 0;
    margin-top: 35px;
    font-size: 18px;
    margin-bottom: 60px;
}
.blue_light-richtext a{
      width: 180px;
    height: 60px;
    display: flex;
    margin: auto;
    border: 1px solid #000;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    border-radius: 10px;
    margin-bottom: 40px;
}
.blue_light-pic {
    text-align: center;
    position: relative;
}
.blue_light-info {
    font-size: 32px;
    line-height: 1.3;
    text-align: center;
    padding: 0 40px;
    margin-bottom: 100px;
}
.blue_light-steps {
    background: #FFFBF4 100%;
    padding: 55px 75px 40px;
      display: flex;
    flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      border-radius: 20px;
}
.steps_right {
    width: 50%;
}
.blue_light-steps h2 {
    font-size: 30px;
    text-align: center;
    margin-bottom: 40px;
      width: 100%;
}
.find_title {
    text-align: center;
    font-size: 32px;
    margin: 70px 0 40px;
    font-weight: 500;
}
.steps_left strong {
    display: block;
    margin-top: 20px;
    font-size: 20px;
      margin-bottom: 10px;
      font-weight: 500;
}
.steps_left ul {
    display: flex;
    gap: 15px;
  text-align: center;
  nt-size: 20px;
}
.steps_left ul img {
    width: 50%;
    margin: auto;
    display: block;
}
.steps_left {
    width: 100%;
}
.blue-images {
    display: flex;
    align-items: center;
      justify-content: space-around;
}
.blue_intro {
     display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0px 0 100px;
}
.blue_intro div{
      width: 40%;
}
.blue_features div {
    width: 270px;
    height: 56px;
    border: 1px solid #000;
    display: flex;
    align-items: center;
    padding: 0 24px;
    border-radius: 15px;
      gap: 8px;
}
.blue_features {
    display: flex;
    gap: 16px;
}
.blue_image-text > h2 {
    text-align: center;
    margin: 120px 0 80px;
}
.blue_intro p {
    margin: 0;
    font-size: 18px;
    margin-top: 30px;
}
.blue_intro h3 {
    font-size: 36px;
}
.blue_intro img{
  max-width: 670px;
}
.blue_features div:before {
    content: '';
    background: url(https://cdn.shopifycdn.net/s/files/1/0607/9224/2416/files/ea049f0b85dbfcea6cae3a8a1d0a70c9.svg?v=1701421183);
    width: 24px;
    height: 24px;
    background-size: cover;
}
a.hero__scroll {
    position: absolute;
    bottom: 25%;
    left: 0;
    right: 0;
    margin: auto;
      -webkit-animation: pulse 2s infinite;
    animation: pulse 2s infinite
}


@keyframes pulse {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }

  50% {
    -webkit-transform: translate(0, 10px);
            transform: translate(0, 10px); }

  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }
 .blue_light-richtext .shopnow_s:hover{
                  background: #f7db5e;
    border-color: #f7db5e;
            }
.pp_frame {
    display: flex;
    justify-content: space-between;
}
.pp_lens{
  display: flex;
    justify-content: space-between;
      margin-bottom: 15px;
}
.blue_light-stepstitle {
    text-align: center;
    margin-bottom: 50px;
}
.blue-images img{
      width: 40%;
}
.pagination {
 
    margin-top: 80px;
}
.blog-articles-list article.article {
    box-shadow: 0px 1px 13px rgb(0 0 0 / 9%);
      border-radius: 15px;
  padding-bottom: 0;
}
.blog-articles-list .rimage-outer-wrapper{
      border-radius: 15px 15px 0 0;
}

 .blog-articles-list .article__title  {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2; 
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
 .blog-articles-list .article__content p{
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3; 
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
       color: #838383;
}
.template-suffix-BlackFriday main{
      background: #FEF7E6;
}
.template-suffix-BlackFriday .breadcrumbs-container {
    display: none;
}
.template-suffix-BlackFriday .product-block__image-container:after {
    /* content: '';
    background: url(https://cdn.shopifycdn.net/s/files/1/0607/9224/2416/files/5ad27fa4f078db985610276b1449f8f6.png?v=1703039073);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    z-index: 1;
    pointer-events: none;
      border-radius: 8px */
}

#shopify-section-header .site-nav__item:nth-child(1) a {
    /* background: url(https://cdn.shopifycdn.net/s/files/1/0607/9224/2416/files/source.gif?v=1699596767);
    background-size: cover; */
}
#shopify-section-header .site-nav__item:nth-child(1) a:before {
    /* content: '';
    background: url(https://cdn.shopifycdn.net/s/files/1/0607/9224/2416/files/GIF_3.gif?v=1703137611);
    width: 150px;
    height: 43px;
    position: absolute;
    top: -5px;
    left: -21px;
    background-size: cover; */
}
.product-layout-grid__detail .hd_txts {
    margin-top: 40px;
    /* border: 4px dashed #c33b17; */
}
  img.sater {
    width: 80px;
    vertical-align: middle;
    margin-top: -40px;
    margin-bottom: -10px;
}
.hd_txts div {
    font-size: 15px;
}
.vp_box i{
  background:url(https://cdn.shopifycdn.net/s/files/1/0607/9224/2416/files/24gl-playCircle.png?v=1703657432);
    width: 70px;
    height: 70px;
    background-size: cover;
    display: block;
}
.video__pop a {
    text-decoration: none;
      display: block;
    position: relative;
}
.vp_box div {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 20px;
    font-weight: bold;
      justify-content: center;
    margin-top: 20px;
}
.vp_box h3 {
    font-size: 40px;
}
.vp_box {
    width: 50%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}
.community_np{
      font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #CF3434!important;
    margin-right: 20px;
      text-decoration: underline!important;
}
.community_np svg{
  width:20px;
  height:20px;
}
.store-messages-bar {
    /* background: #a7edfd */
}
.store-message-link span{
    margin-left: 5px;
    /* border-bottom: 1px solid #000; */
    line-height: 1.2;
    /* font-weight: bold; */
    /* background: #333; */
    /* color: #fff; */
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 12px;
}
.gForum a:before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #f00;
    border-radius: 50%;
    position: absolute;
    right: 5px;
  animation: flash 2s infinite
}
.gForum{
  display:none!important
}
.gForum a{
      font-weight: bold;
  animation: pulsse 2s infinite
}
@-webkit-keyframes pulsse {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    50% {
        -webkit-transform: scale3d(1.05,1.05,1.05);
        transform: scale3d(1.05,1.05,1.05)
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}
@keyframes flash {
    0%,50%,to {
        opacity: 1
    }

    25%,75% {
        opacity: 0
    }
}

.testimonials .testimonial-content h6{
font-size: 23px;
    margin: 15px 0;
}
@media (max-width: 768px) {
 
  .community_np{
    display:none
  }
.blog .single-column-layout .blog-articles-list {
    grid-template-columns: repeat(1,1fr);
    gap: 20px;
      padding: 0 30px;
}
  .coupon_left {
    padding: 0 15px;
}
  .coupon_left>div:nth-child(1) {
    font-size: 15px;
  }
  .coupon_left>div:nth-child(2), coupon_right small{
    font-size: 12px;
  }
  .coupon_bos #code-copy-btn{
      font-size: 12px;
  }
  .blue_intro {
  
    margin: 0 0 50px;
    flex-flow: column-reverse;
}
  .blue_intro img {
    max-width: 100%;
}
  .blue_intro div {
    width: 90%;
    text-align: center;
  }
  .blue_intro p {
    margin: 30px 0 20px;
    font-size: 15px;
}
  .find_title {
    font-size: 20px;
    margin: 30px 0 20px;
  }
  .blue_light-stepstitle {
    margin-bottom: 20px;
    font-size: 20px;
}
  .blue_light-steps {
    padding: 30px 10px;
  }
  .steps_left ul {
    gap: 5px;
    font-size: 12px;
    line-height: 1.2;
}
  .steps_left strong {
    font-size: 15px;
  }
}


/* 春节 */
 .deng-box1 {
          position: absolute;
    top: -10px;
        left: 100px;
        z-index: 9999;
        pointer-events: none;
     -webkit-animation: swing2 3s infinite ease-in-out;
    }
     
    .deng-box2 {
          position: absolute;
    top: -10px;
        left: 150px;
        z-index: 9999;
        pointer-events: none;
        -webkit-animation: swing2 4s infinite ease-in-out;
    }
    
    .deng-box3 {
         position: absolute;
    top: -10px;
        right: 100px;
        z-index: 9999;
        pointer-events: none;
        -webkit-animation: swing2 5s infinite ease-in-out;
    }
     
    .deng-box4 {
         position: absolute;
    top: -10px;
        right: 150px;
        z-index: 9999;
        pointer-events: none;
        -webkit-animation: swing2 4s infinite ease-in-out;
    }
    
    .deng-box1 .deng {
        position: relative;
        width: 120px;
        height: 90px;
        margin: 50px;
        background: #d8000f;
        background: rgba(216, 0, 15, 0.8);
        border-radius: 50% 50%;
        -webkit-transform-origin: 50% -100px;
        -webkit-animation: swing2 3s infinite ease-in-out;
        box-shadow: -5px 5px 50px 4px rgba(250, 108, 0, 1);
    }
    
    .deng-box2 .deng {
        position: relative;
        width: 120px;
        height: 90px;
        margin: 50px;
        background: #d8000f;
        background: rgba(216, 0, 15, 0.8);
        border-radius: 50% 50%;
        -webkit-transform-origin: 50% -100px;
        -webkit-animation: swing2 4s infinite ease-in-out;
        box-shadow: -5px 5px 30px 4px rgba(252, 144, 61, 1);
    }
    
    .deng-box3 .deng {
        position: relative;
        width: 120px;
        height: 90px;
        margin: 50px;
        background: #d8000f;
        background: rgba(216, 0, 15, 0.8);
        border-radius: 50% 50%;
        -webkit-transform-origin: 50% -100px;
        -webkit-animation: swing2 5s infinite ease-in-out;
        box-shadow: -5px 5px 50px 4px rgba(250, 108, 0, 1);
    }
    
    .deng-box4 .deng {
        position: relative;
        width: 120px;
        height: 90px;
        margin: 50px;
        background: #d8000f;
        background: rgba(216, 0, 15, 0.8);
        border-radius: 50% 50%;
        -webkit-transform-origin: 50% -100px;
        -webkit-animation: swing2 4s infinite ease-in-out;
        box-shadow: -5px 5px 30px 4px rgba(252, 144, 61, 1);
    }
    
    .deng-a {
        width: 100px;
        height: 90px;
        background: #d8000f;
        background: rgba(216, 0, 15, 0.1);
        margin: 12px 8px 8px 10px;
        border-radius: 50% 50%;
        border: 2px solid #dc8f03;
    }
    
    .deng-b {
        width: 45px;
        height: 90px;
        background: #d8000f;
        background: rgba(216, 0, 15, 0.1);
        margin: -2px 8px 8px 26px;
        border-radius: 50% 50%;
        border: 2px solid #dc8f03;
    }
    
    .xian {
        position: absolute;
        top: -50px;
        left: 60px;
        width: 2px;
        height: 50px;
        background: #dc8f03;
    }
    
    .shui-a {
        position: relative;
        width: 5px;
        height: 20px;
        margin: -5px 0 0 59px;
        -webkit-animation: swing2 4s infinite ease-in-out;
        -webkit-transform-origin: 50% -45px;
        background: #ffa500;
        border-radius: 0 0 5px 5px;
    }
    
    .shui-b {
        position: absolute;
        top: 14px;
        left: -2px;
        width: 10px;
        height: 10px;
        background: #dc8f03;
        border-radius: 50%;
    }
    
    .shui-c {
        position: absolute;
        top: 18px;
        left: -2px;
        width: 10px;
        height: 35px;
        background: #ffa500;
        border-radius: 0 0 0 5px;
    }
    
    .deng:before {
        position: absolute;
        top: -7px;
        left: 29px;
        height: 12px;
        width: 60px;
        content: " ";
        display: block;
        z-index: 999;
        border-radius: 5px 5px 0 0;
        border: solid 1px #dc8f03;
        background: #ffa500;
        background: linear-gradient(to right, #dc8f03, #ffa500, #dc8f03, #ffa500, #dc8f03);
    }
    
    .deng:after {
        position: absolute;
        bottom: -7px;
        left: 10px;
        height: 12px;
        width: 60px;
        content: " ";
        display: block;
        margin-left: 20px;
        border-radius: 0 0 5px 5px;
        border: solid 1px #dc8f03;
        background: #ffa500;
        background: linear-gradient(to right, #dc8f03, #ffa500, #dc8f03, #ffa500, #dc8f03);
    }
    
    .deng-t {
        font-family: 华文行楷,Arial,Lucida Grande,Tahoma,sans-serif;
        font-size: 3.2rem;
        color: #dc8f03;
        font-weight: bold;
        line-height: 85px;
        text-align: center;
    }
    
    .night .deng-t, 
    .night .deng-box, 
    .night .deng-box1 {
        background: transparent !important;
    }
    
    @-moz-keyframes swing2 {
        0% {
            -moz-transform: rotate(-10deg)
        }
    
        50% {
            -moz-transform: rotate(10deg)
        }
     
        100% {
            -moz-transform: rotate(-10deg)
        }
    }
    
    @-webkit-keyframes swing2 {
        0% {
            -webkit-transform: rotate(-10deg)
        }
    
        50% {
            -webkit-transform: rotate(10deg)
        }
    
        100% {
            -webkit-transform: rotate(-10deg)
        }
    }


.step_item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  margin-bottom:50px
}
.step_item > img{
    width: 465px;
    flex: none;
    border-radius: 20px;
  border:1px solid #efe5bb
}
.lcinfo {
    display: flex;
    align-items: flex-start;
      gap: 20px;
}
.lcinfo i{
    font-size: 110px;
    font-weight: bold;
    line-height: 1;
    display: block;
    position: relative;
    color: #f7db5e;
}
.lcinfo i:after {
    content: '1';
    position: absolute;
    left: -10px;
    color: #000;
    z-index: 1;
    top: -8px;
}
.step_item:nth-child(2) .lcinfo i:after {
    content: '2';
}
.step_item:nth-child(3) .lcinfo i:after {
    content: '3';
}
.lctext span {
    display: block;
    color: #9A9A9A;
    font-size: 28px;
}
.lctext h3 {
    font-size: 28px;
    font-weight: bold;
    margin-top: 10px;
}
.lctext p{
    margin-top: 10px;
    font-size: 20px;
    color: #333;
      line-height: 1.5;
      padding-right: 30%;
}
.lctext a {
    display: inline-block;
    padding: 5px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    border: 1px solid #000;
      transition: all .25s ease;
}
.template-suffix-trade-in-offer .breadcrumbs{
  display:none
}
.template-suffix-trade-in-offer .large-section {
    padding-top: 0;
}
.template-suffix-trade-in-offer .overlay__content ul {
  display: flex;
  flex-flow: column;
  gap: 20px;
}
.template-suffix-trade-in-offer .overlay__content li {
  text-align: left;
  display: flex;
  color: #33;
  position: relative;
}
.template-suffix-trade-in-offer .overlay__content li:before {
  content: "";
  width: 5px;
  height: 5px;
  background: #000;
  display: inline-block;
  position: absolute;
  left: -15px;
  top: 10px;
}
.template-suffix-trade-in-offer .overlay .large-title{
      font-weight: bold;
    font-size: 30px;
    margin-top: 30px;
}
.social_linksa svg {
    fill: #666;
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-right: 5px;
}
.social_linksa {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
      margin-top: 30px;
}
.lctext a:hover{
      background: #f7db5e;
}
.new_annce a.modal__close{
  display:none
}
.giftcardd {
    display: flex;
    align-items: center;
    background: #c0452e url(https://cdn.shopify.com/s/files/1/0607/9224/2416/files/1123.png?v=1706852064);
    padding: 10px;
    border-radius: 10px;
    gap: 15px;
    background-size: 239px 70px;
    background-position: center right;
    background-repeat: no-repeat;
}
.giftcardd img {
    width: 80px;
}
.giftcardd h3 {
    color: #e6cc82;
    font-size: 18px;
    font-weight: bold;
}
.giftcardd p {
    color: #e6cc82;
    font-size: 14px;
    margin: 0;
}

.card_promotion {
  /* background: url(https://cdn.shopify.com/s/files/1/0607/9224/2416/files/banner_3.png?v=1723701459);
    width: 100px;
    height: 100px;
    background-size: cover;
    position: absolute;
    z-index: 11;
    right: 0;
    top: 0; */
}
.template-suffix-ray-ban .card_promotion{
      background: url(https://cdn.shopify.com/s/files/1/0607/9224/2416/files/Ray_Ban.svg?v=1716188362);
    width: 70px;
    height: 35px;
    background-size: cover;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 11;
}
.template-suffix-new-users .card_promotion{
  display:none
}
.product-block__image-container .tags.new_tags{
  display:none
}
.template-suffix-brand-lens .card_promotion{
   display:none
}
#shopify-section-template--16906089332976__3a1f4a6c-d251-4764-8a8c-22725caa3675 .card_promotion{
   display:none!important
}
.template-suffix-new-users-only .product-detail__image:after {
    content: '';
    background: url(https://cdn.shopify.com/s/files/1/0607/9224/2416/files/50.png?v=1712631901);
    width: 180px;
    height: 180px;
    background-size: cover;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}
.template-suffix-ray-ban-sunglasses .product-detail__image:after,
.template-suffix-ray-ban-add-to-car .product-detail__image:after{
      content: '';
    background: url(https://cdn.shopify.com/s/files/1/0607/9224/2416/files/20240524111427.png?v=1716520489);
    width: 100px;
    height: 59px;
    background-size: cover;
    position: absolute;
    right: auto;
    top: 20px;
    z-index: 1;
    left: 20px;
}
.default_pro .product-detail__image:after {
  /* content: '';
      background: url(https://www.nextpair.com/cdn/shop/files/5_bf2a27ad-71b7-421b-b632-6c5f5924ee25.png?v=1714448937);
    width: 120px;
    height: 120px;
   background-size: cover;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1; */
}
.template-suffix-new-users .breadcrumbs {
    /* display: none; */
}
#shopify-section-template--16906088972528__custom_liquid_9Gfi8w .mul_item:hover{
  box-shadow: 0px 1px 8px 1px rgb(0 0 0 / 15%);
}
#shopify-section-template--16906088972528__custom_liquid_9Gfi8w .mul_item {
    cursor: pointer;
}
.tag.ttt {
    background: #d1d0d0;
 background: url(https://cdn.shopify.com/s/files/1/0607/9224/2416/files/ti4.png?v=1709701631);
    background-size: cover;
    color: #333;
}
.tag.ttt3 {
  /* background: #f5da5b; */
      background-image: linear-gradient(to right, rgb(247 219 94), rgb(247 219 94 / 18%))
}
.tag.ttt2 {
  background: #0d52a0;
  color:#fff;
      background-image: radial-gradient(60px at 90px 26px, #fff9, #fff0);
          display: none;
}
.product-block .tag{
      border-radius: 30px;
    font-size: 12px;
}
.v_8327259619568 .halroff{
  /* display:none */
}
.product-block__image-container .tags{
      display: flex;
    align-items: center;
    justify-content: center;
}
.Lineups {
    display: flex;
    justify-content: space-between;
    text-align: center;
    gap: 80px;
    margin-top: 30px;
}
.Lineups img {
    max-width: 40%;
  width:80px;
  margin-right:1em;
}
.Lineup_item h3 {
    font-size: 20px;
    /* font-weight: bold; */
}
.Lineup_item p {
    line-height: 1.3;
    margin-top: 10px;
  color；#333
}
.Lineup_item {
    text-decoration: none;
  flex:1;
  display:flex;align-items:center;
}
.featured-blog__header{
      justify-content: space-between;
    margin-bottom: 30px
}
.featured-blog__header a{
    text-decoration: underline;
    background: #fff;
    line-height: 30px;
    border-radius: 50px;
    padding: 0 15px;
    font-size: 13px;
    height: 30px;
}
  .featured-blog__header a svg{
    width:15px
  }
.featured-blog__header p{
  margin:0
}
.featured-blog__header h2{
  margin-bottom:10px;
  font-weight:bold;
}
  .banners_list{
    box-shadow: 0 5px 7px rgb(0 0 0 / 9%);
    border-radius: 20px;
    border-radius: 20px;
  }
.banner_contents {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    display: flex;
    flex-flow: column;
    justify-content: center;
    max-width: 640px;
    padding: 50px;
}
.home_item img{
  
    border-radius: 20px;
}
.banner_tags {
    font-size: 12px;
    margin-bottom: 10px;
    /* text-transform: uppercase; */
}
.banner_title {
    font-size: 54px;
}
.banner_desc {
    margin: 20px 0;
    font-size: 17px;
}
.banner_btn_a{
      background: #3e3e3e;
    height: 50px;
      color: #f7db5e;
    display: inline-block;
    padding: 0 30px;
    font-size: 15px;
    text-decoration: none;
    border-radius: 80px;
    line-height: 50px;
      transition: all .4s ease;
}
.banner_btn_a:hover{
    color: #f7db5e;
  opacity: .8;
}
.banner_btn_b{
      text-decoration: none;
    font-size: 17px;
    margin-left: 30px;
}
.banners_section {
    margin-top: 20px;
}
.banner_btns {
    margin-top: 15px;
}
.template-index .mul_list {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    /* grid-template-columns: repeat(4, 1fr); */
}
.template-index .mul_txt h3 {
    font-size: 16px;
      font-weight: bold;
}
.template-index .mul_txt div {
    font-size: 14px;
    line-height: 1.2;
    margin-top: 10px;
      /* display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden; */
}
.template-index .mul_item img {
    width: 55px;
}
.template-index .mul_item {
    gap: 20px;
    align-items: center;
    flex-direction: column;
    /* max-width: 170px; */
    text-align: center;
}
  .discounts_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
  .dis_item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}
  .dis_content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-flow: column;
    justify-content: center;
    padding: 20px 50px;
}
  .dis_content h3{
  font-weight: bold;
    font-size: 50px;
    margin: 5px 0;
  }
  .discounts_list a:nth-child(1) .dis_content span{
      background: #2E0D05;
    color: #f7dc5c;
    display: inline-block;
    width: 120px;
    font-size: 12px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    margin-top: 30px;
  }
   .discounts_list a:nth-child(2) .dis_content span{
    color: #2E0D05;
    display: inline-block;
    width: 120px;
    font-size: 12px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    margin-top: 30px;
  font-weight:bold;
      border: 2px solid #2e0d05;
  }
  .discounts_section .head_sections{
      text-align: left;
    margin-bottom: 30px;
  }
  .advantag_headingd h2{

  }
  .advantag_headingd div{
      font-size: 20px;
  }
  .pc_show{
    display:block
  }
  .mob_show{
    display:none
  }
  .utils__item.search-bar.search-bar--fadein.settings-close-mobile-bar {
    top: 70px;
        background: #fff;
}
  .section-testimonials button[aria-label="Next"], .section-testimonials button[aria-label="Previous"]{
  background: url(https://cdn.shopify.com/s/files/1/0607/9224/2416/files/new_right.png?v=1710144479);
    background-color: #fff;
    background-size: 100% 100%;
    width: 42px;
    height: 42px;
    border-radius: 42px;
    box-shadow: 0 4px 6px rgb(0 0 0 / 11%);
    border: 0;
    right: 0;
  }
   .section-testimonials button[aria-label="Next"]{
  right: -60px;
  }
  .section-testimonials button[aria-label="Previous"]{
  transform: rotate(180deg);
        z-index: 1;
    left: -30px;
  }
  /* .hji_1 .banner_title{
      color: #32912f;
    font-weight: bold;
    font-size: 70px;
  }
  .hji_1 .banner_tags{
      color: #32912f;
    font-weight: bold;
    font-size: 20px;
  }
  .hji_1 .banner_btn_a {
    background: #fa8e8a;
    color: #f6df74;
    font-weight: bold;
} */
  .banner_desc li strong {
    color: #000;
}
    .banner_desc ul li:first-child{
      margin-bottom: 20px;
  }
   .banner_desc ul li{
     position:relative
   }
  
   .banner_desc ul li:before {
/* content: ''; */
    margin-right: 10px;
    color: #32912f;
    background: url(https://cdn.shopify.com/s/files/1/0607/9224/2416/files/081dce1d1472a05b025d4114e903faa0.png?v=1710814474);
    width: 20px;
    height: 20px;
    background-size: cover;
    display: inline-block;
    vertical-align: middle;

  }
  .slide_function {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 111;
    left: 0;
    /* background: #fff; */
    /* box-shadow: 0 4px 6px #00000014; */
    width: 130px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 50px;
    margin: auto;
}
  .indexswiper-pagination .swiper-pagination-bullet{
      opacity: 1;
    background: #fff;
    border: 1px solid #9f9f9f;
        width: 10px;
    height: 10px;
  }
  .indexswiper-pagination .swiper-pagination-bullet-active {
    background: #f7db5e;
        width: 30px;
    height: 10px;
    border-radius: 10px;
}
  .slide_function .swin,
  .slide_function .swip{
      width: 38px;
    height: 38px;
    background: url(https://cdn.shopify.com/s/files/1/0607/9224/2416/files/new_right_b8e9ff7d-3db4-4d53-9529-c33d6364fbe4.png?v=1710234106);
    background-size: cover;
    right: 0;
    top: 0;
    position: relative;
    margin: 0;
        z-index: 111;
  }
  .slide_function .swip{
  left: 0;
    transform: rotate(180deg);
  }
  .slide_function  .swiper-button-next:after,  .slide_function  .swiper-button-prev:after{
    display:none
  }
  .collection__bg {
    display: flex;
    height: 250px;
    align-items: flex-start;
    border-radius: 20px;
    justify-content: space-between;
    padding: 50px 40px 0;
}
  .colr__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
  .colr__list a {
    background: #fff;
    border: 2px solid #ffea58;
    width: 133px;
    height: 162px;
    /* font-size: 14px; */
    text-decoration: none;
    border-radius: 20px;
    /* padding: 28px 0; */
}
.colr__list .dis_item {
    display: flex;
    align-items: center;
    padding: 25px 15px;
    gap: 15px;
    height: 100%;
    /* font-size: 18px; */
    flex-flow: column;
}
  .colr__list .rimage-outer-wrapper {
    width: 60px;
        margin: 0;
}
  .colr__list a:first-child .rimage-outer-wrapper{
      /* width: 57px;
    height: 50px;
        padding-top: 9px; */
  }
  .colr__list h3 {
    font-size: 14px;
    font-weight: normal;
    text-align: center;
}
  .cbd_code {
    display: flex;
    /* align-items: center; */
    gap: 20px;
    flex-flow: column;
    margin-top: 20px;
        align-items: flex-start;
}
  .cbd_code big{
    background: #ff743d;
        color: #fff;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 18px;
    /* font-weight: bold; */
       padding: 0 30px;
  }
.cbd_code div {
    font-size: 50px;
    font-weight: bold;
    color: #1C243F;
}
  .collection_banner_head {
    display: flex;
    flex-flow: column;
    height: 100%;
        padding-top: 20px;
}
  .cbd_title{
 color: #000;
    /* font-weight: bold; */
    font-size: 24px;
  }
  .discounts_list a:nth-child(1) .dis_content div{
    max-width: 45%;
  }
  .cbd_code b {
    font-size: 70px;
    color: #FF743D;
}
.template-suffix-brand-lens  .colr__list {
    grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
  .cbd_code b {
    font-size: 30px;
    color: #FF743D;
}
  .mobile-site-nav {
    margin: 30px 20px 20px;
}
  .utils__item.search-bar.search-bar--fadein.mobile-menu-search{
    display: none!important;
  }
  .collection__bg {
    height: auto;
    padding: 20px;
    flex-flow: column;
    gap: 20px;
}
  .cbd_code div {
    font-size: 30px;
}
  .collection_banner_head {
    width: 100%;
    align-items: center;
    text-align: center;
  }
  .cbd_code {
    align-items: center;
    gap: 20px;
    margin-top: 15px;
}
  .colr__list {
    gap: 10px;
}
  .colr__list h3 {
    font-size: 12px;
  }
  .colr__list a {
    width: 100%;
    height: 50px;
}
  .colr__list .rimage-outer-wrapper {
    width: 30px;
  }
  .head_sections {
    align-items: flex-start;
    flex-flow: column;
        position: relative;
}
  .head_sections a{
    padding:0
  }
 .template-index .hji_1 .banner_title {
  
   font-size: 24px;
}
 .template-index .hji_1 .banner_contents{
      justify-content: flex-start;
    margin-top: 10px;
    text-align: right;
        max-width: 100%;
        width: 100%;
  }
 .template-index .hji_1 .banner_btns {
    margin-top: 0;
}
  .template-suffix-BlackFriday .banner_contents {
  
    right: 0!important;
}
  .discounts_section .giant-title {
    margin-bottom: 0;
}
  .banner_btn_a {
        height: 35px;
        padding: 0 20px;
        font-size: 12px;
        line-height: 35px;
}
  .banner_desc{
            font-size: 12px;
        line-height: 1.3;
        margin: 10px 0 0;
  }
 .template-index .hji_1   .banner_desc{
        font-size: 18px;
  }
  .banner_btns {
    margin-top: 0;
    position: absolute;
    bottom: 20px;
right: 10px;
}
.template-index  .hji_1 .banner_btn_a {
  
    font-size: 15px;
  }
   .pc_show{
    display:none
  }
  .mob_show{
    display:block
  }
  .advantag_headingd h2 {
    font-size: 30px;
}
  .advantag_headingd div {
    font-size: 14px;
    margin-top: -10px;
}
  .discounts_list {
    grid-template-columns: repeat(1, 1fr);
  padding: 0;
  }
  .template-index .mul_list {
    gap: 10px;
    grid-template-columns: repeat(4, 1fr);
}
  .dis_content{
     padding: 20px;
        font-size: 12px;
  }
  .discounts_list a:nth-child(1) .dis_content span{
     margin-top: 10px;
  }
  .dis_content h3 {
    font-size: 30px;
    margin: 0;
}
  .template-index .mul_item {
    gap: 10px;
    flex-direction: column;
    text-align: center;
  }
  .template-index .mul_item img {
    width: 32px;
}
  .template-index .mul_txt h3 {
    font-size: 12px;
    max-width: 100px;
}
   .banners_list{
    padding: 0;
    margin: 0 0;
  }
  .banner_contents{
    padding:15px
  }
  .home_item img{
      object-fit: cover;
  }
   .home_item .rimage-wrapper {
    /* height:520px */
  }
  .banner_title {
    font-size: 34px;
            line-height: 1;
}
  .page-footer__subscribe {
    padding: 30px;
}
.Lineups{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
}
  .Lineups img {
    width: 30%;
    margin-right:0;
}
  .Lineup_item p {
  
    font-size: 12px;
    padding: 0 10px;
}
  .product-detail__image{
      position: relative;
}
  .default_pro .product-detail__image:after{
  /* width: 183px;
    height: 80px;
        right: auto;
    left: 10px;
    top: auto;
    bottom: 10px; */
  }
  .template-suffix-new-users-only .product-detail__image:after {
 
    width: 120px;
    height: 120px;
  }
 
  .store-messages-bar {
    padding-left: 10px;
    padding-right: 10px;
}
  .new_annce a.modal__close {
    width: 20px;
    height: 20px;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MiA2MiIgd2lkdGg9IjIwIiBoZWlnaHQ9IjIwIiBmaWxsPSIiPjxwYXRoIGQ9Ik02MS4xIDU2LjlMMzUuMyAzMS4xIDYwLjggNS42YzEuMi0xLjIgMS4yLTMuMSAwLTQuMi0xLjItMS4yLTMuMS0xLjItNC4yIDBMMzEuMSAyNi44IDUuOSAxLjdDNC43LjUgMi44LjUgMS43IDEuNy41IDIuOS41IDQuOCAxLjcgNS45TDI2LjggMzEgMS40IDU2LjVjLTEuMiAxLjItMS4yIDMuMSAwIDQuMiAxLjIgMS4yIDMuMSAxLjIgNC4yIDBsMjUuNS0yNS41TDU2LjkgNjFjMS4yIDEuMiAzLjEgMS4yIDQuMiAwIDEuMi0xLjEgMS4yLTMgMC00LjF6IiBmaWxsPSIjMzMzIi8+PC9zdmc+);
    background-size: 20px !important;
    cursor: pointer;
    background-color: transparent;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    display: block;
    position: absolute;
    right: 0;
    top: 10px;
}
  .lcinfo i {
    font-size: 50px;
    }
  .steps_list {
    padding: 0 20px;
}
  .step_item {
    margin-bottom: 20px;
    flex-flow: column;
    gap: 0px;
}
  .lcinfo {
    gap: 10px;
    width: 100%;
}
  .lctext span {
    font-size: 20px;
}
  .lctext h3 {
    font-size: 20px;
  }
  .lctext p {
    font-size: 15px;
      padding-right: 0%;
}
  .social_linksa {
    gap: 5px;
    margin-top: 10px;
    margin-bottom: 20px;
        flex-wrap: wrap;
}
  .lctext a {
    padding: 0px 10px;
    font-size: 12px;
}
  .social_linksa svg {
    width: 15px;
    height: 15px;
    margin-right: 5px;
}
  .step_item>img {
    width: 80%;
    display: block;
    margin: auto;
}
  .template-suffix-trade-in-offer .overlay__content li {
    font-size: 14px;
}
  .template-suffix-trade-in-offer .section-template--17368206835952__image_with_text_overlay_KFfRa4 .overlay {
    top: 10px;
    left: 0;
    width: 100%!important;
    max-width: 100%!important;
    padding: 0 20px 0 40px;
    margin-left: 0!important;
    margin-top: 0!important;
  }
  .template-suffix-trade-in-offer .section-image-with-text-overlay .rimage-background.fade-in.lazyloaded {
    height: 300px;
}
  .new_annce {
   
    gap: 10px;
     flex-wrap: wrap;
}
  .ann_left {
    font-size: 12px;
    }
  .hurry {
    font-size: 14px;
  }
  .new_annce a{
        padding: 5px!important;
    font-size: 12px!important;
    min-width: auto!important;
  }
  .full-width-slideshow .slick-dots {
    bottom: 10px;
}
  #slide1 .rx--option{
    width:50%!important
  }
  .modal--slide-container .rx--slide-option{
    height:auto
  }
 #slide1 .modal--option-text {
    min-height: auto!important
}
  .modal--slide-container .rx--slide-option {
    height: auto!important;
        margin: 0 5px;
}
  .describe--p {
  
    font-size: 12px!important;
    line-height: 1.4;
}
.modal--option-text .h2 {
    font-size: 15px!important;
    font-weight: bold!important;
    margin: 0!important
}
  .template-suffix-BlackFriday .image-one:after{
    display:none
  }
  .template-suffix-BlackFriday .product-block__image:after {
    font-size: 12px;
    height: auto;
    padding: 5px;
}
  .tags img{
      width: 50px!important;
    height: 50px!important;
  }
  .card_promotion{
    display: none;
      width: 70px!important;
    height: 70px!important;
            top: 0;
        right: 0;
  }
  .template-suffix-ray-ban .card_promotion {
    background: url(/cdn/shop/files/Ray_Ban.svg?v=1716188362);
    width: 60px !important;
    height: 30px !important;
    background-size: cover;
    position: absolute;
    top: 10px;
    right: 0;
    z-index: 11;
    display: block;
}
  .tags{
    display:none
  }
  .tags.new_tags{
    display:block
  }
    .tags.b_tags{
    /*display:none*/
  }
  .product-block .tag{
    font-size:10px;
  }
}

.ttt{
  position:relative;
  overflow: hidden;
}
.ttt:before{
  display: block;
	/*注意这里top和left，让白光移动到图片左上角，
	后续的划过动画也是依靠这两个属性*/
	top: -200%;
	left: -100%;
	/*定义白光的宽高*/
	width: 50%;
	height: 300%;
	/*旋转角度，你也可以调整*/
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	/*使用渐变来实现白光*/
	background: -webkit-linear-gradient(left, rgba(255, 255, 255, .05) 20%, 
            rgba(255, 255, 255, .6) 65%, rgba(255, 255, 255, .05) 100%);
	background: linear-gradient(left, rgba(255, 255, 255, .05) 20%,
            rgba(255, 255, 255, .6) 65%, rgba(255, 255, 255, .05) 100%);
	content: '';
	z-index: 2;
	position: absolute;
  animation: crossed .5s linear;
}
@keyframes crossed {
	0% {
		top: -200%;
		left: -100%;
	}
	100% {
		top: -50px;
		left: 100%;
	}
}
.grid-flex__item:hover .ttt:before{
  animation-delay:1s;
  animation: crossed .5s linear;
}
  @media screen and (min-width: 990px){
    .page-width.new_collection_left {
      margin-top: 30px;
    display: flex;
    align-items: flex-start;
          position: relative;
}
    form#filters {
    width: 265px;
      flex: none;
          margin-right: 54px;
}
    .cc-filter__panel{
      border:0
    }
    .cc-filter__header {
    display: none;
}
    details.cc-filter.cc-filter--sort{
        position: absolute;
    right: 0;
    top: 0;
          z-index: 11;
    }
    .cc-filters-results__summary {
    margin: 0;
    text-align: left;
}
    .js .cc-filter.cc-filter--sort .cc-filter__toggle{
        display: flex;
    gap: 20px;
    }
    .cc-filter__toggle::after{
      display:none
    }
  }
   .cc-filter[data-index="1"] {
    /* display: none; */
}
.cc-filter[data-index="5"] .cc-filter-label {
    /*display: none;*/
}
  .cc-filter[data-index="5"]  ul.cc-filter__swatches {
    display: flex;
    flex-wrap: wrap;
}
  .new_collection_left .large-row{
        margin-top: 20px;
  }
  .filters_title{
        font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    border-bottom: 1px solid #ccc;
    padding-bottom: 15px;
    margin-bottom: 10px;
  }
  .with_lens {
    font-size: 20px;
    margin-top: 5px;
}
  .height__sg{
    height: 48px;
  }
  .pro_coupon1{
    /* background: url(https://cdn.shopify.com/s/files/1/0607/9224/2416/files/20240403105613.png?v=1712113425); */
    width: 100%;
    height: 50px;
    background-size: 100% 100%;
    display: inline-flex;
    align-items: center;
    padding-left: 0;
    color: #333;
    /* font-weight: bold; */
    /* text-shadow: 1px 1px 1px #7f7f7f; */
    font-size: 16px;
    /* background: #e66f1026; */
    gap: 8px;
    position: relative;
    border-radius: 5px;

    color: #d8232f;
    background: #ffdcdc;
    padding: 0 30px 0 15px;
    /* display: none; */
  }
  .pro_coupon1 img{
      width: 30px;
  }
  .first_item >a {
    font-size: 16px;
    text-decoration: none;
      position: relative;
      display: flex;
    align-items: center;
    justify-content: space-between;
      letter-spacing: 0;
}
  .first_item {
    margin-bottom: 10px;
  height:25px;
  padding-right:20px;
  overflow:hidden;
  transition: all .4s ease;
}
.first_item.active {
    height: auto;
}
.first_item:last-of-type {
    margin-bottom: 0;
}
.first_item>a span.sufix {
    background: url(https://cdn.shopify.com/s/files/1/0674/8297/6483/files/Frame_2511.png?v=1711592398);
    width: 12px;
    height: 12px;
    background-size: cover;
    display: inline-block;
}
.first_item.active>a span.sufix{
      transform: rotate(180deg);
}
  .pro_dropdown {
    /* border-bottom: 1px solid #dadce0; */
    margin-bottom: 15px;
    padding-bottom: 15px;
}
  .droM_content{
      padding-top: 10px;
  }
  div#omnisend-form-661ccc7fd35343176c44183c-promotional-form {
    border-radius: 20px !important;
    overflow: hidden;
}
  .omnisend-form-661ccc7fd35343176c44183c-text-6620c894da8bb9d933641b3e p strong,
  .omnisend-form-661ccc7fd35343176c44183c-text-6620c97cda8bb9d933641b42 p strong{
    text-shadow: 2px 1px 0px #e66f10!important;
}
  .arrivals {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    gap: 5px;
}
  .arrivals:before {
    content: '';
    width: 10px;
    height: 10px;
    background: #67a34d;
    border-radius: 50%;
}
  #shopify-section-template--16906090217712__main .payment-icons {
    text-align: center!important;
}
  .product-detail .colr__list {
    row-gap: 10px;
    column-gap: 10px;
    margin-top: 20px;
        margin-bottom: 20px;
}
  .product-detail .colr__list a {
    background: #fff;
    border: 0;
    width: auto;
    height: auto;
    font-size: 12px;
    text-decoration: none;
    border-radius: 0;
}
  .product-detail .colr__list .dis_item {
    display: flex;
    align-items: center;
    padding: 0;
    gap: 10px;
    height: auto;
    font-size: 14px;
        text-align: center;
}
  .product-detail .colr__list .rimage-outer-wrapper {
    /* width: 30px;
    margin: 0;
    flex: none;
    background: #fefbec;
    height: 30px;
    border-radius: 30px;
    padding: 5px; */
}
 .product-detail .colr__list h3 {
    font-size: 14px;
    font-weight: normal;
}
  .tailor_my_lens:hover{
        color: #000;
    background-color: #f5da5b;
  }
  .tabs a[href="#tab4"]{
      /* display: none; */
  }
  .overview_box {
    display: flex;
    justify-content: space-between;
}
  .overview_box > div {
    width: 40%;
}
  .overview_box img {
    width: 55%;
}
  .overview_imageslist {
    display: flex;
    gap: 30px;
        margin-top: 30px;
}
  .product-layout-grid__detail  .overview_box > div {
    width: 100%;
}
   .product-layout-grid__detail  .overview_box h2{
      font-size: 24px;
    margin: 0;
         display: none;
  }
  .spes__listimg {
    display: flex;
    gap: 30px;
}
  .spes__boxs {
    display: none;
}
  .spes__boxs-left{
      width: 300px;
    flex: none;
        line-height: 1.5;
        margin-top: 30px;
    display:none
  }
  .jifens_list {
    display: flex;
    justify-content: space-between;
    gap: 20px;
     
}
  .overview_box .expanded-width{
       display:none
  }
  #tab2 > img{
     display:none
  }
  .jifens_box{
       background: url(https://cdn.shopify.com/s/files/1/0607/9224/2416/files/171083462664eb844b12763a6c942d9ea409d655ad_thumbnail_1542x_9cf1603b-197a-4744-bf7b-aac4d65d6c6c.webp?v=1714288453);
    padding: 30px 60px;
    border-radius: 20px;
    background-size: cover;
  }
  .jifen_item {
    width: 100%;
  }
  .jifen_images{
        background: #f9faf7;
    padding: 15px 20px 50px;
    border-radius: 10px;
        position: relative;
  }
  .jf__bg {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    background: url(https://cdn.shopify.com/s/files/1/0607/9224/2416/files/belt-cfc8a96256.png?v=1714288403);
    background-position: bottom center;
    background-size: contain;
    height: 48px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
        padding-bottom: 5px;
    background-repeat: no-repeat;
}
  .jf_number {
    font-size: 24px;
    font-weight: bold;
    margin-right: 5px;
    color: #444;
}
  .jifen_content {
    font-size: 15px;
    margin-top: 10px;
}
  .jifen_head h2 {
    font-weight: bold;
    margin-bottom: 25px;
        text-align: center;
}
 .template-suffix-BlackFriday .banner_contents {
    left: auto;
    right: 117px
  }
  .template-suffix-BlackFriday .slide_function {
    display: none;
  }
  .product-detail__detail.sticky-element .payment-icons {
    text-align: center;
}
 .discount__pop{
      position: fixed;
    width: 800px;
    margin: auto;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 11111;
  }
  .discount__mask {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 50%);
    top: 0;
    left: 0;
    z-index: 111;
}
  .discount__pop_container {
    position: relative;
}
  .unp40{
  background: #1a1a1a;
    color: #ffe75c;
    font-size: 18px;
    text-decoration: none;
    width: 150px;
    height: 28px;
    display: flex;
    border-radius: 50px;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 33px;
    left: 93px;
    font-weight: bold;
  }
  .resnow{
      background: #1a1a1a;
    color: #ffe75c;
    font-size: 18px;
    text-decoration: none;
    width: 150px;
    height: 28px;
    display: flex;
    border-radius: 50px;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 33px;
    left: 310px;
    font-weight: bold;
  }
  .show_discount_pup{
position: fixed;
    left: -240px;
    /* right: 0; */
    margin: auto;
    /* top: 50%; */
    background: #f7db5e;
    color: #000;
    z-index: 110;
    position: fixed;
    top: 50%;
    transform: rotate(90deg) translate(50%, 0px);
    transform-origin: right top;
    margin-left: 0px;
    width: 280px;
    padding: 0 10px;
    text-align: center;
    font-size: 18px;
    height: 40px;
    line-height: 40px;
    cursor: pointer;
    /* margin-left: -180px; */
 
}
  .show_discount_pup img{
      position: absolute;
    left: 10px;
    top: -10px;
    width: 40px;
    transform: rotate(-90deg);
  }
   @keyframes popIn {
      0% {
        transform: translateY(-150%) scale(0.2);
        opacity: 0;
      }
      70% {
        transform: translateY(-15%) scale(1.2);
        opacity: 1;
      }
      100% {
        transform: translateY(-15%) scale(1);
        opacity: 1;
      }
    }
  .discount__pop_container a:hover {
    color: #f7db5e;
    bottom: 25px;
}
  .discount__pop_container a {
    transition: all .4s ease;
}
  .dispop_top{
  position: absolute;
       width: 60px;
    bottom: -20px;
    left: 180px;
    z-index: 1;
    animation: topfige 1s cubic-bezier(0,0,.01,1) 0s infinite normal none;
  }
     @keyframes topfige{
  0% {
    transform: scale(1);
}
50% {
    transform: scale(1.39215686);
}
100% {
    transform: scale(1);
}
  
  }


  .djs__kljj{
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: space-between; */
    /* background: #000000; */
    /* padding: 2px 10px; */
    /* margin-bottom: 10px; */
    color: #fff;
    /* height: 40px; */
    font-weight: bold;
    font-size: 20px;
    position: absolute;
    /* top: 0; */
    left: 25px;
    top: 10px;
  }
  .djs__kljj > div:nth-child(2){
    display: flex;
    align-items: center;
    margin-top: 10px;
  }
  span.digit {
    display: inline-block;
    width: 20px;
    height: 25px;
    font-size: 16px;
    background: #fff;
    color: #ff0c01;
    text-align: center;
    line-height: 25px;
    border-radius: 2px;
}
  .djs__kljj div:nth-child(2) > div {
    display: flex;
    gap: 2px;
        align-items: center;
}
  .djs__kljj div:nth-child(2) > div:after {
    content: ':';
    margin: 0 4px 0 2px;
    display: inline-block;
    height: 15px;
    line-height: 15px;
}
  .djs__kljj div:nth-child(2) > div.k_seconds:after {
   display:none
}
  .djs__kljj_box {
    position: relative;
       
}
  .fixed__mobile_only{
  display:none;
  }
  .mobile_bottombox{
        position: fixed;
    width: 100%;
    left: 0;
    bottom: 0;
    z-index: 1111;
    background: #ffffff;
    box-shadow: 0px 3px 15px rgb(0 0 0 / 15%);
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 20px;
  }
    .mobile_bottombox a{
      padding:1em;
    }
.template-suffix-Ray .new__product-full,
.template-suffix-ray-ban-sunglasses .new__product-full,
  .template-suffix-ray-ban-add-to-car .new__product-full{
  display:block!important
}
  a.mobil_code{
        display: none;
  }
  .new_detailss_boix {
    display: flex;
    justify-content: space-between;
}
  .new_detailss_left {
    width: 300px;
    flex: none;
}
  .rte ul.new_lensess{
      list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 40px;
    margin-top: 50px;
  }
  .new_lensess a{
        text-decoration: none;
  }
  .new_lensess h3{
      font-size: 24px;
    margin: 10px 0;
  }
  .new_learnmoore{
      display: inline-block;
    text-decoration: underline;
    text-transform: capitalize;
  }
  ul.new_lensess li {
    width: 25%;
}
  ul.new_lensess li p {
    font-size: 15px;
    line-height: 1.5;
    color: #333;
    margin-top: 0;
}
  .new__product-full .tabs a{
    text-transform: uppercase;
    padding: 23px 0;
    font-size: 18px;
    font-weight: bold;
  }
   .new__product-full .tabs{
        justify-content: flex-start;
  }
  .ray_sss{
   font-size: 20px;
    margin-top: 10px;
  }
  .mobile_bottombox a {
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    text-transform: capitalize;
}
  .mobile_bottombox a img {
    width: 30px;
    display: block;
    margin: 0 auto;
}
  .circle-text{
    display:none
  }
  #ray-ban-frames .circle-text{
    display:block
  }
  .circle-text__content{
        width: 150px;
  }
  #ray-ban-frames .colr__list{
  display:none
  }
 #ray-ban-frames .cbd_title{
        opacity: 0;
  }
  #ray-ban-frames .cbd_code div{
    opacity: 0;
  }
  .mob_rayban{
    display:none
  }
  @keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.is-rotating-on-scroll {
    animation: rotate 10s linear infinite; /* 10s表示旋转一周所需的时间 */
}
.rayban_boxss {
    width: 100%;
    /* background: #f3f3f3; */
    margin-bottom: 30px;
    margin-left: 30px;
    padding: 30px;
    border-radius: 20px;
  text-align: center;
}
  .jifen_content div {
    height: 50px;
}
  .jifen_content a {
    display: inline-block;
    text-decoration: none;
    background: #f7db5e;
    color: #000;
    font-size: 14px;
    padding: 8px 25px;
    border-radius: 50px;
    text-align: center;
    margin-top: 10px;
}
  .jifen_content{
    text-align: center;
  }
  /* .videoSwiper  .swiper-wrapper{
      display: grid;
    grid-row-gap: 12px;
    grid-column-gap: 13px;
    grid-template-columns: auto auto auto auto auto;
    transform: unset !important;
  } */
  .videoSwiper .swiper-slide:first-child{
      /* grid-area: 1 / 1 / span 3 / span 2; */
  }
  .videoSwiper .swiper-slide{
        /* width: unset !important; */
  }
  .video_modal{
      width: 1080px;
    height: 580px;
    position: fixed!important;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .kol_pic {
    width: 50%;
}
  .swiper-slide.modal_item {
    background: #fff;
    padding: 40px;
        display: flex;
    gap: 40px;
}
.kol__product {
    width: 50%;
}
  .kp_box {
    display: flex;
    gap: 20px;
}
  .kp_box h2 {
    font-size: 18px;
        margin-bottom: 5px;
}
  .kp_box a{
      background: #f7db5e;
    text-decoration: none;
    padding: 8px 30px;
    border-radius: 50px;
    font-size: 14px;
    display: inline-block;
  }
  .kp_info {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
}
  .swiper-button-next.vn2{
        left: auto;
    right: -80px;
  }
  .swiper-button-prev.vp2{
       left: -80px;
    right: auto;
  }
  .template-suffix-BlackFriday .faq_txt h3:after, .template-suffix-BlackFriday .faq_item.active .faq_txt h3:after {
  
    background-color: #da3c24;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background-size: 20px 20px;
    background-position: center center;
    background-repeat: no-repeat;
}
 .template-suffix-BlackFriday  .faq_txt {
    padding: 0;
  }
   .template-suffix-BlackFriday .faq_item {
    background: #f6ecd3;
    border-radius: 24px;
    padding: 10px 10px 10px 50px;
    margin-bottom: 20px;
}
  .template-suffix-BlackFriday .faq_list {
    width: 70%;
}
  .template-suffix-BlackFriday .faq_boxs .giant-title {
    font-size: 48px;
    color: #da3c24;
    font-weight: bold;
}
  .template-suffix-BlackFriday .featured-collection--title {
    margin-bottom: 5px;
    font-size: 48px;
    color: #da3c24;
    font-weight: bold;
}
 .new_annce #countdown span {
    width: 30px;
    height: 30px;
    background: #fff;
    align-items: center;

    font-size: 14px;
    margin-bottom: 3px;
        color: #ff743d;
    font-weight: bold;
}
 .new_annce  #countdown>div {
  
    font-size: 12px;
  }
  .new_annce #countdown {
    top: 0;
}
  .product-layout-grid__detail span.regios-dopp-generic-price-item--regular {
    display: none;
}
 .cart_boxss .container{
    padding:0
  }
  @media screen and (max-width: 768px){
    .colr__list{
      display:none
    }
    .template-suffix-BlackFriday .featured-collection--title {
  
    font-size: 30px;
   
    margin-top: 30px;
}
    .template-suffix-BlackFriday .faq_list {
    width: 100%;
}
   .template-suffix-BlackFriday .faq_txt h3 {
    font-size: 15px;
  
}
    .template-suffix-BlackFriday .faq_item {
   
    padding: 10px 10px 10px 20px;
}
   
     .video_modal {
    width: 90%;
    height: 80%;
  }
  .swiper-slide.modal_item {
  
    padding: 20px;
    gap: 20px;
    flex-flow: column;
}
  .kol__product {
    width: 100%;
}
  .kp_info {
    font-size: 12px;
  }
    .kp_box img {
    width: 60px;
    height: 60px;
}
    .ukol__info {
    font-size: 12px;
    }
    .kp_box a {
 
    font-size: 12px;
    line-height: 1;
}
    .kp_box h2 {
    font-size: 12px;
    margin-bottom: 0;
}
    .kol_pic {
    width: 80%;
    margin: 0 auto;
    display: block;
}
    .home_item.hji_4 .banner_contents{
          justify-content: flex-start;
    }
      .home_item.hji_3 .banner_contents{
          justify-content: flex-start;
    }
    .jifen_content div {
    height: auto;
}
    .videoSwiper .swiper-wrapper{
          grid-template-columns: none;
    }
    .videos_list {
    /* padding: 0 20px; */
}
    #ray-ban-frames .mob_rayban{
      display:block;
              border-radius: 20px;
    }
    #ray-ban-frames .collection__bg{
      display:none!important
    }
    #ray-ban-frames .circle-text{
      display:none
    }
    .section-testimonials button[aria-label="Previous"],
    .section-testimonials button[aria-label="Next"]{
       display: none!important;
    }
    .smile-launcher-frame-container {
    display: none;
}
    .fixed__mobile_only{
      display:block
    }
    .show_discount_pup{
       display: none;
    }
    #tidio-chat-iframe{
      /* width:0px!important;
      height:0px!important */
    }
   .new__product-full .tabs a{
         font-size: 15px;
   }
    .overview_imageslist {
    display: grid;
    gap: 15px;
    margin-top: 0;
    grid-template-columns: repeat(2, 1fr);
}
    .new_detailss_boix {
   
    flex-flow: column;
}
    .rte ul.new_lensess {
           display: block;
    margin-top: 30px;
}
    ul.new_lensess li {
    width: 100%;
    margin-bottom: 20px;
}
    .new_lensess a {
  
    display: flex;
    gap: 15px;
    align-items: flex-start;
}
    .new_lensess a img {
    width: 40%;
}
    .overview_box h2 {
    font-size: 20px;
}
    .new_detailss_left > h2{
      font-size: 20px;
              margin-top: 7.5px;
    }
    h2.jdgm-rev-widg__title {
    font-size: 24px;
    margin-top: 0;
}
    .new_lensess a > div {
    width: 60%;
}
    .new_lensess h3 {
    font-size: 15px;
    margin: 0 0 10px;
}
    ul.new_lensess li p {
    font-size: 12px;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
    .new_learnmoore {
 
    font-size: 14px;
}
    .spes__listimg {
    gap: 0;
    flex-flow: column;
}
    span.digit {
    width: 18px;
    height: 20px;
    font-size: 14px;
  
    line-height: 22px;
}
    .discount__pop{
      width:100%
    }
    .unp40{
          font-size: 14px;
    width: auto;
    height: auto;
    padding: 0 10px;
    left: 5%;
    bottom: 10px;
    }
    .resnow{
     font-size: 14px;
    width: auto;
    height: auto;
    padding: 0 10px;
    left: 35%;
    bottom: 10px;
    }
    .jifen_content {
    font-size: 14px;
    line-height: 1.3;
}
    .jifen_images {
    padding: 10px 30px 40px;
  
}
    .jf__bg{
          height: 40px;
 
    padding-bottom: 1px;
    }
    .jifens_list {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
}
    .jifen_head h2 {
    font-size: 30px;
    margin-bottom: 15px;
}
    .jifens_box {
    padding: 15px;
    border-radius: 20px;
    background-size: cover;
}
    .spes__boxs-left {
    width: 100%;
    margin-top: 0;
}

    .overview_box > div {
    width: 100%;
}
    .overview_box {
    display: block;
    }
    .overview_box img {
        width: 80%;
        margin: 0 auto;
        display: block;
    }
  button.cc-filter-back-btn.feather-icon.md-up-hidden, .cc-filter__toggle::after{
    display: none;
}
   .cc-filter[data-index="5"] .cc-filter-label {
    /*display: none;*/
}
   .cc-filter[data-index="5"]  ul.cc-filter__swatches {
    display: flex;
    flex-wrap: wrap;
}
     .cc-filter[data-index="1"] {
    /* display: none; */
}
details.cc-filter.cc-filter--sort.is-open {
    position: absolute;
    top: 0;
    z-index: 111;
}
    .cc-filter__toggle {
    display: none;
}
    .cc-filter li:not(:last-child) {
    margin-bottom: 5px;
}
    .cc-filter__header {
    padding: 10px;
    border: 0;
}
      h2.cbd_title2 {
    font-size: 15px;
}
    .hji_2 .banner_contents{
          justify-content: flex-start;
    max-width: 100%;
    }
    .section-testimonials button[aria-label="Next"] {
    right: 0;
}
    .product-detail .colr__list h3 {
    font-size: 12px
    }
    .tabs a{
          font-size: 14px;
    }
    .store-message-link img.turn-right {
   
    position: relative;
    top: 3px;
    width: 20px;
}
   .show_discount_pup {
        top: 80%;
    zoom: .8;
    }
    .grid-flex.js-testimonials-section {
    margin: 0;
}
    .testimonials .testimonial {
    padding: 0 20px;
}
    .dispop_top {
    width: 40px;
    bottom: -20px;
    left: 20%;
    }
}
.product-block.v_8886785835248{
  display:none!important
}
  .imgs-banner.section-template--16971049107696__image_spilt_Je4LYg.desktop-only:after {
    content: '';
    background: url(https://cdn.shopify.com/s/files/1/0607/9224/2416/files/Vector_1408.svg?v=1719390237);
    width: 591px;
    height: 216px;
    background-size: cover;
    position: absolute;
    bottom: -60px;
    right: 0;
    z-index: 1;
}
 #shopify-section-template--16971049107696__image_spilt_Je4LYg h2{
        font-size: 48px;
    font-weight: bold;
    position: relative;
  }
 #shopify-section-template--16971049107696__rich_text_g66CAx p:after {
    content: '';
    width: 95px;
    height: 82px;
    background: url(https://cdn.shopify.com/s/files/1/0607/9224/2416/files/Vector_4.svg?v=1719390236);
    background-size: cover;
    display: inline-block;
    position: absolute;
       top: 50px;
    right: 2%;
       animation: animateAmbientOverlay 3s ease-in-out infinite;
}
 #shopify-section-template--16971049107696__rich_text_ULdrxF p {
      font-weight: bold;
    font-size: 24px;
    line-height: 1.3;
  }
  #shopify-section-template--16971049107696__rich_text_g66CAx p:before {
    content: '';
       background: url(https://cdn.shopify.com/s/files/1/0607/9224/2416/files/Vector_4_c2b92f25-251f-4699-80c1-2baece484204.svg?v=1719390237);
    width: 195px;
    height: 83px;
    background-size: cover;
    position: absolute;
    left: 6%;
    animation: animateAmbientOverlay 6s ease-in-out infinite;
}
@keyframes animateAmbientOverlay {
  0% {
    transform: translate(-50%, -50%) scale(1) rotate(0);
  }
  25% {
    transform: translate(-45%, -55%) scale(0.96) rotate(-4deg);
  }
  50% {
    transform: translate(-55%, -45%) scale(1.03) rotate(4deg);
  }
  75% {
    transform: translate(-45%, -55%) scale(0.96) rotate(-4deg);
  }
  100% {
    transform: translate(-50%, -50%) scale(1) rotate(0);
  }
}
.v_8322510323952  .card_promotion{
display:none
}
.containerData {
    position: relative;
}
.jifen_Rules{
      position: absolute;
    bottom: 10px;
    z-index: 111;
    right: 10px;
    text-decoration: underline;
}

 .bb_tags.m_tags{
   display:none
 }
 .box_tags .cc-filter__toggle{
   display:none
 }
.box_tags .checkbox + label::before{
   display:none
 }
 .cc-filter.box_tags {
    position: absolute;
    top: -10px;
    left: 300px;
    z-index: 11;
}
.box_tags ul{
display: flex;
    gap: 20px;

}

  .box_tags .checkbox:checked + label::after{
    display:none
  }
 .box_tags .checkbox + label{
      /* border: 1px solid #FFE75C; */
    padding: 10px 20px;
   background: rgb(246, 246, 246);
    border-radius: 30px;
       gap: 5px;


       display: none;
  }
  .box_tags .checkbox:checked + label{
      background: url(https://cdn.shopify.com/s/files/1/0607/9224/2416/files/17.png?v=1724294234);
    border-color: none;
    background-size: 100% 100%;
    border: 0;
  }
  .taag_bestseller {
      padding: 0 1em;
    background: #f7db5e;
    border-radius: 30px;
    font-size: 12px;
    margin-bottom: 15px;
    height: 30px;
    line-height: 30px;
  }
  .taag_newin{
      padding: 0 1em;
    background: #f7db5e;
    border-radius: 30px;
    font-size: 12px;
    margin-bottom: 15px;
    height: 30px;
    line-height: 30px;
        display: none;
  }
 @media screen and (max-width: 768px){
    .cc-filter.box_tags {
       display:none
    }
 }
 .jifen_Rules{
      position: absolute;
    bottom: 10px;
    z-index: 111;
    right: 10px;
    text-decoration: underline;
  cursor: pointer;
}
.rule__boxs {
    position: fixed;
    margin: auto;
    top: 55%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    background: #fff;
    width: 600px;
    border-radius: 20px;
    padding: 20px 40px 20px;
      z-index: 112;
}
.rule__bmask {
    background: rgb(0 0 0 / 31%);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 111;
}
.rule__containers h3 {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc;
}
.rule__containers ul{
  padding: 30px 0 0;
}
.rule__containers h4 {
    font-size: 18px;
    margin-bottom: 10px;
}
.rule__containers li {
    margin-bottom: 20px;
      font-size: 14px;
}
li.bb_tags.s_tags.icon_Newarrivals label:before {
    content: '';
    background: url(https://cdn.shopify.com/s/files/1/0607/9224/2416/files/be4a8ac474a4ce5a6f015b25c99f4af9_e551616c-a392-4eca-b793-4b50459abd6d.png?v=1724312893);
    width: 50px;
    height: 24px;
    background-size: cover;
    display: inline-block;
    vertical-align: middle;
    border: 0;
    margin: 0;
}
  li.bb_tags.s_tags.icon_BestSelling label:before {
    content: '';
    background: url(https://cdn.shopify.com/s/files/1/0607/9224/2416/files/2c0f573f22a917cc9c04a5420f777616.png?v=1724137968);
    width: 50px;
    height: 24px;
    background-size: cover;
    display: inline-block;
    vertical-align: middle;
    border: 0;
    margin: 0;
}
  li.bb_tags.s_tags.icon_Rimless label:before {
    content: '';
    background: url(https://cdn.shopify.com/s/files/1/0607/9224/2416/files/a94cfd6e0b51e4d2f907f73cc7dc59f6.png?v=1724137968);
    width: 50px;
    height: 24px;
    background-size: cover;
    display: inline-block;
    vertical-align: middle;
    border: 0;
    margin: 0;
}
    li.bb_tags.s_tags.icon_Foldingglasses label:before {
    content: '';
    background: url(https://cdn.shopify.com/s/files/1/0607/9224/2416/files/e06c034c88d6a7e762560f1e95379ee4_6e346e4d-ef70-4ddf-a3fb-49506cbdc225.png?v=1724307286);
    width: 24px;
    height: 24px;
    background-size: cover;
    display: inline-block;
    vertical-align: middle;
    border: 0;
    margin: 0;
}
   li.bb_tags.s_tags.icon_Readingglasses label:before {
    content: '';
    background: url(https://cdn.shopify.com/s/files/1/0607/9224/2416/files/f0bc0ee347341fb393e2df2ef49a3761_07d59dd0-a65d-4147-b82b-575d16186ef8.png?v=1724308836);
    width: 36px;
    height: 24px;
    background-size: cover;
    display: inline-block;
    vertical-align: middle;
    border: 0;
    margin: 0;
}
  .box_tags .icon_Newarrivals .checkbox + label{
      background: url(https://cdn.shopify.com/s/files/1/0607/9224/2416/files/14_5c457500-ca25-404f-b428-a85cdc5bad08.png?v=1724294234);
    border: 0;
    background-size: 100% 100%;
  }
  .box_tags .icon_Newarrivals .checkbox:checked + label {
    background: url(https://cdn.shopify.com/s/files/1/0607/9224/2416/files/15_faeea370-c510-4aa9-9e38-6c8a0437a188.png?v=1724294234);
    border: 0;
    background-size: 100% 100%;
}
@media (max-width: 768px) {
  .rule__boxs{
        width: 90%;
  }
  .rule__containers li {
    margin-bottom: 10px;
    font-size: 12px;
    line-height: 1.5;
}
  .rule__containers h3 {
    padding-bottom: 10px;
  }
  .rule__containers ul {
    padding: 20px 0 0;
}
  .rule__containers h4 {
    font-size: 15px;
    margin-bottom: 5px;
}
  .rule__boxs {
    top: 50%;
  }
}
.wishlist-engine {
    position: absolute;
    z-index: 111;
      top: 5px;
    left: 10px;
}
.wishlist-engine-button{
      background-color: transparent!important;
}
a.header__icon.h-wishlist-icon.wishlist-page-widget {
    /* margin: 0 5px; */
    margin-right: 15px;
}
.h-wishlist-icon svg {
 
    color: #ff743d;
}
.h-wishlist-icon .wishlist-h-count {
  
    right: -7px!important;
    top: -7px!important;
}
button.sewp-close{
      padding-left: 0;
    padding-right: 0;
    min-width: 50px;
}
.wishlist-remove {
    position: absolute;
    right: 0;
    top: 10px;
    z-index: 1;
    padding: 0;
    min-width: 50px;
}
.wishlist-remove:hover{
   background-color: transparent!important;
}
.wh-search-icon {
  
    top: 12px!important;
}
.wishlist-top {
    padding-bottom: 100%!important;
}
.wishlist-cart {
  
    display: none;
}
button.close-wishlist {
    padding: 0;
    min-width: 50px;
    top: 0;
    right: 0;
}
button.close-wishlist:hover{
   background-color: transparent!important;
}
 .search-bar__results a.loyath_btn {
    display: none;
}
  .nplive_fixed{
      position: fixed;
    bottom: 0;
    left: 20px;
    width: 10.4vw;
    z-index: 111;
    box-shadow: 0px 1px 14px rgb(0 0 0 / 33%);
    border-radius: 15px;
  }
  .nplive_fixed img{
    
    vertical-align: middle;
  }
  .close_noline {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 111;
    width: 30px;
}
@media (max-width: 768px) {
  .nplive_fixed {
    bottom: 100px;
    left: 0;
    width: 150px;
   
}
.h-wishlist-icon svg {
    width: 20px!important;
    height: 20px!important;
}
  a.header__icon.h-wishlist-icon.wishlist-page-widget {
    margin-right: 5px!important;
}
  .icon--header .icon {
  
    margin: 0 2px;
}
}
  .sort_new, .sort_best{
        display: none;
  }
.box_tags .sort_new,
.box_tags .sort_best{
      display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
      background: url(https://cdn.shopify.com/s/files/1/0607/9224/2416/files/14_5c457500-ca25-404f-b428-a85cdc5bad08.png?v=1724294234);
    border-radius: 30px;
    gap: 5px;
    background-size: 100% 100%;
}
 .newsore{
  text-decoration: none;
    font-size: 14px;
  }
.newsore img{
      height: 24px;
}
.box_tags .sort_new.current{
      background: url(https://cdn.shopify.com/s/files/1/0607/9224/2416/files/15_faeea370-c510-4aa9-9e38-6c8a0437a188.png?v=1724294234);
    background-size: cover;
}
.box_tags .sort_best.current{
      background: url(https://cdn.shopify.com/s/files/1/0607/9224/2416/files/15_faeea370-c510-4aa9-9e38-6c8a0437a188.png?v=1724294234);
    background-size: cover;
}
.store-messages #countdown span{
      display: flex;
    width: 30px;
    height: 30px;
    background: #f7db5e;
    color: #000;
    /* border: 2px solid #333; */
    align-items: center;
    justify-content: center;
    font-size: 15px;
    margin-bottom: 2px;
    border-radius: 5px;
    font-weight: bold;
}
.store-messages #countdown>div {
    font-size: 12px;
}
.store-messages #countdown {
    gap: 8px;
    right: 0;
    top: 0;
}
.store-message{
      display: flex!important;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.store-message-link span {
    background: #ff743d;
    color: #fff;
    margin-left: 5px;
    /* border-bottom: 1px solid #000; */
    line-height: 1.2;
    /* font-weight: bold; */
}
  .modal__close{
  display:none!important
  }
  details.cc-filter.cc-filter--sort.is-open{
      z-index: 11111;
  }

  .tag.ttt4{
      background: url(https://cdn.shopify.com/s/files/1/0607/9224/2416/files/Redsanders.png?v=1726800015);
    background-size: cover;
    color: #fff;
  }
  .tag.ttt5{
    background:#bc35e6;
    color:#fff;
  }
  .Redsanders_banner {
    position: relative;
}
  .Redsanders_banner img{
      vertical-align: middle;
        border-radius: 10px;
  }
  .Redsanders_banner h2{
      position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    color: #fff;
    display: flex;
    align-items: center;
    padding-left: 7%;
    margin: 0;
    font-size: 40px;
  }
  .Redsanders_list {
display: grid;
    gap: 80px;
    grid-template-columns: repeat(3, 1fr);
    /* max-width: 1000px; */
    margin: 0 auto;
}
  .Redsanders_item div {
    font-size: 20px;
    margin-top: 15px;
        text-align: center;
    padding: 0 20px;
}
  .Redsanders_box > h2 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 60px;
}
  .Redsanders_box {
    margin-top: 80px;
    margin-bottom: 0px;
}
  .Redsanders_item img{
  border-radius: 20px;
  }
@media (max-width: 768px) {
  .store-message {

    gap: 2px;
    flex-flow: column;
    align-items: center;
    justify-content: center;
}
      .hurry {
        display: none;
    }
 .store-message > a.btn.btn--secondary {
    display: none;
}
  .Redsanders_banner img {
    height: 100px;
    object-fit: cover;
    object-position: right;
}
  .Redsanders_banner h2 {
   
    font-size: 20px;
}
  .Redsanders_box {
    margin-top: 30px;
    margin-bottom: 0;
}
  .Redsanders_box > h2 {
    font-size: 16px;
    margin-bottom: 20px;
}
  .Redsanders_list {
    gap: 10px;
    margin: 0 auto;
}
  .Redsanders_item img {
    border-radius: 50%;
}
  .Redsanders_item div {
    font-size: 12px;
    margin-top: 15px;
    line-height: 1;
    padding: 0;
}
}
  .template-suffix-a-tanmu .colr__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}
  .new_hi {
    background: #f7db5e;
    font-size: 12px;
    color: #000;
    padding: 2px 4px;
    border-radius: 4px;
}
  .bb_tags.icon_Redsanders label{
 display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 25px;
    background: url(/cdn/shop/files/14_5c457500-ca25-404f-b428-a85cdc5bad08.png?v=1724294234);
    border-radius: 30px;
    gap: 5px;
    background-size: 100% 100%;
    height: 46px;
  }
  .box_tags .checkbox:checked + label{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 25px;
    background: url(/cdn/shop/files/15_faeea370-c510-4aa9-9e38-6c8a0437a188.png?v=1724294234);
    border-radius: 30px;
    gap: 5px;
    background-size: 100% 100%;
    height: 46px;
  }
  .bb_tags.icon_Redsanders label:after {
    content: 'NextPair Premium' !important;
    display: block !important;
    width: auto;
    position: relative;
    top: 0;
    height: auto;
    transform: none;
    border: 0;
    left: 0;
}
 .bb_tags.icon_Redsanders label .cc-filter-label{
        display: none
  }
@media (min-width: 1280px) {
   /* .template-suffix-a-tanmu .product-layout-grid--medium {
        width: 100%;
    }
  .template-suffix-a-tanmu .product-layout-grid__images{
    width: 50%;
  } */
}
.template-suffix-weee-np .breadcrumbs-container {
  display: none;
}
@font-face{font-family:GALIRDB;src:url(https://cdn.shopify.com/s/files/1/0607/9224/2416/files/GALIRDB.TTF?v=1727572644) format("truetype")}
.template-suffix-weee-np .mul_list {
    gap: 30px;
    grid-template-columns: repeat(4, 1fr);
}
.template-suffix-weee-np .mul_txt h3 {
    font-size: 16px;
      font-weight: bold;
}
.template-suffix-weee-np .mul_txt div {
    font-size: 14px;
    line-height: 1.2;
    margin-top: 10px;
      display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.template-suffix-weee-np .mul_item img {
    width: 55px;
}
.template-suffix-weee-np .mul_item {
    gap: 20px;
    align-items: center;
}
.template-suffix-weee-np .page-width {
    max-width: 1400px;
}
.template-suffix-weee-np .featured-collection--title{
 font-size: 64px;text-transform: uppercase;
}
.template-suffix-weee-np .section-testimonials{
      background: #f3f3f3;
    padding: 40px 0 80px;
}
.template-suffix-weee-np .section-testimonials .giant-title{
      font-size: 64px;
    text-align: left;
  font-weight: bold;
}
.template-suffix-weee-np .section-testimonials .testimonials--title p{
      text-align: left!important;
    font-size: 20px;
}
.template-suffix-weee-np .testimonials .testimonial-content {
 
    background: #fff;
    border-radius: 30px;
}
.template-suffix-weee-np .faq_section {
    background: #333;
    padding: 90px 0;
    margin-top: 0;
    margin-bottom: 0;
}
.template-suffix-weee-np .faq_boxs .giant-title {
       font-size: 64px;
    color: #fff;
      font-weight: bold;
}
.template-suffix-weee-np .faq_txt h3 {
      font-size: 24px;
    font-weight: bold;
    color: #fff;
}
.template-suffix-weee-np .faq_item.active div {
 
    opacity: 1;
    color: #000;
}
.template-suffix-weee-np .faq_boxs .giant-title span{
      position: relative;
    display: inline-block;
    text-decoration: none;
    -webkit-text-stroke: 1px #fff;
    background: linear-gradient(var(--highlight_color) 0 100%) left / 0 no-repeat;
    color: transparent !important;
    background-clip: text;
    transition: .8s ease;
}
.template-suffix-weee-np .faq_item {
    border: 1px solid #fff;
    border-radius: 15px;
    margin-bottom: 10px;
    padding: 10px 20px;
}
.template-suffix-weee-np .faq_txt h3:after{
      background-color: #fff;
    border-radius: 36px;
}
.template-suffix-weee-np .faq_item.active .faq_txt h3:after{
   background-color: #fff;
    border-radius: 36px;
}
.template-suffix-weee-np  .faq_item.active {
    background: #fff;
}
.template-suffix-weee-np .faq_item.active .faq_txt h3 {
  
    color: #000;
}
.template-suffix-weee-np .foot_tops.container {
    display: none;
}
.template-suffix-weee-np .head_sections a {
    text-transform: uppercase;
    background: #000;
    line-height: 1;
    border-radius: 50px;
    padding: 12px 24px;
    font-size: 16px;
    height: auto;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
  transition: all .3s ease;
}
  .template-suffix-weee-np .head_sections a:hover{
        color: #000;
    background: #fff;
    border: 1px solid #000;
  }
.template-suffix-weee-np .featured-collection .grid-flex__item {
    padding-bottom: 30px!important;
}
.template-suffix-weee-np .grid-flex__item {
    padding-bottom: 0!important;
}
.gaL-sjidjasda {
    color: #fff;
    margin-top: 50px;
}
.gaL-sjidjasda  p strong{
      font-size: 40px;
    border-top: 1px solid #fff;
    padding-top: 40px;
    margin-top: 0;
    display: inline-block;
      position: relative;
}
.section-mulis{

}
.template-suffix-weee-np .imgs-banner{
box-shadow: 0px 5px 20px rgb(0 0 0 / 15%);

}
  .gaL-sjidjasda p strong:before {
    content: 'note';
    font-size: 16px;
    background: #f7db5e;
    display: inline-block;
    color: #000;
    padding: 10px 20px;
    line-height: 1;
    border-radius: 30px;
    vertical-align: middle;
    margin-right: 10px;
    transform: rotate(-15deg);
    text-transform: uppercase;
    /* position: absolute; */
    top: 30px;
    right: 0;
}
  .card_promotion.nesws__icon {
    background: url(https://cdn.shopify.com/s/files/1/0607/9224/2416/files/NEW.png?v=1727600964);
    width: 100px;
    height: 100px;
    background-size: cover;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 11;
}
  .card_promotion.wee_sale {
    background: url(https://cdn.shopify.com/s/files/1/0607/9224/2416/files/20241017135623.png?v=1729144605);
    background-size: cover;
        width: 100px;
    height: 100px;
    background-size: cover;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 11;
}
  .card_promotion.wee_sale{
      font-size: 30px;
    font-family: "Avenir Next", sans-serif;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
       color: #fff0da;
  }
  
  @media (max-width: 768px) {
    .card_promotion.wee_sale{
          /* display: flex !important; */
    }
    .card_promotion.wee_sale {
    font-size: 20px;
    }
  .template-suffix-weee-np .featured-collection--title {
    font-size: 30px;
}
    .template-suffix-weee-np .section-testimonials .giant-title {
    font-size: 30px;
}
    .template-suffix-weee-np .testimonials .testimonial-content {
    padding: 30px;
}
    .template-suffix-weee-np .faq_boxs .giant-title {
    font-size: 30px;
}
    .gaL-sjidjasda p strong {
    font-size: 20px;
      padding-top: 20px;
    }
    .template-suffix-weee-np .faq_txt h3 {
    font-size: 15px;
}
    .template-suffix-weee-np .faq_item {
    margin-bottom: 5px;
    padding: 0px 20px;
}
    .gaL-sjidjasda {
    margin-top: 20px;
    margin-bottom: 30px;
}
    .template-suffix-weee-np .mul_list {
    gap: 15px;
    grid-template-columns: repeat(2, 1fr);
}
    .template-suffix-weee-np .mul_item {
    flex-flow: column;
    text-align: center;
}
    .template-suffix-weee-np .mul_txt h3 {
    font-size: 12px;
}
    .template-suffix-weee-np .mul_txt div {
    font-size: 12px;
    }
    .template-suffix-weee-np .section-testimonials {
    padding: 20px 0 40px;
}
    .template-suffix-weee-np .section-testimonials .testimonials--title p {
    font-size: 14px;
}
    .template-suffix-weee-np .faq_section {
    padding: 50px 0;
}
    .card_promotion.nesws__icon {
    display: block;
}
    .vp_box h3 {
    font-size: 20px;
}
    .vp_box {
    width: 100%;
 
}
    .vp_box i {
    width: 40px;
    height: 40px;
    }
  }
  .site-nav__item.new-users > a{
      color: #f4420a!important;
  }
  .afterpay__ok{
   font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666; 
  }
  .cart-item .quantity__remove{
        position: absolute;
    right: 0;
  }
  .cart-discount {
    list-style: none;
    display: inline-flex;
    background: #ffdcdc;
    padding: 5px;
    border-radius: 5px;
    color: #d8232f;
        align-items: center;
        gap: 5px;
        margin-top: 5px;
}
  .thumb-active{
      box-shadow: 1px 4px 13px 0px rgb(0 0 0 / 19%);
    /* border: 1px solid #ffffff; */
    border-radius: 15px;
  }
  .thumb-active::after{
    display:none
  }
  .template-index .hji_1 .banner_btns {
  margin-top: 70%;
}
  @media only screen and (max-width: 768px) {
      .cart-item .quantity__remove{
              position: relative;
        margin-top: 10px;
        padding-left: 20px;
        text-align: right;
      }
   .template-cart .total{
      margin-top:0!important
    }
    .store-message-link {
          line-height: 1.2;
    font-size: 12px;
}
    .td_codes{
          zoom: .9;
    }
    .head_sections #countdown{
        justify-content: flex-start!important;
    }
    .head_sections #countdown > div{
        text-align: left!important;
    }
    .store-message-link span {
  
    line-height: 0.85;
    flex: none;
}
      .template-index .hji_1 .banner_btns {
    margin-top: 0!important;
    bottom: auto;
    top: 34%;
    margin: 0 auto;
    width: 100%;
    text-align: center;
  }
    .template-index .hji_1 .banner_btn_a{
          background: #ff743d;
    color: #fff;
    }
  }
  .cc-filter--sort .cc-filter__content ul li:nth-child(3),
  .cc-filter--sort .cc-filter__content ul li:nth-child(4){
  display:none
  }
  .product-grid-inline{
    margin:0 0 30px 30px;
    padding:10px 25px;
    text-align:center;
    width:100%;
  }
  .product-grid-inline h3 {
    font-size:1.5em;
  }
  .product-grid-inline strong{
    
  }
  .product-grid-inline-a{
    
  }
  .product-grid-inline-b{
    background:#f3f3f3;
  }
    @media only screen and (max-width: 768px) {
      .product-grid-inline{
    margin:0 0 20px 20px;
    padding:10px 20px;
  }
    }
.highlight-filter-tags{
  background:#f3f3f3;
  padding:10px;
  margin-top: 30px;
  position: absolute;
  top: 10px;
  left: 319px;
  width: calc(100% - 319px);
}
.highlight-filter-tags a {
  padding:5px 10px;
  text-decoration:none;
}
.highlight-filter-tags a.active{
  font-weight:bold;
}
    @media only screen and (max-width: 768px) {
      .highlight-filter-tags{
        margin-top: 15px;
        position: static;
        width: 100%;
      }
    }
.cc-filter.box_tags{display:none;}
  .product-grid-inline-related{
    margin:0;
    padding:0;
  }
.product-grid-inline-related .metafield-rich_text_field {
  display: flex;
  justify-content: left;
  flex-flow: row;
  flex-wrap: wrap;
  margin:30px 0;
}
.product-grid-inline-related .metafield-rich_text_field p {
  display: flex;
  align-items: center;
  margin: 0;
}
.product-grid-inline-related .metafield-rich_text_field p a {
  word-break: keep-all;
  padding: 0.4em 1em 0.5em 1.7em;
  border: solid 1px #ccc;
  margin: 0.5em 1em 0.5em 0;
  border-radius: 5em;
  text-decoration: none;
  background: url(https://cdn.shopify.com/s/files/1/0607/9224/2416/files/search.png?v=1743085052)
    no-repeat;
  background-position: 5px center;
}
.pc-campaign-button{
    background: #fff;
    position: fixed;
    bottom: 49px;
    padding: 0.5em 1.5em;
    z-index: 9999;
    border: solid 2px #f7db5e;
    border-radius: 2em;
    cursor: pointer;
}
.template-product .pc-campaign-button,.template-cart .pc-campaign-button{
  bottom: 70px;
}

/* 20250412 homepage */
.head_center .head_sections {
  text-align: center;
}
.utils__left .utils__item svg {
  width: 20px !important;
  height: 20px !important;
}

a.header__icon.h-wishlist-icon.wishlist-page-widget {
  display: none;
}

  .header-quick-navs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  align-items: center;
  padding: .5rem 1rem;
  background-color: #fff;
  box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.15);
}

.header-quick-navs .quick_nav_link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 .5rem 2px;
  gap: .25rem;
  text-decoration: none;
}
.header-quick-navs .quick_nav_icon {
  width: 32px;
  height: 32px;
  align-items: flex-end;
  justify-content: center;
  display: flex;
}

.header-quick-navs .quick_nav_text {
  margin-bottom: 0;
  font-size: .75rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
  max-width: 72px
}

.Lineup_Swiper {
  overflow: hidden;
  max-width: 100%;
  width: 100%;
  margin-top:30px;
}
.Lineup_Swiper .Lineup_item {
  text-decoration: none;
  flex: 1;
  display: flex;
  align-items: center;
  text-align: center;
}
.Lineup_Swiper .Lineup_item img {
  max-width: 40%;
  width: 80px;
  margin-right: 1em;
}

.simple_banner_section .banner-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
.simple_banner_section .banner-list.d_col_1 {
  grid-template-columns: repeat(1, 1fr);
}
.simple_banner_section .banner-list.d_col_2 {
  grid-template-columns: repeat(2, 1fr);
}
.simple_banner_section .banner-list.d_col_3 {
  grid-template-columns: repeat(3, 1fr);
}
.simple_banner_section .banner-list.d_col_4 {
  grid-template-columns: repeat(4, 1fr);
}
.simple_banner_section .banner-list.d_gap_0 {
  gap: 0;
}
.simple_banner_section .banner-list.d_gap_10 {
  gap: 10px;
}
.simple_banner_section .banner-list.d_gap_20 {
  gap: 20px;
}
.simple_banner_section .banner-list.d_gap_30 {
  gap: 30px;
}
.simple_banner_section .banner-list.d_gap_40 {
  gap: 40px;
}
.simple_banner_section .banner-list a {
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  font-size: 0;
  line-height: 1;
}
.simple_banner_section .banner-list img {
  width: 100%;
}

.brand_list_section .brand-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
.brand_list_section .brand-list a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 46px;
}
.brand_list_section .brand-list a img {
  max-height:100%;
}
  
.help-list {
  text-align: center;
}
.help-list .content-inner {
  padding: 30px 0;
}
.help-list .section-content {
  max-width:600px;
  margin: 0 auto 36px;
  font-size: 16px;
}
.help-list .links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 80px;
}

.help-list .links .item{
  display: flex;
  align-items: center;
  gap:10px;
  justify-content: center;
  flex-direction: column;
  width:100px;
}
.help-list .links .item:hover {
  color: #f7db5e;
}
.help-list .links .item .img-wrapper{
  display: flex;
  justify-content: center;
  align-items: center;
  width:100%;
}
.help-list .links .item .img-wrapper img{
  width:100%;
  max-width: 80px;
}

.hand-list {
  text-align: center;
}
.hand-list .content-inner {
  padding: 30px 0;
}
.hand-list .section-content {
  max-width: 600px;
  margin: 0 auto 30px;
}
.hand-list .links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.hand-list .links .item{
  display: flex;
  align-items: center;
  gap:10px;
  justify-content: center;
  flex-direction: column;
  width: 80px;
  text-decoration: none;
}
.hand-list .links .item:hover {
  color: #f7db5e;
}
.hand-list .links .item .img-wrapper{
  display: flex;
  justify-content: center;
  align-items: center;
  width:100%;
}
.hand-list .links .item .img-wrapper img{
  width:100%;
  max-width: 60px;
}

/* homepage */
.template-index .testimonials .slick-track{
  display: flex;
  align-items: stretch;
}
.template-index .testimonials .testimonial-content {
  height: 100%;
}

.collection-tabs .tabs {
  justify-content: flex-start;
  gap: 30px;
  border: none;
  margin-bottom:14px;
  overflow-x: auto;
}
.collection-tabs .tabs li {
  margin: 0;
}
.collection-tabs .tabs a {
  color:#999;
  font-size: calc(23px * 1.18);
  font-weight: 700;
  text-wrap: nowrap;
}
.collection-tabs .tabs a:hover {
  color:#000;
}
.collection-tabs .tabs a.tab--active {
  color:#000;
}
.collection-tabs .tabs a:after {
  display: none !important;
}
.collection-tabs .btn {
  border-radius: 20px;
}

.video_section .video_wrap {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px 0 20px;
  
}
.video_section .video_content {
   width: 27%;
}
.video_section  .video_content_bottom {
   display: none;
  text-align: center;
}
.video_section .video_content h2 {
  line-height: 1;
}
.video_section .videos_list {
  width: 100%;
  flex: 1;
  overflow: hidden;
}
.video_section .btn-link {
  display: inline-flex;
  text-decoration: none;
  border: 1px solid #000;
  padding: 10px 20px;
  border-radius: 30px;
}
.video_section .btn-link:hover {
  border-color:#f7db5e;
  color: #f7db5e;
}
.video_section .video-social-icons {
  margin-top: 40px;
}
.video_section .video-social-icons > p{
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 10px;
}
  
@media only screen and (min-width: 768px) {
  .subscribe_left .subscribe-form__text p {
    margin-bottom: 10px;
  }
  .page-footer__subscribe .subscribe-form__inputs .subscribe-form__email {
    width: 100%;
    min-width: 400px;
  }
}
@media only screen and (min-width: 940px) {
  .utils__left {
    display: none;
  }
  .header-quick-navs {
    display: none;
  }
  .Lineup_Swiper .page-width {
    overflow: hidden;
  }
}

  @media only screen and (min-width: 1024px) {
  .subscribe_left .subscribe-form__text p {
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 939.98px) {
  .page-header {
    box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.15) !important;
  }
  .help-list .links {
    gap: 40px;
  }
  .hand-list .links {
    gap: 40px;
  }
  
  .video_section .video_wrap {
    gap: 10px;
    padding: 20px 0 0;
  }
  .video_section .video-social-icons {
    margin-top: 20px;
  }
  
}

@media (max-width: 768px) {
  .Lineup_Swiper {
    margin-top:20px;
  }
  .Lineup_Swiper .Lineup_item img {
    max-width: 30%;
  }

  .simple_banner_section .banner-list.m_col_1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .simple_banner_section .banner-list.m_col_2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .simple_banner_section .banner-list.m_col_3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .simple_banner_section .banner-list.m_col_4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .simple_banner_section .banner-list.m_gap_0 {
    gap: 0;
  }
  .simple_banner_section .banner-list.m_gap_10 {
    gap: 10px;
  }
  .simple_banner_section .banner-list.m_gap_20 {
    gap: 20px;
  }
  .simple_banner_section .banner-list.m_gap_30 {
    gap: 30px;
  }
  .simple_banner_section .banner-list.m_gap_40 {
    gap: 40px;
  }

  .brand_list_section .brand-list {
    gap: 20px;
  }
  
  .help-list .content-inner {
    padding: 20px 0;
  }
  .help-list .links {
    gap: 20px;
  }
  .help-list .links .item .img-wrapper{
    max-width:64px;
  }

  .hand-list .content-inner {
    padding: 20px 0;
  }
  .hand-list .links {
    gap: 20px;
  }
  .hand-list .links .item .img-wrapper{
    max-width:40px;
  }
  .page-footer__subscribe {
    padding: 20px 0;
  }
  /* homepage */
  .template-index .testimonials .testimonial {
    padding: 0 5px;
  }
  .template-index .testimonials .testimonial-content {
    padding: 10px;
  }

  .collection-tabs .tabs {
    gap: 20px;
  }
  .collection-tabs .tabs a {
    font-size: 23px;
  }
  .video_section .video_wrap {
    flex-direction: column;
    flex-flow: column-reverse;
  }
  .video_section .video_content {
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }
  .video_section .video_content .mobile_hide {
    display: none;
  }
  .video_section  .video_content_bottom {
     display: block;
  }
  .video_section .social-links__list {
    justify-content: center;
  }
}

@media (max-width: 479px) {
  .Lineup_Swiper .page-width {
    max-width: 210px;
  }
  .Lineup_Swiper .Lineup_item img {
    max-width: 30%;
  }
}

.product-detail__title-wrap {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}
.product-detail__title-wrap .product-detail__title {
    font-size: 23px;
    font-weight: 500;
    text-align: left;
    line-height: 1;
}
.product-detail__title-wrap .product-detail__price {
    margin: 0;
    text-align: right;
}
.product-detail__title-wrap .theme-money.large-title {
    font-weight: 500;
    font-size: 18px;
}
.product-detail__title-wrap .theme-money.large-title {
    font-weight: 500;
    font-size: 18px;
}
.product-detail__description {
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  color: #3d3d3d;
}
.afterpay__ok,
.pro_coupon1,
.Avada-StockCountdown__BlockWrapper {
    /*display: none;*/
}
.product-detail__title-area .with_lens {
  display: none;
}
.product-detail__options .option-selector {
    display: flex !important;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    appearance: none;
    margin: 0;
    min-inline-size: auto;
    gap: 30px;
}

.product-detail__options .option-selector .label {
    float: left;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 500;
    color: #3d3d3d;
}

.product-detail__options .option-selector__btns {
    margin-right: -10px;
}

.product-detail__options .size-chart-link {
    display: none;
}
.optician_button {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    margin-top: 20px;
}

.optician_button .tailor_my_lens {
    margin-top: 0 !important;
    width: 50%;
    font-weight: 500;
    color: #3d3d3d;
}

.select_a_lens_wrap {
    width: 50%;
}

.select_a_lens_wrap span {
    font-weight: 500;
    color: #999999;
}

.select_a_lens_wrap .select_a_lens {
    font-weight: 500;
    height: auto;
    width: auto;
    min-width: auto;
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid;
    box-shadow: none;
}
.product-detail__detail.sticky-element .payment-icons {
    text-align: center !important;
    margin-top: -2px;
}

.first_item {
  margin: 0;
  height: 46px;
}

.first_item .text {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-right: 10px;
}

.first_item >a {
    position: relative;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 30px 12px 0;
    padding-right: 0;
    border-bottom: 1px solid #d8d8d8;
}
/*
.first_item >a:after {
    display: block;
    content: '';
    position: absolute;
    top: 14px;
    left: 0;
    width: 18px;
    height: 18px;
    border: 1px solid;
    border-radius: 50%;
}
  */
.first_item>a span.sufix {
    width: 18px;
    height: 18px;
    background: url('https://cdn.shopify.com/s/files/1/0607/9224/2416/files/plus_1x_ebfa0094-3100-44da-a63e-748f67ff1971.png?v=1749385095')
}
.first_item.active>a span.sufix {
    background: url('https://cdn.shopify.com/s/files/1/0607/9224/2416/files/plus-1_1x_1c3ba28b-a60c-4d5f-95d5-b04f47bd7588.png?v=1749385095')
}
.first_item .review-content {
    padding-left: 16px;
}
.review-content .jdgm-rev-widg {
  padding-botom: 0px;
}
.review-content .jdgm-paginate+.jdgm-collected-link {
    bottom: -10px;
}
.first_item .included_content p > strong {
  display: block;
}
.accordion_prouct_detail .accordion-reviews-summary {
    display:  flex;
    align-items: center;
    gap: 10px;
    margin: -10px 0;
}

.accordion_prouct_detail .reviews-summary {
    /* font-size: 0; */
    line-height: 1;
}
.accordion_prouct_detail .cc-rating-custom-caption {
    display: block;
    font-size: 11px;
    font-weight: 400;
    line-height: 1;
}

.accordion_prouct_detail .rating {
    font-size: 24px;
    font-weight: 500;
    margin-top: 2px;
}

.accordion_prouct_detail .cc-rating {
    font-size: 14px;
    line-height: 1;
}

.accordion_prouct_detail .cc-rating-stars__svg {
    width: 12px;
    height: 12px;
}

.accordion_prouct_detail .text {
    flex: 1;
}
.product-detail__detail .Lineup_Swiper {
    margin-bottom: 40px;
    margin-top: 18px;
}
.product-detail__detail .Lineup_Swiper .Lineup_item {
    text-align: left;
    font-size: 12px;
}
.product-detail__detail .Lineup_Swiper .Lineup_item img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}
.product-detail__detail .Lineup_Swiper .Lineup_item p {
    margin: 0;
}
.product-recommendations .large-title {
  font-size: 23px;
  font-weight:500;
  text-align: left;
  margin-bottom: 20px;
  margin-top: 40px;
}
.product-block__title_wrap {
  display: flex;
  allign-items:center;
  justify-content: space-between;
}
.product-block__title_wrap .product-block__title-link {
  font-size: 14px;
  font-weight: 500;
  color: #3d3d3d;
}

.product-block__title_wrap .product-price {
    margin-top: 0.5rem;
    font-weight: 500;
}

.product-block__title_wrap .theme_money {
    color: #FF743D;
}
.recently-viewed .large-title {
    font-size: 23px;
    font-weight: 500;
    text-align: left;
    margin-bottom: 20px;
    margin-top: 40px;
}
.recently-viewed .product-block__title {
    font-size: 14px;
    font-weight: 500;
    text-align: left;
}
.recently-viewed .product-block__vendor {
    display: none;
}
  .frame_detail {
    color:#3d3d3d;
}
.frame_detail p {
    font-weight:500;
    margin: 8px 0;
}
.frame_detail ul {
    margin: 15px 0;
}
.frame_detail ul li {
    font-weight:500;
    margin: 10px 0;
    list-style: disc;
    /* padding-left: 10px; */
}
.frame_detail ul li:before {
  content: "•";
  color: #999999;
  margin-right: 10px;
}
.frame_detail ul li span:first-child {
    display: inline-block;
    color:#999;
    min-width: 80px;
}
.frame_detail .size-guide {
    text-align: center;
    margin-top: 20px;
}
.frame_detail .size-chart-link {
    position: static;
    display: inline;
    color: #f5da5b;
}
.template-product .breadcrumbs {
    justify-content: left;
    align-items: center;
    gap: 10px;
}
.breadcrumbs .free-shipping-label {
    padding: 4px 15px;
    background-color: #FF743D;
    border-radius: 15px;
    color: #fff;
}

@media only screen and (min-width: 768px) {
  .fixed__mobile_top_only {
    display: none !important;
  }
}

@media only screen and (max-width: 767px) {
    .product-detail__images.slick-dotted.slick-slider {
        margin-bottom: 10px;
    }

    .product-detail.container {
        padding: 0 15px;
    }

    .product-layout-grid__images,
    .product-layout-grid__detail {
        padding-top: 10px;
    }

    .product-layout-grid__detail {
        padding-top: 20px;
    }

    .product-detail__images-container .slick-external-controls {
        display: none;
    }

    .product-detail__thumbnails {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        margin-left: -10px;
    }

    .product-detail__thumbnail {
        margin: 0 0 10px 10px;
        width: 50px;
        border-radius: 5px;
    }

    .product-detail__price {
        margin-top: 0;
        margin-bottom: 0;
    }

    span.product-price__compare.theme-money {
        font-weight: 500;
        color: #999;
        font-size: 16px;
    }

    .product-price__reduced {
        color: #FF743D;
    }

    .product-price__reduced .theme-money {
        font-size: 18px !important;
    }

    .product-detail__title-area {
        margin-bottom: 10px;
    }
    .first_item >a {
      font-size: 12px;
    }
    .recently-viewed .grid__item {
      padding-left: 0;
    }
}
