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

@keyframes modal-open{
  0%{
    opacity:0.5;
    transform:translateY(-120px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes modal-closing{
  0%{
    opacity:1;
    transform:translateY(0);
  }
  to{
    opacity:0;
    transform:translateY(-120px);
  }
}

@keyframes rise-up{
  0%{
    opacity:1;
    transform:translateY(120%);
  }
  to{
    opacity:1;
    transform:translateY(0%);
  }
}

@keyframes fade-in{
  0%{
    opacity:0;
  }
  to{
    opacity:1;
  }
}

@keyframes fade-out{
  0%{
    opacity:1;
  }
  to{
    opacity:0;
  }
}

@keyframes zoom-fade{
  0%{
    opacity:0;
    transform:scale(1.125);
  }
  to{
    opacity:1;
    transform:scale(1);
  }
}

@keyframes zoom-fade-password{
  0%{
    opacity:0;
    transform:scale(1.4);
  }
  5%{
    opacity:1;
    transform:scale(1);
  }
  to{
    opacity:1;
    transform:scale(1.2);
  }
}

@keyframes kenburns{
  0%{
    opacity:0;
    transform:scale(1.2);
    animation-timing-function:cubic-bezier(0.12, 0.63, 0.6, 0.74);
  }
  10%{
    opacity:1;
    transform:scale(1.1);
    animation-timing-function:linear;
  }
  to{
    opacity:1;
    transform:scale(1);
  }
}

@keyframes kenburns-out{
  0%{
    opacity:1;
    transform:scale(1);
    animation-timing-function:ease-out;
  }
  50%{
    opacity:0;
  }
  to{
    transform:scale(1.1);
  }
}

@keyframes preloading{
  0%{ transform-origin:0% 50%; transform:scaleX(0); opacity:0; }
  40%{ transform-origin:0% 50%; transform:scaleX(1); opacity:1; }
  41%{ transform-origin:100% 50%; transform:scaleX(1); opacity:1; }
  to{ transform-origin:100% 50%; transform:scaleX(0); opacity:1; }
}

@keyframes grid-product__loading{
  0%{ opacity:1; }
  3%{ opacity:0; }
  10%{ opacity:0; }
  20%{ opacity:0.2; }
  30%{ opacity:0; }
  40%{ opacity:0.2; }
  50%{ opacity:0; }
  60%{ opacity:0.2; }
  70%{ opacity:0; }
  80%{ opacity:0.2; }
  90%{ opacity:0; }
  98%{ opacity:0.2; }
  to{ opacity:1; }
}

.flickity-enabled{
  position:relative;
}

.flickity-enabled:focus{ outline:none; }

.flickity-viewport{
  overflow:hidden;
  position:relative;
  transition:height 0.6s;
  height:100%;
}

.reviews .flickity-viewport{
  height:420px;
}

.flickity-slider{
  position:absolute;
  width:100%;
  height:100%;
}

.flickity-enabled.is-draggable{
  -webkit-user-select:none;
          user-select:none;
}

.flickity-enabled.is-draggable .flickity-viewport{
  cursor:move;
  cursor:grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down{
  cursor:grabbing;
}

.flickity-button{
  position:absolute;
  border:none;
  color:var(--colorPrimary);
  background:var(--colorBody);
  box-shadow: 4px 4px 18px rgba(0, 0, 0, 0.1);
  border-radius:50%
}

.except .flickity-button polyline, .except .flickity-button line{
  stroke-width:7px
}

.flickity-button:hover{
  color:var(--colorBody);
  background:var(--colorPrimary);
  cursor:pointer;
  opacity:1;
  transition:all 0.25s;
}

.flickity-button:disabled{
  display:none;
  cursor:auto;
  pointer-events:none;
}

.flickity-prev-next-button{
  top:50%;
  width:60px;
  height:60px;
  transform:translateY(-50%)
}

.external-slide__btn{
  margin-left: 10px;
  vertical-align: middle;
}

@media only screen and (max-width:589px){

.flickity-prev-next-button{
    width:45px;
    height:45px
}
  }

.flickity-previous{ left:10px; }

.flickity-next{ right:10px; }

.flickity-rtl .flickity-previous{
  left:auto;
  right:10px;
}

.flickity-rtl .flickity-next{
  right:auto;
  left:10px;
}

.flickity-button-icon{
  position:absolute;
  left:30%;
  top:30%;
  width:40%;
  height:40%;
  fill:currentColor;
}

.flickity-page-dots{
  position:absolute;
  width:100%;
  bottom:-25px;
  padding:0;
  margin:0;
  list-style:none;
  text-align:center;
  line-height:1;
  color:currentColor
}

.hero .flickity-page-dots{
    bottom:20px;
    right:10px;
    width:auto;
    color:#fff
}

@media only screen and (max-width:589px){
  .hero .flickity-page-dots{
    right:50%;
    bottom:3px;
    transform:translateX(50%);
  }
  .product-header_desc{
    padding-top: 0;
  }
}

.flickity-rtl .flickity-page-dots{ direction:rtl; }

.flickity-page-dots .dot{
  display:inline-block;
  width:10px;
  height:10px;
  margin:0 5px;
  border-radius:100%;
  background:transparent;
  cursor:pointer;
  border:2px solid;
  border-color:currentColor;
}

.flickity-page-dots .dot.is-selected{
  border-color:var(--colorPrimary);
  background-color:var(--colorPrimary);
}

.flickity-enabled.is-fade .flickity-slider>*{
  pointer-events:none;
  z-index:0;
}

.flickity-enabled.is-fade .flickity-slider>.is-selected{
  pointer-events:auto;
  z-index:1;
}

.is-transitioning{
  display:block !important;
  visibility:visible !important;
}

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

.visually-invisible{
  opacity:0 !important;
}

.skip-link:focus{
  clip:auto;
  width:auto;
  height:auto;
  margin:0;
  color:var(--colorTextBody);
  background-color:var(--colorBody);
  padding:10px;
  opacity:1;
  z-index:10000;
  transition:none;
}

.one-whole{width:100%;}

.one-half{width:50%;}

.one-third{width:33.33333%;}

.two-thirds{width:66.66667%;}

.one-quarter{width:25%;}

.two-quarters{width:50%;}

.three-quarters{width:75%;}

.one-fifth{width:20%;}

.two-fifths{width:40%;}

.three-fifths{width:60%;}

.four-fifths{width:80%;}

.one-sixth{width:16.66667%;}

.two-sixths{width:33.33333%;}

.three-sixths{width:50%;}

.four-sixths{width:66.66667%;}

.five-sixths{width:83.33333%;}

.three-tenths{width:30%;}

.seven-tenths{width:70%;}

@media only screen and (max-width:589px){.small--one-whole{width:100%;}.small--one-half{width:50%;}.small--one-third{width:33.33333%;}.small--two-thirds{width:66.66667%;}.small--one-quarter{width:25%;}.small--two-quarters{width:50%;}.small--three-quarters{width:75%;}.small--one-fifth{width:20%;}.small--two-fifths{width:40%;}.small--three-fifths{width:60%;}.small--four-fifths{width:80%;}.small--one-sixth{width:16.66667%;}.small--two-sixths{width:33.33333%;}.small--three-sixths{width:50%;}.small--four-sixths{width:66.66667%;}.small--five-sixths{width:83.33333%;}.grid--uniform .small--one-fifth:nth-of-type(5n+1),.grid--uniform .small--one-half:nth-of-type(odd),.grid--uniform .small--one-quarter:nth-of-type(4n+1),.grid--uniform .small--one-sixth:nth-of-type(6n+1),.grid--uniform .small--one-third:nth-of-type(3n+1),.grid--uniform .small--three-sixths:nth-of-type(odd),.grid--uniform .small--two-eighths:nth-of-type(4n+1),.grid--uniform .small--two-sixths:nth-of-type(3n+1){clear:both;}}

@media only screen and (min-width:590px){.medium-up--one-whole{width:100%;}.medium-up--one-half{width:50%;}.medium-up--one-third{width:33.33333%;}.medium-up--two-thirds{width:66.66667%;}.medium-up--one-quarter{width:25%;}.medium-up--two-quarters{width:50%;}.medium-up--three-quarters{width:75%;}.medium-up--one-fifth{width:20%;}.medium-up--two-fifths{width:40%;}.medium-up--three-fifths{width:60%;}.medium-up--four-fifths{width:80%;}.medium-up--one-sixth{width:16.66667%;}.medium-up--two-sixths{width:33.33333%;}.medium-up--three-sixths{width:50%;}.medium-up--four-sixths{width:66.66667%;}.medium-up--five-sixths{width:83.33333%;}.grid--uniform .medium-up--one-eighth:nth-of-type(8n+1),.grid--uniform .medium-up--one-fifth:nth-of-type(5n+1),.grid--uniform .medium-up--one-half:nth-of-type(odd),.grid--uniform .medium-up--one-quarter:nth-of-type(4n+1),.grid--uniform .medium-up--one-sixth:nth-of-type(6n+1),.grid--uniform .medium-up--one-third:nth-of-type(3n+1){clear:both;}}

@media only screen and (min-width:1050px){.widescreen--one-whole{width:100%;}.widescreen--one-half{width:50%;}.widescreen--one-third{width:33.33333%;}.widescreen--two-thirds{width:66.66667%;}.widescreen--one-quarter{width:25%;}.widescreen--two-quarters{width:50%;}.widescreen--three-quarters{width:75%;}.widescreen--one-fifth{width:20%;}.widescreen--two-fifths{width:40%;}.widescreen--three-fifths{width:60%;}.widescreen--four-fifths{width:80%;}.widescreen--one-sixth{width:16.66667%;}.widescreen--two-sixths{width:33.33333%;}.widescreen--three-sixths{width:50%;}.widescreen--four-sixths{width:66.66667%;}.widescreen--five-sixths{width:83.33333%;}.widescreen--three-tenths{width:30%;}.widescreen--seven-tenths{width:70%;}.grid--uniform .widescreen--one-eighth:nth-of-type(8n+1),.grid--uniform .widescreen--one-fifth:nth-of-type(5n+1),.grid--uniform .widescreen--one-half:nth-of-type(odd),.grid--uniform .widescreen--one-quarter:nth-of-type(4n+1),.grid--uniform .widescreen--one-sixth:nth-of-type(6n+1),.grid--uniform .widescreen--one-third:nth-of-type(3n+1){clear:both;}}

@media only screen and (min-width:750px){.medium-up--push-one-half{left:50%;}.medium-up--push-one-third{left:33.33333%;}.medium-up--push-two-thirds{left:66.66667%;}.medium-up--push-one-quarter{left:25%;}.medium-up--push-two-quarters{left:50%;}.medium-up--push-three-quarters{left:75%;}.medium-up--push-one-fifth{left:20%;}.medium-up--push-two-fifths{left:40%;}.medium-up--push-three-fifths{left:60%;}.medium-up--push-four-fifths{left:80%;}.medium-up--push-one-sixth{left:16.66667%;}.medium-up--push-two-sixths{left:33.33333%;}.medium-up--push-three-sixths{left:50%;}.medium-up--push-four-sixths{left:66.66667%;}.medium-up--push-five-sixths{left:83.33333%;}.medium-up--push-one-eighth{left:12.5%;}}

@media only screen and (max-width:589px){.small--show{display:block !important;}.small--hide{display:none !important;}.small--text-left{text-align:left !important;}.small--text-right{text-align:right !important;}.small--text-center{text-align:center !important;}}

@media only screen and (max-width:768px){.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:590px){.medium-up--show{display:block !important;}.medium-up--hide{display:none !important;}.medium-up--text-left{text-align:left !important;}.medium-up--text-right{text-align:right !important;}.medium-up--text-center{text-align:center !important;}}

@media only screen and (min-width:769px){.large-up--show{display:block !important;}.large-up--hide{display:none !important;}.large-up--text-left{text-align:left !important;}.large-up--text-right{text-align:right !important;}.large-up--text-center{text-align:center !important;}}

@media only screen and (min-width:1024px){.widescreen--show{display:block !important;}.widescreen--hide{display:none !important;}.widescreen--text-left{text-align:left !important;}.widescreen--text-right{text-align:right !important;}.widescreen--text-center{text-align:center !important;}}

@media only screen and (max-width:1023px){.widescreen-down--show{display:block !important;}.widescreen-down--hide{display:none !important;}}

.shopify-email-marketing-confirmation__container{
  text-align:center;
}

.page-content--with-blocks{
  padding-bottom:0;
}

.hr--large,.hr--medium,.hr--small,hr{
  height:1px;
  border:0;
  border-top:1px solid;
  border-top-color:var(--colorBorder);
}

.hr--small{
  margin:15px auto;
}

.hr--medium{
  margin:25px auto
}

@media only screen and (min-width:590px){

.hr--medium{
    margin:35px auto
}
  }

.hr--large{
  margin:40px auto
}

@media only screen and (min-width:590px){

.hr--large{
    margin:60px auto
}
  }

.page-blocks .hr--large{
  margin-top:0;
}

.hr--clear{
  border:0;
}

@media only screen and (max-width:589px) {
	.table--responsive thead {
		display: none;
	}

	.table--responsive tr {
		display: block;
	}

	.table--responsive td,.table--responsive tr {
		float: left;
		clear: both;
		width: 100%;
	}

	.table--responsive td,.table--responsive th {
		display: block;
		text-align: right;
		padding: 15px;
	}

	.table--responsive td:before {
		font-weight: var(--typeHeaderWeight);
		letter-spacing: var(--typeHeaderSpacing);
		line-height: var(--typeHeaderLineHeight);
	}

	.table--responsive td:before {
		content: attr(data-label);
		float: left;
		font-size: 12px;
		padding-right: 10px;
	}
}

@media only screen and (max-width:589px) {
	.table--small-hide {
		display: none !important;
	}

	.table__section+.table__section {
		position: relative;
		margin-top: 10px;
		padding-top: 15px
	}

	.table__section+.table__section:after {
		content: "";
		display: block;
		position: absolute;
		top: 0;
		left: 15px;
		right: 15px;
		border-bottom: 1px solid;
		border-bottom-color: var(--colorBorder);
	}
}

.collapsible-content .label,.collapsible-content label {
	font-weight: var(--typeBaseWeight);
	letter-spacing: var(--typeBaseSpacing);
	line-height: var(--typeBaseLineHeight);
	text-transform: none;
	font-size: calc(var(--typeBaseSize) - 3px)
}

#comments .label,#comments label {
	font-weight: var(--typeBaseWeight);
	letter-spacing: var(--typeBaseSpacing);
	line-height: var(--typeBaseLineHeight);
	text-transform: none;
	font-size: calc(var(--typeBaseSize) - 3px)
}

.ajaxcart__note .label,.ajaxcart__note label {
	font-weight: var(--typeBaseWeight);
	letter-spacing: var(--typeBaseSpacing);
	line-height: var(--typeBaseLineHeight);
	text-transform: none;
	font-size: calc(var(--typeBaseSize) - 3px)
}

.template-page .contact-form .label,.template-page .contact-form label {
	font-weight: var(--typeBaseWeight);
	letter-spacing: var(--typeBaseSpacing);
	line-height: var(--typeBaseLineHeight);
	text-transform: none;
	font-size: var(--typeBaseSize)
}

.text-spacing {
	margin-bottom: 20px;
}

.collapsible-content .rte table {
	font-size: calc(var(--typeBaseSize) - 3px)
}

.collapsible-content .rte table td,.collapsible-content .rte table th {
	padding: 6px 8px;
}

@media only screen and (max-width:589px) {

	.rte table {
		font-size: calc(var(--typeBaseSize) - 3px)
	}

	.rte table td,.rte table th {
		padding: 6px 8px;
	}
}

.larger-text .h3 {
	font-size: calc(var(--typeHeaderSize)*0.85)
}

@media only screen and (min-width:590px) {

	.larger-text .h3 {
		font-size: var(--typeHeaderSize)
	}
}

.larger-text p {
	font-size: calc(var(--typeBaseSize) + 1px)
}

@media only screen and (min-width:590px) {

	.larger-text p {
		font-size: calc(var(--typeBaseSize) + 2px)
	}
}

.larger-text .subtitle {
	font-weight: var(--typeBaseWeight);
	letter-spacing: var(--typeBaseSpacing);
	line-height: var(--typeBaseLineHeight)
}

.larger-text .subtitle {
	font-size: var(--typeBaseSize);
	margin-bottom: 5px
}

@media only screen and (min-width:590px) {
	.larger-text .subtitle {
		font-size: calc(var(--typeBaseSize)*1.13)
	}
}

.date {
	display: inline-block;
	line-height: 1.7;
	margin-bottom: 5px;
	font-weight: var(--typeHeaderWeight);
	letter-spacing: var(--typeHeaderSpacing);
	line-height: var(--typeHeaderLineHeight)
}

@media only screen and (min-width:590px) {

	.date {
		margin-bottom: 0
	}
}

.section-header .date:last-child {
	margin-bottom: 40px;
}

.comment-author {
	margin-bottom: 0;
	font-size: 16px;
}

.comment-date {
	font-weight: var(--typeBaseWeight);
	letter-spacing: var(--typeBaseSpacing);
	line-height: var(--typeBaseLineHeight)
}

.comment-date {
	font-size: 12px;
	display: block;
	margin-top: 3px
}

@media only screen and (max-width:589px) {

	.comment-date {
		font-size: 10px;
		margin-bottom: 20px
	}
}

.cart__customer-meta {
	font-size: 0.6em;
	color: var(--colorSecond);
	background-color: var(--colorBorder);
	border-radius: .5em;
	padding: 15px;
	margin-bottom: 10px;
}

.ajaxcart__product-name {
	font-size: calc(var(--typeBaseSize)*1.13*0.85);
	line-height: 1.3
}

@media only screen and (min-width:590px) {

	.ajaxcart__product-name {
		font-size: calc(var(--typeBaseSize)*1.13)
	}
}

.ajaxcart__product-meta {
	font-size: calc(var(--typeBaseSize)*0.9*0.85);
	line-height: 1.3
}

@media only screen and (min-width:590px) {

	.ajaxcart__product-meta {
		font-size: calc(var(--typeBaseSize)*0.9)
	}
}

.ajaxcart__subtotal {
	font-weight: var(--typeHeaderWeight);
	letter-spacing: var(--typeHeaderSpacing);
	line-height: var(--typeHeaderLineHeight)
}

.ajaxcart__subtotal {
	font-size: calc(var(--typeBaseSize)*0.85);
	margin-bottom: 10px
}

@media only screen and (min-width:590px) {

	.ajaxcart__subtotal {
		font-size: var(--typeBaseSize)
	}
}

.ajaxcart__price {
	line-height: 1.2;
	margin-bottom: 10px
}

@media only screen and (max-width:589px) {

	.ajaxcart__price {
		font-size: calc(var(--typeBaseSize)*0.85)
	}
}

.ajaxcart__note {
	font-size: 11px;
	opacity: 0.8;
	margin-bottom: 15px;
	margin-top: 5px
}

@media only screen and (min-width:590px) {

	.ajaxcart__note {
		font-size: 13px
	}
}

.ajaxcart__note--terms {
	margin-top: 10px
}

.ajaxcart__note--terms input {
	vertical-align: middle;
}

.ajaxcart__note--terms label {
	display: inline;
}

.ajaxcart__note--terms a {
	text-decoration: underline;
}

.ajaxcart__savings,.cart__savings {
	font-size: 20px;
}

.skrim__title {
	font-size: calc(var(--typeHeaderSize)*0.46);
	letter-spacing: var(--typeHeaderSpacing);
	line-height: var(--typeBaseLineHeight)
}

.rte .enlarge-text {
	margin: 0
}

.rte .enlarge-text p {
	font-size: calc(var(--typeBaseSize)*1.13)
}

@media only screen and (min-width:590px) {

	.rte .enlarge-text p {
		font-size: calc(var(--typeBaseSize)*1.4)
	}
}

.rte .enlarge-text p:last-child {
	margin-bottom: 0;
}

.rte blockquote,blockquote {
	margin: 0;
	padding: 20px 0 40px
}

.rte blockquote p {
	font-size: calc(var(--typeBaseSize)+1px)
}

@media only screen and (min-width:590px) {
	.rte blockquote p {
		font-size: calc(var(--typeBaseSize)+3px)
	}
}

.rte blockquote p,blockquote p {
	margin-bottom: 0
}

.rte blockquote p+cite,blockquote p+cite {
	margin-top: 20px
}

.rte blockquote cite,blockquote cite {
	display: block
}

.rte blockquote cite:before,blockquote cite:before {
	content: "\2014 \0020"
}

code,pre {
	background-color: #faf7f5;
	border: 0 none;
	padding: 0 2px;
	color: #51ab62
}

pre {
	overflow: auto;
	padding: 20px;
	margin: 0 0 40px
}

.label,label {
	font-weight: var(--typeHeaderWeight);
	letter-spacing: var(--typeHeaderSpacing);
	line-height: var(--typeHeaderLineHeight)
}

.label,label {
	font-size: calc(var(--typeBaseSize)*0.8)
}

@media only screen and (min-width:590px) {
	.label,label {
		font-size: calc(var(--typeBaseSize)*0.9)
	}
}

label,.label-info {
	display: block;
	margin-bottom: 10px
}

ul.square {
	list-style: square outside;
}

ul.disc {
	list-style: disc outside;
}

ol.alpha {
	list-style: lower-alpha outside;
}

.no-bullets {
	list-style: none outside;
	margin-left: 0;
}

.inline-list {
	padding: 0;
	margin: 0
}

.inline-list li {
	display: inline-block;
	margin-bottom: 0;
	vertical-align: middle;
}

.interval-list li {
	margin-bottom: 15px;
}

table {
	width: 100%;
	border-spacing: 1px;
	position: relative;
	border: 0 none;
	background: var(--colorBorder);
}

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

td,th {
	border: 0 none;
	text-align: left;
	padding: 10px 15px;
	background: var(--colorBody)
}

html[dir=rtl] td,html[dir=rtl] th {
	text-align: right
}

th {
	font-weight: 700;
}

.table__title,th {
	font-weight: 700;
}

.text-link,a {
	color: var(--colorTextBody);
	text-decoration: none;
	background: transparent
}

.text-link:hover,a:hover {
	color: var(--colorTextBody);
}

.customers a {
	text-decoration: none;
	border-bottom: 2px solid;
	border-bottom-color: var(--colorShadow);
	position: relative
}

.customers a:after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	border-bottom: 2px solid;
	border-bottom-color: var(--colorTextBody);
	transform: scale(0);
	transform-origin: 0 50%;
	transition: transform 0.5s ease;
}

.customers a:focus:after, .customers a:hover:after {
	transform: scale(1);
}

.text-link {
	display: inline;
	border: 0 none;
	background: none;
	padding: 0;
	margin: 0;
}

.rte a,.shopify-email-marketing-confirmation__container a,.shopify-policy__container a {
	color: var(--colorLink);
}

button {
	overflow: visible;
}

button[disabled],html input[disabled] {
	cursor: default;
}

.shopify-payment-button__button--branded {
	border-radius: .5em !important;
	overflow: hidden;
}

.btn,.rte .btn,.shopify-payment-button .shopify-payment-button__button--unbranded,.jdgm-write-rev-link {
	font-weight: var(--typeHeaderWeight);
	letter-spacing: var(--typeHeaderSpacing);
	display: inline-block;
	padding: 10px 30px;
	margin: 0;
	width: auto;
	min-width: 90px;
	font-size: 17px;
	line-height: 1.42;
	font-weight: 500;
	text-decoration: none;
	text-align: center;
	vertical-align: middle;
	white-space: normal;
	cursor: pointer;
	border: 1px solid var(--colorPrimary);
	overflow: hidden;
	border-radius: .5em;
	user-select: none;
	color: var(--colorPrimary);
	background-color: transparent;
	text-shadow: none;
	transition: all 0.3s;
}

@media only screen and (max-width:589px) {

	.btn,.rte .btn,.shopify-payment-button .shopify-payment-button__button--unbranded {
		font-size: 14px;
		padding: 8px 18px
	}
}

.btn:hover,.rte .btn:hover,.shopify-payment-button .shopify-payment-button__button--unbranded:hover,.jdgm-write-rev-link:hover {
	color: var(--colorHeroText);
	background-color: var(--colorPrimary);
	transition: all 0.3s;
	box-shadow: 0 8px 30px -7px #1b1b1b;;
}

.btn:active,.rte .btn:active,.shopify-payment-button .shopify-payment-button__button--unbranded:active {
	opacity: 0.6;
	transition: opacity 0.1s ease;
}

.btn.disabled,.btn[disabled],.rte .btn.disabled,.rte .btn[disabled],.shopify-payment-button .shopify-payment-button__button--unbranded.disabled,.shopify-payment-button .shopify-payment-button__button--unbranded[disabled] {
	cursor: default;
	color: var(--colorSecond);
	background-color: #e2e9ef !important;
	border-color: var(--colorSecond);
	transition: none
}

.btn.disabled:hover,.btn[disabled]:hover,.rte .btn.disabled:hover,.rte .btn[disabled]:hover,.shopify-payment-button .shopify-payment-button__button--unbranded.disabled:hover,.shopify-payment-button .shopify-payment-button__button--unbranded[disabled]:hover {
	color: var(--colorSecond);
	background-color: #e2e9ef;
}

.shopify-payment-button__more-options {
	color: inherit;
}

.btn--tertiary,.rte .btn--tertiary {
	background-color: var(--colorBody);
	border: 1px solid;
	color: var(--colorSecond);
	border-color: var(--colorBorder);
}

.btn--tertiary:hover,.rte .btn--tertiary:hover {
	background-color: var(--colorBorder);
	border-color: var(--colorSecond);
	color: var(--colorTextBody);
	box-shadow: 0 8px 30px -7px rgba(0,0,0,0.25);
	transition: border 0.25s ease;
}

.btn--small {
	padding: 6px 18px;
	font-size: 14px;
	background-position: 150% 45%;
}

@media only screen and (max-width:589px) {

	.btn--small {
		font-size: 12px;
		padding: 7px 12px
	}
}

.btn--large {
	padding: 16px 48px;
	font-size: 20px;
}

.btn--full {
	width: 100%;
}

.btn--body {
	background-color: var(--colorPrimary);
	color: var(--colorBody);
	border-color: var(--colorPrimary);
}

.btn--body:active,.btn--body:hover {
	background-color: #f9d60d; /* var(--colorTextBody); */
	color: var(--colorPrimary);
	border-color: #f9d60d; /* currentColor; */
	box-shadow: 0 8px 30px -7px rgba(0,0,0,0.25);
}

.btn--body--inversion {
	background-color: var(--colorTextBody);
	color: var(--colorBody);
	border-color: var(--colorTextBody);
}

.btn--body--inversion:active,.btn--body--inversion:hover {
	background-color: var(--colorPrimary);
	color: var(--colorBody);
	border-color: var(--colorPrimary);
	box-shadow: 0 8px 30px -7px #1b1b1b;
}

.btn--light:active, .btn--light:hover {
	background-color: var(--colorBody);
	color: var(--colorPrimary);
	border-color: var(--colorBody);
}

.btn--inverse {
	background-color: transparent;
	color: var(--colorTitle);
	border-color: var(--colorTitle);
}

.btn--inverse:active, .btn--inverse:hover {
	background-color: var(--colorPrimary);
	color: var(--colorBody);
	border-color: var(--colorPrimary);
}

.btn--circle {
	padding: 10px;
	border-radius: 50%;
	min-width: 0;
	line-height: 1
}

.btn--circle .icon {
	width: 20px;
	height: 20px;
}

.btn--circle:after,.btn--circle:before {
	content: none;
	background: none;
	width: auto;
}

.btn--circle.btn--large .icon {
	width: 30px;
	height: 30px;
}

.btn--circle.btn--large {
	padding: 15px;
}

.btn--loading {
	position: relative;
	text-indent: -9999px;
}

.btn--loading:active,.btn--loading:hover {
	background-color: var(--colorPrimary);
	color: var(--colorPrimary);
	background-image: none !important;
}

.btn--loading:after {
	content: "";
	display: block;
	width: 24px;
	height: 24px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -12px;
	margin-top: -12px;
	border-radius: 50%;
	border: 3px solid;
	border-color: var(--colorHeroText);
	border-top-color: transparent;
	animation: spin 1s linear infinite;
}

.btn--loading.add-to-cart--secondary {
	border-color: var(--colorTextBody);
	background-color: var(--colorTextBody);
	color: var(--colorHeroText)
}

.btn--loading.add-to-cart--secondary:active,.btn--loading.add-to-cart--secondary:hover {
	color: var(--colorHeroText);
}

.btn--loading.add-to-cart--secondary:after {
	border-color: var(--colorHeroText);
	border-top-color: transparent;
}

.return-link {
	font-weight: var(--typeHeaderWeight);
	letter-spacing: var(--typeHeaderSpacing);
	line-height: var(--typeHeaderLineHeight);
	font-size: 18px;
	text-align: center
}

@media only screen and (min-width:590px) {
	.return-link {
		font-size: 20px
	}
}

.return-link .icon {
	width: 27px;
	margin-right: 8px;
}

.collapsible-trigger-btn {
	display: block;
	width: 100%;
	text-align: left;
	font-weight: 500;
	padding: 15px 0
}

.collapsible-trigger-btn.btn--tertiary {
	padding: 6px 10px;
	width: auto;
}

.collapsible-trigger-btn--borders {
	border-top: 1px solid;
	border-top-color: var(--colorBorder)
}

.collapsible-trigger-btn--borders:first-child {
	border-top: none;
}

.collapsible-content+.collapsible-trigger-btn--borders {
	margin-top: -1px
}

.collapsible-trigger-btn--borders+.collapsible-content .collapsible-content__inner {
	padding-bottom: 20px;
}

.shopify-payment-button {
	margin-top: 15px;
}

.shopify-payment-button .shopify-payment-button__button--unbranded {
	background-color: var(--colorTextBody);
	color: var(--colorBody);
	border-color: var(--colorTextBody);
	display: block;
	width: 100%;
	transition: none
}

.shopify-payment-button .shopify-payment-button__button--unbranded:hover {
	color: var(--colorBody) !important;
	border-color: var(--colorTextBody) !important;
	background-color: #000 !important;
	box-shadow: 0 8px 30px -7px rgba(0,0,0,.35);
}

.payment-buttons {
	max-width: 432px;
}

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

@media only screen and (max-width:589px) {

	.payment-buttons .add-to-cart--secondary {
		font-size: 14px;
		padding: 8px 18px
	}
}

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

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

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

.video-wrapper--modal {
	width: 1000px;
}

.grid__image-ratio {
	position: relative;
	background-color: var(--colorSmallImageBg)
}

.grid__image-ratio img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover
}

.grid__image-ratio img.grid__image-contain {
	-o-object-fit: contain;
	object-fit: contain;
}

.grid__image-ratio img {
	opacity: 0
}

.grid__image-ratio img.lazyloaded {
	opacity: 1;
	animation: 0.5s cubic-bezier(0.26, 0.54, 0.32, 1) 0s forwards;
	animation-name: zoom-fade;
	transition: none;
}

.grid__image-ratio:before {
	content: "";
	display: block;
	height: 0;
	width: 100%;
}

.grid__image-ratio--wide:before {
	padding-bottom: 56.25%;
}

.grid__image-ratio--landscape:before {
	padding-bottom: 75%;
}

.grid__image-ratio--square:before {
	padding-bottom: 100%;
}

.grid__image-ratio--portrait:before {
	padding-bottom: 150%;
}

.image-fit {
	position: relative;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	font-family: "object-fit: cover";
}

.parallax-container {
	position: absolute;
	top: -30%;
	left: 0;
	height: 160%;
	width: 100%;
}

.parallax-image {
	position: absolute;
	top: -5%;
	left: 0;
	width: 100%;
	height: 150%
}

@media only screen and (min-width:590px) {

	.parallax-image {
		height: 115%
	}
}

.parallax-image img {
	display: block;
	-o-object-fit: cover;
	object-fit: cover;
	width: 100%;
	height: 100%;
}

form {
	margin: 0;
}

.form-vertical {
	margin-bottom: 20px;
}

.inline {
	display: inline;
}

@media only screen and (max-width:768px) {
	input,textarea {
		font-size: 16px;
	}
}

button,input,textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
}

button {
	background: none;
	border: none;
	display: inline-block;
	cursor: pointer;
}

fieldset {
	border: 1px solid;
	border-color: var(--colorBorder);
	padding: 20px;
}

legend {
	border: 0;
	padding: 0;
}

button,input[type=submit] {
	cursor: pointer;
}

input,select,textarea {
	border: 1px solid;
	border-color: #d8dfe5;
	max-width: 100%;
	padding: 8px 20px;
	border-radius: .5em;
	background-color: transparent;
	color: inherit
}

input:active,input:focus,select:active,select:focus,textarea:active,textarea:focus {
	border: 1px solid;
	border-color: var(--colorPrimary);
}

input.disabled,input[disabled],select.disabled,select[disabled],textarea.disabled,textarea[disabled] {
	cursor: default;
	background-color: #f6f6f6;
	border-color: #b6b6b6;
}

input.input-full,select.input-full,textarea.input-full {
	width: 100%;
	background-color: var(--colorBorder);
}

textarea {
	min-height: 100px;
}

input[type=checkbox],input[type=radio] {
	margin: 0 10px 0 0;
	padding: 0;
	width: auto;
}

input[type=checkbox] {
	-webkit-appearance: checkbox;
	-moz-appearance: checkbox;
}

input[type=radio] {
	-webkit-appearance: radio;
	-moz-appearance: radio;
}

input[type=image] {
	padding-left: 0;
	padding-right: 0;
	background-color: transparent;
}

input[type=number] {
	font-size: 16px;
}

optgroup {
	font-weight: 700;
}

option {
	color: #000;
	background-color: #fff
}

option[disabled] {
	color: #ccc;
}

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

.hidden-label {
	clip: rect(0, 0, 0, 0);
	overflow: hidden;
	position: absolute;
	height: 1px;
	width: 1px;
}

label[for] {
	cursor: pointer;
}

.form-vertical input,.form-vertical select,.form-vertical textarea {
	display: block;
	margin-bottom: 30px;
}

.form-vertical .btn,.form-vertical input[type=checkbox],.form-vertical input[type=radio] {
	display: inline-block;
}

.form-vertical .btn:not(:last-child) {
	margin-bottom: 30px;
}

small {
	display: block;
}

input.error,textarea.error {
	border-color: #d02e2e;
	background-color: #fff6f6;
	color: #d02e2e;
}

label.error {
	color: #d02e2e;
}

.selector-wrapper label {
	margin-right: 10px;
}

.selector-wrapper+.selector-wrapper {
	margin-top: 20px;
}

.input-group {
	display: flex
}

.input-group .input-group-btn:first-child,.input-group .input-group-btn:first-child>.btn,.input-group .input-group-field:first-child,.input-group input[type=hidden]:first-child+.input-group-btn>.btn,.input-group input[type=hidden]:first-child+.input-group-field {
	border-radius: 30px 0 0 30px;
}

.input-group .input-group-btn:last-child>.btn,.input-group .input-group-field:last-child {
	border-radius: 0 30px 30px 0;
}

.input-group input::-moz-focus-inner {
	border: 0;
	padding: 0;
	margin-top: -1px;
	margin-bottom: -1px;
}

.input-group-btn,.input-group-field {
	margin: 0;
}

.input-group .input-group-field {
	flex: 1 1 auto;
	min-width: 0;
}

.input-group-btn {
	flex: 0 1 auto;
	padding: 0
}

.input-group-btn .btn {
	margin-top: 0;
	height: 100%;
	background-image: none !important
}

.icon {
	display: inline-block;
	width: 20px;
	height: 20px;
	vertical-align: middle;
	fill: currentColor;
	position: relative;
	bottom: 0.1em
}

.icon-small {
	width: 14px !important;
	height: 14px !important;
}

.icon-large {
	width: 3.25em;
	height: 3.25em;
}

.icon-large line, .icon-large polyline, .icon-large circle, .icon-large path {
	stroke-width: 3px !important;
}

.no-svg .icon {
	display: none
}

.icon--full-color {
	fill: initial;
}

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

.icon-bag-minimal circle,.icon-bag-minimal ellipse,.icon-bag-minimal g,.icon-bag-minimal line,.icon-bag-minimal path,.icon-bag-minimal polygon,.icon-bag-minimal polyline,.icon-bag-minimal rect,.icon-bag circle,.icon-bag ellipse,.icon-bag g,.icon-bag line,.icon-bag path,.icon-bag polygon,.icon-bag polyline,.icon-bag rect,.icon-cart circle,.icon-cart ellipse,.icon-cart g,.icon-cart line,.icon-cart path,.icon-cart polygon,.icon-cart polyline,.icon-cart rect,.icon-chevron-down circle,.icon-chevron-down ellipse,.icon-chevron-down g,.icon-chevron-down line,.icon-chevron-down path,.icon-chevron-down polygon,.icon-chevron-down polyline,.icon-chevron-down rect,.icon-close circle,.icon-close ellipse,.icon-close g,.icon-close line,.icon-close path,.icon-close polygon,.icon-close polyline,.icon-close rect,.icon-email circle,.icon-email ellipse,.icon-email g,.icon-email line,.icon-email path,.icon-email polygon,.icon-email polyline,.icon-email rect,.icon-hamburger circle,.icon-hamburger ellipse,.icon-hamburger g,.icon-hamburger line,.icon-hamburger path,.icon-hamburger polygon,.icon-hamburger polyline,.icon-hamburger rect,.icon-search circle,.icon-search ellipse,.icon-search g,.icon-search line,.icon-search path,.icon-search polygon,.icon-search polyline,.icon-search rect,.icon-user circle,.icon-user ellipse,.icon-user g,.icon-user line,.icon-user path,.icon-user polygon,.icon-user polyline,.icon-user rect {
	fill: none !important;
	stroke-width: var(--iconWeight);
	stroke: currentColor !important;
	stroke-linecap: var(--iconLinecaps);
	stroke-linejoin: var(--iconLinecaps);
}

.icon-date line, .icon-date path {
	fill: none!important;
	stroke: currentColor!important;
	stroke-linecap: var(--iconLinecaps);
	stroke-linejoin: var(--iconLinecaps);
}

.icon__fallback-text {
	clip: rect(0, 0, 0, 0);
	overflow: hidden;
	position: absolute;
	height: 1px;
	width: 1px;
}

.js-drawer-open {
	overflow: hidden;
}

.drawer {
	display: none;
	position: fixed;
	-webkit-overflow-scrolling: touch;
	top: 0;
	bottom: 0;
	max-width: 95%;
	z-index: 30;
	color: var(--colorTextBody);
	background-color: var(--colorBody);
	transition: transform 0.25s cubic-bezier(0.43, 0.01, 0.44, 1)
}

@media screen and (max-height:400px) {
	.drawer {
		overflow: scroll
	}

	.drawer .drawer__contents {
		height: auto;
	}
}

.drawer input,.drawer textarea {
	border-color: var(--colorBorder);
}

.drawer__cart-more {
	position: absolute;
	top: 0;
	bottom: 0;
	background: var(--colorBody);
	right: 0px;
	z-index: 0;
	width: 35vw;
}

.drawer--is-open .drawer__cart-more {
	transform: translateX(-65vw);
	transition: 1.5s cubic-bezier(1,0,.6,1);
}

.drawer--right {
	width: 65vw;
	right: -65vw
}

.drawer--right.drawer--is-open {
	display: block;
	transform: translateX(-65vw);
	transition-duration: 0.4s
}

@media only screen and (min-width:590px) {
	.drawer--right {
		width: 380px;
		right: -380px
	}

	.drawer--right.drawer--is-open {
		transform: translateX(-380px);
		transition-duration: 0.5s
	}

	.drawer__cart-more {
		width: 380px;
	}

	.drawer--is-open .drawer__cart-more {
		transform: translateX(-380px);
	}
}

.js-drawer-closing .main-content:after,.js-drawer-open .main-content:after {
	content: "";
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--colorModalBg);
	opacity: 0;
	cursor: pointer;
	z-index: 26;
}

.js-drawer-open .main-content:after {
	animation: fade-in 0.5s forwards;
}

.js-drawer-closing .main-content:after {
	animation: fade-out 0.4s forwards;
}

.drawer__fixed-header,.drawer__footer,.drawer__header,.drawer__scrollable {
	padding-left: 15px;
	padding-right: 15px
}

@media only screen and (min-width:590px) {
	.drawer__fixed-header,.drawer__footer,.drawer__header,.drawer__scrollable {
		padding-left: 40px;
		padding-right: 40px
	}
}

.drawer__header {
	display: table;
	height: 70px;
	width: 100%;
	padding: 15.38462px 0;
	color: var(--colorHeroText);
	margin-bottom: 0;
}

.drawer__fixed-header {
	height: 70px;
	overflow: visible;
	background-color: var(--colorPrimary);
}

.drawer__close,.drawer__title {
	display: table-cell;
	vertical-align: middle;
}

.drawer__title {
	font-weight: var(--typeHeaderWeight);
	letter-spacing: var(--typeHeaderSpacing);
	line-height: var(--typeHeaderLineHeight);
	font-size: 24px;
	width: 100%;
}

.drawer__close {
	width: 1%;
	text-align: center;
}

.drawer__close-button {
	position: relative;
	right: -20px;
	height: 100%;
	padding: 0 15px;
	color: inherit
}

.drawer__close-button:active {
	background-color: var(--colorTextBody);
}

.drawer__close-button .icon {
	height: 23px;
	width: 23px
}

@media only screen and (min-width:590px) {

	.drawer__close-button .icon {
		height: 28px;
		width: 28px
	}
}

.drawer__contents {
	height: 100%;
	display: flex;
	flex-direction: column;
	position: absolute;
	z-index: 1;
	background: #fff;
	width: 100%;
	box-shadow: 0 -50px 100px var(--colorShadow);
}

.drawer__inner,.drawer__scrollable {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	overflow-y: hidden;
}

.drawer__scrollable {
	padding-top: 20px;
	overflow: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch
}

@media only screen and (min-width:590px) {

	.drawer__scrollable {
		padding-top: 40px
	}
}

.drawer__footer {
	padding-top: 20px;
	padding-bottom: calc(20px + env(safe-area-inset-bottom)*1.5)
}

.drawer__footer:after {
	content: "";
	position: absolute;
	top: 0;
	left: 20px;
	right: 20px;
	border-top: 1px solid;
	border-top-color: var(--colorBorder);
}

@media only screen and (min-width:590px) {

	.drawer__footer {
		padding-top: 29.62963px
	}

	.drawer__footer:after {
		left: 40px;
		right: 40px;
	}
}

.drawer__inner.is-loading .drawer__scrollable {
	transition: opacity 0.3s ease 0.7s;
	opacity: 0.4;
}

.cart-notes {
	margin-top: 10px;
	margin-bottom: 10px;
	min-height: 60px;
	height: 60px
}

@media only screen and (min-width:590px) {

	.cart-notes {
		min-height: 80px;
		height: 80px
	}
}

.ajaxcart__row>.grid {
	margin-left: -20px
}

.ajaxcart__row>.grid>.grid__item {
	padding-left: 20px;
}

.ajaxcart__product {
	position: relative;
	max-height: 500px
}

.ajaxcart__product.is-removed {
	max-height: 0;
	overflow: hidden;
	visibility: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transition: all 450ms cubic-bezier(0.57,.06,.05,.95);
}

.ajaxcart__row {
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid;
	border-bottom-color: var(--colorBorder)
}

@media only screen and (min-width:590px) {

	.ajaxcart__row {
		padding-bottom: 29.62963px;
		margin-bottom: 29.62963px
	}
}

.ajaxcart__product:last-child .ajaxcart__row {
	border-bottom: 0 none;
	padding-bottom: 0;
}

.ajaxcart__product-image {
	display: block;
	overflow: hidden;
	padding-top: 3px
}

.ajaxcart__product-image img {
	display: block;
	margin: 0 auto;
	max-width: 100%;
}

.ajaxcart__product-name {
	display: block;
}

.ajaxcart__product-name--wrapper {
	margin-bottom: 11px;
}

.ajaxcart__product-meta {
	padding-top: 8px;
}

.placeholder-svg {
	background-color: #f4f4f4;
	width: 100%;
	height: 100%;
	display: block;
	padding: 30px 0;
}

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

.placeholder-content {
	overflow: hidden;
	background-size: 400% 100%;
}

@media only screen and (max-width:589px) {

	.placeholder-content {
		margin-left: auto;
		margin-right: auto
	}
}

.animation-cropper {
	overflow: hidden;
	display: inline-flex;
}

.appear-delay-20 {
	transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1) 1.3s,opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1) 1.4s;
}

.appear-delay-19 {
	transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1) 1.24s,opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1) 1.34s;
}

.appear-delay-18 {
	transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1) 1.18s,opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1) 1.28s;
}

.appear-delay-17 {
	transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1) 1.12s,opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1) 1.22s;
}

.appear-delay-16 {
	transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1) 1.06s,opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1) 1.16s;
}

.appear-delay-15 {
	transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1) 1s,opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1) 1.1s;
}

.appear-delay-14 {
	transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.94s,opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1) 1.04s;
}

.appear-delay-13 {
	transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.88s,opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.98s;
}

.appear-delay-12 {
	transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.82s,opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.92s;
}

.appear-delay-11 {
	transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.76s,opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.86s;
}

.appear-delay-10 {
	transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.7s,opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s;
}

.appear-delay-9 {
	transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.64s,opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.74s;
}

.appear-delay-8 {
	transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.58s,opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.68s;
}

.appear-delay-7 {
	transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.52s,opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.62s;
}

.appear-delay-6 {
	transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.46s,opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.56s;
}

.appear-delay-5 {
	transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.4s,opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s;
}

.appear-delay-4 {
	transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.34s,opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.44s;
}

.appear-delay-3 {
	transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.28s,opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.38s;
}

.appear-delay-2 {
	transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.22s,opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.32s;
}

.appear-delay-1 {
	transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.1s,opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
}

[data-aos=classic__animation] {
	transform: translatey(200px);
	transition-delay: 2s;
	transition: transform 1s cubic-bezier(.25,.46,.45,.94)
}

[data-aos=classic__animation].aos-animate {
	transform: translatey(0);
}

.transition-body {
	opacity: 0
}

.no-js .transition-body {
	opacity: 1
}

.loaded .transition-body {
	animation: fade-in 0.8s ease forwards;
}

.unloading .transition-body {
	animation: fade-out 0.3s ease forwards;
}

.image-wrap img:not([role=presentation]) {
	display: block
}

.no-js .image-wrap img:not([role=presentation]).lazyload {
	display: none
}

.image-wrap .animate-me,.image-wrap .grid__image-ratio,.image-wrap img:not([role=presentation]),.image-wrap svg {
	opacity: 0
}

.no-js .image-wrap .animate-me,.no-js .image-wrap .grid__image-ratio,.no-js .image-wrap img:not([role=presentation]),.no-js .image-wrap svg {
	opacity: 1
}

.aos-animate.image-wrap .animate-me,.aos-animate .image-wrap .animate-me,.aos-animate.image-wrap .grid__image-ratio,.aos-animate .image-wrap .grid__image-ratio,.aos-animate.image-wrap .lazyloaded:not([role=presentation]),.aos-animate .image-wrap .lazyloaded:not([role=presentation]),.aos-animate.image-wrap img[data-modal-lazy],.aos-animate .image-wrap img[data-modal-lazy],.aos-animate.image-wrap svg,.aos-animate .image-wrap svg {
	animation: 0.5s cubic-bezier(0.26, 0.54, 0.32, 1) 0s forwards;
	animation-name: zoom-fade;
}

.aos-animate .image-wrap--large .animate-me,.aos-animate .image-wrap--large .grid__image-ratio,.aos-animate .image-wrap--large .lazyloaded:not([role=presentation]),.aos-animate .image-wrap--large img[data-modal-lazy],.aos-animate .image-wrap--large svg {
	animation-name: zoom-fade;
}

.grid-product {
	padding: 30px;
	border: 0 solid var(--colorBorder);
	border-right-width: 1px;
	border-bottom-width: 1px;
	overflow: hidden;
}

.loading:after,.loading:before {
	content: "";
	position: absolute;
	width: 100px;
	height: 3px;
	background: var(--colorBody);
	left: 50%;
	top: 50%;
	margin: -1px 0 0 -50px;
	z-index: 25;
	opacity: 0
}

.no-js .loading:after,.no-js .loading:before {
	display: none
}

.loading:before {
	background: var(--colorBody);
	opacity: 0.15;
}

.loading:after {
	opacity: 0;
	animation: preloading 0.5s ease 0.3s infinite;
}

.loading--delayed:before {
	animation-delay: 0.8s !important;
	animation-duration: 1s !important;
}

.loading--delayed:after {
	animation-delay: 1.3s !important;
}

.appear-animation {
	opacity: 0;
	transform: translateY(40px)
}

@media only screen and (min-width:590px) {

	.appear-animation {
		transform: translateY(60px)
	}
}

.js-drawer-open .appear-animation {
	opacity: 1;
	transform: translateY(0px);
}

.js-drawer-closing .appear-animation {
	transition-duration: 0s;
	transition-delay: 0.5s;
}

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

.grid-content__item {
	display: flex;
	flex-wrap: wrap;
}

.grid-content__items:first-child {
	margin-top: 0;
}

.grid-content__items {
	position: relative;
	flex: 1 1 31%;
	padding: 30px;
	margin-left: 30px;
	border: 2px solid var(--colorBorder);
	background-color: #f9fbfc;
	border-radius: .5em;
	margin-bottom: 30px
}

@media only screen and (max-width:589px) {
	.grid-content__items {
		flex: 1 1 100%;
	}
}

.product-payment {
	display: flex;
	align-items: center;
	color: var(--colorSecond);
}

.product-payment__item {
	padding-right: 20px;
}

.product-payment__item-right {
	padding-left: 20px;
	border: 0 solid rgba(28, 29, 29, 0.12);
	border-left-width: 1px;
	align-self: stretch;
}

@media only screen and (min-width:1024px) {
	.product-payment__item {
		padding-right: 40px;
	}

	.product-payment__item-right {
		padding-left: 40px;
	}
}

.product-discount {
	display: flex;
	color: var(--colorSecond);
	align-items: center;
	border-radius: 0.5em;
	max-width: 440px;
	background-color: var(--colorBody);
	overflow: hidden;
}

.product-discount__icon {
	padding: 15px;
	background-color: var(--colorPrimary);
	line-height: 0;
	box-shadow: 10px 0 30px rgba(225,75,25,0.3);
}

.product-discount__item {
	padding-left: 20px;
}

.pack_item {
	display: block;
}

.pack_title {
	color: var(--colorTitle);
	line-height: 1.2;
	font-weight: 700;
}
.footer-content-logo{
  padding-left: 22px;
}
.footer-content-logo img{
    margin-top: 15px;
    margin-bottom: 10px;
}

.footer-promotions .text-left .rte-setting {
	padding-right: 30px;
}

@media only screen and (max-width:589px) {
	.footer-promotions .text-spacing {
		margin-bottom: 10px;
	}

	.footer-promotions .grid__item {
		margin-bottom: 32px;
	}
}

#shopify-section-footer-promotions .index-section {
	margin-top: 0;
}

.site-footer {
	background-color: var(--colorFooter);
	color: var(--colorFooterText)
}

@media only screen and (min-width:590px) {

	.site-footer {
		padding-top: 0;
	}
}

.footer__collapsible {
	color: var(--colorFooterText);
}

.site-footer input {
	background-color: var(--colorFooter);
	color: var(--colorFooterText);
	border: 1px solid;
	border-color: var(--colorSecond);
	border-right-width: 0;
}

.site-footer input:active,.site-footer input:focus {
	border-color: var(--colorPrimary);
}

select {
	appearance: none;
	background-position: 100%;
	background-image: url(//cdn.shopifycdn.net/s/files/1/0548/8993/9014/t/22/assets/ico-select.svg);
	background-repeat:no-repeat;
    background-position:right 10px center;
    background-size:11px
}

@media only screen and (max-width:589px) {

.site-footer {
	padding-top: 0px
}

.site-footer .grid__item:after {
	content: "";
	border-bottom: 1px solid;
	border-color: var(--colorSecond);
	opacity: 0.12;
	display: block;
}

.site-footer .grid__item:first-child:after,.site-footer .grid__item:last-child:after {
	display: none;
}
}

.site-footer a {
	color: var(--colorFooterText);
}

.site-footer a:hover {
	color: var(--colorFooterText);
}

.site-footer__bottom {
	padding-top: 15px;
	padding-bottom: 15px;
	color: var(--colorFooterText);
	background-color: #fff;
    border-top: 1px solid #e8e8e8;
}

@media only screen and (max-width:589px) {

	.site-footer__bottom-block {
		margin: 0 auto;
		text-align: center
	}
}

.footer__clear {
	clear: both;
	height: 80px;
}

.footer__title {
	font-weight: var(--typeHeaderWeight);
	color: var(--colorFooterText);
	font-size: calc(var(--typeHeaderSize)*0.4)
}

@media only screen and (min-width:590px) {

	.footer__title {
		margin-bottom: 20px;
		font-size: calc(var(--typeHeaderSize)*0.5)
	}
}

.footer__copyright {
	font-size: 10px;
	text-align: center
}

@media only screen and (min-width:590px) {

	.footer__copyright {
		font-size: 12px;
        margin: 0 auto;
	}
}

.footer__copyright>span {
	display: inline-block;
	padding-left: 10px;
color: var(--colorFooterText);
}

.site-footer__linklist {
	margin: 0
}

.site-footer__linklist a {
	display: block;
	padding: 4px 0
}

.copyright-bottom-link {
	padding: 0 10px;
	border: 0 solid var(--colorSecond);
	border-right-width: 1px
}

.copyright-bottom-link:last-child {
	border-right-width: 0
}

@media only screen and (max-width:589px) {
	.footer__copyright>span {
		padding: 5px 0
	}

	.grid-newsletter .collapsible-trigger-btn {
		padding-top: 30px;
		padding-bottom: 0
	}

	.grid-newsletter .collapsible-trigger__icon {
		display: none
	}

	.grid-newsletter .collapsible-content {
		height: auto
	}
}

.footer__newsletter {
	position: relative
}

.footer__newsletter-input {
	max-width: 300px;
	width: 100%;
	padding-left: 45px;
	border: 1px solid;
	border-color: var(--colorShadow)
}

.footer__newsletter-btn {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 46px;
	color: var(--colorFooterText)
}

.footer__newsletter-btn .icon {
	width: 26px;
	height: 24px
}

.footer__logo-social {
	display: flex;
	align-items: center;
	padding: 20px 0
}

@media only screen and (min-width:590px) {

	.footer__logo {
		margin-bottom: 26.66667px
	}
}

.footer__logo a {
	display: block;
}

.footer__logo img {
	display: block;
	transform: translateZ(0);
	max-height: 100%;
}

.footer__social {
	margin: 0
}

.footer__social li {
	display: inline-block;
	margin: 0 25px 15px 0
}

.footer__social a {
	display: block;
}

.footer__social .icon {
	width: 22px;
	height: 22px;
  fill: #f9d60d;
}

@media only screen and (min-width:590px) {

	.footer__social .icon {
		width: 24px;
		height: 24px
	}
}

.footer__social .icon.icon--wide {
	width: 40px;
}

@media only screen and (max-width:589px) {

	.footer__collapsible {
		padding: 0 0 20px 0
	}
}

@media only screen and (max-width:589px) {

	.footer_collapsible--disabled {
		padding-top: 20px
	}
}

.collapsible-content p a:after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	border-bottom: 2px solid;
	border-bottom-color: var(--colorFooterText);
	transform: scale(0);
	transform-origin: 0 50%;
	transition: transform 0.5s ease;
}

.collapsible-content p a {
	position: relative;
	text-decoration: none;
	border-bottom: 2px solid;
	border-bottom-color: rgba(255 ,255 ,255 ,0.2); /* --colorShadow */
}

.collapsible-content p a:focus:after, .collapsible-content p a:hover:after {
	transform: scale(1);
}

.multi-selectors {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.multi-selectors__item {
	margin: 0 10px;
}

.hero__product-wrap {
	display: flex;
	justify-content: center;
	align-items: center
}

.hero__product-wrap__item {
	margin: 0 10px;
}

.payment-icons {
	-webkit-user-select: none;
	user-select: none;
	cursor: default
}

.payment-icons li {
	cursor: default;
	margin: 0 4px 0;
	padding-top: 4px;
}

.payment-icons--greyscale {
	filter: grayscale(1);
}

.errors,.note {
	border-radius: 0;
	padding: 6px 12px;
	margin-bottom: 20px;
	border: 1px solid transparent;
	text-align: left
}

.errors ol,.errors ul,.note ol,.note ul {
	margin-top: 0;
	margin-bottom: 0;
}

.errors li:last-child,.note li:last-child {
	margin-bottom: 0;
}

.errors p,.note p {
	margin-bottom: 0;
}

.note {
	border-color: var(--colorBorder);
}

.errors ul {
	list-style: disc outside;
	margin-left: 20px;
}

.note--success {
	color: #56ad6a;
	background-color: #ecfef0;
	border-color: #56ad6a;
	border-radius: .5em;
}

.note--success a {
	color: #56ad6a;
	text-decoration: underline
}

.note--success a:hover {
	text-decoration: none;
}

.errors,.form-error {
	color: #d02e2e;
	background-color: #fff6f6;
	border-color: #d02e2e;
	border-radius: .5em;
}

.errors a,.form-error a {
	color: #d02e2e;
	text-decoration: underline
}

.errors a:hover,.form-error a:hover {
	text-decoration: none;
}

.pagination {
	font-weight: var(--typeBaseWeight);
	letter-spacing: var(--typeBaseSpacing);
	line-height: var(--typeBaseLineHeight);
	margin: 0;
	padding: 80px 0 0;
	text-align: center;
	font-size: 15px
}

@media only screen and (max-width:589px) {

	.pagination {
		font-size: 14px
	}
}

.pagination>span {
	display: inline-block;
	line-height: 1;
}

.pagination a {
	display: inline-block;
}

.pagination .page.current,.pagination a {
	padding: 8px 12px;
}

.pagination .page.current {
	color: var(--colorBody);
	background-color: var(--colorPrimary);
	border: 2px solid var(--colorPrimary);
	border-radius: .5em;
}

.pagination .page.num {
	border: 2px solid var(--colorBorder);
	border-radius: .5em;
	margin: 0 2px;
}

.pagination .next,.pagination .prev {
	width: 43px;
	height: 43px;
	line-height: 27px;
	border-radius: 43px;
	margin: 0;
	transition: transform 0.05s ease-out
}

@media only screen and (max-width:589px) {

	.pagination .next,.pagination .prev {
		width: 35px;
		height: 35px;
		line-height: 19px
	}
}

.pagination .next .icon,.pagination .prev .icon {
	width: 13px;
	height: 13px
}

@media only screen and (max-width:589px) {

	.pagination .next .icon,.pagination .prev .icon {
		width: 12px;
		height: 12px
	}
}

.rte:after {
	content: "";
	display: table;
	clear: both;
}

.rte+.rte {
	margin-top: 40px;
}

.rte img {
	height: auto;
}
img{
  vertical-align: middle;
}
.rte ol,.rte p,.rte table,.rte ul {
	margin-bottom: 25px;
}

.rte ul ul {
	margin-bottom: 0;
}

/*
.rte a:not(.rte__image):not(.btn) {
	text-decoration: none;
	border-bottom: 1px solid;
	border-bottom-color: var(--colorShadow);
	position: relative;
}

.rte a:not(.btn):focus:after, .rte a:not(.btn):hover:after {
	content: "";
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	border-bottom: 1px solid currentColor;
	transition: transform 0.5s ease;
}
*/

.rte a.rte__image:after {
	content: none;
}

.rte h1,.rte h2,.rte h3,.rte h4,.rte h5,.rte h6 {
	margin-top: 2em;
	margin-bottom: 1em;
}

.rte h1:first-child,.rte h2:first-child,.rte h3:first-child,.rte h4:first-child,.rte h5:first-child,.rte h6:first-child {
	margin-top: 0;
}

.rte h1 a,.rte h2 a,.rte h3 a,.rte h4 a,.rte h5 a,.rte h6 a {
	text-decoration: none;
}

.rte meta:first-child+h1,.rte meta:first-child+h2,.rte meta:first-child+h3,.rte meta:first-child+h4,.rte meta:first-child+h5,.rte meta:first-child+h6 {
	margin-top: 0;
}

.rte>div {
	margin-bottom: 20px;
}

.rte li {
	margin-bottom: 15px;
}

.rte>p:last-child {
	margin-bottom: 0;
}

.rte table {
	table-layout: fixed;
}

.rte--block {
	margin-bottom: 20px;
}

.rte-setting>p:last-child {
	margin-bottom: 0;
}

.text-center.rte ol,.text-center .rte ol,.text-center.rte ul,.text-center .rte ul {
	list-style-position: inside;
	margin-left: 0;
}

.rte--nomargin {
	margin-bottom: 0;
}

.rte--indented-images p[style] img {
	display: inline;
	margin: 0;
	max-width: 100%;
}

.topbar {
	display: flex;
	margin: 0;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid rgba(185,215,220,.3)
}

.topbar-content, .topbar-content-item {
	display: inline-block;
	margin: 0;
}

.topbar__link {
	display: block;
	font-size: 0.825em;
	padding: 12px 14px;
}

.topbar-item {
	margin-left: 10px;
}

.topbar-first__link {
	padding-left: 0
}

.topbar-last__link {
	padding-right: 0
}

.topbar__dropdown {
	position: absolute;
	left: -150px;
	top: 42px;
	z-index: 5;
	display: block;
	width: 320px;
	visibility: hidden;
	border-radius: .5em;
	background-color: var(--colorBorder);
	padding: 20px;
	transform: translateY(30px);
}

.topbar__dropdown::before {
	top: -46px;
	left: 60%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-bottom-color: var(--colorBorder);
	transform: translateY(30px);
	border-width: 8px;
	margin-left: -8px;
}

.topban__link--has-dropdown {
	position: relative;
}

.topban__link--has-dropdown:hover .topbar__dropdown {
	visibility: initial;
	transform: translateY(0);
	transition: opacity 0.5s ease,transform 0.5s cubic-bezier(0.2, 0.06, 0.05, 0.95)
}

.topbar__dropdown-item {
	display: block;
	color: var(--colorTextBody);
	padding: 10px 0;
	border-bottom: 1px solid rgba(185,215,220,.3);
    font-size: 15px;
}

.is-light .topbar__link, .is-light .topbar__link:hover {
	color:  #222; /* var(--colorBody); */
}

.header-layout {
	display: flex;
	justify-content: space-between;
	align-items: center;
  flex-wrap: nowrap;
}

.header-item {
	display: flex;
	align-items: center;
	flex: 1 1 auto;
}

.header-item--logo {
	flex: 0 0 auto;
}

.header-item--icons {
	justify-content: flex-end;
	flex: 0 1 auto;
}

.header-layout--left-center .header-item--icons,.header-layout--left-center .header-item--logo {
	flex: 0 0 200px;
	max-width: 50%
}

@media only screen and (min-width:590px) {

	.header-layout--left-center .header-item--icons,.header-layout--left-center .header-item--logo {
		min-width: 130px
	}

	.header-item--logo-split {
		display: flex;
		justify-content: center;
		align-items: center;
		flex: 1 1 100%
	}  
}

.header-item--logo-split .header-item:not(.header-item--logo) {
	text-align: center;
	flex: 1 1 20%;
}

.header-item--split-left {
	justify-content: flex-end;
}

.header-item--left .site-nav {
	margin-left: -12px
}

@media only screen and (max-width:589px) {

	.header-item--left .site-nav {
		margin-left: -10px
	}
}

.header-item--icons .site-nav {
	margin-right: -12px
}

.site-header {
	position: relative;
	padding: 5px 0;
	background: var(--colorBody)
}

.site-header--stuck {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	transform: translate3d(0, -100%, 0);
	transition: none;
	z-index: 20
}

.js-drawer-open--search .site-header--stuck {
	z-index: 28
}

.site-header--opening {
	transform: translateZ(0);
	transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.site-header__logo {
	margin: 13.33333px 0;
	display: block
}

.site-header__logo a,.site-header__logo a:hover {
	text-decoration: none;
}

.site-header__logo img {
	display: block
}

.site-header__logo-link {
	display: flex;
	align-items: center;
	color: var(--colorTextBody)
}

.site-header__logo-link:hover {
	color: var(--colorTextBody);
}

@media only screen and (max-width:589px) {

	.site-header__logo-link {
		margin: 0 auto
	}
}

.header-wrapper--overlay {
	/* position:  absolute; */
	top: 0;
	left: 0;
	right: 0;
	z-index: 6;
	background: #fff;
	/* background: linear-gradient(180deg, rgba(35,45,70, 0.85) 0%,transparent); */
}

.header-wrapper--overlay .site-header:not(.site-header--stuck) {
	background: none;
}

.js-drawer-open--search .header-wrapper--overlay {
	z-index: 28
}

.site-header__search-container {
	visibility: hidden;
	position: absolute;
	left: 0;
	right: 0;
	top: 37px;
	height: 60%;
	z-index: 28;
	transition: visibility 0.3s cubic-bezier(0, 0, 0.38, 1)
}

.site-header__search-container.is-active {
	visibility: visible;
}

.site-header__search {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 28;
	display: flex;
	transform: translate3d(0, -110%, 0);
	background-color: var(--colorBody);
	color: var(--colorTextBody);
	transition: transform 0.3s cubic-bezier(0, 0, 0.38, 1)
}

.site-header__search .page-width {
	flex: 1 1 100%;
	display: flex;
	align-items: stretch
}

@media only screen and (max-width:589px) {
	.site-header__search .page-width {
		padding: 0
	}
}

.is-active .site-header__search {
	transform: translateZ(0)
}

.site-header__search .icon {
	width: 30px;
	height: 30px
}

@media only screen and (max-width:589px) {

	.site-header__search .icon {
		width: 27px;
		height: 27px
	}
}

.site-header__search-form {
	flex: 1 1 auto;
	display: flex;
}

.site-header__search-input {
	border: 0;
	width: 100px;
	flex: 1 1 auto;
	font-size: 20px
}

@media only screen and (min-width:590px) {

	.site-header__search-input {
		font-size: 24px
	}
}

.site-header__search-input:focus {
	border: 0;
	outline: 0;
}

.site-header__search-btn {
	padding: 0 10px 0 20px;
}

.predictive-results {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background-color: var(--colorBody);
	color: var(--colorTextBody);
	max-height: 70vh;
	max-height: calc(88vh - 100%);
	overflow: auto;
	margin-top: -1px;
	z-index: 28
}

@media only screen and (min-width:590px) {

	.predictive-results {
		padding-top: 20px;
		max-height: calc(100vh - 100% - 30px)
	}
}

.js-drawer-closing .predictive-results {
	opacity: 0;
	transition: opacity 0.1s ease-in
}

.predictive__label {
	border-bottom: 1px solid;
	border-bottom-color: var(--colorBorder);
	padding-bottom: 5px;
	margin-bottom: 20px;
}

.predictive-result__layout>div {
	margin-bottom: 40px
}

.predictive-result__layout>div:last-child {
	margin-bottom: 0;
}

.predictive-result__layout .grid__item {
	margin-bottom: 20px;
	opacity: 0;
	animation: fade-in 0.5s ease forwards
}

.predictive-result__layout .grid__item:last-child {
	margin-bottom: 0;
}

.predictive-result__layout .grid__item:nth-child(2) {
	animation-delay: 150ms;
}

.predictive-result__layout .grid__item:nth-child(3) {
	animation-delay: 300ms;
}

.predictive-result__layout .grid__item:nth-child(4) {
	animation-delay: 450ms;
}

.predictive-result__layout .grid__item:nth-child(5) {
	animation-delay: 600ms;
}

.predictive-result__layout .grid__item:nth-child(6) {
	animation-delay: 750ms;
}

.predictive-result__layout .grid__item:nth-child(8) {
	animation-delay: 900ms;
}

.predictive__result {
	display: flex;
	align-items: center;
}

.predictive__result-image {
	flex: 0 1 60px;
	width: 60px;
	height: 60px;
	margin-right: 20px
}

@media only screen and (min-width:590px) {

	.predictive__result-image {
		flex: 0 1 100px;
		width: 100px;
		height: 100px
	}
}

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

.predictive-results__footer {
	padding: 30px 0 30px
}

@media only screen and (min-width:590px) {

	.predictive-results__footer {
		padding: 20px 0 40px
	}
}

.search-bar {
	max-width: 100%;
}

.search-bar--page {
	max-width: 460px;
	margin-top: -20px;
}

.search-bar--drawer {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid;
	border-bottom-color: var(--colorBorder)
}

.search-bar--drawer input {
	border: 0;
}

.search-bar .icon {
	width: 24px;
	height: 24px;
	vertical-align: middle;
}

.support-search-bar {
	max-width: 720px;
	margin: 0 auto;
	padding-bottom: 100px;
}

@media only screen and (max-width:589px) {
	.support-search-bar {
		padding-bottom: 70px;
	}
}

.input-support {
	font-size: 1.25em;
	background-color: var(--colorBody);
	color: var(--colorInputText);
	border-color: var(--colorBody);
}

.section-header {
	margin-bottom: 30px
}

@media only screen and (min-width:590px) {

	.section-header {
		margin-bottom: 50px
	}
}

.section-header--hero {
	position: relative;
	flex: 1 1 100%;
	color: var(--colorHeroText);
	margin-bottom: 20px
}

@media only screen and (min-width:590px) {

	.section-header--hero {
		margin-bottom: 40px
	}
}

.section-header__rte {
	margin-top: 20px;
}

@media only screen and (min-width:590px) {

	.section-header__title {
		font-size: 2.75em
	}
}

.section-header__info {
	color: var(--colorSecond);
	border-left: 4px solid var(--colorPrimary);
	padding-left: 8px;
	margin-top: 10px;
	line-height: 1.3;
}

.section-content {
	padding: 36px;
}

.section-content__info {
	color: var(--colorSecond);
	border-left: 2px solid rgba(225,95,25,0.5);
	padding-left: 10px;
}

.section-header__link {
	font-weight: 400;
	font-size: var(--typeBaseSize);
	background: var(--colorBorder);
	padding: 8px 16px;
	border-radius: 0.5em;
	float: right;
}

.section-top__tags {
	display: table;
	font-size: var(--typeBaseSize);
	background: var(--colorBorder);
	padding: 8px 16px;
	border-radius: 0.5em;
	margin-bottom: 10px;
}

.section-header__link:hover {
	color: var(--colorPrimary)
}

@media only screen and (max-width:589px) {

	.section-header__link {
		float: none;
		display: table;
		margin: 5px 0;
	}
}

.section-header--404 {
	margin-bottom: 0;
	padding: 80px 0;
}

.section-header select {
	margin-left: 20px;
}
@media only screen and (max-width: 789px){
  .section-header select {
  	margin-left: 0px;
  }
}

.site-nav {
	margin: 0;
}

.text-center .site-navigation {
	margin: 0 auto
}

.header-layout--left .site-navigation {
	padding-left: 13.33333px
}

.site-nav--icons {
	display: flex;
	align-items: center;
	white-space: nowrap;
	font-size: 0;
}

.site-nav__item {
	display: inline-block;
	margin: 0
}

.site-nav__item li {
	display: block;
}

.site-nav__item .icon-chevron-down {
	width: 10px;
	height: 10px;
}

.site-nav__link {
	display: inline-block;
	vertical-align: middle;
	text-decoration: none;
	padding: 15px 20px;
	white-space: nowrap;
	color: var(--colorTitle);
	font-weight: 500;
}

.site-nav__link:hover {
	color: var(--colorNavText);
}

.site-nav__link:hover .icon-chevron-down {
	transform: rotate(180deg);
	transition: transform .3s;
}

.is-light .site-nav__link {
	color: #222;
}

.is-light .site-nav__link:hover {
	color: #222;
}

.site-nav--has-dropdown>.site-nav__link {
	position: relative;
	z-index: 6;
}

.site-nav__link .icon-chevron-down {
	margin-left: 5px;
}

@media only screen and (max-width:768px) {

	.site-nav__link {
		padding: 10px
	}
}

.site-nav--has-dropdown {
	z-index: 6
}

.site-nav--has-dropdown.is-focused,.site-nav--has-dropdown:hover {
	z-index: 7;
}

.site-nav--has-dropdown.is-focused>a,.site-nav--has-dropdown:hover>a {
	color: var(--colorPrimary) !important;
}

.site-nav--has-dropdown.is-focused>a:before,.site-nav--has-dropdown>a:before {
	bottom: -1px;
	left: 50%;
	border: solid transparent;
	visibility: hidden;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-bottom-color: var(--colorHeroText);
	border-width: 10px;
	margin-left: -10px;
}

.site-nav--has-dropdown.is-focused>a:before,.site-nav--has-dropdown:hover>a:before {
	visibility: visible;
}

.site-nav__link--icon {
	font-size: 0;
	padding-left: 12px;
	padding-right: 12px
}

@media only screen and (max-width:589px) {

	.site-nav__link--icon {
		padding-left: 10px;
		padding-right: 10px
	}

	.site-nav__link--icon+.site-nav__link--icon {
		margin-left: -3px;
	}
}

.site-nav__link--icon .icon {
	width: 30px;
	height: 30px
}

@media only screen and (max-width:589px) {

	.site-nav__link--icon .icon {
		width: 27px;
		height: 27px
	}
}

.site-nav__dropdown {
	position: absolute;
	left: 0;
	right: 0;
	min-width: 100%;
	z-index: 5;
	display: block;
	visibility: hidden;
	background-color: var(--colorPrimary);
	border-radius: 0 0 1em 1em;
	box-shadow: 0 calc(100vh - 500px) 0 calc(100vh - 500px) var(--colorModalBg);
}

.site-nav__dropdown-content {
	padding: 60px 0;
	background-color: var(--colorBody);
	border-radius: 0 0 1em 1em;
	box-shadow: 0 20px 20px -10px var(--colorShadow);
}
.heightAuto{
    min-height: 360px;
}

.is-focused>.site-nav__dropdown,.site-nav--has-dropdown:hover .site-nav__dropdown {
	visibility: visible;
}

.is-focused>.site-nav__dropdown li,.site-nav--has-dropdown:hover .site-nav__dropdown li {
	opacity: 1;
	transform: translateY(0);
	transition: opacity 0.5s ease,transform 0.5s cubic-bezier(0.2, 0.06, 0.05, 0.95)
}

.is-focused>.site-nav__dropdown li:first-child,.site-nav--has-dropdown:hover .site-nav__dropdown li:first-child {
	transition-delay: 50ms;
}

.is-focused>.site-nav__dropdown li:nth-child(2),.site-nav--has-dropdown:hover .site-nav__dropdown li:nth-child(2) {
	transition-delay: 100ms;
}

.is-focused>.site-nav__dropdown li:nth-child(3),.site-nav--has-dropdown:hover .site-nav__dropdown li:nth-child(3) {
	transition-delay: 150ms;
}

.is-focused>.site-nav__dropdown li:nth-child(4),.site-nav--has-dropdown:hover .site-nav__dropdown li:nth-child(4) {
	transition-delay: 200ms;
}

.is-focused>.site-nav__dropdown li:nth-child(5),.site-nav--has-dropdown:hover .site-nav__dropdown li:nth-child(5) {
	transition-delay: 250ms;
}

.site-nav__dropdown li {
	margin: 0;
	opacity: 0;
	transform: translateY(-15px);
	transition: none;
}

.site-nav__dropdown>li {
	position: relative
}

.site-nav__dropdown>li>a {
	position: relative;
	z-index: 6;
}

.dropdown-bottom {
	padding: 15px 0;
}

.dropdown-bottom__item {
	padding: 0 10px;
	border-right: 1px solid rgba(255,255,225,0.5);
}

.dropdown-child__link {
	color: #f3d24c;  /* var(--colorBody); */
	padding: 8px 20px;
}

.dropdown-child__link:hover {
	background-color: var(--colorHeroText);
	color: var(--colorPrimary);
	border-radius: .5em;
	transition: background 0.35s;
}

.dropdown-bottom__item:last-child {
	border-right-width: 0;
}

.mobile-nav {
	margin: -20px -20px 0 -20px
}

.mobile-nav li {
	margin-bottom: 0;
	list-style: none;
}

.mobile-nav__search {
	padding: 20px;
}

.mobile-nav__item {
	position: relative;
	display: block;
	width: 100%;
	overflow: hidden
}

.mobile-nav>.mobile-nav__item {
	background-color: var(--colorBody)
}

.mobile-nav__item:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 20px;
	right: 20px;
	border-bottom: 1px solid;
	border-bottom-color: var(--colorBorder);
}

.mobile-nav>.mobile-nav__item:last-child:after {
	display: none
}

.mobile-nav__item .mobile-nav__faux-link,.mobile-nav__item a {
	display: block;
	font-size: 19px
}

@media only screen and (min-width:590px) {

	.mobile-nav__item .mobile-nav__faux-link,.mobile-nav__item a {
		font-size: 24px
	}
}

.mobile-nav__item .mobile-nav__faux-link,.mobile-nav__item a,.mobile-nav__toggle button {
	color: var(--colorTextBody);
	padding: 15px 20px;
	text-decoration: none
}

.mobile-nav__item .mobile-nav__faux-link:active,.mobile-nav__item a:active,.mobile-nav__toggle button:active {
	color: var(--colorTextBody);
}

.mobile-nav__item .mobile-nav__faux-link:active,.mobile-nav__item a:active,.mobile-nav__toggle button:active {
	background-color: var(--colorBody);
}

.mobile-nav__child-item {
	display: flex;
}

.mobile-nav__item--secondary a {
	font-size: 15px;
	line-height: 1.2;
	padding-top: 10px;
	padding-bottom: 5px;
}

.mobile-nav__item--secondary:after {
	display: none;
}

.mobile-nav__spacer {
	height: 0;
	padding: 5px;
}

.mobile-nav__has-sublist {
	position: relative;
	display: table;
	width: 100%
}

.mobile-nav__has-sublist .mobile-nav__link {
	display: table-cell;
	vertical-align: middle;
	width: 100%;
}

.mobile-nav__link--button {
	width: 100%;
	text-align: left;
	padding: 0;
}

.mobile-nav__link--button-small {
	width: auto
}

.mobile-nav__link--button-small .collapsible-trigger__icon {
	right: -10px;
}

.mobile-nav__toggle {
	display: table-cell;
	vertical-align: middle;
	width: 1%
}

.mobile-nav__toggle .icon {
	width: 16px;
	height: 16px;
}

.mobile-nav__sublist {
	margin: 0
}

.mobile-nav__sublist .mobile-nav__item:after {
	top: 0;
	bottom: auto;
	border-bottom: none;
}

.mobile-nav__sublist .mobile-nav__item:last-child {
	padding-bottom: 20px;
}

.mobile-nav__sublist .mobile-nav__faux-link,.mobile-nav__sublist .mobile-nav__link {
	font-weight: var(--typeBaseWeight);
	letter-spacing: var(--typeBaseSpacing);
	line-height: var(--typeBaseLineHeight);
	font-weight: 400;
	padding: 10px 25px 10px 40px;
	font-size: var(--typeBaseSize);
}

.mobile-nav__grandchildlist {
	margin: 0
}

.mobile-nav__grandchildlist .mobile-nav__item:last-child {
	padding-bottom: 0;
}

.mobile-nav__grandchildlist .mobile-nav__link {
	padding-left: 60px;
}

.mobile-nav__social {
	margin: 10px 0 15px -5px
}

.mobile-nav__social li {
	margin-right: 7px;
	display: inline-block;
}

.mobile-nav__social a {
	padding: 10px 5px;
}

.mobile-nav__social .icon {
	width: 24px;
	height: 24px;
}

@media only screen and (min-width:590px) {
	.site-nav__link--icon .icon {
		width: 28px;
		height: 28px;
	}
}

.cart-link {
	position: relative;
	padding: 10px 16px 10px 16px;
	border-radius: .5em;
	background-color: var(--colorPrimary);
	color: var(--colorBody);
}

@media only screen and (max-width:589px) {
	.cart-link {
		padding: 8px 16px 8px 16px;
	}
}

.cart-link__bubble {
	display: block;
	position: absolute;
	top: calc( 50% - 10px );
	right: 12px;
	width: 20px;
	height: 20px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--colorPrimary);
	background-color: var(--colorBody);
	border-radius: 50%;
}

.breadcrumb {
	font-size: 13px;
	margin-bottom: 40px
}

.product-single__meta .breadcrumb {
	margin-bottom: 10px;
}

@media only screen and (max-width:589px) {

	.breadcrumb {
		font-size: 11px;
		margin-bottom: 20px
	}
}

.breadcrumb__divider {
	color: currentColor;
}

.modal {
	display: none;
	bottom: 0;
	left: 0;
	opacity: 1;
	overflow: hidden;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 25;
	color: #fff;
	align-items: center;
	justify-content: center
}

.modal a,.modal a:hover {
	color: inherit;
}

.modal.modal--quick-shop {
	align-items: flex-start;
}

.modal-popup {
	cursor: pointer;
}

.modal-popup__link {
	color: var(--colorPrimary);
}

.modal-open .modal .modal__inner, .modal-open-normal .modal {
	animation: modal-open 0.5s forwards;
}

.modal-open .modal:before {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--colorModalBg);
	animation: fade-in 0.5s forwards;
	cursor: pointer;
}

.modal-closing .modal .modal__inner, .modal-closing-normal .modal {
	animation: modal-closing 0.5s forwards;
}

.modal-closing .modal:before {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--colorModalBg);
	animation: fade-out 0.5s forwards;
}

.modal-open--solid .modal:before {
	background-color: var(--colorModalBg)
}

.modal-open .modal--solid:before {
	animation: fade-in 0.5s forwards;
}

.modal-closing .modal--solid:before {
	animation: fade-out 0.5s forwards;
}

.modal--is-closing {
	display: flex !important;
	overflow: hidden;
}

.modal--is-active {
	display: flex !important;
	overflow: hidden;
}

@media only screen and (min-width:590px) {
	.modal-open {
		overflow: hidden;
	}
}

.modal__inner {
	transform-style: preserve-3d;
	flex: 0 1 auto;
	margin: 20px;
	max-width: 100%;
	display: flex;
	align-items: center
}

@media only screen and (min-width:590px) {

	.modal__inner {
		margin: 40px
	}
}

.modal--square .modal__inner {
	background-color: var(--colorBody);
	color: var(--colorTextBody);
	border-radius: 1em;
	overflow: hidden;
}

.modal__inner img {
	display: block;
	max-height: 90vh;
}

.modal__inner .image-wrap img {
	max-height: none;
}

.modal__centered {
	position: relative;
	flex: 0 1 auto;
	min-width: 1px;
	max-width: 100%;
}

.custom_scrollbar::-webkit-scrollbar {
	width: 5px;
	height: 7px;
}

.custom_scrollbar::-webkit-scrollbar-button {
	width: 0px;
	height: 0px;
}

.custom_scrollbar::-webkit-scrollbar-thumb {
	background: rgba(28, 29, 29, 0.2);
	border: 0px none #fff;
	border-radius: 2.5px;
}

.custom_scrollbar::-webkit-scrollbar-track {
	background: transparent;
	border: 0px none #ffffff;
	border-radius: 50px;
}

.modal--square .modal__centered-content {
	max-height: 80vh;
	padding: 30px;
	min-width: 200px;
	min-height: 190px;
	overflow: auto;
	-webkit-overflow-scrolling: touch
}

@media only screen and (min-width:590px) {

	.modal--square .modal__centered-content {
		padding: 60px 60px 20px 60px;
		max-height: 90vh;
		max-width: 1280px;
		min-width: 668px;
	}
}

.modal__close {
	border: 0;
	padding: 20px;
	position: fixed;
	top: 0;
	right: 0;
	color: #fff
}

@media only screen and (min-width:590px) {

	.modal__close {
		padding: 40px
	}
}

.modal__close .icon {
	width: 28px;
	height: 28px;
	border: 2px solid currentColor;
	border-radius: 50%;
}

.modal__close:focus,.modal__close:hover {
	color: #fff;
}

.modal--square .modal__close {
	position: absolute;
	color: var(--colorTextBody);
	padding: 20px
}

.modal--square .modal__close:focus,.modal--square .modal__close:hover {
	color: var(--colorPrimary);
	transition: color 0.3s;
}

.modal .page-content,.modal .page-width {
	padding: 0;
}

.popup-cta {
	margin-bottom: 20px;
}

@media only screen and (max-width:589px) {
	.modal--mobile-friendly {
		top: auto;
		bottom: 0;
		overflow: auto
	}

	.modal--mobile-friendly.modal--square .modal__centered-content {
		padding: 20px;
	}

	.modal--mobile-friendly.modal--is-active {
		overflow: auto;
	}

	.modal-open .modal--mobile-friendly:before {
		display: none;
	}

	.modal-closing .modal--mobile-friendly:before {
		display: none;
	}

	.modal--mobile-friendly .modal__inner {
		margin: 10px;
		box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
	}

	.modal--mobile-friendly .h1 {
		padding-right: 25px;
	}

	.modal--mobile-friendly input {
		font-size: 16px !important;
	}

	.modal--mobile-friendly .input-group {
		margin: 0 auto 20px;
	}

	.modal--mobile-friendly .btn {
		min-width: auto;
	}

	.modal--mobile-friendly .text-close {
		display: none;
	}
}

.js-qty__wrapper, .variant_wrapper {
	position: relative;
	max-width: 120px;
	min-width: 75px;
	border-radius: 0.5em;
	overflow: visible;
	background-color: var(--colorInputBg);
	color: var(--colorInputText);
}

.js-qty__num {
	display: block;
	background: none;
	text-align: center;
	width: 100%;
	padding: 8px 25px;
	margin: 0;
	border-radius: 0.5em;
	z-index: 1;
}

.js-qty__adjust {
	cursor: pointer;
	position: absolute;
	display: block;
	top: 0;
	bottom: 0;
	border: 0 none;
	background: none;
	text-align: center;
	border-radius: .5em;
	overflow: hidden;
	padding: 0 5px;
	line-height: 1;
	-webkit-user-select: none;
	user-select: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transition: background-color 0.1s ease-out;
	z-index: 2;
	fill: var(--colorInputText)
}

.js-qty__adjust .icon {
	display: block;
	font-size: 8px;
	vertical-align: middle;
	width: 10px;
	height: 10px;
	fill: inherit;
}

.js-qty__adjust:hover {
	color: var(--colorInputText);
}

.js-qty__num:active~.js-qty__adjust,.js-qty__num:focus~.js-qty__adjust {
	border-color: var(--colorTextBody)
}

.js-qty__adjust--plus {
	right: 0;
	padding-right: 18px;
}

.js-qty__adjust--minus {
	left: 0;
	padding-left: 18px;
}

.drawer .js-qty__wrapper {
	background-color: transparent;
	border-color: var(--colorBorder);
	max-width: 90px;
}

.drawer .js-qty__num {
	color: var(--colorTextBody);
	border-color: var(--colorBorder);
	padding-top: 5px;
	padding-bottom: 5px;
}

.product-single__view-in-space {
	display: block;
	color: var(--colorTextBody);
	background-color: var(--colorShadow);
	width: 100%;
	padding: 5px 10px 10px
}

.product-single__view-in-space[data-shopify-xr-hidden] {
	display: none;
}

.product-single__view-in-space-text {
	display: inline-block;
	vertical-align: middle;
	margin-left: 5px;
	font-size: 0.9em;
}

.product-single__close-media {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 2;
}

.collapsibles-wrapper--border-bottom {
	border-bottom: 1px solid;
	border-bottom-color: var(--colorBorder);
}

.collapsible-trigger {
	color: inherit;
	position: relative;
}

.text-spacing .collapsible-trigger {
	font-size: 1.25em;
}

.text-spacing .collapsible-trigger__icon .icon {
	width: 17px;
	height: 17px;
}

.mobile-nav__toggle button {
	padding: 20px 30px;
}

.collapsible-trigger__icon {
	display: block;
	position: absolute;
	right: 0;
	top: 50%;
	width: 12px;
	height: 12px;
	transform: translateY(-50%)
}

@media only screen and (max-width:589px) {

	.collapsible-trigger__icon {
		width: 10px;
		height: 10px
	}
}

.mobile-nav__has-sublist .collapsible-trigger__icon {
	right: 20px
}

.collapsible-trigger__icon .icon {
	display: block;
	width: 12px;
	height: 12px;
	transition: all 0.2s ease-in
}

.collapsible-trigger--inline {
	font-weight: 600;
	padding: 20px 50px 20px 30px;
	width: 100%;
}

.is-open {
	color: var(--colorPrimary);
}
.site-footer .is-open{
  color: var(--colorFooterText);
}
.collapsible-trigger--inline .collapsible-trigger__icon {
	right: 30px;
}

.collapsible-trigger__icon--circle {
	border: 1px solid;
	border-color: var(--colorBorder);
	border-radius: 50%;
	width: 24px;
	height: 24px;
	text-align: center
}

.collapsible-trigger__icon--circle .icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.collapsible-trigger.is-open .collapsible-trigger__icon>.icon-chevron-down {
	transform: rotate(180deg);
}

.collapsible-trigger .collapsible-trigger__icon .icon-minus,.collapsible-trigger.is-open .collapsible-trigger__icon .icon-plus {
	display: none;
}

.collapsible-trigger.is-open .collapsible-trigger__icon .icon-minus {
	display: block;
}

.collapsible-content {
	transition: opacity 0.3s cubic-bezier(.25,.46,.45,.94),height 0.3s cubic-bezier(.25,.46,.45,.94)
}

.collapsible-content.is-open {
	overflow: unset;
	visibility: visible;
	opacity: 1;
	transition: opacity 1s cubic-bezier(.25,.46,.45,.94),height 0.5s cubic-bezier(.25,.46,.45,.94);
}

.collapsible-content--all {
	visibility: hidden;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	opacity: 0;
	height: 0
}

.collapsible-content--all .collapsible-content__inner {
	transform: translateY(-20px);
}

.collapsible-content--all .collapsible-content__inner--no-translate {
	transform: translateY(0);
}

@media only screen and (max-width:589px) {
	.collapsible-content--small {
		overflow: hidden;
		visibility: hidden;
		-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
		opacity: 0;
		height: 0
	}

	.collapsible-content--small .collapsible-content__inner {
		transform: translateY(-20px);
	}

	.collapsible-content--small .collapsible-content__inner--no-translate {
		transform: translateY(0);
	}
}

.collapsible-content__inner {
	margin-bottom: 15px;
	transition: all 0.3s cubic-bezier(.25,.46,.45,.94)
}

.is-open .collapsible-content__inner {
	transform: translateY(0);
	transition: transform 0.3s cubic-bezier(.25,.46,.45,.94)
}

.rte.collapsible-content__inner--faq {
	padding: 0 40px 40px;
}

.collapsible-trigger[aria-expanded=true] .collapsible-label__closed {
	display: none
}

.collapsible-label__open {
	display: none
}

.collapsible-trigger[aria-expanded=true] .collapsible-label__open {
	display: inline-block
}

.pswp {
	display: none;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	overflow: hidden;
	touch-action: none;
	z-index: 1500;
	-webkit-text-size-adjust: 100%;
	-webkit-backface-visibility: hidden;
	outline: none;
}

.pswp img {
	max-width: none;
}

.pswp--animate_opacity {
	opacity: 0.001;
	will-change: opacity;
	transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--open {
	display: block;
}

.pswp--zoom-allowed .pswp__img {
	cursor: zoom-in;
}

.pswp--zoomed-in .pswp__img {
	cursor: grab;
}

.pswp--dragging .pswp__img {
	cursor: grabbing;
}

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

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

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

.pswp__container,.pswp__img {
	-webkit-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
}

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

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

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

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

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

.pswp__caption__center {
	text-align: left;
	max-width: 800px;
	margin: 0 auto;
	padding: 20px;
	line-height: 20px;
	background-color: rgba(255,255,255,.6);
	border-radius: 1em;
}

.pswp__caption--empty {
	display: none;
}

.pswp__caption--fake {
	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;
}

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

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

.pswp__error-msg {
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	text-align: center;
	line-height: 16px;
	margin-top: -8px;
	color: #ccc;
}

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

.pswp__button {
	position: relative;
	box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1)
}

.pswp__button:after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.pswp__button--arrow--right {
	position: absolute !important;
	top: 50%;
	right: 15px;
}

.pswp__top-bar {
	position: absolute !important;
	top: 5px;
	left: 15px;
}

.pswp__button--arrow--left {
	position: absolute !important;
	top: 50%;
	left: 15px;
}

.pswp__button--close {
	position: absolute !important;
	top: 30px;
	right: 15px;
}

.pswp__button--arrow--left .icon,.pswp__button--arrow--right .icon {
	width: 13px;
	height: 13px;
	margin: 8px;
}

.pswp__button[disabled] {
	opacity: 0;
	pointer-events: none;
}

::-webkit-input-placeholder {
	color: inherit;
	opacity: 0.5;
}

:-moz-placeholder {
	color: inherit;
	opacity: 0.5;
}

:-ms-input-placeholder {
	color: inherit;
	opacity: 0.5;
}

::-ms-input-placeholder {
	color: inherit;
	opacity: 1;
}

.skrim-grid--large .skrim__item {
	height: 240px
}

@media only screen and (min-width:590px) {
	.skrim-grid--large .skrim__item {
		height: 550px
	}
}

.social-sharing {
	font-weight: var(--typeBaseWeight);
	letter-spacing: var(--typeBaseSpacing);
	line-height: var(--typeBaseLineHeight)
}

@media only screen and (max-width:589px) {
	.social-sharing {
		text-align: center
	}
}

.social-sharing .icon {
	height: 18px;
	width: 18px;
}

.social-sharing__link {
	display: inline-block;
	color: var(--colorSecond);
	border-radius: 2px;
	font-size: calc(var(--typeBaseSize) - 1px);
	margin: 0 8px 0 0;
	text-decoration: none;
	font-weight: 400
}

.social-sharing__link:last-child {
	margin-right: 0;
}

.social-sharing__title {
	display: inline-block;
	vertical-align: middle;
	padding-right: 15px;
	padding-left: 3px
}

@media only screen and (max-width:589px) {

	.social-sharing__title {
		font-size: 0.9em
	}
}

.grid-search {
	margin-bottom: 40px;
}

.grid-search__product {
	position: relative;
	text-align: center;
}

.grid-search__page-link,.grid-search__product-link {
	height: 280px;
}

.grid-search__page-link {
	display: block;
	background-color: #f9fbfc;
	padding: 20px;
	color: var(--colorTextBody);
	border-radius: 1em;
	border: 2px solid var(--colorBorder);
	overflow: hidden;
	text-overflow: ellipsis;
    height: 400px;
}

.grid-search__page-link:focus,.grid-search__page-link:hover {
	background-color: var(--colorBorder);
}

.grid-search__page-content {
	display: block;
	height: 100%;
	border-radius: .5em;
	overflow: hidden;
}

.grid-search__page-content img {
	display: block;
	margin-bottom: 10px;
	border-radius: .5em;
}

.grid-search__image {
	display: block;
	padding: 20px;
	margin: 0 auto;
	max-height: 100%;
	max-width: 100%
}

@media only screen and (min-width:590px) {

	.grid-search__image {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%)
	}
}

.feature-row {
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center
}

.feature-row__item {
	min-width: 50%;
	flex: 0 1 50%
}

.feature-row__text {
	padding-top: 40px;
	padding-bottom: 40px
}

@media only screen and (max-width:768px) {

	.feature-row {
		flex-direction: column;
		margin: 0
	}

	.feature-row--small-none {
		display: block;
	}

	.feature-row__item {
		flex: 1 1 auto;
		max-width: 100%;
		min-width: 100%
	}

	.feature-row__image {
		display: block;
		margin: 0 auto
	}

	.feature-row__image {
		order: 1
	}

	.feature-row__text {
		order: 2;
		padding-top: 20px;
		padding-bottom: 40px;
	}
}

.feature-row__text .rte {
	margin: 0;
}

.feature-row__text .btn {
	margin: 20px 13.33333px 0 0;
}

@media only screen and (min-width:769px) {
	.feature-row__text--left {
		padding-left: 80px;
	}

	.feature-row__text--right {
		padding-right: 80px;
	}
}

.hero .slideshow__slide {
	height: 100%;
}

.slideshow-wrapper {
	position: relative;
}

.slideshow__pause:focus {
	clip: auto;
	width: auto;
	height: auto;
	margin: 0;
	color: var(--colorBtnPrimaryText);
	background-color: var(--colorBtnPrimary);
	padding: 10px;
	z-index: 10000;
	transition: none
}

.video-is-playing .slideshow__pause:focus {
	display: none
}

.slideshow__pause-stop {
	display: block
}

.is-paused .slideshow__pause-stop {
	display: none
}

.slideshow__pause-play {
	display: none
}

.is-paused .slideshow__pause-play {
	display: block
}

.slideshow__slide {
	display: none;
	width: 100%;
	position: relative;
	overflow: hidden
}

.slideshow__slide:first-child {
	display: block;
}

.flickity-slider .slideshow__slide {
	display: block
}

.hero {
	position: relative;
	overflow: hidden;
	background: var(--colorShadow);
}

.hero__image-wrapper,.hero__media {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%
}

.hero__image-wrapper:before,.hero__media:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 3
}

.video-interactable .hero__image-wrapper:before,.video-interactable .hero__media:before {
	pointer-events: none
}

.hero__image-wrapper--no-overlay:before {
	content: none;
}

.hero__image {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	-o-object-fit: cover;
	object-fit: cover;
}

.hero__media iframe,.hero__media video {
	width: 100%;
	height: 100%;
	pointer-events: none
}

.video-interactable .hero__media iframe,.video-interactable .hero__media video {
	pointer-events: auto
}

.video-parent-section.loading .hero__media iframe,.video-parent-section.loading .hero__media video {
	opacity: 0.01
}

.video-parent-section.loaded .hero__media iframe,.video-parent-section.loaded .hero__media video {
	opacity: 1
}

.hero__media video {
	position: relative;
	-o-object-fit: cover;
	object-fit: cover;
	font-family: "object-fit: cover";
}

.hero__media iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 300%;
	left: -100%;
	max-width: none
}

@media screen and (min-width:1140px) {

	.hero__media iframe {
		width: 100%;
		height: 300%;
		left: auto;
		top: -100%
	}
}

.hero__slide-link {
	display: block;
	position: absolute;
	height: 100%;
	width: 100%;
	color: var(--colorHeroText);
}

.hero__text-wrap {
	position: relative;
	height: 100%;
	color: var(--colorTextBody)
}

.video-interactable .hero__text-wrap {
	pointer-events: none
}

.hero__text-wrap .page-full, .hero__text-wrap .page-width {
	display: table;
	width: 100%;
	height: 100%;
}

.hero__text-wrap--absolute {
	position: absolute;
	width: 100%;
}

.hero-media-text {
    background: rgba(0,0,0,0.5);
	/* background-color: var(--colorBody); */
	padding: 20px 30px;
	border-radius: .5em;
}
.hero__title{
  color: #fff;
  margin-bottom: 20px !important;
}
.hero__subtitle{
  color: #fff;
  margin-bottom: 20px !important;
}
.hero__link a{
    border: 1px solid #f9d60d;
    color: #1b1b1b !important;
    font-size: 1.3rem;
    background: #f9d60d !important;
}

@media only screen and (max-width:589px) {
	.hero-media-text {
		padding: 15px 0;
	}
}

.hero__text-content {
	position: relative;
	padding: 20px 0;
	z-index: 4
}

.hero__title {
	display: block;
	margin-bottom: 5px;
	font-size: 1.05em
}

.hero__subtitle {
	line-height: 1.2;
	font-size: 0.75em;
}

@media only screen and (min-width:590px) {

	.hero__text-content {
		padding: 40px 0
	}

	.hero__title {
		font-size: 1.5em;
	}

	.hero__subtitle {
		font-size: 1em;
	}
}

.hero__title-inverse {
	color: var(--colorHeroText) !important;
}

.hero__subtext {
	margin-top: 20px;
}

.hero__text-content {
	display: table-cell
}

.btn .icon-play {
	position: relative;
	top: -2px;
	width: 16px;
	height: 16px;
	margin-right: 5px
}

.hero__text-content .hero__link {
	display: block;
	margin-top: 10px
}

.hero__text-content.vertical-bottom {
/* 	vertical-align: bottom; */
vertical-align: middle;
/* text-align: center; */
}

.hero--450px {
	height: 450px;
}

.hero--750px {
	height: 750px;
}

.hero--100vh {
	height: 100vh;
}

@media only screen and (min-width:590px) {
	.hero--natural[data-natural] {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
	}

	.hero--16-9 {
		height: 0;
		padding-bottom: 56.25%;
	}
}

@media only screen and (max-width:589px) {

	.hero--mobile--250px{
		height: 250px;
	}
    .hero--mobile--500px{
        height: 500px;
    }

	.hero--mobile--100vh{
		height: 90vh;
	}

	.hero--100vh {
		height: 90vh;
	}
}

.slideshow__slide .animation-cropper {
	opacity: 0;
}

.slideshow__slide .animation-contents {
	opacity: 0;
	transform: translateY(15px);
	transition: none;
}

.slideshow__slide .hero__image {
	opacity: 0;
	transition: none;
}

.hero__image-wrapper {
	transform: scale(1);
	opacity: 0;
	transition: none;
}

.slideshow__slide.is-selected .animation-cropper {
	opacity: 1;
}

.slideshow__slide.is-selected .animation-contents {
	transform: translateY(0px);
}

.slideshow__slide.is-selected .hero__title .animation-contents {
	animation: 0.8s cubic-bezier(0.26, 0.54, 0.32, 1) 0.3s forwards;
	animation-name: rise-up;
}

.slideshow__slide.is-selected .hero__subtitle .animation-contents {
	animation: 1s cubic-bezier(0.26, 0.54, 0.32, 1) 0.7s forwards;
	animation-name: rise-up;
}

.slideshow__slide.is-selected .hero__link .animation-contents {
	animation: fade-in 1.5s ease 1.5s forwards;
}

.slideshow__slide.is-selected .hero__image--svg, .slideshow__slide.is-selected .hero__image.lazyloaded, .slideshow__slide.is-selected .hero__media {
	animation: 1s cubic-bezier(0.26, 0.54, 0.32, 1) 0s forwards;
	animation-name: zoom-fade;
}

.slideshow__slide.is-selected .hero__image-wrapper {
	opacity: 1;
	transform: scale(1);
	transition: transform 1s cubic-bezier(0.26, 0.54, 0.32, 1),opacity 1s cubic-bezier(0.26, 0.54, 0.32, 1);
}

.animate-out .animation-cropper {
	opacity: 0;
}

.animate-out .hero__image-wrapper {
	opacity: 0;
	transform: scale(1.05);
	transition: transform 0.3s ease-in 0.05s,opacity 0.25s ease-in 0.1s;
}

.animate-out .hero__image {
	opacity: 1;
}

.collection-filter {
	margin-bottom: 20px;
  width: 10%;
}

.collection-filter select {
	display: inline-block;
	width: 100%;
}

.collapsible-wrapper {
	background-color: var(--colorBody);
	padding: 0 20px;
	border-radius: .5em;
}

.collection-description {
	max-width: 900px
}

.collection-hero {
	position: relative;
	width: 100%;
	height: 330px;
	overflow: hidden;
	background: var(--colorBorder);
}

.collection-hero__content {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	display: flex;
	align-items: flex-end;
	z-index: 1
}

.collection-hero__text {
	padding-top: 60px;
}

@media screen and (max-width: 589px) {
	.collection-hero__text {
		padding-top: 300px;
	}
}

.collection-hero__content .page-width {
	width: 100%;
}

.collection-hero__content:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: auto;
	transition: opacity 2.5s ease;
	opacity: 0;
	display: block;
}

.collection-hero.loaded .collection-hero__content:before {
	opacity: 1
}

.collection-hero .collection-hero__image {
	opacity: 0
}

.no-js  .collection-hero .collection-hero__image {
	opacity: 1
}

.collection-hero .section-header__title .animation-contents {
	opacity: 0
}

.no-js  .collection-hero .section-header__title .animation-contents {
	opacity: 1
}

.collection-hero .collection-hero__image.lazyloaded {
	animation: 0.8s cubic-bezier(0.26, 0.54, 0.32, 1) 0s forwards;
	animation-name: zoom-fade;
	transition: none;
}

.collection-hero.loaded .section-header__title .animation-contents {
	animation: 1s cubic-bezier(0.26, 0.54, 0.32, 1) 0.5s forwards;
	animation-name: rise-up;
}

.collection-switcher__title {
	display: inline-block;
	margin-bottom: 0;
	cursor: pointer;
}

.collection-switcher__trigger {
	padding: 0;
}

.product-switcher {
	position: relative;
	padding: 8px 15px;
	display: block;
	border-radius: 0.5em 0.5em 0 0;
	background-color: var(--colorBorder);
	overflow: visible;
}

@media only screen and (min-width:590px) {
	.product-switcher {
		padding: 10px 35px;
	}
}

.product-switcher.is-active {
	color: var(--colorHeroText);
	background-color: var(--colorPrimary);
	transition: all 0.2s ease;
}

.collection-switcher__collection-grid {
	margin-bottom: 40px
}

.collection-switcher__collection-grid .grid__item {
	display: none;
	opacity: 0
}

.collection-switcher__collection-grid .grid__item:first-child {
	display: block;
}

.collection-switcher__collection-grid .flickity-slider .grid__item {
	display: block;
	opacity: 1;
}

@media only screen and (min-width:590px) {
	.collection-switcher__collection-grid .flickity-slider {
		padding: 3px 0;
	}
}

.collection-switcher__collection-grid .flickity-slider {
	padding-top: 18px;
}

.collection-switcher__collection-grid .quick-product__btn {
	right: 1px;
}

.collection-switcher__collection-grid .flickity-prev-next-button {
	top: calc(50% - 40px);
}

.collection-switcher__collection-grid .flickity-next {
	right: -20px;
}

.collection-switcher__collection-grid .flickity-previous {
	left: 10px;
}

@media only screen and (max-width:589px) {
	.collection-switcher__collection-grid .flickity-next {
		right: -10px;
	}

	.collection-switcher__collection-grid .flickity-previous {
		left: 10px;
	}
}

.is-light .site-header__logo .logo--has-inverted {
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
	height: 0
}

.site-header__logo .logo--inverted {
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
	height: 0
}

.is-light .site-header__logo .logo--inverted {
	opacity: 1;
	visibility: visible;
	height: auto
}

.site-header__logo {
	font-size: 20px
}

@media only screen and (min-width:590px) {

	.site-header__logo {
		text-align: left;
		font-size: 25px
	}
}

.header-logo a,.site-header__logo a {
	color: var(--colorNavText)
}

.is-light .header-logo a,.is-light .site-header__logo a {
	color: #fff
}

.is-light .header-logo a:hover,.is-light .site-header__logo a:hover {
	color: #fff;
}

.is-light .site-header {
	border-bottom: none;
}

.site-nav__dropdown-link {
	display: block;
	white-space: nowrap;
	padding: 8px 20px;
	font-size: 16px;
	transition: padding 0.2s ease
}

.site-nav__dropdown-link:hover {
	padding: 8px 35px 8px 25px;
}

.tags a {
	font-size: 16px;
	display: block;
	transition: padding 500ms cubic-bezier(0.2, 0.06, 0.05, 0.95);
	padding-bottom: 5px
}

.tags a:hover {
	padding-left: 10px;
}

@media only screen and (min-width:590px) {

	.tags a {
		font-size: 19px;
		padding-bottom: 10px
	}
}

.tags--vertical {
	list-style: none outside;
	margin: 0;
	padding: 0;
}

.tags--article a {
	padding-right: 20px;
	padding-left: 0;
}

.tags__title {
	margin-right: 10px;
	margin-bottom: 10px;
}

.tag--active {
	font-weight: 700
}

.tag--active a {
	padding-left: 0
}

.tag--active a:hover {
	padding-left: 0;
}

.tags-toggle {
	margin-top: 10px
}

@media only screen and (min-width:590px) {

	.tags-toggle {
		margin-top: 20px
	}
}

.variant-input-wrap {
	border: 0;
	padding: 0;
/* 	margin: 0 0 26px; */
	position: relative
}

.variant-input-wrap input {
	clip: rect(0, 0, 0, 0);
	overflow: hidden;
	position: absolute;
	height: 1px;
	width: 1px;
}

.variant-input-wrap label {
	position: relative;
	display: inline-block;
	line-height: 1;
	font-weight: 400;
	padding: 6px 15px 6px;
	margin-right: 18px;
	font-style: normal;
	font-size: var(--typeBaseSize);
	text-transform: none;
	background-color: var(--colorBody);
	transition: all 0.25s ease;
	border-radius: 50%;
	border: 2px solid var(--colorBody);
	overflow: hidden;
	font-weight: var(--typeBaseWeight);
	letter-spacing: var(--typeBaseSpacing);
	line-height: var(--typeBaseLineHeight);
}
.variant-input-wrap .variant-input label{
	background-color: #fff;
  	border: 1px solid #aaa;
  	color: #222;
}

@media only screen and (max-width:589px) {

	.variant-input-wrap label {
		font-size: calc(var(--typeBaseSize) - 1px)
	}
}

.variant-input-wrap label.disabled {
	color: var(--colorBorder);
}

.variant-input-wrap label.disabled:after {
	position: absolute;
	content: "";
	left: 50%;
	top: 0;
	bottom: 0;
	border-left: 1px solid;
	border-color: var(--colorBorder);
	transform: rotate(45deg);
}

.variant-input-wrap input[type=radio]:focus+label {
	background-color: var(--colorShadow);
	box-shadow: 0 0 0 1px var(--colorTextBody);
}

.variant-input-wrap input[type=radio]:checked+label {
	box-shadow: 0 5px 15px rgba(28, 29, 29, 0.3);
}
.accSelect .variant-input-wrap input[type=radio]:checked+label{
	background:#aaa;
}
.variant-input-wrap input[type=radio]:checked+label::before {
	transform: translate(-50%, -50%) rotate(45deg);
	content: "";
	width: 8px;
	height: 12px;
	display: block;
	border: solid #fff;
	border-width: 0 3px 3px 0;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -3px -3px 0 0
}

.variant-input {
	display: inline-block
}

select .variant-input {
	display: block
}

.variant-wrapper, .btn-write {
	margin-right: 20px
}

.no-js .variant-wrapper {
	display: none
}

.variant-wrapper--dropdown {
	display: inline-block;
	max-width: 100%;
	margin-right: 20px;
}

.variant__label {
	display: block;
	margin-bottom: 10px;
	cursor: default;
	font-style: normal;
}

.variant__label-info {
	font-weight: var(--typeBaseWeight);
	letter-spacing: var(--typeBaseSpacing);
	line-height: var(--typeBaseLineHeight);
	text-transform: none;
	font-weight: 400;
}

.grid-product__content {
	position: relative;
	text-align: left;
}

html[dir=rtl] .grid-product__content {
	text-align: right
}

.product-single__related .grid-product__content {
	margin-bottom: 0
}

.grid-product__link {
	display: block;
}

.grid-product_h {
	padding-bottom: 180px
}

@media only screen and (max-width:589px) {
	.grid-product_h {
		padding-bottom: 140px
	}
}

.grid-product__image-mask {
	position: relative;
	overflow: hidden;
}

.grid-product__image {
	display: block;
	margin: 0 auto;
	width: 100%;
}

.grid-product__secondary-image {
	position: absolute;
	top: -1px;
	left: -1px;
	right: -1px;
	bottom: -1px;
	background-color: var(--colorBody);
	opacity: 0
}

.grid-product__secondary-image img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.grid-product__content:hover .grid-product__secondary-image, .featured-product-card:hover.grid-product__secondary-image {
	opacity: 1
}

.grid-product__content:hover .grid-product__secondary-image, .featured-product-card:hover .grid-product__secondary-image {
	opacity: 0;
	animation: 0.5s cubic-bezier(0.26, 0.54, 0.32, 1) forwards;
	animation-name: fade-in;
}

@media only screen and (max-width:589px) {

	.supports-touch .grid-product__secondary-image {
		display: none
	}
}

.grid-product__meta {
	position: absolute;
	bottom: 0;
	width: 100%;
	background-color: rgba(255,255,255,0.9);
	line-height: calc(var(--typeBaseLineHeight) - 0.2);
	transition: bottom 0.5s cubic-bezier(.25,.46,.45,.94);
}

@media only screen and (max-width:589px) {
	.grid-product__meta {
		bottom: 0px;
	}

	.grid-overflow-wrapper .grid-product__meta {
		bottom: -75px;
	}
}

.section-hero__bottom {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 2;
}

.grid-product__has-quick-shop:hover .grid-product__meta {
	bottom: 0;
	transition: bottom 0.5s cubic-bezier(.25,.46,.45,.94);
}

.grid-product__title {
	font-size: calc(var(--typeBaseSize)*1.2*0.83);
	font-weight: 600;
}

@media only screen and (min-width:590px) {

	.grid-product__title {
		font-size: calc(var(--typeBaseSize)*1)
	}
}

.grid-product__vendor {
	font-weight: var(--typeBaseWeight);
	letter-spacing: var(--typeBaseSpacing);
	line-height: var(--typeBaseLineHeight);
}

.grid-product__vendor {
	font-size: 11px;
	margin-top: 3px;
}

.grid-product__price {
	font-weight: 600;
	color: var(--colorPrimary)
}

.grid-product__price--original {
	text-decoration: line-through;
	margin-right: 5px;
}

.tag_styles{
    position: absolute;
    top: 12px;
    left: 0;
    padding: 6px 12px;
    z-index: 1;
}
.tag_styles .grid-product__tag {
    position: initial;
}

.grid-product__tag {
	position: absolute;
	top: 12px;
	left: 12px;
	font-size: 10px;
    font-weight: 500;
	line-height: 1;
	padding: 6px 12px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	background-color: #f9d60d;
	color: #1b1b1b;
	border-radius: 15px;
	z-index: 1;
	transition: opacity 0.4s ease
}

.grid-product__tag:hover {
	color: var(--colorBody);
}

.grid-product__tag--custom {
	top: 0;
	left: 60px;
    background: #e70014;
    color: #fff;
}

.grid-product__has-quick-shop .grid-product__content:hover .grid-product__tag {
	opacity: 0;
	transition-duration: 0.2s;
}

@media only screen and (max-width:589px) {
	.grid-overflow-wrapper, .blog-tag__list {
		overflow: hidden;
		overflow-x: scroll;
		-webkit-overflow-scrolling: touch;
		padding-bottom: 26.66667px;
	}

	.grid-overflow-wrapper .grid {
		white-space: nowrap;
		display: flex;
	}

	.grid-overflow-wrapper .grid__item {
		width: 66vw;
		flex: 0 0 66vw;
		display: inline-block;
		float: none;
		white-space: normal;
		line-height: 0;
	}

	.grid-overflow-wrapper .grid__item:last-child:after {
		content: "";
		display: inline-block;
		width: 100%;
		height: 1px;
		margin-right: 20px;
	}

	.grid-overflow-wrapper .grid__item--view-all {
		align-self: center;
	}

	.grid-overflow-wrapper .grid-product__content {
		margin-bottom: 0;
	}

  [	data-aos=overflow__animation] {
		transform: translateX(100vw);
		transition: transform 0.8s cubic-bezier(.25,.46,.45,.94)
	}

  [	data-aos=overflow__animation].aos-animate {
		transform: translateX(0);
	}
  
  .grid-overflow-wrapper .grid-gift{
    flex:0 0 35vw;
    margin-left: 0 !important;
}
}

.grid-product__see-all {
	display: inline-block;
	padding: 20px;
	text-align: center;
	border: 1px solid;
	border-color: var(--colorBorder);
	margin-top: -60px;
}

.grid-product.aos-animate.unload .grid-product__image {
	opacity: 0;
	transition-duration: 0.3s;
	animation: grid-product__loading 15s ease infinite !important;
}

.grid-product.aos-animate.unload .grid-product__meta {
	opacity: 0;
	transition-duration: 0.3s;
}

.grid-product.aos-animate.unload .grid-product__colors {
	opacity: 0;
	transition-duration: 0.3s;
}

.grid-product.aos-animate.unload .grid-product__tag {
	opacity: 0;
	transition-duration: 0.3s;
}

.grid-product__colors {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	line-height: 14px;
	margin-top: 5px
}

@media only screen and (max-width:589px) {

	.small--grid--flush .grid-product__colors {
		padding-left: 11px
	}
}

@media only screen and (min-width:590px) {

	.grid-product__colors {
		line-height: 17px
	}
}

.color-swatch {
	position: relative;
	display: block;
	text-indent: -9999px;
	overflow-y: hidden;
	margin: 0 4px 4px;
	background-position: 50%;
	background-size: cover;
	background-repeat: no-repeat;
	width: 2.5em;
	box-shadow: 0 0 0 1px #cfcfcf;
	transition: box-shadow 0.2s ease
}

a.color-swatch:hover {
	box-shadow: 0 0 0 1px var(--colorTextBody);
}

.color-swatch--small {
	width: 14px;
	height: 14px
}

@media only screen and (min-width:590px) {

	.color-swatch--small {
		width: 17px;
		height: 17px
	}
}

.color-swatch--small:before {
	border: 2px solid;
	border-color: var(--colorBody);
}

.skrim__item {
	overflow: hidden;
}

.skrim__item-content {
	position: relative;
	overflow: hidden;
	height: 100%;
	width: 100%;
}

.skrim__item-content .icon-arrow-left {
	width: 33px;
	margin-right: 8px;
}

.skrim__item-content .icon-arrow-right {
	width: 33px;
	margin-left: 8px;
}

.skrim__item-content .skrim__overlay {
	position: relative;
	transition: transform .5s ease-out 0s
}

.skrim__item-content .skrim__overlay:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: auto;
	transition: opacity 0.5s ease;
}

.skrim__item-content .skrim__overlay:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: auto;
	background: #000;
	opacity: 0;
	transition: opacity 0.5s ease;
}

.skrim__item-content .skrim__overlay:focus, .skrim__item-content .skrim__overlay:hover {
	transform: scale(1.05)
}

.skrim__item-content .skrim__overlay:focus:before, .skrim__item-content .skrim__overlay:hover:before {
	opacity: 0.2;
	transition: opacity 0.2s ease-in;
}

.skrim__link {
	display: block;
	width: 100%;
	height: 100%;
}

.skrim__overlay {
	display: block;
	overflow: hidden;
	height: 100%;
	width: 100%;
}

.skrim__title {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 20px;
	color: var(--colorHeroText);
	transition: transform 0.5s ease
}



@media only screen and (min-width:590px) {

	.skrim__title {
		padding: 36px
	}
}

.skrim__title--center {
	width: 100%;
	text-align: center;
}

.skrim__link:hover .skrim__title {
	transform: translateY(-10px);
}

.skrim__item:nth-child(2) .skrim__overlay {
	transition-delay: 0.25s;
}

.skrim__item:nth-child(3) .skrim__overlay {
	transition-delay: 0.5s;
}

.skrim__item:nth-child(4) .skrim__overlay {
	transition-delay: 0.13s;
}

.skrim__item:nth-child(5) .skrim__overlay {
	transition-delay: 0.38s;
}

.skrim__item:nth-child(6) .skrim__overlay {
	transition-delay: 0.63s;
}

.skrim__item:nth-child(7) .skrim__overlay {
	transition-delay: 0.25s;
}

.skrim__item:nth-child(8) .skrim__overlay {
	transition-delay: 0.5s;
}

.skrim__item:nth-child(9) .skrim__overlay {
	transition-delay: 0.13s;
}

.skrim__item:nth-child(10) .skrim__overlay {
	transition-delay: 0.38s;
}

.skrim__item:nth-child(11) .skrim__overlay {
	transition-delay: 0.63s;
}

.skrim__item:nth-child(12) .skrim__overlay {
	transition-delay: 0.45s;
}

.custom-content {
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
}

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

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

.align--middle-left {
	align-self: center;
}

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

.align--middle-right {
	align-self: center;
	text-align: right;
}

.align--bottom-left {
	align-self: flex-end;
}

.align--bottom-middle {
	align-self: flex-end;
	text-align: center;
}

.align--bottom-right {
	align-self: flex-end;
	text-align: right;
}

.article-wapper {
	height: 560px;
	margin-bottom: 30px;
}
.product-recommendations .article-wapper {
    height: 480px;
}
/* .product-recommendations .article-wapper .grid-product__tag{
  position: relative;
  margin-right: 10px;
  z-index: 2;
}
.product-recommendations .article-wapper .article__grid-image{
  position: absolute;
  top: 0;
  width: 100%;
} */


@media screen and (max-width: 589px) {
	.article-wapper {
		height: 430px;
	}
    .product-recommendations .article-wapper {
        height: 350px;
    }
}

.section-shadow {
	background-color: var(--colorBody);
	border-radius: 1em;
	position: relative;
}

.section-shadow:before {
	content: '';
	position: absolute;
	top: 25px;
	left: 0;
	background-color: transparent;
	width: 100%;
	height: calc(100% - 35px);
	border-radius: 1em;
	z-index: -1;
	box-shadow: 0 0 45px var(--colorShadow);
}

.article__grid-image {
	display: block;
	border-radius: 1em 1em 0 0;
	overflow: hidden;
}

.article__grid-image img {
	width: 100%;
}

.article__grid-image .image-wrap {
	display: block;
	position: relative;
	transition: transform .35s ease-out 0s;
}

.article__grid-image .image-wrap:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: auto;
	background: #000;
	z-index: 1;
	opacity: 0;
	transition: opacity 0.5s ease;
}

.article__grid-image:focus .image-wrap, .article__grid-image:hover .image-wrap {
	transform: scale(1.05);
	border-radius: 1em;
}

.article__grid-image:focus .image-wrap:before, .article__grid-image:hover .image-wrap:before {
	opacity: 0.15;
	transition: opacity 0.2s ease-in;
}

.article__date {
	font-weight: var(--typeBaseWeight);
	letter-spacing: var(--typeBaseSpacing);
	line-height: var(--typeBaseLineHeight)
}

.article__date {
	font-size: 11px;
	color: var(--colorPrimary);
}

.article__title {
	font-size: calc(var(--typeBaseSize) + 2px);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  min-height: 51px;
}

@media only screen and (min-width:590px) {
	.article__title {
		font-size: calc(var(--typeBaseSize) + 5px)
	}
}

.article__author {
	font-size: calc(var(--typeBaseSize) - 1px);
	font-style: italic;
	margin-top: 2px;
}

.article__grid-meta {
	position: absolute;
	bottom: 10px;
	left: 0;
	right: 0;
	background-color: var(--colorBody);
	border-radius: 0 0 1em 1em;
	padding: 36px;
	z-index: 1;
	transition: 0.5s padding ease;
}
/*
.article__grid-meta:hover {
	padding-bottom: 60px;
	transition: 0.5s padding ease;
}
*/


.footer-ico {
	position: relative;
}

.fotter-ico__overlay {
	background-color: rgba(0, 0, 0, 0.55);
}

.footer-ico-list {
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
	padding: 80px 0;
	color: var(--colorHeroText)
}

.footer-ico-list__item {
	flex: 0 1 25%;
	vertical-align: middle;
	margin: 0;
	border-left: 1px solid rgba(255,255,255,.45);
}

.footer-ico-list__item:first-child {
	border-left: none !important
}

.footer-ico__title {
	display: block;
	font-size: 1.25em;
	font-weight: 600;
}

@media only screen and (max-width:589px) {
	.footer-ico-list__item {
		flex: 0 1 100%;
		border-left: none;
		margin-bottom: 20px;
		padding-bottom: 20px;
		border-bottom: 1px solid var(--colorSecond);
	}

	.footer-ico-list__item:last-child {
		border-bottom: none;
		margin-bottom: 0;
		padding-bottom: 0;
	}

	.footer-ico-list__item .hero__product-wrap {
		justify-content: flex-start;
	}

	.article__grid-meta {
		padding: 20px
	}

	.footer-ico-list {
		padding: 55px 0;
	}
}

@media only screen and (min-width:589px) and (max-width: 1049px) {
	.footer-ico-list__item {
		flex: 0 1 50%;
		border-left: none;
		margin-bottom: 20px;
		padding-bottom: 20px;
		border-bottom: 1px solid var(--colorSecond);
	}

	.footer-ico-list__item:nth-child(3) {
		border-left: none;
	}

	.footer-ico-list__item .hero__product-wrap {
		justify-content: flex-start;
	}
}

.feature-product {
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
}

.feature-product__list {
	flex: 0 1 33.33333%;
}

@media only screen and (max-width:589px) {
	.feature-product__list {
		flex: 0 1 100%;
	}
}

.featured-product-card {
	position: relative;
	padding: 75px 0;
	border-radius: 1em;
	overflow: hidden;
}

.featured-product-card:hover {
	background-color: #151515;
}

.featured-product-card:hover .featured-product__name,.featured-product-card:hover .featured-product__info,.featured-product-card:hover .featured-product__title,.featured-product-card:hover .featured-product__price,.featured-product-card:hover .jdgm-prev-badge__text {
	color: var(--colorBody);
	transition: all 0.5s cubic-bezier(0.26, 0.54, 0.32, 1);
}

.featured-product__price {
	margin-bottom: 1em;
}

.featured-product__info {
	padding: 0 20px;
	margin-bottom: 1.5em;
}

.featured-product__name {
	font-size: calc(var(--typeBaseSize)*1.2);
	padding-bottom: 10px;
}

.featured-product__title {
	font-size: calc(var(--typeHeaderSize)*0.7);
	font-weight: 600;
}

.background-media-text {
	position: absolute;
	width: 100%;
	overflow: hidden;
}

.background-media-text__video {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	z-index: 0;
}

@media only screen and (max-width:589px) {

	.background-media-text__video {
		width: 300%;
		left: -100%
	}
}

.background-media-text__video iframe,.background-media-text__video video {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	pointer-events: none
}

@media only screen and (min-width:590px) {

	.background-media-text__video iframe,.background-media-text__video video {
		height: 120%;
		max-width: none;
		left: -100%;
		height: 150%;
		width: 300%
	}
}

@media screen and (min-width:1140px) {

	.background-media-text__video iframe,.background-media-text__video video {
		width: 100%;
		height: 300%;
		left: auto;
		top: -100%
	}
}

.video-parent-section.video-interactable iframe,.video-parent-section.video-interactable video {
	pointer-events: auto;
}

.background-media-text__inner {
	position: absolute;
	z-index: 1;
	width: 100%;
	top: 50%;
	transform: translateY(-50%);
}

@media only screen and (max-width:589px) {
	.background-media-text__inner {
		padding: 20px 0;
		transform: translateY(0);
	}
}

.video-interactable .background-media-text__inner {
	pointer-events: none
}

.background-media-text__aligner {
	margin: 60px;
}

.background-media-text__text {
	text-align: left;
	background: var(--colorBody);
	padding: 40px;
}

.background-media-text__text .btn {
	margin-top: 20px;
}

@media only screen and (min-width:590px) {
	.background-media-text--right .animation-cropper {
		float: right;
	}
}

.background-media-img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

@media only screen and (max-width:589px) {
	.background-media-text {
		position: relative;
	}

	.background-media-text__inner {
		position: relative;
	}

	.background-media-text__container,.background-media-text__video {
		position: relative;
		height: 240px;
	}

	.background-media-text__aligner {
		margin: -11px -11px 11px;
	}

	.background-media-text__text {
		padding: 30px;
		width: auto;
		margin: 0 20px;
	}

	.background-media-text.loading:after,.background-media-text.loading:before {
		top: 117px;
	}
}

@media only screen and (min-width:590px) {
	.background-media-text--650,.background-media-text--650 .background-media-text__image,.background-media-text--650 .background-media-text__video,.background-media-text__spacer.background-media-text--650 {
		min-height: 650px;
	}
}

.background-media-text__image.lazyloaded, .background-media-text__image svg, .background-media-text__video {
	opacity: 0
}

.no-js .background-media-text__image.lazyloaded,.no-js .background-media-text__image svg,.no-js .background-media-text__video {
	animation: none;
	opacity: 1
}

.aos-animate .background-media-text__image.lazyloaded, .aos-animate .background-media-text__image svg, .loaded.aos-animate .background-media-text__video {
	animation: .5s cubic-bezier(0.26, 0.54, 0.32, 1) 0s forwards;
	animation-name: zoom-fade;
	transition: none;
}

@media only screen and (min-width:590px) {
	.background-media-text__inner .animation-contents {
		opacity: 0
	}

	.no-js .background-media-text__inner .animation-contents {
		animation: none;
		opacity: 1
	}

	.loaded.aos-animate .background-media-text__inner .animation-contents {
		animation: .5s cubic-bezier(0.26, 0.54, 0.32, 1) 0.5s forwards;
		animation-name: rise-up;
	}
}

.quote-icon {
	display: block;
	margin: 0 auto 20px;
}

.testimonials .carousel-cell {
	width: 100%;
	margin-right: 10px;
}

.testimonials .carousel-nav .carousel-cell {
	height: 80px;
	width: 200px;
	margin: 0 20px;
	opacity: 0.5;
/* 	filter: grayscale(100%); */
}

.testimonials .carousel-nav .carousel-cell.is-nav-selected {
	opacity: 1;
	filter: none;
	transition: 0.45s opacity;
}

.testimonials-slider__text {
	font-size: 1.725em;
	font-weight: 600;
}

@media only screen and (max-width:589px) {
	.testimonials-slider__text {
		font-size: 1.25em;
	}
}

.testimonials-slider__text::before {
	content: "\0022";
	font-size: 2em;
	line-height: 1;
	margin-right: 10px;
}

.announcement {
	position: relative;
	overflow: hidden;
	background-color: #052b3e; /* #F9D60D; */
	color: #fff; /* #1b1b1b; */
    font-weight: 500;
	max-height: 100px;
	transition: max-height 0.3s cubic-bezier(0, 0, 0.38, 1);
	transform: translateZ(0);
	z-index: 29;
}

.announcement--closed {
	max-height: 0 !important;
}

.announcement__text {
	display: block;
	padding: 5px 20px 4px;
	font-size: 14px;
	transition: opacity 0.75s ease;
	text-align: center
}

@media only screen and (min-width:590px) {

	.announcement__text {
		padding: 6px 20px 5px;
		font-size: 16px
	}
}

.announcement--closed .announcement__text {
	opacity: 0
}

.announcement__link {
	display: block;
	color: var(--colorAnnouncementText)
}

.announcement__link:hover {
	color: var(--colorAnnouncementText);
}

.announcement__close {
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	padding: 0 10px;
	transition: opacity 1s ease 0.8s;
	cursor: pointer;
	z-index: 2
}

.announcement--closed .announcement__close {
	opacity: 0
}

.announcement__close .icon {
	color: #fff; /* #1b1b1b; */
	width: 20px;
	height: 20px;
	vertical-align: middle
}

@media only screen and (min-width:590px) {

	.announcement__close .icon {
		width: 22px;
		height: 22px
	}
}

.shopify-challenge__container {
	padding: 30px 22px
}

@media only screen and (min-width:590px) {

	.shopify-challenge__container {
		padding: 120px 0
	}
}

.newsletter {
	margin: 0 auto;
	max-width: 520px;
}

.newsletter-section .errors {
	margin-left: auto;
	margin-right: auto;
	max-width: 520px;
}

.newsletter-section .icon-email {
	width: 40px;
	height: 40px;
	margin-bottom: 5px
}

@media only screen and (min-width:590px) {

	.newsletter-section .icon-email {
		width: 32px;
		height: 32px;
		margin-bottom: 8px
	}
}

.newsletter-section .btn {
	min-width: auto;
}

.modal .newsletter .h1 {
	margin-bottom: 10px;
	font-size: 1.45em
}

@media only screen and (min-width:590px) {

	.modal .newsletter .h1 {
		font-size: 1.8em;
		margin-bottom: 20px
	}
}

@media only screen and (max-width:589px) {
	.modal .input-group {
		margin-bottom: 0;
	}

	.modal .newsletter p {
		margin-bottom: 15px;
	}
}

.modal .newsletter p,.newsletter-section .rte p {
	font-size: var(--typeBaseSize);
	margin-bottom: 20px
}

@media only screen and (min-width:590px) {

	.modal .newsletter p,.newsletter-section .rte p {
		font-size: calc(var(--typeBaseSize) + 2px)
	}
}

.modal .newsletter .image-wrap {
	margin-bottom: 10px
}

@media only screen and (min-width:590px) {

	.modal .newsletter .image-wrap {
		margin-bottom: 20px
	}
}

.underline_link {
	text-decoration: underline;
}

.cookies {
	width: 470px;
	right: 18px;
	padding: 41px 38px;
	padding-bottom: 31px;
	background: var(--colorModalBg);
	color: var(--colorHeroText);
	text-align: left;
	border-radius: 1em;
	position: fixed;
	bottom: 18px;
	z-index: 9;
}

.cookies h4 {
	color: var(--colorBody)
}

@media only screen and (max-width:589px) {
	.cookies {
		width: 100%;
		margin: 0 10px;
		position: initial;
		padding: 20px 19px;
	}
}

.cookies .modal__close {
	color: var(--colorHeroText);
}

.cookies .modal__close:hover {
	color: var(--colorPrimary);
}

@media only screen and (max-width:589px) {
	.form__submit--large {
		display: none;
	}

	.form__submit--small {
		display: block;
	}
}

@media only screen and (min-width:590px) {
	.form__submit--large {
		display: block;
	}

	.form__submit--small {
		display: none;
	}
}

.fading-images-overlay__overlay:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 3;
}

.fading-images-overlay__titles {
	opacity: 0;
	margin: 0
}

.fading-images-overlay__titles.active-titles,.fading-images-overlay__titles.finished-titles {
	opacity: 1;
}

.fading-images-overlay__titles--heading-style {
	font-weight: var(--typeHeaderWeight);
	letter-spacing: var(--typeHeaderSpacing);
	line-height: var(--typeHeaderLineHeight);
}

.fading-images-overlay__titles .animation-cropper {
	display: block;
}

.fading-images-overlay__title {
	display: inline-block;
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
	padding: 4px 15px;
	margin: 2px 0;
}

.active-titles .fading-images-overlay__title {
	animation: 1.2s forwards;
	animation-name: rise-up;
}

.finished-titles .fading-images-overlay__title {
	animation: 0.75s forwards;
	animation-name: rise-up;
}

.active-image.lazyloaded {
	animation: kenburns 7s linear forwards;
	z-index: 2;
}

.finished-image.lazyloaded {
	animation: kenburns-out 1s linear forwards;
	z-index: 1;
}

.image-row:after {
	content: "";
	display: table;
	clear: both;
}

.image-row__placeholder {
	float: left;
	width: 33.33%
}

.image-row--gutters .image-row__placeholder {
	width: 32%;
	margin: 0 1% 2%
}

.image-row--gutters .image-row__placeholder:first-child {
	margin-left: 0;
}

.image-row--gutters .image-row__placeholder:last-child {
	margin-right: 0;
}

.image-row__image {
	position: relative;
	min-height: 1px;
	float: left
}

.image-row__image:after {
	content: "";
	display: block;
	height: 0;
	width: 100%;
}

.image-row__image img {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}

.image-row__image .js-photoswipe__zoom {
	cursor: zoom-in;
}

.image-row__image a .js-photoswipe__zoom {
	cursor: pointer;
}

.store-availability {
	display: flex;
	justify-content: space-around
}

.store-availability .icon {
	margin: 6px 0 0;
	width: 12px;
	height: 12px;
}

.store-availability .icon-in-stock {
	fill: #56ad6a;
}

.store-availability .icon-out-of-stock {
	fill: #d02e2e;
}

.store-availability+.store-availability {
	margin-top: 20px;
}

.store-availability__info {
	flex: 0 1 90%;
	text-align: left;
	margin-left: 10px
}

.store-availability__info>div {
	margin-bottom: 5px
}

.store-availability__info>div:last-child {
	margin-bottom: 0;
}

.store-availability__info a {
	text-decoration: underline;
}

.store-availability__small {
	font-size: 0.8em
}

.store-availability__small a {
	display: block;
	margin-top: 10px;
}

.cart__item {
	display: grid;
	grid-gap: 30px;
	grid-template-columns: 150px 1fr;
	grid-template-rows: repeat(2, [row] auto)
}

.drawer .cart__item {
	grid-template-columns: 90px 1fr;
	grid-gap: 20px
}

@media only screen and (max-width:589px) {
  
	.cart__item {
		grid-template-columns: 90px 1fr;
		grid-gap: 20px
	}

	.drawer .cart__item {
		grid-template-columns: 40px 1fr;
		grid-gap: 15px 5px
	}
}

.cart__item--headers {
	grid-template-rows: 1fr;
	font-family: var(--typeHeaderPrimary),var(--typeHeaderFallback);
	font-weight: var(--typeHeaderWeight);
	letter-spacing: var(--typeHeaderSpacing);
	line-height: var(--typeHeaderLineHeight);
}

.cart__item--headers {
	font-size: 0.85em;
	border-bottom: 1px solid;
	border-bottom-color: var(--colorBorder);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.cart__item--details {
	display: grid;
	grid-column: 2;
	grid-template-columns: 2fr 90px 1fr;
	align-items: center
}

@media only screen and (max-width:589px) {
  
	.cart__item--details {
		grid-template-columns: 90px 1fr
	}
}

.drawer .cart__item--details {
	grid-template-columns: 90px 1fr
}

.drawer .cart__item--details .cart__item--name {
	grid-column: 1 / span 3;
}

.drawer .cart__item--details .cart__item--qty {
	grid-column: 1 / span 2;
}

.cart__item--qty {
	grid-column: 2;
}

.cart__item--price {
	grid-column: 3;
	margin-left: 10px;
}

@media only screen and (max-width:589px) {
	.cart__item--name {
		grid-column: 1 / span 2;
	}

	.cart__item--qty {
		grid-row: 2;
		grid-column: 1;
	}

	.cart__item--price {
		grid-row: 2;
		grid-column: 2;
	}
}

.cart__item-row {
	margin-bottom: 20px;
}

.cart__item-sub {
	flex: 1 1 100%;
	display: flex;
	justify-content: space-between;
	line-height: 1
}

.cart__item-sub>div:first-child {
	margin-right: 10px;
}

.cart__terms {
	display: flex;
	align-items: center;
	justify-content: center
}

.cart__terms label {
	margin-bottom: 0;
	text-transform: none;
	letter-spacing: 0;
}

@media only screen and (min-width:590px) {
	.cart__terms--right {
		justify-content: flex-end;
	}
}

.cart__footer {
	border-top: 1px solid;
	border-top-color: var(--colorBorder);
	padding-top: 30px;
}

.cart__checkout-wrapper {
	margin-top: 20px
}

.cart__checkout-wrapper .additional-checkout-buttons {
	margin-top: 12px;
}

.drawer .additional-checkout-buttons {
	margin: 10px 0
}

.drawer .additional-checkout-buttons [data-shopify-buttoncontainer] {
	justify-content: center
}

.drawer .additional-checkout-buttons [data-shopify-buttoncontainer]>* {
	height: auto !important;
}

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

@media only screen and (min-width:590px) {
	.cart__update+.cart__checkout {
		margin-left: 20px;
	}
}

.cart__product-name {
	display: block;
	margin-bottom: 5px;
	font-weight: 500;
	font-size: calc(var(--typeBaseSize)*0.85);
	line-height: 1.4;
}

@media only screen and (min-width:590px) {
  
	.cart__product-name {
		margin-bottom: 10px;
		font-size: calc(var(--typeBaseSize))
	}
}

.cart__product-meta {
	font-size: calc(var(--typeBaseSize)*0.85)
}

@media only screen and (min-width:590px) {
    
	.cart__product-meta {
		font-size: var(--typeBaseSize)
	}
}

.cart__price {
	display: block;
}

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

.cart__discount {
	display: block;
	color: var(--colorPrimary);
}

.cart__variant-meta {
	font-size: 0.9em;
	margin-bottom: 10px;
}

.cart__subtotal {
	font-family: var(--typeHeaderPrimary),var(--typeHeaderFallback);
	font-weight: var(--typeHeaderWeight);
	letter-spacing: var(--typeHeaderSpacing);
	line-height: var(--typeHeaderLineHeight)
}

@media only screen and (max-width:589px) {
  
	.cart__subtotal {
		font-size: 0.9em
	}
}

.cart__checkout {
	width: 100%;
}

iframe.zoid-component-frame {
	z-index: 1 !important;
}

.drawer__cart-empty {
	display: none;
}

.drawer.is-empty .drawer__inner {
	display: none;
}

.drawer.is-empty .drawer__cart-empty {
	display: block;
}

.product-single__meta {
	padding-bottom: 45px;
}

@media only screen and (max-width:589px) {
	.product-single__meta {
		margin-top: 20px
	}
}

.product-single__meta .social-sharing {
	margin-top: 25px
}

.product-single__title {
	font-size: calc(var(--typeHeaderSize)*0.6);
	margin-bottom: 7px;
	word-wrap: break-word
}

@media only screen and (min-width:590px) {

	.product-single__title {
		font-size: var(--typeHeaderSize);
	}
}

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

.product-single__description-full {
	margin: 40px 0;
}

.product-single__form {
	margin-top: 30px;
	margin-bottom: 40px
}

.product-single__form .errors {
	margin-top: 10px;
}

.product-single__variants {
	display: none
}

.no-js .product-single__variants {
	display: block;
	margin-bottom: 40px
}

.product-image-main {
	position: relative;
	border-radius: 1em;
	overflow: hidden;
}

.product__video-wrapper {
	position: relative;
	overflow: hidden;
	max-width: 100%;
	padding-bottom: 100%;
	height: auto;
	background-color: var(--colorSmallImageBg)
}

.product__video-wrapper iframe {
	width: 100%;
	height: 100%;
	transition: opacity 0.5s ease-in;
}

.product__video-wrapper.loaded[data-video-style=muted]:before {
	content: "";
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.product__video-wrapper.video-interactable:before {
	display: none !important;
}

.product__video-wrapper.loaded:after {
	display: none;
}

.product__video-wrapper.loading iframe {
	opacity: 0.01;
}

.product__video-wrapper.loaded iframe {
	opacity: 1;
}

.product__video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.product-video-trigger {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.product__photos {
	direction: ltr;
	margin-bottom: 20px;
}

.product__photos a {
	display: block;
	max-width: 100%;
}

.product__photos img {
	display: block;
	margin: 0 auto;
	max-width: 100%;
	width: 100%;
}

.product__main-photos {
	position: relative;
	overflow: hidden;
	flex: 1 1 auto
}

@media only screen and (min-width:590px) {

	.product__main-photos {
		order: 2
	}
}

.product-main-slide:not(.is-selected) button,.product-main-slide:not(.is-selected) iframe,.product-main-slide:not(.is-selected) model-viewer,.product-main-slide:not(.is-selected) video {
	display: none;
}

.product-main-slide {
	display: none;
	width: 100%
}

.product-main-slide:first-child {
	display: block;
}

.flickity-slider .product-main-slide {
	display: block
}

.product__thumbs {
	position: relative;
	overflow: hidden;
    padding-top: 20px;
}

@media only screen and (min-width:1050px) {
	.product__photos--beside {
		display: flex;
		width: 100%;
	}

	.product__thumbs--beside {
		flex: 0 0 120px;
		max-width: 120px;
		margin-left: 0;
		margin-right: 20px
	}

	.product__thumbs--beside .product__thumbs--scroller {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		width: 100%;
		overflow-y: scroll
	}

	.product__thumbs--beside .product__thumb-item {
		margin-bottom: 25px;
	}

	.product__thumbs--beside .product__thumb-item:last-child {
		margin-bottom: 0;
	}
}

.product__thumbs--scroller {
	scrollbar-width: none;
	scroll-behavior: smooth;
	-ms-overflow-style: -ms-autohiding-scrollbar
}

.product__thumbs--scroller::-webkit-scrollbar {
	height: 0;
	width: 0;
}

.product__thumb-item {
	border: 2px solid transparent
}

.product__thumb-item a.is-active,.product__thumb-item a:focus {
	outline: none
}

.product__thumb-item a.is-active:before,.product__thumb-item a:focus:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(55, 105, 170, 0.1);
	z-index: 1;
}

.product__thumb-item a:active:before {
	content: none;
}

@media only screen and (max-width:1049px) {
	.product__thumbs--beside .product__thumbs--scroller {
		overflow-x: scroll;
		white-space: nowrap
	}

	.product__thumbs--beside {
		margin-top: 20px
	}

	.product__thumbs--beside .product__thumb-item {
		display: inline-block;
		vertical-align: middle;
		margin-right: 11px;
		max-width: 80px;
		margin-right: 20px
	}
}

.product__thumbs--beside .product__thumb-item{
	border-radius: .5em;
	overflow: hidden;
}

.product__thumbs--beside .product__thumb-item:last-child {
	margin-right: 0;
}

.product__thumb-arrow {
	position: absolute;
	background: var(--colorBody);
	color: var(--colorTextBody);
	transform: none;
	border-radius: 0;
	padding: 0;
	z-index: 2
}

.product__thumb-arrow .icon {
	display: inline-block;
	width: 6px;
	height: 10px;
}

@media only screen and (max-width:1049px) {
	.product__thumbs .product__thumb-arrow {
		top: 0;
		height: 100%;
		width: 25px
	}

	.product__thumbs .product__thumb-arrow.product__thumb-arrow--prev {
		left: 0;
		text-align: left;
	}

	.product__thumbs .product__thumb-arrow.product__thumb-arrow--next {
		right: 0;
		text-align: right;
	}
}

@media only screen and (min-width:1050px) {
	.product__thumbs .product__thumb-arrow {
		width: 100%
	}

	.product__thumbs .product__thumb-arrow .icon {
		margin: 0 auto;
		transform: rotate(90deg);
	}

	.product__thumbs .product__thumb-arrow.product__thumb-arrow--prev {
		top: 0;
		left: auto;
		padding-bottom: 10px;
	}

	.product__thumbs .product__thumb-arrow.product__thumb-arrow--next {
		top: auto;
		bottom: 0;
		right: auto;
		padding-top: 10px;
	}
}

.product__thumb {
	position: relative;
	display: block;
	cursor: pointer;
}

.product__thumb-icon {
	position: absolute;
	top: 50%;
	right: 50%;
	background-color: var(--colorPrimary);
	border-radius: 100px;
	padding: 6px;
	transform: translate(50%, -50%);
	z-index: 1;
	opacity: 0;
	transition: opacity 0.5s ease;
	font-size: 0
}

.aos-animate .product__thumb-icon {
	opacity: 1
}

.product__thumb-icon .icon {
	fill: var(--colorBody);
	width: 10px;
	height: 10px
}

@media only screen and (min-width:590px) {

	.product__thumb-icon .icon {
		width: 13px;
		height: 13px
	}
}

.product__policies {
	margin-top: 6.6px;
	font-size: 0.85em
}

.product__price-small {
	font-size: calc(var(--typeBaseSize) * 0.9);
	color: var(--colorPrimary);
	font-weight: 600;
}

@media only screen and (min-width:590px) {

	.product__policies {
		margin-top: 10px
	}
}

.product__price {
	font-size: calc(var(--typeBaseSize) + 4px);
	color: var(--colorPrimary);
	font-weight: 600;
}

@media only screen and (min-width:590px) {

	.product__price {
		font-size: calc(var(--typeBaseSize) + 8px)
	}
}

.sale-price {
	color: var(--colorPrimary);
}

.product__unit-price {
	font-size: 0.8em;
	opacity: 0.8;
}

.product__price--compare {
	padding-right: 5px;
    font-size:1.1em;
    color:var(--colorSecond);
	display: inline-block;
	text-decoration: line-through;
}

.product__inventory {
	margin-top: 6.66667px;
	margin-bottom: -6.66667px;
	font-style: italic
}

.state-color__green {
	color: #00a226 !important;
}

.state-color__Primary {
	color: var(--colorPrimary) !important;
}

.list_advantages {
	position: relative;
	padding-left: 25px;
	color: var(--colorSecond);
}

.list_advantages:before{
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    background: #e70014;
    border-radius: 50%;
    display: block;
    top: 50%;
    left: 6px;
    transform: translateY(-50%);
}
/* .list_advantages:before {
	-webkit-transform: translate(-50%, -50%) rotate(45deg);
	-moz-transform: translate(-50%, -50%) rotate(45deg);
	transform: ranslate(-50%, -50%) rotate(45deg);
	content: "";
	position: absolute;
	width: 5px;
	height: 7px;
	display: block;
	border: solid currentColor;
	border-width: 0 2px 2px 0;
	top: 12px;
	left: 9px
}

.list_advantages::after {
	content: "";
	position: absolute;
	width: 18px;
	height: 18px;
	display: block;
	border: solid currentColor;
	border-width: 2px;
	top: 4px;
	left: 0;
	border-radius: 50%
} */

@media only screen and (min-width:590px) {

	.product__inventory {
		margin-top: 10px;
		margin-bottom: -10px
	}
}

.product__quantity {
/* 	margin-bottom: 30px */
}

.product__quantity label {
	display: block;
	margin-bottom: 10px;
}

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

.product-form-holder--loaded {
	animation: fade-in 1s ease;
}

.add-to-cart[disabled]+.shopify-payment-button {
	display: none;
}

.product-slideshow.flickity-enabled .product-main-slide {
	display: none;
}

.product-slideshow.flickity-enabled .flickity-viewport .product-main-slide {
	display: block;
}

.product__photo-zoom {
	position: absolute;
	bottom: 0;
	right: 0;
	cursor: zoom-in
}

@media only screen and (max-width:589px) {

	.product__photo-zoom {
		padding: 6px
	}

	.product__main-photos .product__photo-zoom {
		margin-bottom: 10px;
		margin-right: 10px
	}

	.product-slideshow .product__photo-zoom {
		opacity: 0;
		transition: opacity 0.5s ease-out
	}

	.product-slideshow .is-selected .product__photo-zoom {
		opacity: 1
	}
}

@media only screen and (min-width:590px) {

	.product__photo-zoom {
		opacity: 0;
		width: 100%;
		top: 0;
		left: 0;
		margin: 0;
		border-radius: 0
	}

	.product__photo-zoom span,.product__photo-zoom svg {
		display: none;
	}
}

.product-gift {
	border-radius: 1em;
	overflow: hidden;
}

.product-gift__warpper {
	padding: 30px 30px 0;
}

.product-gift__header {
	background-color: var(--colorBorder);
	padding: 15px 20px;
}

.product-gift__check label {
	content: "";
	width: 8px;
	height: 12px;
	display: block;
	border: solid #fff;
	transform: translate(-50%, -50%) rotate(45deg);
	border-width: 0 3px 3px 0;
	position: absolute;
	right: 8px;
	bottom: 2px;
	margin: -3px -3px 0 0;
	z-index: 2;
}

.product-gift__check {
	position: relative;
	float: right;
	background-color: var(--colorPrimary);
	width: 25px;
	height: 25px;
	border-radius: 50px;
}

.product-gift__item {
	padding-bottom: 30px;
}

.product-delivery {
	display: flex;
    align-items: center;
	margin-bottom: 30px;
}

.icon-parameter {
	background-color: rgba(255,255,255,.75);
	border: 2px solid var(--colorBody);
	padding: 20px 10px;
	border-radius: 1em;
	transition: border-color 0.3s cubic-bezier(0.38, 0.8, 0.32, 1.07)
}

.icon-parameter__img {
	margin: 10px 0;
	width: 50px;
}

.icon-parameter:hover {
	border-color: var(--colorPrimary);
}

.template-blog .article {
	margin-bottom: 60px
}

@media only screen and (min-width:590px) {

	.template-blog .article {
		margin-bottom: 120px
	}
}

.template-blog .article:last-child {
	margin-bottom: 0
}

@media only screen and (min-width:590px) {

	.template-blog .article:last-child {
		margin-bottom: 60px
	}
}

.article .section-header__title {
	margin-bottom: 5px;
}

.article__h3 {
	color: var(--colorHeroText);
}

.article__h3:hover {
	color: var(--colorHeroText);
}

.article__content-meta {
	margin-bottom: 20px;
}

.article__featured-image {
	display: block;
	margin-bottom: 40px
}

.article__featured-image img {
	display: block;
	margin: 0 auto;
}

.article__body {
	margin-bottom: 20px
}

@media only screen and (min-width:590px) {

	.article__body {
		margin-bottom: 40px
	}
}

.article__content {
	width: 100%;
}

.article__image-wrap--empty {
	height: 0;
	margin: 0;
}

.article__image-wrap {
	position: relative;
	height: 420px;
	border-radius: 1em;
	margin-bottom: 30px;
}

.article-excerpt {
	color: var(--colorSecond);
	line-height: var(--typeBaseLineHeight);
    overflow:hidden;
    text-overflow:ellipsis;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:3;
}

@media only screen and (min-width:590px) {
	.article__content {
		flex: 1 1 auto;
		padding: 40px 40px 40px 0;
		width: 100%;
		max-width: 50%;
	}

	.article__content--right {
		padding: 40px 0 40px 40px;
	}

	.article__image-wrap {
		height: 530px;
	}

	.article__image-wrap--right {
		order: 2;
	}

	.article__image {
		position: absolute;
		left: 0;
		right: 50%;
		width: auto;
		height: 450px;
		min-width: 0
	}

	.article__image-wrap--right .article__image {
		left: 50%;
		right: 0
	}
}

.comment.last {
	margin-bottom: -20px;
  list-style: none !important;
}

.instafeed_warpper {
	margin: 0;
}

.wf-container .instafeed_warpper {
	padding-left: 30px;
	padding-bottom: 30px;
}

.wf-container .instafeed_link {
	position: relative;
	display: block;
	border-radius: .5em .5em 0 0;
	overflow: hidden;
	line-height: 0;
}

@media screen and (max-width: 589px) {
	.wf-container .instafeed_warpper {
		padding-left: 20px;
	}
}

.instafeed_caption {
	padding: 20px;
	border: 2px solid var(--colorBorder);
	background-color: #f9fbfc;
	border-radius: 0 0 .5em .5em;
	border-top-width: 0;
}

.flickity-slider .instafeed_caption {
	display: none;
}

.flickity-slider .instafeed_warpper {
	width: 500px;
	height: 400px;
	display: block;
}

.flickity-slider .instafeed_img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.instafeed_link:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	background-color: var(--colorModalBg);
	background-size: 2em;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox=%220%200%2020%2020%22%3E%0A%3Ccircle%20fill=%22white%22%20cx=%2215.3%22%20cy=%224.7%22%20r=%221.2%22/%3E%0A%3Cpath%20fill=%22none%22%20stroke=%22white%22%20stroke-miterlimit=%2210%22%20d=%22M14.3,19H5.7C3.1,19,1,16.9,1,14.3V5.7C1,3.1,3.1,1,5.7,1h8.6C16.9,1,19,3.1,19,5.7v8.6%0A%09C19,16.9,16.9,19,14.3,19z%22/%3E%0A%3Ccircle%20fill=%22none%22%20stroke=%22white%22%20stroke-miterlimit=%2210%22%20cx=%2210%22%20cy=%2210%22%20r=%224.3%22/%3E%0A%3Ccircle%20fill=%22white%22%20cx=%2215.3%22%20cy=%224.7%22%20r=%221.2%22/%3E%0A%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	z-index: 1;
	transition: all 0.35s ease-in-out;
}

.instafeed_link:hover:after {
	opacity: 1;
}

.gallery .flickity-page-dots .dot,.slider-section .flickity-page-dots .dot {
	height: 3px;
	width: 5%;
	color: #eee;
	margin: 0;
	border-radius: 0;
}

.gallery .flickity-page-dots {
	bottom: -6px;
}

.parameter_header {
	border-bottom: 2px solid var(--colorPrimary);
}

.parameter_header__title {
	font-size: 1.2em;
	font-weight: 600;
}

@media screen and (max-width: 589px) {
	.parameter_header__title {
		font-size: .9em;
	}
}

.table-feature {
	border-bottom: 1px solid var(--colorBorder);
	padding: 25px 0 12px 0;
	color: var(--colorSecond);
	line-height: 2.2;
}

.table-item {
	display: block;
}

.single-sticky {
	background-color: var(--colorBody);
	position: sticky;
	top: 62px;
	z-index: 1;
}

@media screen and (min-width: 1020px) {
	.single-sticky {
		top: 72px;
	}
}

.review-slider .carousel-cell {
	width: 50%;
	padding: 10px 20px;
}

@media screen and (min-width: 590px) and (max-width: 1049px) {
	.review-slider .carousel-cell:nth-child(odd) {
		padding-left: 40px;
	}

	.review-slider .carousel-cell:nth-child(even) {
		padding-right: 40px;
	}
}

.review-slider__wrap {
	width: 100%;
	padding: 35px;
}

.review-header__start {
	margin: 0 0 0 20px !important;
}

@media screen and (min-width: 1050px) {
	.review-slider .carousel-cell {
		width: 33.3333%;
	}

	.review-slider .carousel-cell:first-child,.review-slider .carousel-cell:nth-child(3n+1) {
		padding-left: 40px;
	}

	.review-slider .carousel-cell:nth-child(3n) {
		padding-right: 40px;
	}

	.review-slider .carousel-cell:nth-child(3n-1) {
		padding-right: 30px;
		padding-left: 30px;
	}

	.review-slider__wrap {
		padding: 30px 40px 40px;
	}
}

@media screen and (max-width: 589px) {
	.review-slider .carousel-cell {
		width: 100%;
		padding: 20px;
	}

	.review-header__start {
		display: block;
		margin: 0 !important;
	}

	.review-page-width {
		padding: 0;
	}

	.review-slider__wrap {
		padding: 25px;
	}
}

.review-slider__text {
	font-size: var(--typeBaseSize);
	height: 150px;
	overflow: auto;
}

.reviews-slide__header {
	margin-bottom: 35px;
}

.reviews-stars {
	display: block;
}

.reviews-slide__author {
	width: 55px;
	height: 55px;
	border-radius: 50%;
	border: 3px solid var(--colorBody);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	margin-right: 20px;
	float: left;
}

.reviews-slide__date {
	font-size: 15px;
	font-weight: 400;
	line-height: 2;
	float: right;
	color: var(--colorSecond);
}

.reviews-product {
	overflow: hidden;
	display: flex;
	align-items: center;
}

.section-radius {
	border-radius: 1em;
	overflow: hidden;
}

.p_large {
	font-size: calc(var(--typeBaseSize)*1.2);
	color: var(--colorSecond);
}

@media screen and (max-width: 589px) {
	.p_large {
		font-size: calc(var(--typeBaseSize)*1.1);
	}
}

.indicators {
	left: 0;
	bottom: 20px;
	margin: 0;
	height: 3px;
	width: 100%;
	display: none;
	justify-content: space-between;
	position: absolute;
}

.indicator {
	width: 100%;
	background-color: #eee;
	flex-grow: 1;
	margin: 0 3px;
}

.test-ride__maps {
	width: 100%;
	height: 600px;
	border-radius: 1em;
}

.maps-label {
	margin-bottom: 20px;
	padding: 0 20px;
	overflow: hidden;
	border-bottom: 1px solid #c2c6c9;
}

.maps-label .pack_title {
	display: block;
	padding: 15px 0;
	font-size: 1.2em;
}

.maps-label .hide {
	display: block !important;
	height: 0;
}

.test_ride_locat {
	margin-top: 15px;
	overflow-y: auto;
	height: 520px;
	border-top: 1px solid #c2c6c9;
	-webkit-overflow-scrolling: touch;
}

.maps-label_img {
	object-fit: cover;
	width: 100%;
	height: 160px;
	border-radius: 0.6em;
	margin-bottom: 15px;
}

.test-ride_meta {
	padding: 15px;
}

@media screen and (max-width: 589px) {
	.test-ride__maps {
		height: 25vh;
		margin-bottom: 15px;
	}

	.test_ride_locat {
		height: auto;
		overflow-y: visible;
	}
}

.choose-plan-comparison-chart-v1 table {
	table-layout: fixed;
}

.choose-plan-comparison-chart-v1 tbody tr:nth-child(odd) {
	display: none;
}

@media (max-width: 768px) {
	.choose-plan-comparison-chart-v1 td:first-child,
.choose-plan-comparison-chart-v1 th:first-child {
		display: none;
	}

	.choose-plan-comparison-chart-v1 tbody tr:nth-child(odd) {
		display: table-row;
	}

	.compare-title {
		background: #f7f7f7 !important;
	}
}

.choose-plan-comparison-chart-v1 td,
.choose-plan-comparison-chart-v1 th {
	text-align: center;
}

.compare-row td:first-child {
	font-weight: 600;
}

.press-author__image {
	margin: 0 auto 20px;
	max-width: 160px;
}

.wf-column {
	float: left;
}

.cover-video__icon {
	position: relative;
}

.cover-video__icon::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 66px;
	height: 66px;
	background-color: rgba(0, 0, 0, .5);
	border-radius: 50%;
	border: 3px solid var(--colorBody);
	transform: translate(-50%, -50%);
	z-index: 2;
}

.cover-video__icon::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-top: 12px solid transparent;
	border-bottom: 12px solid transparent;
	border-left: 20px solid var(--colorBody);
	transform: translate(-40%, -50%);
	z-index: 2;
}

.article__grid-image:focus.cover-video__icon::before, .article__grid-image:hover.cover-video__icon::before {
	background-color: var(--colorBody);
	border-color: var(--colorPrimary);
	transition: all 0.3s cubic-bezier(0.38, 0.8, 0.32, 1.07);
}

.article__grid-image:focus.cover-video__icon::after, .article__grid-image:hover.cover-video__icon::after {
	border-left-color: var(--colorPrimary);
	transition: all 0.3s cubic-bezier(0.38, 0.8, 0.32, 1.07);
}

.feature-list__link {
	display: block;
	color: var(--colorTitle);
	padding-bottom: 20px;
	transition: all 0.3s;
}

.feature-list__link:hover {
	color: var(--colorPrimary);
}

.contact-left {
	background-color: var(--colorPrimary);
	color: var(--colorBody);
	border-radius: 1em 0 0 1em;
}

@media screen and (max-width: 589px) {
	.contact-left {
		border-radius: 1em 1em 0 0;
	}
}

.section-offset {
	margin-top: -100px;
	margin-bottom: 50px;
}

.section-offset__large {
	margin-top: -240px;
	margin-bottom: 50px;
}

@media screen and (max-width: 589px) {
	.section-offset__large {
		margin-top: 0;
	}
}

.text-shadow {
	text-shadow: 0 4px 8px rgb(0,0,0,.75);
}

.navigation_bar {
	position: fixed;
	top: 61px;
	padding: 10px 0;
	z-index: 2;
	width: 100%;
	background-color: var(--colorBorder);
	transform: translateY(-71px);
	opacity: 0;
	transition: all 0.5s cubic-bezier(0.38, 0.8, 0.32, 1.07);
}

@media screen and (min-width: 1020px) {
	.navigation_bar {
		top: 71px;
	}
}

.navigation_bar.active {
	transform: translateY(0);
	opacity: 1;
	transition: transform 0.5s cubic-bezier(0.38, 0.8, 0.32, 1.07);
}

.navigation_link.active {
	border-color: var(--colorPrimary) !important;
	color: var(--colorPrimary) !important;
	transition: border 0.3s;
}

.navigation_bar .topbar {
	border: none;
}

.navigation_bar .js-qty__wrapper {
	max-width: 80px;
}

.navigation_bar .js-qty__num, .navigation_bar select {
	padding: 4px 10px;
}

.topbar .btn--tertiary {
	border-color: #ccd9e3;
}

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

.step-item {
	flex: 0 1 25%;
	position: relative;
	border-top: 2px solid var(--colorPrimary);
	padding: 50px 30px 0 30px;
}

.step-label {
	position: absolute;
	top: 0;
	left: 50%;
	width: 40px;
	height: 40px;
	font-size: 1.2em;
	line-height: 1.7;
	font-weight: 500;
	color: var(--colorBody);
	border: 3px solid currentColor;
	box-shadow: 0 0 15px var(--colorShadow);
	background-color: var(--colorPrimary);
	border-radius: 50%;
	transform: translate(-20px, -20px);
}

@media only screen and (max-width:589px) {
	.step-section {
		flex-direction: column;
		align-items: flex-start;
		padding-left: 20px;
	}

	.step-item {
		flex: 0 1 100%;
		border-top: none;
		border-left: 2px solid var(--colorPrimary);
		padding: 30px 0 30px 40px;
		margin-bottom: 0;
	}

	.step-label {
		left: 0;
		top: 50%;
	}

	.table-item.h6 {
		height: 2em;
	}
}

.spr-starrating {
	font-size: 0.6em;
	vertical-align: middle;
}

.jdgm-rev.jdgm-rev {
	border-width: 2px !important;
	border-color: var(--colorBorder) !important;
	border-radius: .5em !important;
	background-color: #f9fbfc !important;
}

.jdgm-rev-widg, .jdgm-all-reviews-widget {
	padding: 0 !important;
	border-width: 0 !important;
}

.jdgm-rev .jdgm-rev__header {
	padding: 24px 24px 0 24px !important;
}

.jdgm-rev .jdgm-rev__content {
	padding: 12px 24px 24px !important;
}

.jdgm-rev .jdgm-rev__social-inner {
	padding: 0 24px 24px 24px !important;
}

.jdgm-rev .jdgm-rev__prod-info-wrapper {
	padding: 12px 24px !important;
	border-top: 2px solid var(--colorBorder) !important;
}

.jdgm-rev__buyer-badge {
	border-radius: .5em !important;
}

.product-tag {
  	display:inline-block;
  	font-size:.85rem;
    padding: .25rem .6rem;
    text-transform: uppercase;
    letter-spacing: .1em;
  	margin-left:.5rem;
    background-color: var(--colorPrimary);
    color: var(--colorBody);
    border-radius: 25px;
    vertical-align:middle;
}
.inStock{
	background: #00a226;
}
.kbo-ebike-tag{
	background: #00a226;
}
.access-hide{
  display: none;
}
.Accessories-bottom-menu img{
	width: auto;
	max-height: 178.66px;
	margin: 0 auto;
}
.product-payment__item .h5.rte--nomargin{ margin-bottom: 20px; }

.accessorice_btn{
  display: flex;
  justify-content: space-between;
}
.accessorice_btn .btn{
  padding: 10px 20px;
}
.product_mask_bg{
  background: url(media_files/Images/hb_pdp_swiper_bg.png?v=1646014302) no-repeat center center;
  background-size:cover;
}

/* Products Thumbnail Style */
.below_style{
      overflow-x: scroll;
    white-space: nowrap;
}
.below_style .product__thumb-item{
      border-radius: 0.5em;
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
    max-width: 10%;
    margin-right: 20px;
}
/* End Products Thumbnail Style */

.center_wrap{
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
}
.swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}
.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}
.hb_news_swiper{background:#fff;padding:80px 0;}
.hb_news_swiper .news_tit{width:100%;display:flex;justify-content:center;}
.hb_news_swiper .news_tit span{display:block;padding-left:50px;background:none;}
.hb_news_swiper .news_tit span b{padding-right:50px;font-weight:normal;font-size:44px;line-height:58px;background:;}
/* swiper block */
.hb_swiper_block{padding:50px 0;background:url(media_files/Images/4a63960f1287cb83052a00a425b4f70.jpg?v=1646815214) no-repeat center top;}
.hb_swiper_silder{width:80%;margin:0 auto;overflow:hidden;position:relative;} /* height:630px; */
.hb_swiper_silder .swiper-slide{text-align:center;}
.hb_swiper_silder .swiper-slide img{ height: 720px; max-height: 720px; }
.hb_swiper_dot{width:100%;height:28px; }
.hb_swiper_dot .swiper-wrapper{display:flex;justify-content:center;}
.hb_swiper_dot .swiper-wrapper .swiper-slide{width:30px;height:30px;margin:0 8px;padding:2px;border:1px solid transparent;border-radius:100px;cursor:pointer;}
.hb_swiper_dot .swiper-wrapper .swiper-slide-thumb-active{border:1px #1B1B1B solid;}
.hb_swiper_dot .swiper-wrapper .swiper-slide img{width:30px;border-radius:100px;}
.hb_swiper_btm{padding-top:30px;overflow: hidden;}
.hb_swiper_btm .swiper-product-name{display:flex;align-items:center;justify-content:center;}
.hb_swiper_btm .product_name{font-size:30px;text-align: center;margin-bottom: 15px;}
.hb_swiper_btm .product_r_box{padding:0 0 0 34px;display:flex;align-items:center;justify-content:center;}
.hb_swiper_btm .product_price{padding:0 49px 0 0;font-size:26px;color: #1b1b1b;}
.hb_swiper_btm .product_buy_btn{width:180px;height:50px;}
.hb_swiper_btm .product_buy_btn a{
	display: block;
    overflow: hidden;
    background: url(media_files/Images/hb_buy_btn.png?v=1645501178) no-repeat center center;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 50px;
    font-size: 18px;
    letter-spacing: 1px;
    color: #1B1B1B;
    text-decoration: none;
}
@media screen and (max-width: 750px){
	.hb_swiper_block{padding:82px 0 30px;background:url(media_files/Images/4a63960f1287cb83052a00a425b4f70.jpg?v=1646815214) no-repeat center top;background-size:auto 100%;}
	.hb_swiper_silder{width:100%;margin:0 auto;height:auto;overflow:hidden;position:relative;}
	.hb_swiper_silder .swiper-slide{text-align:center;}
	.hb_swiper_silder .swiper-slide img{width:100%;height:auto;}
	.hb_swiper_dot{width:100%;height:28px;}
/* 	.hb_swiper_dot .swiper-wrapper{display:flex;justify-content:center;    transform: translate3d(0px, -170px, 0px) !important;} */
	.hb_swiper_dot .swiper-wrapper .swiper-slide{width:25px;height:25px;margin:0 8px;padding:2px;border:1px solid transparent;border-radius:100px;cursor:pointer;}
	.hb_swiper_dot .swiper-wrapper .swiper-slide-thumb-active{border:1px #1B1B1B solid;}
	.hb_swiper_dot .swiper-wrapper .swiper-slide img{width:25px;border-radius:100px;}
	.hb_swiper_btm{padding:70px 16px 0 16px;}
	.hb_swiper_btm .product_name{font-size:24px;line-height:32px;flex:1;margin-bottom: 10px;}
	.hb_swiper_btm .product_r_box{padding:0;display:flex;align-items:center;flex-wrap:wrap;flex-direction:column;}
	.hb_swiper_btm .product_price{padding:0 0 0 0;font-size:18px;margin-bottom: 10px;}
	.hb_swiper_btm .product_buy_btn{width:140px;height:40px;}
	.hb_swiper_btm .product_buy_btn a{
      
        display: block;
        overflow: hidden;
        background: url(media_files/Images/hb_buy_btn.png?v=1645501178) no-repeat center center;
        width: 150px;
        height: 40px;
        text-align: center;
        line-height: 40px;
        font-size: 14px;
        letter-spacing: 1px;
        color: #1B1B1B;
        text-decoration: none;
        background-size: cover;
    
    }
}
.hb_four_bg{padding-top:0; position: relative; }
.hb_four_bg  span.icon-arrow-right{
  position: absolute;
    color: #fff;
    font-size: 36px;
    right: 50px;
    bottom: 50px;
}
.hb_four_bg .full_box{width:100%;background:url(media_files/Images/54b24a6ddb6adebb7e483acc7b42abb.png?v=1647239002) #5a5a5a no-repeat center top;background-size:cover;}
.hb_four_bg .four_list_box{display:flex;padding:100px 0 110px 0;}
.hb_four_bg .four_list_box .list_box{width:25%;}
.hb_four_bg .four_list_box .list_box .pic_box{width:26.47%;margin:0 auto;}
.hb_four_bg .four_list_box .list_box .pic_box img{width:100%;}
.hb_four_bg .four_list_box .list_box .tit_box{font-size:24px;color:#fff;text-align:center;line-height:32px;padding-top:10px;}
.hb_four_bg .four_list_box .list_box .tXt_box{padding-top:5px;font-size:18px;color:#fff;line-height:20px;text-align:center;letter-spacing:1px;}
@media screen and (max-width: 750px){
	.hb_four_bg{padding-top:0;}
 	.hb_four_bg  span.icon-arrow-right{
    	bottom: 10px;
    	right: 20px;
    	font-size: 22px;
  	}
	.hb_four_bg .full_box{width:100%;background:url(media_files/Images/hb_four_mob_bg_7f6303f7-b50a-41ae-9efd-0561fad3d23b.jpg?v=1645520106) #5a5a5a no-repeat center top;background-size:cover;}
	.hb_four_bg .four_list_box{display:flex;padding:20px 0 50px 0;flex-wrap:wrap;}
	.hb_four_bg .four_list_box .list_box{width:50%;padding-top:30px;}
	.hb_four_bg .four_list_box .list_box .pic_box{width:26.47%;margin:0 auto;}
	.hb_four_bg .four_list_box .list_box .pic_box img{width:100%;}
	.hb_four_bg .four_list_box .list_box .tit_box{font-size:16px;color:#fff;text-align:center;line-height:20px;padding-top:10px;}
	.hb_four_bg .four_list_box .list_box .tXt_box{padding-top:5px;font-size:12px;color:#fff;line-height:20px;text-align:center;letter-spacing:1px;width:70%;margin:0 auto;}
}
/* 地图背景文字 */
.hb_map_txt{padding-top:96px;background:url(media_files/Images/hb_map_txt_bg.png?v=1645156060) no-repeat center 96px;}
.hb_map_txt .center_text{padding:372px 0 20px 0;width:84%;margin:0 auto;font-size:18px;line-height:32px;letter-spacing:1px;color: #7e7e7e;}
@media screen and (max-width: 750px){
	.hb_map_txt{padding-top:64px;background:url(media_files/Images/hb_map_txt_mob_bg.png?v=1645156060) no-repeat center 64px;background-size:100% auto}
	.hb_map_txt .center_text{
      padding: 216px 0 0 0;
      width: 90%;
      margin: 0 auto;
      font-size: 16px;
      line-height: 25px;
      letter-spacing: 0;
    }
}
.hb_three_list{padding-top:70px;background:url(media_files/Images/hb_three_list.png?v=1645430505) no-repeat center 160px; margin-bottom: 100px;}
.hb_three_list .title_box{line-height:58px;font-size:44px;text-align:center;}
.hb_three_list .list_box{width:98%;margin:0 auto;position:relative;padding-top:90px;}
.hb_three_list .list_box_swiper{width:100%;overflow:hidden;padding:8px 0;}
.hb_three_list .list_box_swiper .swiper-slide{padding:0;}
.hb_three_list .list_box_swiper .swiper-slide .details_box{background:#fff;border-radius:8px;padding:28px 26px 40px 26px;box-shadow:0px 2px 8px 0px rgba(0, 0, 0, 0.2);margin:0 8px;}
.hb_three_list .list_box_swiper .swiper-slide .details_box .user_top{padding:0 0 0 8px;display:flex;    align-items: center;}
.hb_three_list .list_box_swiper .swiper-slide .details_box .user_top .pic_box{width:130px;border-radius:100px;}
.hb_three_list .list_box_swiper .swiper-slide .details_box .user_top .pic_box img{width:100%;}
.hb_three_list .list_box_swiper .swiper-slide .details_box .user_top .text_box{padding-left:24px;flex:1;}
.hb_three_list .list_box_swiper .swiper-slide .details_box .user_top .text_box .name_box{font-size:20px;line-height:20px;letter-spacing:1px;}
.hb_three_list .list_box_swiper .swiper-slide .details_box .user_top .text_box .btm_box{padding-top:10px;display:flex;}
.hb_three_list .list_box_swiper .swiper-slide .details_box .user_top .text_box .btm_box .l_star{flex:1;}
.hb_three_list .list_box_swiper .swiper-slide .details_box .user_top .text_box .btm_box .r_time{font-size:16px;line-height:20px;letter-spacing:1px;}
.hb_three_list .list_box_swiper .swiper-slide .details_box .text_scroll{margin:32px 0 32px 20px;overflow:auto;-webkit-overflow-scrolling:touch;height:256px;font-size:16px;line-height:32px;letter-spacing:1px;}
  

.hb_three_list .list_box_swiper .swiper-slide .details_box .text_scroll::-webkit-scrollbar{
    width:5px;
    height:5px;
}
.hb_three_list .list_box_swiper .swiper-slide .details_box .text_scroll::-webkit-scrollbar-track{
    background: rgb(239, 239, 239);
    border-radius:2px;
}
.hb_three_list .list_box_swiper .swiper-slide .details_box .text_scroll::-webkit-scrollbar-thumb{
    background: #bfbfbf;
    border-radius:10px;
}
.hb_three_list .list_box_swiper .swiper-slide .details_box .text_scroll::-webkit-scrollbar-thumb:hover{
    background: #bfbfbf;
}
.hb_three_list .list_box_swiper .swiper-slide .details_box .text_scroll::-webkit-scrollbar-corner{
    background: #179a16;
}
  
.hb_three_list .list_box_swiper .swiper-slide .details_box .product_box{border-top:1px #DCDCDC solid;padding-top:15px;display:flex;align-items:center;}
.hb_three_list .list_box_swiper .swiper-slide .details_box .product_box .pic_box{width:26.5%;}
.hb_three_list .list_box_swiper .swiper-slide .details_box .product_box .pic_box img{width:100%;}
.hb_three_list .list_box_swiper .swiper-slide .details_box .product_box .intro_box{padding-left:13%;flex:1;font-size:18px;letter-spacing:1px;line-height:20px;}
.hb_three_list .list_box .swiper-button-next, .hb_three_list .list_box .swiper-button-prev{width:52px;height:52px;background:#fff;border-radius:100px;box-shadow:0px 0px 8px 0px rgba(0, 0, 0, 0.15);}
.hb_three_list .list_box .swiper-button-next.swiper-button-disabled, .hb_three_list .list_box .swiper-button-prev.swiper-button-disabled{display:none;}
.hb_three_list .list_box .swiper-button-next{background:url(media_files/Images/next_icon_a2ce0944-baae-4695-b385-3952442c21a8.png?v=1645430398) #fff no-repeat;right:-22px;}
.hb_three_list .list_box .swiper-button-prev{background:url(media_files/Images/prev_icon_7906d630-cadf-4245-8a6f-a11d876dfc5e.png?v=1645430398) #fff no-repeat;left:-22px;}
.hb_three_list .list_box .swiper-button-next::after,.hb_three_list .list_box .swiper-button-prev::after{display:none;}
@media screen and (max-width: 750px){
	.hb_three_list{padding-top:80px;background:url(media_files/Images/hb_three_list_mob.png?v=1645430507) no-repeat center 140px;background-size:100% auto;}
	.hb_three_list .title_box{
      line-height: 36px;
      font-size: 28px;
      text-align: center;
      width: 90%;
      margin: 0 auto;
    }
	.hb_three_list .list_box{
      width: 90%;
      margin: 0 auto;
      position: relative;
      padding-top: 22px;
    }
	.hb_three_list .list_box_swiper{width:100%;overflow:hidden;padding:8px 0;}
	.hb_three_list .list_box_swiper .swiper-slide{padding:0;}
	.hb_three_list .list_box_swiper .swiper-slide .details_box{background:#fff;border-radius:8px;padding:20px 24px 15px 24px;box-shadow:0px 2px 8px 0px rgba(0, 0, 0, 0.2);margin:0;}
	.hb_three_list .list_box_swiper .swiper-slide .details_box .user_top{padding:0 0 0 0;display:flex;}
	.hb_three_list .list_box_swiper .swiper-slide .details_box .user_top .pic_box{width:54px;border-radius:100px;}
	.hb_three_list .list_box_swiper .swiper-slide .details_box .user_top .pic_box img{width:100%;}
	.hb_three_list .list_box_swiper .swiper-slide .details_box .user_top .text_box{padding-left:16px;flex:1;}
	.hb_three_list .list_box_swiper .swiper-slide .details_box .user_top .text_box .name_box{font-size:20px;line-height:20px;letter-spacing:1px;padding-top:5px;}
	.hb_three_list .list_box_swiper .swiper-slide .details_box .user_top .text_box .btm_box{padding-top:10px;display:flex;}
	.hb_three_list .list_box_swiper .swiper-slide .details_box .user_top .text_box .btm_box .l_star{flex:1;}
	.hb_three_list .list_box_swiper .swiper-slide .details_box .user_top .text_box .btm_box .r_time{font-size:14px;line-height:20px;letter-spacing:0;}
	.hb_three_list .list_box_swiper .swiper-slide .details_box .text_scroll{margin:15px 0 30px 8px;overflow:auto;-webkit-overflow-scrolling:touch;height:200px;font-size:14px;line-height:24px;letter-spacing:1px;}
	.hb_three_list .list_box_swiper .swiper-slide .details_box .product_box{border-top:1px #DCDCDC solid;padding-top:15px;display:flex;align-items:center;}
	.hb_three_list .list_box_swiper .swiper-slide .details_box .product_box .pic_box{width:26.5%;}
	.hb_three_list .list_box_swiper .swiper-slide .details_box .product_box .pic_box img{width:100%;}
	.hb_three_list .list_box_swiper .swiper-slide .details_box .product_box .intro_box{padding-left:6%;flex:1;font-size:16px;letter-spacing:1px;line-height:16px;}
	.hb_three_list .list_box .swiper-button-next, .hb_three_list .list_box .swiper-button-prev{width:30px;height:30px;background:#fff;border-radius:100px;box-shadow:0px 0px 8px 0px rgba(0, 0, 0, 0.15);}
	.hb_three_list .list_box .swiper-button-next.swiper-button-disabled, .hb_three_list .list_box .swiper-button-prev.swiper-button-disabled{display:none;}
	.hb_three_list .list_box .swiper-button-next{background:url(media_files/Images/next_icon_a2ce0944-baae-4695-b385-3952442c21a8.png?v=1645430398) #fff no-repeat;right:-8px;background-size:30px 30px;}
	.hb_three_list .list_box .swiper-button-prev{background:url(media_files/Images/prev_icon_7906d630-cadf-4245-8a6f-a11d876dfc5e.png?v=1645430398g) #fff no-repeat;left:-8px;background-size:30px 30px;}
	.hb_three_list .list_box .swiper-button-next::after,.hb_three_list .list_box .swiper-button-prev::after{display:none;}
}
/* .hb_tit_lr_box{padding-top:145px;} */
.hb_tit_lr_box .cent_box{width:82%;margin:0 auto;}
.hb_tit_lr_box .cent_box_tit{font-size:44px;line-height:58px;text-align:center;}
.hb_tit_lr_box .cent_box_flex{display:flex;padding-top:98px;}
.hb_tit_lr_box .cent_box_flex .left_pic{width:50%;}
.hb_tit_lr_box .cent_box_flex .left_pic img{width:100%;}
.hb_tit_lr_box .cent_box_flex .right_text{flex:1;}
.hb_tit_lr_box .cent_box_flex .right_text_box{width:60%;margin:0 auto;}
.hb_tit_lr_box .cent_box_flex .right_text_tit{padding-top:33px;font-size:30px;line-height:40px;text-align:center;}
.hb_tit_lr_box .cent_box_flex .right_text_logo{padding:30px 0 0px 0;text-align:center; }
.hb_tit_lr_box .cent_box_flex .right_text_logo img{ width: 40px;     margin: 0 auto; }
.hb_tit_lr_box .cent_box_flex .right_text_down{padding-top:28px;padding-left:13.5%;display:flex;}
.hb_tit_lr_box .cent_box_flex .right_text_down .icon_box{width:22%;}
.hb_tit_lr_box .cent_box_flex .right_text_down .icon_box img{width:100%;}
.hb_tit_lr_box .cent_box_flex .right_text_down .text_box{padding:0 6.3%;flex:1;font-size:24px;line-height:32px;}
@media screen and (max-width: 750px){
/* 	.hb_tit_lr_box{padding-top:79px;} */
	.hb_tit_lr_box .cent_box{
      width: 90%;
      padding: 0;
      margin: 0 auto;
    }
	.hb_tit_lr_box .cent_box_tit{font-size:28px;line-height:36px;text-align:center;}
	.hb_tit_lr_box .cent_box_flex{display:flex;padding:50px 0 0;}
	.hb_tit_lr_box .cent_box_flex .left_pic{width:59%;}
	.hb_tit_lr_box .cent_box_flex .left_pic img{width:100%;}
	.hb_tit_lr_box .cent_box_flex .right_text{flex:1;}
	.hb_tit_lr_box .cent_box_flex .right_text_box{width:auto;padding-left:15%;margin:0 auto;}
	.hb_tit_lr_box .cent_box_flex .right_text_tit{padding-top:0;font-size:18px;line-height:22px;text-align:left;}
	.hb_tit_lr_box .cent_box_flex .right_text_logo{padding:16px 0 0 0;text-align:center;}
	.hb_tit_lr_box .cent_box_flex .right_text_logo img{width:25%;}	
	.hb_tit_lr_box .cent_box_flex .right_text_down{padding-top:15px;padding-left:0;display:flex;}
	.hb_tit_lr_box .cent_box_flex .right_text_down .icon_box{width:18%;}
	.hb_tit_lr_box .cent_box_flex .right_text_down .icon_box img{width:100%;}
	.hb_tit_lr_box .cent_box_flex .right_text_down .text_box{padding:0 0 0 6.3%;flex:1;font-size:14px;line-height:16px;}
}
/* 展示block */
.hb_pdp_show{padding:72px 0 40px 0;}
.hb_pdp_show .position_box{width:100%;position:relative;padding-top:100px;}
.hb_pdp_show .bround_logo{position:absolute;left:0;top:0;width:14.7%;}
.hb_pdp_show .bround_logo img{width:100%;}
.hb_pdp_show .product_show{position:relative;width:850px;margin:0 auto;}
.hb_pdp_show .product_show img{width:100%;}
.hb_pdp_show .product_show ul{position:absolute;left:0;top:0;width:100%;height:100%;}
.hb_pdp_show .product_show ul li{width:65px;height:65px;position:absolute;}
.hb_pdp_show .product_show ul li a{display:block;width:65px;height:65px;background:url(media_files/Images/hb_pdp_show_dot.png?v=1645770857) no-repeat center center;}
.hb_pdp_show .product_show ul li a.this{display:block;width:65px;height:65px;background:url(media_files/Images/hb_pdp_show_dot_this.png?v=1645770858) no-repeat center center;}
.hb_pdp_show .product_show ul li.dot_list1{top:16.35%;left:24.7%;}
.hb_pdp_show .product_show ul li.dot_list2{top:62.5%;left:56%;}
.hb_pdp_show .product_show ul li.dot_list3{top:20.8%;left:60%;}
.hb_pdp_show .product_show ul li.dot_list4{top:54%;left:49%;}
.hb_pdp_show .product_show ul li.dot_list5{top:63%;left:12%;}
.hb_pdp_show .product_show ul li.dot_list6{top:7%;left:30%;}
.hb_pdp_show .product_show ul li.dot_list7{top:55%;left:85%;}
.hb_pdp_show .product_show ul li.dot_list8{top:68%;left:54%;}
.hb_pdp_show .product_show ul li.dot_list9{top:73%;left:35%;}
.hb_pdp_show .product_show ul li.dot_list10{top:65%;left:45%;}
  .hb_pdp_show .product_show ul li.dot_list11{ top: 7%; left: 19%; }
  .hb_pdp_show .product_show ul li.dot_list12{ top: 28%; left: 54%; }
  .hb_pdp_show .product_show ul li.dot_list13{ top: 46%; left: 43%; }
.hb_pdp_show .product_details{position:absolute;right:0;top:20px;width:25%;}
.hb_pdp_show .product_details_box{width:100%;}
.hb_pdp_show .product_details_hid{display:none;}
.hb_pdp_show .product_details_box .pic_box{padding:0;}
.hb_pdp_show .product_details_box .txt_box{padding-top:24px;}
.hb_pdp_show .product_details_box .txt_box_tit{font-size:30px;text-align:right;line-height:40px;}
.hb_pdp_show .product_details_box .txt_box_txt{padding-top:20px;letter-spacing:1px;line-height:20px;font-size:18px;text-align:right;}
  .hb_pdp_show .product_details_box svg{ display: none; }
@media screen and (max-width: 750px){
	.hb_pdp_show{padding:40px 0;}
	.hb_pdp_show .position_box{width:100%;position:relative;padding-top:50px;}
	.hb_pdp_show .bround_logo{position:absolute;left:16px;top:0;width:38%;}
	.hb_pdp_show .bround_logo img{width:100%;}
	.hb_pdp_show .product_show{position:relative;width:100%;margin:0 auto;}
	.hb_pdp_show .product_show img{width:100%;}
	.hb_pdp_show .product_show ul{position:absolute;left:0;top:0;width:100%;height:100%;}
	.hb_pdp_show .product_show ul li{width:30px;height:30px;position:absolute;}
	.hb_pdp_show .product_show ul li a{display:block;width:30px;height:30px;background:url(media_files/Images/hb_pdp_show_dot.png?v=1645770857) no-repeat center center;background-size:16px 16px;}
	.hb_pdp_show .product_show ul li a.this{display:block;width:30px;height:30px;background:url(media_files/Images/hb_pdp_show_dot_this.png?v=1645770858) no-repeat center center;background-size:30px 30px;}
	.hb_pdp_show .product_show ul li.dot_list1{top:14.35%;left:25.7%;}
	.hb_pdp_show .product_show ul li.dot_list2{top:60.5%;left:58%;}
	.hb_pdp_show .product_show ul li.dot_list3{top:18.8%;left:60%;}
	.hb_pdp_show .product_show ul li.dot_list4{top:52%;left:45%;}
	.hb_pdp_show .product_show ul li.dot_list5{top:60%;left:12%;}
	.hb_pdp_show .product_show ul li.dot_list6{top:4%;left:30%;}
	.hb_pdp_show .product_show ul li.dot_list7{top:52%;left:85%;}
    .hb_pdp_show .product_show ul li.dot_list8{top:66%;left:53%;}
    .hb_pdp_show .product_show ul li.dot_list9{top:71%;left:36%;}
    .hb_pdp_show .product_show ul li.dot_list10{top:63%;left:46%;}
  .hb_pdp_show .product_show ul li.dot_list11{ top: 4%; left: 18%;}
  .hb_pdp_show .product_show ul li.dot_list12{ top: 25%; left: 53%;}
  .hb_pdp_show .product_show ul li.dot_list13{ top: 44%;left:43%;}
  
  
	.hb_pdp_show .product_details{
      position:absolute;right:16px;top:0;width:100%;
    }
  
	.hb_pdp_show .product_details_hid{display:none;}
  
  	.hb_pdp_show .product_details_box{
    	width: 100%;
      display: flex;
      justify-content: space-between;
      position: fixed;
      top: 0;
      background: #fff;
      left: 0;
      padding: 10px;
      z-index: 9999;
	  border-bottom-left-radius: 15px;
      border-bottom-right-radius: 15px;
      box-shadow: 0 0 5px 2px #e8e8e8;
    }
  .hb_pdp_show .product_details_box svg{
    display: block;
  	width: 20px;
    height: 20px;
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 10;
  }
  .m-hide{ display: none !important; }
	.hb_pdp_show .product_details_box .pic_box{padding:0;text-align:right; width: 40%;}
	.hb_pdp_show .product_details_box .pic_box img{width:100%;}
	.hb_pdp_show .product_details_box .txt_box{padding-top:0px; width: 55%;}
	.hb_pdp_show .product_details_box .txt_box_tit{font-size:20px;text-align:left;line-height:34px;padding-right:20px;}
	.hb_pdp_show .product_details_box .txt_box_txt{letter-spacing:1px;line-height:20px;font-size:14px;text-align:left;padding-top:10px;}
}
/* 左右图文背景block */
.hb_lr_bg_box{background:#fff;} /* padding:85px 0 140px 0; */
.hb_lr_bg_box .list_box{display:flex;padding-top:90px;}
.hb_lr_bg_box .list_box_two{}
.hb_lr_bg_box .list_box .pic_box{width:50%;}
.hb_lr_bg_box .list_box .pic_box img{width:100%;}
.hb_lr_bg_box .list_box .r_txt{padding-left:3.6%;padding-right:3.6%; width: 50%;}
.hb_lr_bg_box .list_box .l_txt{padding-right:3.6%; width: 50%;}
.hb_lr_bg_box .list_box .tit_box{width:100%;font-size:24px;line-height:32px;}
.hb_lr_bg_box .list_box .text_box{padding-top:8px;}
.hb_lr_bg_box .list_box .text_box ul{padding-left:33px;}
.hb_lr_bg_box .list_box .text_box ul li{margin-top:15px;list-style:disc;font-size:18px;letter-spacing:1px;line-height:32px;color:#6e6e73;}
@media screen and (max-width: 750px){
	.hb_lr_bg_box{background:#fff;padding:0 0 30px 0;}
	.hb_lr_bg_box .list_box{display:flex;padding:30px 16px 0 16px;flex-direction:column;}
	.hb_lr_bg_box .list_box_two{flex-direction:column-reverse;}
	.hb_lr_bg_box .list_box .pic_box{width:100%;}
	.hb_lr_bg_box .list_box .pic_box img{width:100%;}
	.hb_lr_bg_box .list_box .r_txt{padding-left:0;padding-right:0; width:100%;}
	.hb_lr_bg_box .list_box .l_txt{padding-right:0; width:100%;}
	.hb_lr_bg_box .list_box .tit_box{width:100%;font-size:26px;line-height:34px;padding-top:30px;}
	.hb_lr_bg_box .list_box .text_box{padding-top:22px;}
	.hb_lr_bg_box .list_box .text_box ul{padding-left:20px;}
	.hb_lr_bg_box .list_box .text_box ul li{margin-top:8px;list-style:disc;font-size:16px;letter-spacing:0;line-height:26px;color:#6e6e73;}
}
/* 新闻模块轮播block */
.hb_news_swiper{background:#fff;padding:80px 0;}
.hb_news_swiper .news_tit{width:100%;display:flex;justify-content:center;}
.hb_news_swiper .news_tit span{display:block;padding-left:50px;background:none;}
.hb_news_swiper .news_tit span b{padding-right:50px;font-weight:normal;font-size:44px;line-height:58px;background:none;}
.hb_news_swiper .news_box{position:relative;}
.hb_news_swiper .news_swiper{width:100%;overflow:hidden;margin-top:94px;}
.hb_news_swiper .news_swiper .swiper-slide{width:33.33%;padding: 0 25px;}
.hb_news_swiper .news_swiper .pic_box{width:100%;}
.hb_news_swiper .news_swiper .pic_box img{width:100%;}
.hb_news_swiper .news_swiper .txt_box{padding-top:40px;}
.hb_news_swiper .news_swiper .txt_box_tit{font-size:24px;line-height:32px;}
.hb_news_swiper .news_swiper .txt_box_list{padding-top:8px;}
.hb_news_swiper .news_swiper .txt_box_list ul{padding-left:20px;}
.hb_news_swiper .news_swiper .txt_box_list ul li{margin-top:10px;list-style:disc;font-size:18px;letter-spacing:1px;line-height:32px;opacity:.6;}
.hb_news_swiper .news_box .swiper-button-next, .hb_news_swiper .news_box .swiper-button-prev{width:52px;height:52px;background:#fff;border-radius:100px;box-shadow:0px 0px 8px 0px rgba(0, 0, 0, 0.15);}
.hb_news_swiper .news_box .swiper-button-next.swiper-button-disabled, .hb_news_swiper .news_box .swiper-button-prev.swiper-button-disabled{display:none;}
.hb_news_swiper .news_box .swiper-button-next{background:url(media_files/Images/next_icon_a2ce0944-baae-4695-b385-3952442c21a8.png?v=1645430398) #fff no-repeat;right:-22px;}
.hb_news_swiper .news_box .swiper-button-prev{background:url(media_files/Images/prev_icon_7906d630-cadf-4245-8a6f-a11d876dfc5e.png?v=1645430398) #fff no-repeat;left:-22px;}
.hb_news_swiper .news_box .swiper-button-next::after,.hb_news_swiper .news_box .swiper-button-prev::after{display:none;}
@media screen and (max-width: 750px){
	.hb_news_swiper{background:#fff;padding:60px 0;}
	.hb_news_swiper .news_tit{width:100%;display:flex;justify-content:center;}
	.hb_news_swiper .news_tit span{display:block;padding-left:41px;background:none;}
	.hb_news_swiper .news_tit span b{padding-right:41px;font-weight:normal;font-size:26px;line-height:34px;background:none;}
	.hb_news_swiper .news_box{position:relative;margin:0 16px;}
	.hb_news_swiper .news_swiper{width:100%;overflow:hidden;margin-top:60px;}
	.hb_news_swiper .news_swiper .swiper-slide{width:58.3%;padding: 0;}
	.hb_news_swiper .news_swiper .pic_box{width:100%;}
	.hb_news_swiper .news_swiper .pic_box img{width:100%;}
	.hb_news_swiper .news_swiper .txt_box{padding-top:30px;}
	.hb_news_swiper .news_swiper .txt_box_tit{font-size:20px;line-height:26px;}
	.hb_news_swiper .news_swiper .txt_box_list{padding-top:0;}
	.hb_news_swiper .news_swiper .txt_box_list ul{padding-left:20px;}
	.hb_news_swiper .news_swiper .txt_box_list ul li{margin-top:10px;list-style:disc;font-size:16px;letter-spacing:0;line-height:24px;opacity:.6;}
	.hb_news_swiper .news_box .swiper-button-next, .hb_news_swiper .news_box .swiper-button-prev{width:30px;height:30px;background:#fff;border-radius:100px;box-shadow:0px 0px 8px 0px rgba(0, 0, 0, 0.15);}
	.hb_news_swiper .news_box .swiper-button-next.swiper-button-disabled, .hb_news_swiper .news_box .swiper-button-prev.swiper-button-disabled{display:none;}
	.hb_news_swiper .news_box .swiper-button-next{background:url(media_files/Images/next_icon_a2ce0944-baae-4695-b385-3952442c21a8.png?v=1645430398) #fff no-repeat;right:0;background-size:100% 100%;}
	.hb_news_swiper .news_box .swiper-button-prev{background:url(media_files/Images/prev_icon_7906d630-cadf-4245-8a6f-a11d876dfc5e.png?v=1645430398) #fff no-repeat;left:0;background-size:100% 100%;}
	.hb_news_swiper .news_box .swiper-button-next::after,.hb_news_swiper .news_box .swiper-button-prev::after{display:none;}
}
/* 标题左图右文 */
.hb_lr_img{padding:140px 0;}
.hb_lr_img .top_tit{width:100%;display:flex;justify-content:center;}
.hb_lr_img .top_tit span{display:block;padding-left:50px;background:none;}
.hb_lr_img .top_tit span b{padding-right:50px;font-weight:normal;font-size:44px;line-height:58px;background:none;}
.hb_lr_img .cent_box{padding-top:80px;display:flex;align-items:center;}
.hb_lr_img .cent_box .left_pic{width:47%;}
.hb_lr_img .cent_box .left_pic img{width:100%;}
.hb_lr_img .cent_box .right_txt{flex:1;padding:0 2.94% 0 6.25%;font-size:18px;line-height:32px;letter-spacing:1px;opacity:.6;}
@media screen and (max-width: 750px){
	.hb_lr_img{padding:60px 0;}
	.hb_lr_img .top_tit{width:100%;display:flex;justify-content:center;}
	.hb_lr_img .top_tit span{display:block;padding-left:41px;background:none;}
	.hb_lr_img .top_tit span b{padding-right:41px;font-weight:normal;font-size:26px;line-height:34px;background:none;}
	.hb_lr_img .cent_box{padding-top:60px;display:flex;align-items:center;flex-direction:column;}
	.hb_lr_img .cent_box .left_pic{width:100%;}
	.hb_lr_img .cent_box .left_pic img{width:100%;}
	.hb_lr_img .cent_box .right_txt{flex:1;padding:60px 16px 0 16px;font-size:16px;line-height:20px;letter-spacing:0;opacity:.6;}
}
* 配件block */
.hb_ride_box{padding:100px 0 0 0;}
.hb_ride_box .ride_tit{height:84px;background:url(media_files/Images/yellow_logo_4483ad98-8748-43dc-9358-a4713ea936fb.png?v=1645430908) no-repeat center center;background-size:auto 84px;text-align:center;line-height:84px;font-size:44px;}
.hb_ride_box .ride_cent_box{display:flex;padding-top:90px;align-items:center;}
.hb_ride_box .ride_cent_box .left_swiper{width:45.7%;position:relative;}
.hb_ride_box .ride_cent_box .left_swiper_box{width:66.2%;overflow:hidden;margin:0 auto;}
.hb_ride_box .ride_cent_box .left_swiper_box .swiper-slide img{width:100%;}
.hb_ride_box .ride_cent_box .left_swiper .swiper-button-next, .hb_ride_box .ride_cent_box .left_swiper .swiper-button-prev{width:25px;height:40px;background:none;}
/* .hb_ride_box .ride_cent_box .left_swiper .swiper-button-next.swiper-button-disabled, .hb_ride_box .ride_cent_box .left_swiper .swiper-button-prev.swiper-button-disabled{display:none;} */
.hb_ride_box .ride_cent_box .left_swiper .swiper-button-next{background:url(media_files/Images/hb_news_r_arrow.png?v=1645769611) no-repeat;right:0;background-size:25px 40px;}
.hb_ride_box .ride_cent_box .left_swiper .swiper-button-prev{background:url(media_files/Images/hb_news_l_arrow.png?v=1645769611) no-repeat;left:0;background-size:25px 40px;}
.hb_ride_box .ride_cent_box .left_swiper .swiper-button-next::after,.hb_ride_box .ride_cent_box .left_swiper .swiper-button-prev::after{display:none;}
.hb_ride_box .ride_cent_box .right_box{padding-left:10%;flex:1;}
.hb_ride_box .ride_cent_box .right_box .title_txt{font-size:24px;line-height:32px;}
.hb_ride_box .ride_cent_box .right_box .sub_btn{padding-top:72px;}
.hb_ride_box .ride_cent_box .right_box .sub_btn a{display:block;height:62px;background:#F5DA3B;width:41%;border-radius:100px;text-align:center;line-height:62px;color:#000;box-shadow:0px 13px 50px -20px rgba(0, 0, 0, 0.36);font-size:26px;text-decoration:none;}
@media screen and (max-width: 750px){
	.hb_ride_box{padding:60px 0 0 0;}
	.hb_ride_box .ride_tit{height:51px;background:url(media_files/Images/yellow_logo_4483ad98-8748-43dc-9358-a4713ea936fb.png?v=1645430908) no-repeat center center;background-size:auto 51px;text-align:center;line-height:51px;font-size:26px;}
	.hb_ride_box .ride_cent_box{display:flex;padding-top:60px;align-items:center;flex-direction:column;}
	.hb_ride_box .ride_cent_box .left_swiper{width:100%;position:relative;}
	.hb_ride_box .ride_cent_box .left_swiper_box{width:60%;overflow:hidden;margin:0 auto;}
	.hb_ride_box .ride_cent_box .left_swiper_box .swiper-slide img{width:100%;}
	.hb_ride_box .ride_cent_box .left_swiper .swiper-button-next, .hb_ride_box .ride_cent_box .left_swiper .swiper-button-prev{width:20px;height:30px;background:none;}
/* 	.hb_ride_box .ride_cent_box .left_swiper .swiper-button-next.swiper-button-disabled, .hb_ride_box .ride_cent_box .left_swiper .swiper-button-prev.swiper-button-disabled{display:none;} */
	.hb_ride_box .ride_cent_box .left_swiper .swiper-button-next{background:url(media_files/Images/hb_news_r_arrow.png?v=1645769611) no-repeat;right:20px;background-size:20px 30px;}
	.hb_ride_box .ride_cent_box .left_swiper .swiper-button-prev{background:url(media_files/Images/hb_news_l_arrow.png?v=1645769611) no-repeat;left:20px;background-size:20px 30px;}
	.hb_ride_box .ride_cent_box .left_swiper .swiper-button-next::after,.hb_ride_box .ride_cent_box .left_swiper .swiper-button-prev::after{display:none;}
	.hb_ride_box .ride_cent_box .right_box{padding-left:0;flex:1;width:100%;padding-top:40px;}
	.hb_ride_box .ride_cent_box .right_box .title_txt{font-size:24px;line-height:32px;text-align:center;}
	.hb_ride_box .ride_cent_box .right_box .sub_btn{padding-top:40px;}
	.hb_ride_box .ride_cent_box .right_box .sub_btn a{display:block;height:44px;background:#F5DA3B;width:40%;border-radius:100px;text-align:center;line-height:44px;color:#000;box-shadow:0px 6px 18px 0px rgba(0, 0, 0, 0.16);font-size:18px;text-decoration:none;margin:0 auto;}
}
/* FAQ block */
.hb_faq_box{padding:80px 0 50px 0;margin-bottom: 100px;}
.hb_faq_box .faq_tit{height:84px;background:url(media_files/Images/yellow_logo_4483ad98-8748-43dc-9358-a4713ea936fb.png?v=1645430908) no-repeat center center;background-size:auto 84px;text-align:center;line-height:84px;font-size:44px;}
.hb_faq_box .faq_list{width:73.5%;margin:0 auto;padding-top:20px;}
.hb_faq_box .faq_list li{border-bottom:1px #DCDCDC solid;padding:0;}
.hb_faq_box .faq_list li .title_box{position:relative;font-size:18px;line-height:20px;padding:20px 30px 20px 8px;cursor:pointer;}
.hb_faq_box .faq_list li .title_box::after{transition:all .35s;position:absolute;content:"";background:url(media_files/Images/hb_open_icon_55680bc4-ce65-490b-a8e9-0652f980aa64.png?v=1645772490) no-repeat center center;width:16px;height:16px;top:50%;margin-top:-8px;right:0;}
.hb_faq_box .faq_list li .cent_txt{padding:12px 12px 20px 12px;letter-spacing:1px;line-height:32px;font-size:16px;color:#6e6e73;display:none;}
.hb_faq_box .faq_list li.open_cur .title_box::after{transition:all .35s;position:absolute;content:"";background:url(media_files/Images/hb_close_icon_394e712a-c087-4f6b-86fe-6cd98e9d8751.png?v=1645772490) no-repeat center center;width:16px;height:16px;top:50%;margin-top:-8px;right:0;}
@media screen and (max-width: 750px){
	.hb_faq_box{padding:60px 0 0 0; }
	.hb_faq_box .faq_tit{height:51px;background:url(media_files/Images/yellow_logo_4483ad98-8748-43dc-9358-a4713ea936fb.png?v=1645430908) no-repeat center center;background-size:auto 51px;text-align:center;line-height:51px;font-size:26px;}
	.hb_faq_box .faq_list{width:auto;margin:0 auto;padding:10px 16px 0 16px;}
	.hb_faq_box .faq_list li{border-bottom:1px #DCDCDC solid;padding:0;}
	.hb_faq_box .faq_list li .title_box{position:relative;font-size:14px;line-height:20px;padding:20px 80px 6px 0;cursor:pointer;}
	.hb_faq_box .faq_list li .title_box::after{transition:all .35s;position:absolute;content:"";background:url(media_files/Images/hb_open_icon_55680bc4-ce65-490b-a8e9-0652f980aa64.png?v=1645772490) no-repeat center center;width:16px;height:16px;top:50%;margin-top:-8px;right:0;}
	.hb_faq_box .faq_list li .cent_txt{padding:20px 0 24px 0;letter-spacing:0;line-height:24px;font-size:16px;color:#6e6e73;display:none;}
	.hb_faq_box .faq_list li.open_cur .title_box::after{transition:all .35s;position:absolute;content:"";background:url(media_files/Images/hb_close_icon_394e712a-c087-4f6b-86fe-6cd98e9d8751.png?v=1645772490) no-repeat center center;width:16px;height:16px;top:50%;margin-top:-8px;right:0;}
}
.geometry li{
    display: flex;
    justify-content: space-between;
}
.geometry li span{
	display: inline-flex;
    width: 47%;
    justify-content: space-between;
    font-size: 22px;
    border-bottom: 1px solid #e8e8e8;
    padding-bottom: 25px;
    margin-bottom: 25px;
	color:#333;
}
  .geometry li span b{
  	font-weight: 500;
    color: #000;
  }
  .block-geome .bk_swiper_list{
    box-shadow: 0 0 10px 1px #e8e8e8;
    width: 90%;
    margin: 70px auto 0;
    padding: 20px 50px;
    border-radius: 15px;
    position: relative;
  }
  .block-geome .bk_swiper_list h3{
	color: #f5da3b;
    text-decoration: underline;
    font-size: 38px;
    font-weight: 500;
    margin-bottom: 20px;
  }
  
  .block-geome .bk_swiper_list .tab_list{
  	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .block-geome .bk_swiper_list .tab_list .tab_list_box{
  	width: 33.3%;
    text-align: center;
  }
  .block-geome .bk_swiper_list .tab_list .tab_list_box img{
  	width:66%;
  }
  
  .block-geome .slide-flex{
    display: flex;
/* 	flex-direction: column; */
    border-radius: 15px;
    align-items: center;
  }

  .block-geome .slide-flex .left_box{ width: 50%; text-align: center; display: flex; align-items: center;     overflow: hidden; position: relative; }
  .block-geome .slide-flex .left_box img{ width: 100%; }
  .block-geome .slide-flex .right_box{ width: 50%; }

.white-popup1 {
    position: relative;
    background: #FFF;
    padding: 40px;
    width: auto;
    max-width: 1200px;
    margin: 0 auto;
}
.hb_fast_menu ul{
      display: flex;
}
.hb_fast_menu ul li{
      padding: 0 20px;
    text-align: center;
}
.hb_fast_menu ul li .icon_box img{
    width: 35px;
}


.coupon{
	margin-top: 30px;
  width: 500px;
}
.coupon p{
	border: 2px dashed #f9d60d;
    font-size: 22px;
    display: inline-block;
    padding: 5px 20px;
    background: #fffbea;
    color: #000;
}
.coupon p a{
	color: #000;
}
.coupon p:first-child{
	margin-bottom: 20px;
}

.coupon-wave {
    position: relative;
    background: linear-gradient(270deg, #d3d3d3 0%, #5c5b5b 100%);
    font-size: 22px;
    color: #fff;
    font-weight: bold;
    box-sizing: border-box;
    cursor: pointer;
    border-radius: 5px;
/*     text-shadow: -2px -2px 2px #333; */
height: 80px;
line-height: 80px;
margin-bottom: 20px;
  width: 80%;
}
.coupon-wave::before,
.coupon-wave::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom :0;
}
.coupon-wave::before {
    width: 10px;
    background-image: radial-gradient(circle at -10px 10px, transparent 12px, #5c5b5b 13px, #5c5b5b 0px);
    background-size: 20px 20px;
    background-position: 0 15px;
    left: -5px;
}

.newCoupon{
	display: flex;
    cursor: auto;
}
.newCoupon span:first-child{
	width: 50%;
    text-align: center;
    border-right: 1px dashed;
    font-size: 17px;
    color: #fff;
}
.newCoupon span:last-child{
	width: 50%;
    text-align: center;
    color: #222;
}

.u4-coupon-wave{
    height: auto;
    line-height: 1.5;
    text-align: center;
    padding: 10px 0;
}
.u4-coupon-wave small{
    font-size: 12px;
    color: #fff;
    text-align: center;
}
.u4-coupon span{
    border: none;
    color: #fff;
    margin-bottom: 20px;
    display: inline-block;
}


#scroll_to_top{
    position: fixed;
    bottom: -50px;
    right: 15px;
    z-index: 100;
  transition: all .35s;
}
.showTop{
  bottom: 15px !important;
  transition: all .35s;
}
#scroll_to_top .arrow-top {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background: rgb(248 216 13 / 30%);
    border: 2px solid rgb(248 216 13 / 60%);
    display: flex;
    font-size: 1.5rem;
    align-items: center;
    color: #222;
    justify-content: center;
}

.blog-nav{
/*   border: 1px solid #e8e8e8; */
  box-shadow: 0 0 5px 1px #dfdfdf;
  display: inline-block;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 50px !important;
}
.blog-nav ul {
  padding-left: 40px;
}
.blog-nav ul li{
  list-style: disc;
}
.blog-nav a{
    text-decoration: none;
    border-bottom: 2px solid;
    border-bottom-color: rgba(15,83,222,0.3);/* rgba(249,214,13,0.3); */
    position: relative;
    color: #222;
    font-weight: 500;
    padding-bottom: 3px;
}
.blog-nav a:after{
      content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    border-bottom: 2px solid #0f53de;
    transition: width 0.5s ease;
}
.blog-nav a:hover:after{
  width: 100%;
}

.main-pages{
  padding-top: 50px;
}

.product_social .footer__logo-social{
  padding: 0;
}
.product_social .footer__logo-social .footer__social li{
  margin-bottom: 0;
}
.product_social .footer__social .icon{
  fill: #222;
}


@media only screen and (max-width: 789px){
  .topbar{
      justify-content: start;
  }
  .mobile-layout{
      display: flex;
      justify-content: space-between;
      width: 100%;
  }
  .mobile-layout .topbar__link{
      padding: 12px 0;
  }
  .block-geome .bk_swiper_list{
  	    padding: 20px;
  }
  .block-geome .bk_swiper_list h3{
  	font-size: 26px;
  }
  .block-geome .bk_swiper_list .tab_list .tab_list_box{
  	width: 45%;
    padding: 15px;
  }
  .block-geome .slide-flex{
  	display: block;
  }
  .block-geome .slide-flex .left_box,
  .block-geome .slide-flex .right_box{
  	width: 100%;
  }
  
  .block-geome .bk_swiper_list .tab_list .tab_list_box img{
  	width: 100%;
  }
 .geometry li{
    	display: flex;
    }
    .geometry li span{
    	display: block;
      	width: 48%;
      font-size: 14px;
      padding-bottom: 15px;
      margin-bottom: 15px;
    }
    .geometry li span b{
    	display: inline-block;
    }
  .product_mask_bg{
    padding-top: 55px;
  }
  .hero__text-content.vertical-bottom {
    vertical-align: bottom:
  }
  .collection-filter{
    width: 100%;
  }
  .topbar__dropdown{
    left: -30px;
  }
  .topbar__dropdown::before{
    left: 15%;
  }
  .hero__link a{
    font-size: 14px;
  }
  .coupon{
    width: 100%;
  }
  .newCoupon span:first-child{
    font-size: 14px;
    width: 50%;
  }
  .newCoupon span:last-child {
    font-size: 15px;
    width: 50%;
  }
/*   .coupon-wave {
    height: 65px;
    line-height: 65px;
  } */
  .u4-coupon span {
    margin-bottom: 10px;
    font-size: 18px;
  }
  .index-section--small{
    margin: 0;
  }
.hb_fast_menu ul li .txt_box{
  font-size: 14px;
}
  .product-single__form{
    margin-bottom: 0;
  }
  .product-single__meta{
    padding-bottom: 10px;
  }
  .coupon-wave{
    width: 100%;
  }
  #insta-feed h2{
    font-size: 28px !important;
  }
  .collection-hero.loaded .section-header__title .animation-contents{
    font-size: 22px;
    
  }
  .collection-hero.loaded .section-header__title .animation-contents p{
    margin: 0;
    padding-top: 10px;
    font-size: 14px;
  }

}



/**
 * Swiper 7.4.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2021 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: December 24, 2021
 */

@font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-pointer-events{touch-action:pan-y}.swiper-pointer-events.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-3d,.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide,.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top,.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-horizontal.swiper-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-vertical.swiper-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;text-transform:none;font-variant:initial;line-height:1}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:10px;right:auto}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:10px;left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:50%;background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:10px;top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-horizontal>.swiper-scrollbar{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;animation:swiper-preloader-spin 1s infinite linear;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{100%{transform:rotate(360deg)}}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active,.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-next+.swiper-slide,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}
.mfp-bg{top:0;left:0;width:100%;height:100%;z-index:1042;overflow:hidden;position:fixed;background:#0b0b0b;opacity:0.8;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;transition:all 0.3s ease-out;filter:alpha(opacity=80);}.mfp-wrap{top:0;left:0;width:100%;height:100%;z-index:1043;position:fixed;outline:none !important;-webkit-backface-visibility:hidden;}.mfp-container{text-align:center;position:absolute;width:100%;height:100%;left:0;top:0;padding:0 8px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}.mfp-container:before{content:'';display:inline-block;height:100%;vertical-align:middle;}.mfp-align-top .mfp-container:before{display:none;}.mfp-content{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:left;z-index:1045;}.mfp-inline-holder .mfp-content,.mfp-ajax-holder .mfp-content{width:100%;cursor:auto;}.mfp-ajax-cur{cursor:progress;}.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{cursor:-moz-zoom-out;cursor:-webkit-zoom-out;cursor:zoom-out;}.mfp-zoom{cursor:pointer;cursor:-webkit-zoom-in;cursor:-moz-zoom-in;cursor:zoom-in;}.mfp-auto-cursor .mfp-content{cursor:auto;}.mfp-close,.mfp-arrow,.mfp-preloader,.mfp-counter{-webkit-user-select:none;-moz-user-select:none;user-select:none;}.mfp-loading.mfp-figure{display:none;}.mfp-hide{display:none !important;}.mfp-preloader{color:#cccccc;position:absolute;top:50%;width:auto;text-align:center;margin-top:-0.8em;left:8px;right:8px;z-index:1044;}.mfp-preloader a{color:#ccc;}.mfp-preloader a:hover{color:white;}.mfp-s-ready .mfp-preloader{display:none;}.mfp-s-error .mfp-content{display:none;}button.mfp-close,button.mfp-arrow{overflow:visible;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;display:block;outline:none;padding:0;z-index:1046;-webkit-box-shadow:none;box-shadow:none;}button::-moz-focus-inner{padding:0;border:0;}.mfp-close{width:66px;height:66px;line-height:66px;position:absolute;right:0;top:0;text-decoration:none;text-align:center;opacity:0.65;padding:0 0 18px 10px;color:#333;font-style:normal;font-size:32px;}.mfp-close:hover,.mfp-close:focus{opacity:1;}.mfp-close:active{top:1px;}.mfp-close-btn-in .mfp-close{color:#333;}.mfp-image-holder .mfp-close,.mfp-iframe-holder .mfp-close{color:white !important;right:-6px;text-align:right;padding-right:6px;width:10%;}.mfp-image-holder .mfp-close{color:#000 !important;}.mfp-counter{position:absolute;top:0;right:0;color:#ccc;font-size:12px;line-height:18px;}.mfp-arrow{position:absolute;opacity:0.65;margin:0;top:50%;margin-top:-55px;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:rgba(0,0,0,0);}.mfp-arrow:active{margin-top:-54px;}.mfp-arrow:hover,.mfp-arrow:focus{opacity:1;}.mfp-arrow:before,.mfp-arrow:after,.mfp-arrow .mfp-b,.mfp-arrow .mfp-a{content:'';display:block;width:0;height:0;position:absolute;left:0;top:0;margin-top:35px;margin-left:35px;border:medium inset transparent;}.mfp-arrow:after,.mfp-arrow .mfp-a{border-top-width:13px;border-bottom-width:13px;top:8px;}.mfp-arrow:before,.mfp-arrow .mfp-b{border-top-width:21px;border-bottom-width:21px;}.mfp-arrow-left{left:0;}.mfp-arrow-left:after,.mfp-arrow-left .mfp-a{border-right:17px solid white;margin-left:31px;}.mfp-arrow-left:before,.mfp-arrow-left .mfp-b{margin-left:25px;border-right:27px solid #3f3f3f;}.mfp-arrow-right{right:0;}.mfp-arrow-right:after,.mfp-arrow-right .mfp-a{border-left:17px solid white;margin-left:39px;}.mfp-arrow-right:before,.mfp-arrow-right .mfp-b{border-left:27px solid #3f3f3f;}.mfp-iframe-holder{padding-top:40px;padding-bottom:40px;}.mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px;}.mfp-iframe-holder .mfp-close{top:-40px;}.mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%;}.mfp-iframe-scaler iframe{position:absolute;display:block;top:0;left:0;width:100%;height:100%;box-shadow:0 0 8px rgba(0,0,0,0.6);background:black;}img.mfp-img{width:auto;max-width:100%;height:auto;display:block;line-height:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:40px 0 40px;margin:0 auto;}.mfp-figure{line-height:0;}.mfp-figure:after{content:'';position:absolute;left:0;top:40px;bottom:40px;display:block;right:0;width:auto;height:auto;z-index:-1;box-shadow:0 0 8px rgba(0,0,0,0.6);background:#444;}.mfp-figure small{color:#bdbdbd;display:block;font-size:12px;line-height:14px;}.mfp-figure figure{margin:0;}.mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;left:0;width:100%;cursor:auto;}.mfp-title{text-align:left;line-height:18px;color:#f3f3f3;word-wrap:break-word;padding-right:36px;}.mfp-image-holder .mfp-content{max-width:100%;}@media screen and (max-width:800px) and (orientation:landscape),screen and (max-height:300px){.mfp-img-mobile .mfp-image-holder{padding-left:0;padding-right:0;}.mfp-img-mobile img.mfp-img{padding:0;}.mfp-img-mobile .mfp-figure{}.mfp-img-mobile .mfp-figure:after{top:0;bottom:0;}.mfp-img-mobile .mfp-figure small{display:inline;margin-left:5px;}.mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,0.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}.mfp-img-mobile .mfp-bottom-bar:empty{padding:0;}.mfp-img-mobile .mfp-counter{right:5px;top:3px;}.mfp-img-mobile .mfp-close{top:0;right:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,0.6);position:fixed;text-align:center;padding:0;}}@media all and (max-width:900px){.mfp-arrow{-webkit-transform:scale(0.75);transform:scale(0.75);}.mfp-arrow-left{-webkit-transform-origin:0;transform-origin:0;}.mfp-arrow-right{-webkit-transform-origin:100%;transform-origin:100%;}.mfp-container{padding-left:6px;padding-right:6px;}}.mfp-ie7 .mfp-img{padding:0;}.mfp-ie7 .mfp-bottom-bar{width:600px;left:50%;margin-left:-300px;margin-top:5px;padding-bottom:5px;}.mfp-ie7 .mfp-container{padding:0;}.mfp-ie7 .mfp-content{padding-top:44px;}.mfp-ie7 .mfp-close{top:0;right:0;padding-top:0;}.mfp-zoom-in .mfp-with-anim{opacity:0;transition:all 0.2s ease-in-out;transform:scale(0.8);}.mfp-zoom-in .mfp-zoom-in.mfp-bg{opacity:0;transition:all 0.3s ease-out;}.mfp-zoom-in.mfp-ready .mfp-with-anim{opacity:1;transform:scale(1);}.mfp-zoom-in.mfp-ready .mfp-zoom-in.mfp-ready.mfp-bg{opacity:0.8;}.mfp-zoom-in.mfp-removing .mfp-with-anim{transform:scale(0.8);opacity:0;}.mfp-zoom-in.mfp-removing .mfp-zoom-in.mfp-removing.mfp-bg{opacity:0;}


.transition-body {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background-color: #fff;
  z-index: 9;
}

.specsImg{
    position: relative;
}
.specsImg-left, .specsImg-right{
    position: absolute;
    top: 62%;
    font-size: 1.9vw;
    font-weight: 500;
    padding-left: 1.5em;
    text-indent: -1.5em;
    max-width: 30%;
}
.specsImg-left{
    left: 17%;
}
.specsImg-right{
    left: 64%;
}
@media only screen and (min-width:1360px) {
    .specsImg-left, .specsImg-right{
        font-size: 25px;
    }
}
